diff --git a/.fmf/version b/.fmf/version deleted file mode 100644 index d00491f..0000000 --- a/.fmf/version +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/.gitignore b/.gitignore index 643f820..7c125c7 100644 --- a/.gitignore +++ b/.gitignore @@ -43,47 +43,3 @@ abrt-1.1.13.tar.gz /abrt-2.5.1.tar.gz /abrt-2.6.0.tar.gz /abrt-2.6.1.tar.gz -/abrt-2.6.2.tar.gz -/abrt-2.7.0.tar.gz -/abrt-2.7.1.tar.gz -/abrt-2.7.2.tar.gz -/abrt-2.8.0.tar.gz -/abrt-2.8.1.tar.gz -/abrt-2.8.2.tar.gz -/abrt-2.9.0.tar.gz -/abrt-2.10.0.tar.gz -/abrt-2.10.1.tar.gz -/abrt-2.10.2.tar.gz -/abrt-2.10.3.tar.gz -/abrt-2.10.4.tar.gz -/abrt-2.10.5.tar.gz -/abrt-2.10.6.tar.gz -/abrt-2.10.7.tar.gz -/abrt-2.10.8.tar.gz -/abrt-2.10.9.tar.gz -/abrt-2.10.10.tar.gz -/abrt-2.11.0.tar.gz -/abrt-2.11.1.tar.gz -/abrt-2.12.0.tar.gz -/abrt-2.12.1.tar.gz -/abrt-2.12.2.tar.gz -/abrt-2.13.0.tar.gz -/abrt-2.14.0.tar.gz -/abrt-2.14.1.tar.gz -/abrt-2.14.2.tar.gz -/abrt-2.14.3.tar.gz -/abrt-2.14.4.tar.gz -/abrt-2.14.5.tar.gz -/abrt-2.14.6.tar.gz -/abrt-2.15.0.tar.gz -/abrt-2.15.1.tar.gz -/abrt-2.16.0.tar.gz -/abrt-2.16.1.tar.gz -/abrt-2.17.0.tar.gz -/abrt-2.17.1.tar.gz -/abrt-2.17.2.tar.gz -/abrt-2.17.4.tar.gz -/abrt-2.17.5.tar.gz -/abrt-2.17.6.tar.gz -/abrt-2.17.7.tar.gz -/abrt-2.17.8.tar.gz diff --git a/0001-cli-enable-authetication-for-all-commands.patch b/0001-cli-enable-authetication-for-all-commands.patch new file mode 100644 index 0000000..b671352 --- /dev/null +++ b/0001-cli-enable-authetication-for-all-commands.patch @@ -0,0 +1,114 @@ +From 5c21d1e390603fdc56dba33cdc69672b3b75beff Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 8 Jul 2015 14:16:39 +0200 +Subject: [PATCH] cli: enable authetication for all commands + +I forgot to test the info, rm and status commands when I was working on +commit cb770e507f247476651b84ebbef63a5cd4c41d11 and later on I found out +that these commands must be updated to work with the system problems. + +Signed-off-by: Jakub Filak +--- + src/cli/list.c | 2 +- + src/cli/rm.c | 41 ++++++++++++++++++++++++++++------------- + src/cli/status.c | 3 ++- + 3 files changed, 31 insertions(+), 15 deletions(-) + +diff --git a/src/cli/list.c b/src/cli/list.c +index 31d1835..8bfb3cc 100644 +--- a/src/cli/list.c ++++ b/src/cli/list.c +@@ -35,7 +35,7 @@ static problem_data_t *load_problem_data(const char *problem_id) + char *name2 = NULL; + + /* First, check if there is a problem with the passed id */ +- GList *problems = get_problems_over_dbus(/*don't authorize*/false); ++ GList *problems = get_problems_over_dbus(g_cli_authenticate); + GList *item = g_list_find_custom(problems, problem_id, (GCompareFunc)strcmp); + + /* (git requires at least 5 char hash prefix, we do the same) */ +diff --git a/src/cli/rm.c b/src/cli/rm.c +index fe458ff..37d50e2 100644 +--- a/src/cli/rm.c ++++ b/src/cli/rm.c +@@ -19,12 +19,39 @@ + + #include "libabrt.h" + #include "builtin-cmd.h" ++#include "abrt-cli-core.h" + + /* TODO npajkovs: + * add -n, --dry-run + * add -q, --quite + */ + ++static int remove_using_dbus(const char **dirs_strv) ++{ ++ GList *dirs = NULL; ++ while (*dirs_strv) ++ dirs = g_list_prepend(dirs, (void *)*dirs_strv++); ++ const int ret = delete_problem_dirs_over_dbus(dirs); ++ g_list_free(dirs); ++ return ret; ++} ++ ++static int remove_using_abrtd_or_fs(const char **dirs_strv) ++{ ++ int errs = 0; ++ while (*dirs_strv) ++ { ++ int status; ++ const char *rm_dir = *dirs_strv++; ++ status = delete_dump_dir_possibly_using_abrtd(rm_dir); ++ if (!status) ++ log("rm '%s'", rm_dir); ++ else ++ errs++; ++ } ++ return errs; ++} ++ + int cmd_remove(int argc, const char **argv) + { + const char *program_usage_string = _( +@@ -42,17 +69,5 @@ int cmd_remove(int argc, const char **argv) + if (!argv[0]) + show_usage_and_die(program_usage_string, program_options); + +- int errs = 0; +- while (*argv) +- { +- int status; +- const char *rm_dir = *argv++; +- status = delete_dump_dir_possibly_using_abrtd(rm_dir); +- if (!status) +- log("rm '%s'", rm_dir); +- else +- errs++; +- } +- +- return errs; ++ return (g_cli_authenticate ? remove_using_dbus : remove_using_abrtd_or_fs)(argv); + } +diff --git a/src/cli/status.c b/src/cli/status.c +index a65ba05..0635289 100644 +--- a/src/cli/status.c ++++ b/src/cli/status.c +@@ -20,12 +20,13 @@ + #include + #include + #include "problem_api.h" ++#include "abrt-cli-core.h" + + static unsigned int count_problem_dirs(unsigned long since) + { + unsigned count = 0; + +- GList *problems = get_problems_over_dbus(/*don't authorize*/false); ++ GList *problems = get_problems_over_dbus(g_cli_authenticate); + for (GList *iter = problems; iter != NULL; iter = g_list_next(iter)) + { + const char *problem_id = (const char *)iter->data; +-- +2.4.3 + diff --git a/0002-cli-remove-useless-code-from-print_crash.patch b/0002-cli-remove-useless-code-from-print_crash.patch new file mode 100644 index 0000000..eb1962d --- /dev/null +++ b/0002-cli-remove-useless-code-from-print_crash.patch @@ -0,0 +1,32 @@ +From de12e078fc167fd1a818b101c1a21fcedf32a1a5 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 8 Jul 2015 17:03:55 +0200 +Subject: [PATCH] cli: remove useless code from print_crash() + +Revealed by coverity. + +Signed-off-by: Jakub Filak +--- + src/cli/list.c | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +diff --git a/src/cli/list.c b/src/cli/list.c +index 8bfb3cc..e8ec37b 100644 +--- a/src/cli/list.c ++++ b/src/cli/list.c +@@ -63,11 +63,10 @@ static void print_crash(problem_data_t *problem_data, int detailed, int text_siz + char *desc; + if (detailed) + { +- int show_multiline = (detailed ? MAKEDESC_SHOW_MULTILINE : 0); + desc = make_description(problem_data, + /*names_to_skip:*/ NULL, + /*max_text_size:*/ text_size, +- MAKEDESC_SHOW_FILES | show_multiline); ++ MAKEDESC_SHOW_FILES | MAKEDESC_SHOW_MULTILINE); + } + else + { +-- +2.4.3 + diff --git a/0003-cli-use-internal-command-impl-in-the-command-process.patch b/0003-cli-use-internal-command-impl-in-the-command-process.patch new file mode 100644 index 0000000..5ed9459 --- /dev/null +++ b/0003-cli-use-internal-command-impl-in-the-command-process.patch @@ -0,0 +1,216 @@ +From cd698516de709ee3d8480fd7990a8082dffddb45 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 8 Jul 2015 17:04:41 +0200 +Subject: [PATCH] cli: use internal command impl in the command process + +It did not seem to be a good idea to add wrappers for the internal +commands, because the wrappers would be one line functions. Now, we need +to do more sophisticated processing (authenticate, chown), so adding the +wrappers is the best choice to provide the same functionality in the +command process. + +Signed-off-by: Jakub Filak +--- + src/cli/builtin-cmd.h | 3 +++ + src/cli/list.c | 8 ++++++- + src/cli/process.c | 16 ++++--------- + src/cli/report.c | 65 +++++++++++++++++++++++++++------------------------ + src/cli/rm.c | 7 +++++- + 5 files changed, 56 insertions(+), 43 deletions(-) + +diff --git a/src/cli/builtin-cmd.h b/src/cli/builtin-cmd.h +index bc80479..c6cd691 100644 +--- a/src/cli/builtin-cmd.h ++++ b/src/cli/builtin-cmd.h +@@ -22,8 +22,11 @@ + + extern int cmd_list(int argc, const char **argv); + extern int cmd_remove(int argc, const char **argv); ++extern int _cmd_remove(const char **dirs_strv); + extern int cmd_report(int argc, const char **argv); ++extern int _cmd_report(const char **dirs_strv, int remove); + extern int cmd_info(int argc, const char **argv); ++extern int _cmd_info(problem_data_t *problem_data, int detailed, int text_size); + extern int cmd_status(int argc, const char **argv); + extern int cmd_process(int argc, const char **argv); + +diff --git a/src/cli/list.c b/src/cli/list.c +index e8ec37b..68dda47 100644 +--- a/src/cli/list.c ++++ b/src/cli/list.c +@@ -168,6 +168,12 @@ int cmd_list(int argc, const char **argv) + return 0; + } + ++int _cmd_info(problem_data_t *problem_data, int detailed, int text_size) ++{ ++ print_crash(problem_data, detailed, text_size); ++ return 0; ++} ++ + int cmd_info(int argc, const char **argv) + { + const char *program_usage_string = _( +@@ -205,7 +211,7 @@ int cmd_info(int argc, const char **argv) + continue; + } + +- print_crash(problem, opt_detailed, text_size); ++ _cmd_info(problem, opt_detailed, text_size); + problem_data_free(problem); + if (*argv) + printf("\n"); +diff --git a/src/cli/process.c b/src/cli/process.c +index 39462f9..401ef60 100644 +--- a/src/cli/process.c ++++ b/src/cli/process.c +@@ -68,28 +68,22 @@ static int process_one_crash(problem_data_t *problem_data) + if(strcmp(action, "rm") == 0 || strcmp(action, "remove") == 0 ) + { + log(_("Deleting '%s'"), dir_name); +- delete_dump_dir_possibly_using_abrtd(dir_name); ++ const char *dirs_strv[] = {dir_name, NULL}; ++ _cmd_remove(dirs_strv); + + ret_val = ACT_REMOVE; + } + else if (not_reportable == NULL && (strcmp(action, "e") == 0 || strcmp(action, "report") == 0)) + { + log(_("Reporting '%s'"), dir_name); +- report_problem_in_dir(dir_name, +- LIBREPORT_WAIT +- | LIBREPORT_RUN_CLI); ++ const char *dirs_strv[] = {dir_name, NULL}; ++ _cmd_report(dirs_strv, /*do not delete*/0); + + ret_val = ACT_REPORT; + } + else if (strcmp(action, "i") == 0 || strcmp(action, "info") == 0) + { +- char *desc = make_description(problem_data, +- /*names_to_skip:*/ NULL, +- /*max_text_size:*/ CD_TEXT_ATT_SIZE_BZ, +- MAKEDESC_SHOW_FILES | MAKEDESC_SHOW_MULTILINE); +- +- fputs(desc, stdout); +- free(desc); ++ _cmd_info(problem_data, /*detailed*/1, CD_TEXT_ATT_SIZE_BZ); + + ret_val = ACT_INFO; + } +diff --git a/src/cli/report.c b/src/cli/report.c +index 194f7c9..19b4c51 100644 +--- a/src/cli/report.c ++++ b/src/cli/report.c +@@ -22,38 +22,12 @@ + #include "abrt-cli-core.h" + #include "builtin-cmd.h" + +-int cmd_report(int argc, const char **argv) ++int _cmd_report(const char **dirs_strv, int remove) + { +- const char *program_usage_string = _( +- "& report [options] DIR..." +- ); +- +- enum { +- OPT_v = 1 << 0, +- OPT_d = 1 << 1, +- }; +- +- struct options program_options[] = { +- OPT__VERBOSE(&g_verbose), +- OPT_BOOL('d', "delete", NULL, _("Remove PROBLEM_DIR after reporting")), +- OPT_END() +- }; +- +- unsigned opts = parse_opts(argc, (char **)argv, program_options, program_usage_string); +- argv += optind; +- +- if (!argv[0]) +- show_usage_and_die(program_usage_string, program_options); +- +- export_abrt_envvars(/*prog_prefix:*/ 0); +- +- load_abrt_conf(); +- free_abrt_conf_data(); +- + int ret = 0; +- while (*argv) ++ while (*dirs_strv) + { +- const char *dir_name = *argv++; ++ const char *dir_name = *dirs_strv++; + char *const real_problem_id = hash2dirname_if_necessary(dir_name); + if (real_problem_id == NULL) + { +@@ -75,7 +49,7 @@ int cmd_report(int argc, const char **argv) + | LIBREPORT_RUN_CLI); + + /* the problem was successfully reported and option is -d */ +- if((opts & OPT_d) && (status == 0 || status == EXIT_STOP_EVENT_RUN)) ++ if(remove && (status == 0 || status == EXIT_STOP_EVENT_RUN)) + { + log(_("Deleting '%s'"), real_problem_id); + delete_dump_dir_possibly_using_abrtd(real_problem_id); +@@ -89,3 +63,34 @@ int cmd_report(int argc, const char **argv) + + return ret; + } ++ ++int cmd_report(int argc, const char **argv) ++{ ++ const char *program_usage_string = _( ++ "& report [options] DIR..." ++ ); ++ ++ enum { ++ OPT_v = 1 << 0, ++ OPT_d = 1 << 1, ++ }; ++ ++ struct options program_options[] = { ++ OPT__VERBOSE(&g_verbose), ++ OPT_BOOL('d', "delete", NULL, _("Remove PROBLEM_DIR after reporting")), ++ OPT_END() ++ }; ++ ++ unsigned opts = parse_opts(argc, (char **)argv, program_options, program_usage_string); ++ argv += optind; ++ ++ if (!argv[0]) ++ show_usage_and_die(program_usage_string, program_options); ++ ++ export_abrt_envvars(/*prog_prefix:*/ 0); ++ ++ load_abrt_conf(); ++ free_abrt_conf_data(); ++ ++ return _cmd_report(argv, opts & OPT_d); ++} +diff --git a/src/cli/rm.c b/src/cli/rm.c +index 37d50e2..95ae097 100644 +--- a/src/cli/rm.c ++++ b/src/cli/rm.c +@@ -52,6 +52,11 @@ static int remove_using_abrtd_or_fs(const char **dirs_strv) + return errs; + } + ++int _cmd_remove(const char **dirs_strv) ++{ ++ return (g_cli_authenticate ? remove_using_dbus : remove_using_abrtd_or_fs)(dirs_strv); ++} ++ + int cmd_remove(int argc, const char **argv) + { + const char *program_usage_string = _( +@@ -69,5 +74,5 @@ int cmd_remove(int argc, const char **argv) + if (!argv[0]) + show_usage_and_die(program_usage_string, program_options); + +- return (g_cli_authenticate ? remove_using_dbus : remove_using_abrtd_or_fs)(argv); ++ return _cmd_remove(argv); + } +-- +2.4.3 + diff --git a/0004-a-dump-oops-allow-update-the-problem-if-more-then-on.patch b/0004-a-dump-oops-allow-update-the-problem-if-more-then-on.patch new file mode 100644 index 0000000..76ec5a6 --- /dev/null +++ b/0004-a-dump-oops-allow-update-the-problem-if-more-then-on.patch @@ -0,0 +1,54 @@ +From 23c6702959b763f6abbc3c853676c6aeedd6d3fe Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Mon, 13 Jul 2015 11:25:17 +0200 +Subject: [PATCH] a-dump-oops: allow update the problem, if more then one oops + found + +In case that found more than one oops process the first one. +Without this patch the script exits with error in this case because expects +only one oops. + +Related to rhbz#1170534 + +Signed-off-by: Matej Habrnal +--- + src/plugins/abrt-dump-oops.c | 16 +++++++++++----- + 1 file changed, 11 insertions(+), 5 deletions(-) + +diff --git a/src/plugins/abrt-dump-oops.c b/src/plugins/abrt-dump-oops.c +index 58650cb..a348923 100644 +--- a/src/plugins/abrt-dump-oops.c ++++ b/src/plugins/abrt-dump-oops.c +@@ -172,6 +172,17 @@ int main(int argc, char **argv) + log("Updating problem directory"); + switch (g_list_length(oops_list)) + { ++ case 0: ++ { ++ error_msg(_("Can't update the problem: no oops found")); ++ errors = 1; ++ break; ++ } ++ default: ++ { ++ log_notice(_("More oopses found: process only the first one")); ++ } ++ /* falls trought */ + case 1: + { + struct dump_dir *dd = dd_opendir(problem_dir, /*open for writing*/0); +@@ -181,11 +192,6 @@ int main(int argc, char **argv) + dd_close(dd); + } + } +- break; +- default: +- error_msg(_("Can't update the problem: more than one oops found")); +- errors = 1; +- break; + } + } + else +-- +2.4.3 + diff --git a/0005-abrtd-de-prioritize-post-create-event-scripts.patch b/0005-abrtd-de-prioritize-post-create-event-scripts.patch new file mode 100644 index 0000000..aff6b9f --- /dev/null +++ b/0005-abrtd-de-prioritize-post-create-event-scripts.patch @@ -0,0 +1,117 @@ +From 883d35109b55928d4c36d3cd6ee262d7cdc5bd4d Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 15 Jul 2015 10:20:59 +0200 +Subject: [PATCH] abrtd: de-prioritize post-create event scripts + +The crash processing should not make the computer unusable. It sometimes +happens that the captured data causes abrt scripts to take an inadequate +amount of resources and the computer becomes less responsive. + +This patch increases the nice value of post-create processes by 10 (I took +10 because it is the default value of command 'nice'), so those +processes will be scheduled after the more valuable processes. + +Related: rhbz#1236422 + +Signed-off-by: Jakub Filak +--- + doc/abrtd.txt | 7 +++++++ + src/daemon/abrt-handle-event.c | 19 ++++++++++++++++++- + src/daemon/abrt-server.c | 14 ++++++++------ + 3 files changed, 33 insertions(+), 7 deletions(-) + +diff --git a/doc/abrtd.txt b/doc/abrtd.txt +index b129d3e..32d044b 100644 +--- a/doc/abrtd.txt ++++ b/doc/abrtd.txt +@@ -36,6 +36,13 @@ OPTIONS + -p:: + Add program names to log. + ++ENVIRONMENT ++----------- ++ABRT_EVENT_NICE:: ++ 'abrtd' runs its post-mortem processing with the nice value incremented by 10 ++ in order to not take too much resources and keep the computer responsive. If ++ you want to adjust the increment value, use the ABRT_EVENT_NICE environment ++ variable. + + CAVEATS + ------- +diff --git a/src/daemon/abrt-handle-event.c b/src/daemon/abrt-handle-event.c +index 4a21aa4..fda21bd 100644 +--- a/src/daemon/abrt-handle-event.c ++++ b/src/daemon/abrt-handle-event.c +@@ -403,16 +403,18 @@ int main(int argc, char **argv) + abrt_init(argv); + + const char *program_usage_string = _( +- "& [-v -i] -e|--event EVENT DIR..." ++ "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + ); + + char *event_name = NULL; + int interactive = 0; /* must be _int_, OPT_BOOL expects that! */ ++ int nice_incr = 0; + + struct options program_options[] = { + OPT__VERBOSE(&g_verbose), + OPT_STRING('e', "event" , &event_name, "EVENT", _("Run EVENT on DIR")), + OPT_BOOL('i', "interactive" , &interactive, _("Communicate directly to the user")), ++ OPT_INTEGER('n', "nice" , &nice_incr, _("Increment the nice value by INCREMENT")), + OPT_END() + }; + +@@ -423,6 +425,21 @@ int main(int argc, char **argv) + + load_abrt_conf(); + ++ const char *const opt_env_nice = getenv("ABRT_EVENT_NICE"); ++ if (opt_env_nice != NULL && opt_env_nice[0] != '\0') ++ { ++ log_debug("Using ABRT_EVENT_NICE=%s to increment the nice value", opt_env_nice); ++ nice_incr = xatoi(opt_env_nice); ++ } ++ ++ if (nice_incr != 0) ++ { ++ log_debug("Incrementing the nice value by %d", nice_incr); ++ const int ret = nice(nice_incr); ++ if (ret == -1) ++ perror_msg_and_die("Failed to increment the nice value"); ++ } ++ + bool post_create = (strcmp(event_name, "post-create") == 0); + char *dump_dir_name = NULL; + while (*argv) +diff --git a/src/daemon/abrt-server.c b/src/daemon/abrt-server.c +index d7556e2..9f177e9 100644 +--- a/src/daemon/abrt-server.c ++++ b/src/daemon/abrt-server.c +@@ -126,15 +126,17 @@ static int delete_path(const char *dump_dir_name) + + static pid_t spawn_event_handler_child(const char *dump_dir_name, const char *event_name, int *fdp) + { +- char *args[7]; ++ char *args[9]; + args[0] = (char *) LIBEXEC_DIR"/abrt-handle-event"; + /* Do not forward ASK_* messages to parent*/ + args[1] = (char *) "-i"; +- args[2] = (char *) "-e"; +- args[3] = (char *) event_name; +- args[4] = (char *) "--"; +- args[5] = (char *) dump_dir_name; +- args[6] = NULL; ++ args[2] = (char *) "--nice"; ++ args[3] = (char *) "10"; ++ args[4] = (char *) "-e"; ++ args[5] = (char *) event_name; ++ args[6] = (char *) "--"; ++ args[7] = (char *) dump_dir_name; ++ args[8] = NULL; + + int pipeout[2]; + int flags = EXECFLG_INPUT_NUL | EXECFLG_OUTPUT | EXECFLG_QUIET | EXECFLG_ERR2OUT; +-- +2.4.3 + diff --git a/0006-abrt-Fixup-component-of-select-kernel-backtraces.patch b/0006-abrt-Fixup-component-of-select-kernel-backtraces.patch new file mode 100644 index 0000000..e5f30bc --- /dev/null +++ b/0006-abrt-Fixup-component-of-select-kernel-backtraces.patch @@ -0,0 +1,473 @@ +From 9d9e0b94573e668bc242a68f4007e67c3eef4ddf Mon Sep 17 00:00:00 2001 +From: Laura Abbott +Date: Wed, 27 May 2015 16:27:32 -0700 +Subject: [PATCH] abrt: Fixup component of select kernel backtraces + +The kernel is a big project and certain parts of it +may need to be tracked under different components. +Fixup results related to those parts and assign a +different component. + +Signed-off-by: Laura Abbott + +- ported to Python 3 +- removed a left over +- extended a log message + +Signed-off-by: Jakub Filak +--- + .gitignore | 1 + + abrt.spec.in | 1 + + configure.ac | 1 + + examples/oops-32bit-graphics.right | 73 +++++++++++++++++ + examples/oops-32bit-graphics.test | 71 +++++++++++++++++ + examples/oops-noveau.right | 39 +++++++++ + examples/oops-noveau.test | 38 +++++++++ + src/plugins/Makefile.am | 3 + + .../abrt-action-check-oops-for-alt-component.in | 93 ++++++++++++++++++++++ + src/plugins/koops_event.conf | 3 + + src/plugins/vmcore_event.conf | 1 + + 11 files changed, 324 insertions(+) + create mode 100644 examples/oops-32bit-graphics.right + create mode 100644 examples/oops-32bit-graphics.test + create mode 100644 examples/oops-noveau.right + create mode 100644 examples/oops-noveau.test + create mode 100644 src/plugins/abrt-action-check-oops-for-alt-component.in + +diff --git a/.gitignore b/.gitignore +index 66410cb..f5a93e4 100644 +--- a/.gitignore ++++ b/.gitignore +@@ -30,6 +30,7 @@ src/plugins/abrt-action-analyze-python + src/plugins/abrt-action-analyze-vmcore + src/plugins/abrt-action-analyze-xorg + src/plugins/abrt-action-check-oops-for-hw-error ++src/plugins/abrt-action-check-oops-for-alt-component + src/plugins/abrt-action-generate-backtrace + src/plugins/abrt-action-install-debuginfo-to-abrt-cache + src/plugins/abrt-action-perform-ccpp-analysis +diff --git a/abrt.spec.in b/abrt.spec.in +index 08eb93f..c73eaf6 100644 +--- a/abrt.spec.in ++++ b/abrt.spec.in +@@ -975,6 +975,7 @@ killall abrt-dbus >/dev/null 2>&1 || : + %endif + %{_sbindir}/abrt-harvest-vmcore + %{_bindir}/abrt-action-analyze-vmcore ++%{_bindir}/abrt-action-check-oops-for-alt-component + %{_bindir}/abrt-action-check-oops-for-hw-error + %{_mandir}/man1/abrt-harvest-vmcore.1* + %{_mandir}/man5/abrt-vmcore.conf.5* +diff --git a/configure.ac b/configure.ac +index 2958807..b372e12 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -429,6 +429,7 @@ AC_CONFIG_FILES([ + src/plugins/abrt-action-install-debuginfo + src/plugins/abrt-action-analyze-vmcore + src/plugins/abrt-action-check-oops-for-hw-error ++ src/plugins/abrt-action-check-oops-for-alt-component + src/python-problem/Makefile + src/python-problem/doc/Makefile + src/python-problem/tests/Makefile +diff --git a/examples/oops-32bit-graphics.right b/examples/oops-32bit-graphics.right +new file mode 100644 +index 0000000..9891d02 +--- /dev/null ++++ b/examples/oops-32bit-graphics.right +@@ -0,0 +1,73 @@ ++abrt-dump-oops: Found oopses: 2 ++abrt-dump-oops: Kernel is tainted 'GD' ++ ++Version: 4.0.3-201.fc21.i686+PAE ++BUG: unable to handle kernel NULL pointer dereference at 00000008 ++IP: [] radeon_audio_detect+0x54/0x140 [radeon] ++*pdpt = 0000000033260001 *pde = 0000000000000000 ++Oops: 0000 [#1] SMP ++Modules linked in: radeon i2c_algo_bit drm_kms_helper e1000 ttm e100 drm ata_generic pata_acpi mii ++CPU: 0 PID: 222 Comm: plymouthd Not tainted 4.0.3-201.fc21.i686+PAE #1 ++Hardware name: Dell Inc. Dimension 4700 /0M3918, BIOS A10 01/04/2006 ++task: f325f640 ti: f33b8000 task.ti: f33b8000 ++EIP: 0060:[] EFLAGS: 00010246 CPU: 0 ++EIP is at radeon_audio_detect+0x54/0x140 [radeon] ++EAX: f6884240 EBX: f339dc00 ECX: 00000000 EDX: 00000000 ++ESI: f3364320 EDI: f681c000 EBP: f33b9d14 ESP: f33b9d04 ++ DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 ++CR0: 80050033 CR2: 00000008 CR3: 33209000 CR4: 000007f0 ++Stack: ++ f6884240 f339dc00 00000001 f7374800 f33b9d48 f833bb78 00000001 f33be600 ++ 4ac04888 00000000 f33be600 f33b9d68 00000001 f681c000 f339dc30 f339dc00 ++ 00000001 f33b9d94 f809287b f3259580 f775d500 f325f640 f33b9fec f33e0540 ++Call Trace: ++ [] radeon_dvi_detect+0x2d8/0x4b0 [radeon] ++ [] drm_helper_probe_single_connector_modes_merge_bits+0x27b/0x4a0 [drm_kms_helper] ++ [] ? mutex_lock+0x10/0x30 ++ [] drm_helper_probe_single_connector_modes+0x17/0x20 [drm_kms_helper] ++ [] drm_mode_getconnector+0x28d/0x320 [drm] ++ [] ? drm_mode_getcrtc+0xd0/0xd0 [drm] ++ [] drm_ioctl+0x1f5/0x560 [drm] ++ [] ? drm_mode_getcrtc+0xd0/0xd0 [drm] ++ [] ? do_seccomp+0x2d7/0x6e0 ++ [] ? _copy_to_user+0x26/0x30 ++ [] ? __pm_runtime_resume+0x51/0x70 ++ [] ? posix_get_boottime+0x7/0x30 ++ [] radeon_drm_ioctl+0x3e/0x70 [radeon] ++ [] ? 0xf8315000 ++ [] do_vfs_ioctl+0x322/0x540 ++ [] ? inode_has_perm.isra.32+0x32/0x50 ++ [] ? file_has_perm+0x97/0xa0 ++ [] ? selinux_file_ioctl+0x4b/0xe0 ++ [] SyS_ioctl+0x60/0x90 ++ [] ? posix_get_boottime+0x7/0x30 ++ [] ? posix_get_boottime+0x7/0x30 ++ [] sysenter_do_call+0x12/0x12 ++ [] ? posix_get_boottime+0x7/0x30 ++ [] ? posix_get_boottime+0x7/0x30 ++Code: 44 8b 93 0c 02 00 00 8b 02 8b b2 20 01 00 00 8b 78 18 8b 86 e4 00 00 00 85 c0 74 29 83 7d f0 01 74 35 8b 50 10 8b 8f 70 1c 00 00 <8b> 59 08 85 db 74 0c 89 f8 31 c9 ff d3 8b 86 e4 00 00 00 c7 40 ++EIP: [] radeon_audio_detect+0x54/0x140 [radeon] SS:ESP 0068:f33b9d04 ++CR2: 0000000000000008 ++ ++Version: 4.0.3-201.fc21.i686+PAE ++WARNING: CPU: 1 PID: 263 at lib/list_debug.c:62 __list_del_entry+0xf4/0x100() ++list_del corruption. next->prev should be f3215564, but was (null) ++Modules linked in: radeon i2c_algo_bit drm_kms_helper e1000 ttm e100 drm ata_generic pata_acpi mii ++CPU: 1 PID: 263 Comm: plymouth Tainted: G D 4.0.3-201.fc21.i686+PAE #1 ++Hardware name: Dell Inc. Dimension 4700 /0M3918, BIOS A10 01/04/2006 ++ c0d3c9c7 b9171629 00000000 f3337eb4 c0a878b6 f3337ef8 f3337ee8 c0466c1b ++ c0c929c4 f3337f18 00000107 c0c91c9f 0000003e c0712794 0000003e c0712794 ++ 00000000 00000001 f32150a0 f3337f04 c0466c8e 00000009 f3337ef8 c0c929c4 ++Call Trace: ++ [] dump_stack+0x41/0x52 ++ [] warn_slowpath_common+0x8b/0xc0 ++ [] ? __list_del_entry+0xf4/0x100 ++ [] ? __list_del_entry+0xf4/0x100 ++ [] warn_slowpath_fmt+0x3e/0x60 ++ [] __list_del_entry+0xf4/0x100 ++ [] cgroup_exit+0x33/0x100 ++ [] do_exit+0x2b8/0x950 ++ [] ? __do_page_fault+0x252/0x4a0 ++ [] do_group_exit+0x37/0xa0 ++ [] SyS_exit_group+0x16/0x20 ++ [] sysenter_do_call+0x12/0x12 +diff --git a/examples/oops-32bit-graphics.test b/examples/oops-32bit-graphics.test +new file mode 100644 +index 0000000..da3d716 +--- /dev/null ++++ b/examples/oops-32bit-graphics.test +@@ -0,0 +1,71 @@ ++BUG: unable to handle kernel NULL pointer dereference at 00000008 ++IP: [] radeon_audio_detect+0x54/0x140 [radeon] ++*pdpt = 0000000033260001 *pde = 0000000000000000 ++Oops: 0000 [#1] SMP ++Modules linked in: radeon i2c_algo_bit drm_kms_helper e1000 ttm e100 drm ata_generic pata_acpi mii ++CPU: 0 PID: 222 Comm: plymouthd Not tainted 4.0.3-201.fc21.i686+PAE #1 ++Hardware name: Dell Inc. Dimension 4700 /0M3918, BIOS A10 01/04/2006 ++task: f325f640 ti: f33b8000 task.ti: f33b8000 ++EIP: 0060:[] EFLAGS: 00010246 CPU: 0 ++EIP is at radeon_audio_detect+0x54/0x140 [radeon] ++EAX: f6884240 EBX: f339dc00 ECX: 00000000 EDX: 00000000 ++ESI: f3364320 EDI: f681c000 EBP: f33b9d14 ESP: f33b9d04 ++ DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 ++CR0: 80050033 CR2: 00000008 CR3: 33209000 CR4: 000007f0 ++Stack: ++ f6884240 f339dc00 00000001 f7374800 f33b9d48 f833bb78 00000001 f33be600 ++ 4ac04888 00000000 f33be600 f33b9d68 00000001 f681c000 f339dc30 f339dc00 ++ 00000001 f33b9d94 f809287b f3259580 f775d500 f325f640 f33b9fec f33e0540 ++Call Trace: ++ [] radeon_dvi_detect+0x2d8/0x4b0 [radeon] ++ [] drm_helper_probe_single_connector_modes_merge_bits+0x27b/0x4a0 [drm_kms_helper] ++ [] ? mutex_lock+0x10/0x30 ++ [] drm_helper_probe_single_connector_modes+0x17/0x20 [drm_kms_helper] ++ [] drm_mode_getconnector+0x28d/0x320 [drm] ++ [] ? drm_mode_getcrtc+0xd0/0xd0 [drm] ++ [] drm_ioctl+0x1f5/0x560 [drm] ++ [] ? drm_mode_getcrtc+0xd0/0xd0 [drm] ++ [] ? do_seccomp+0x2d7/0x6e0 ++ [] ? _copy_to_user+0x26/0x30 ++ [] ? __pm_runtime_resume+0x51/0x70 ++ [] ? posix_get_boottime+0x7/0x30 ++ [] radeon_drm_ioctl+0x3e/0x70 [radeon] ++ [] ? 0xf8315000 ++ [] do_vfs_ioctl+0x322/0x540 ++ [] ? inode_has_perm.isra.32+0x32/0x50 ++ [] ? file_has_perm+0x97/0xa0 ++ [] ? selinux_file_ioctl+0x4b/0xe0 ++ [] SyS_ioctl+0x60/0x90 ++ [] ? posix_get_boottime+0x7/0x30 ++ [] ? posix_get_boottime+0x7/0x30 ++ [] sysenter_do_call+0x12/0x12 ++ [] ? posix_get_boottime+0x7/0x30 ++ [] ? posix_get_boottime+0x7/0x30 ++Code: 44 8b 93 0c 02 00 00 8b 02 8b b2 20 01 00 00 8b 78 18 8b 86 e4 00 00 00 85 c0 74 29 83 7d f0 01 74 35 8b 50 10 8b 8f 70 1c 00 00 <8b> 59 08 85 db 74 0c 89 f8 31 c9 ff d3 8b 86 e4 00 00 00 c7 40 ++EIP: [] radeon_audio_detect+0x54/0x140 [radeon] SS:ESP 0068:f33b9d04 ++CR2: 0000000000000008 ++---[ end trace c37768228d821e9f ]--- ++------------[ cut here ]------------ ++WARNING: CPU: 1 PID: 263 at lib/list_debug.c:62 __list_del_entry+0xf4/0x100() ++list_del corruption. next->prev should be f3215564, but was (null) ++Modules linked in: radeon i2c_algo_bit drm_kms_helper e1000 ttm e100 drm ata_generic pata_acpi mii ++CPU: 1 PID: 263 Comm: plymouth Tainted: G D 4.0.3-201.fc21.i686+PAE #1 ++Hardware name: Dell Inc. Dimension 4700 /0M3918, BIOS A10 01/04/2006 ++ c0d3c9c7 b9171629 00000000 f3337eb4 c0a878b6 f3337ef8 f3337ee8 c0466c1b ++ c0c929c4 f3337f18 00000107 c0c91c9f 0000003e c0712794 0000003e c0712794 ++ 00000000 00000001 f32150a0 f3337f04 c0466c8e 00000009 f3337ef8 c0c929c4 ++Call Trace: ++ [] dump_stack+0x41/0x52 ++ [] warn_slowpath_common+0x8b/0xc0 ++ [] ? __list_del_entry+0xf4/0x100 ++ [] ? __list_del_entry+0xf4/0x100 ++ [] warn_slowpath_fmt+0x3e/0x60 ++ [] __list_del_entry+0xf4/0x100 ++ [] cgroup_exit+0x33/0x100 ++ [] do_exit+0x2b8/0x950 ++ [] ? __do_page_fault+0x252/0x4a0 ++ [] do_group_exit+0x37/0xa0 ++ [] SyS_exit_group+0x16/0x20 ++ [] sysenter_do_call+0x12/0x12 ++---[ end trace c37768228d821ea0 ]--- ++ +diff --git a/examples/oops-noveau.right b/examples/oops-noveau.right +new file mode 100644 +index 0000000..d6c87a2 +--- /dev/null ++++ b/examples/oops-noveau.right +@@ -0,0 +1,39 @@ ++abrt-dump-oops: Found oopses: 1 ++ ++Version: 3.19.5-200.fc21.x86_64 ++WARNING: CPU: 0 PID: 16684 at arch/x86/mm/ioremap.c:197 __ioremap_caller+0x2aa/0x3a0() ++Info: mapping multiple BARs. Your kernel is fine. ++Modules linked in: ++ bnep bluetooth rfkill xt_CHECKSUM iptable_mangle ipt_MASQUERADE nf_nat_masquerade_ipv4 iptable_nat nf_nat_ipv4 nf_nat nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack bridge stp llc snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_codec_generic snd_hda_intel snd_hda_controller snd_hda_codec fuse snd_hwdep snd_seq snd_seq_device snd_pcm snd_timer edac_core usblp kvm_amd snd serio_raw kvm k10temp edac_mce_amd sp5100_tco i2c_piix4 shpchp soundcore acpi_cpufreq nfsd auth_rpcgss nfs_acl lockd grace sunrpc ata_generic pata_acpi nouveau video mxm_wmi wmi i2c_algo_bit drm_kms_helper ttm drm pata_atiixp r8169 mii ++CPU: 0 PID: 16684 Comm: firefox Not tainted 3.19.5-200.fc21.x86_64 #1 ++Hardware name: Gigabyte Technology Co., Ltd. To be filled by O.E.M./970A-DS3P, BIOS F1 04/08/2013 ++ 0000000000000000 0000000087b0a5f7 ffff8802e1b9b768 ffffffff8176ead5 ++ 0000000000000000 ffff8802e1b9b7c0 ffff8802e1b9b7a8 ffffffff8109bc1a ++ ffff8802e1b9b7d8 ffffc9001c180000 00000000d206d000 0000000000100000 ++Call Trace: ++ [] dump_stack+0x45/0x57 ++ [] warn_slowpath_common+0x8a/0xc0 ++ [] warn_slowpath_fmt+0x55/0x70 ++ [] __ioremap_caller+0x2aa/0x3a0 ++ [] ioremap_nocache+0x17/0x20 ++ [] nouveau_barobj_ctor+0xd6/0x110 [nouveau] ++ [] nouveau_object_ctor+0x41/0xf0 [nouveau] ++ [] nouveau_bar_alloc+0x3f/0x70 [nouveau] ++ [] nouveau_gpuobj_create_+0x2a5/0x2f0 [nouveau] ++ [] _nouveau_gpuobj_ctor+0x4c/0x70 [nouveau] ++ [] nouveau_object_ctor+0x41/0xf0 [nouveau] ++ [] nouveau_gpuobj_new+0x5b/0x80 [nouveau] ++ [] nouveau_vm_get+0x183/0x2f0 [nouveau] ++ [] ? map_vm_area+0x2a/0x40 ++ [] nouveau_bo_vma_add+0x34/0x90 [nouveau] ++ [] nouveau_channel_prep+0x269/0x3b0 [nouveau] ++ [] nouveau_channel_new+0x83/0x800 [nouveau] ++ [] ? nvif_device_init+0x3a/0x50 [nouveau] ++ [] ? kmem_cache_alloc_trace+0x1f6/0x230 ++ [] nouveau_abi16_ioctl_channel_alloc+0x120/0x3a0 [nouveau] ++ [] drm_ioctl+0x1df/0x680 [drm] ++ [] ? handle_mm_fault+0x8a6/0xff0 ++ [] nouveau_drm_ioctl+0x72/0xd0 [nouveau] ++ [] do_vfs_ioctl+0x2f8/0x500 ++ [] SyS_ioctl+0x81/0xa0 ++ [] system_call_fastpath+0x12/0x17 +diff --git a/examples/oops-noveau.test b/examples/oops-noveau.test +new file mode 100644 +index 0000000..8678a7d +--- /dev/null ++++ b/examples/oops-noveau.test +@@ -0,0 +1,38 @@ ++------------[ cut here ]------------ ++WARNING: CPU: 0 PID: 16684 at arch/x86/mm/ioremap.c:197 __ioremap_caller+0x2aa/0x3a0() ++Info: mapping multiple BARs. Your kernel is fine. ++Modules linked in: ++ bnep bluetooth rfkill xt_CHECKSUM iptable_mangle ipt_MASQUERADE nf_nat_masquerade_ipv4 iptable_nat nf_nat_ipv4 nf_nat nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack bridge stp llc snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_codec_generic snd_hda_intel snd_hda_controller snd_hda_codec fuse snd_hwdep snd_seq snd_seq_device snd_pcm snd_timer edac_core usblp kvm_amd snd serio_raw kvm k10temp edac_mce_amd sp5100_tco i2c_piix4 shpchp soundcore acpi_cpufreq nfsd auth_rpcgss nfs_acl lockd grace sunrpc ata_generic pata_acpi nouveau video mxm_wmi wmi i2c_algo_bit drm_kms_helper ttm drm pata_atiixp r8169 mii ++CPU: 0 PID: 16684 Comm: firefox Not tainted 3.19.5-200.fc21.x86_64 #1 ++Hardware name: Gigabyte Technology Co., Ltd. To be filled by O.E.M./970A-DS3P, BIOS F1 04/08/2013 ++ 0000000000000000 0000000087b0a5f7 ffff8802e1b9b768 ffffffff8176ead5 ++ 0000000000000000 ffff8802e1b9b7c0 ffff8802e1b9b7a8 ffffffff8109bc1a ++ ffff8802e1b9b7d8 ffffc9001c180000 00000000d206d000 0000000000100000 ++Call Trace: ++ [] dump_stack+0x45/0x57 ++ [] warn_slowpath_common+0x8a/0xc0 ++ [] warn_slowpath_fmt+0x55/0x70 ++ [] __ioremap_caller+0x2aa/0x3a0 ++ [] ioremap_nocache+0x17/0x20 ++ [] nouveau_barobj_ctor+0xd6/0x110 [nouveau] ++ [] nouveau_object_ctor+0x41/0xf0 [nouveau] ++ [] nouveau_bar_alloc+0x3f/0x70 [nouveau] ++ [] nouveau_gpuobj_create_+0x2a5/0x2f0 [nouveau] ++ [] _nouveau_gpuobj_ctor+0x4c/0x70 [nouveau] ++ [] nouveau_object_ctor+0x41/0xf0 [nouveau] ++ [] nouveau_gpuobj_new+0x5b/0x80 [nouveau] ++ [] nouveau_vm_get+0x183/0x2f0 [nouveau] ++ [] ? map_vm_area+0x2a/0x40 ++ [] nouveau_bo_vma_add+0x34/0x90 [nouveau] ++ [] nouveau_channel_prep+0x269/0x3b0 [nouveau] ++ [] nouveau_channel_new+0x83/0x800 [nouveau] ++ [] ? nvif_device_init+0x3a/0x50 [nouveau] ++ [] ? kmem_cache_alloc_trace+0x1f6/0x230 ++ [] nouveau_abi16_ioctl_channel_alloc+0x120/0x3a0 [nouveau] ++ [] drm_ioctl+0x1df/0x680 [drm] ++ [] ? handle_mm_fault+0x8a6/0xff0 ++ [] nouveau_drm_ioctl+0x72/0xd0 [nouveau] ++ [] do_vfs_ioctl+0x2f8/0x500 ++ [] SyS_ioctl+0x81/0xa0 ++ [] system_call_fastpath+0x12/0x17 ++---[ end trace d72a6ef9c44bed66 ]--- +diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am +index d90bb76..aa426ff 100644 +--- a/src/plugins/Makefile.am ++++ b/src/plugins/Makefile.am +@@ -74,6 +74,7 @@ PYTHON_FILES = \ + abrt-action-list-dsos \ + abrt-action-analyze-core \ + abrt-action-analyze-vulnerability \ ++ abrt-action-check-oops-for-alt-component.in \ + abrt-action-check-oops-for-hw-error.in \ + abrt-action-perform-ccpp-analysis.in \ + abrt-action-notify +@@ -101,6 +102,7 @@ EXTRA_DIST = \ + if BUILD_ADDON_VMCORE + bin_SCRIPTS += \ + abrt-action-analyze-vmcore \ ++ abrt-action-check-oops-for-alt-component \ + abrt-action-check-oops-for-hw-error + + dist_events_DATA += \ +@@ -115,6 +117,7 @@ PYTHON_FILES += \ + EXTRA_DIST += \ + analyze_VMcore.xml.in \ + abrt-action-analyze-vmcore \ ++ abrt-action-check-oops-for-alt-component \ + abrt-action-check-oops-for-hw-error + endif + +diff --git a/src/plugins/abrt-action-check-oops-for-alt-component.in b/src/plugins/abrt-action-check-oops-for-alt-component.in +new file mode 100644 +index 0000000..3dce42e +--- /dev/null ++++ b/src/plugins/abrt-action-check-oops-for-alt-component.in +@@ -0,0 +1,93 @@ ++#!/usr/bin/python3 -u ++ ++import sys ++import os ++import locale ++import gettext ++import hashlib ++import re ++ ++GETTEXT_PROGNAME = "abrt" ++ ++_ = gettext.lgettext ++ ++tags = [ ++"WARNING:", ++"[ER]IP[^:]", ++" \[<[a-f0-9]{8,16}>\]" ++] ++ ++checks = [ ++ ("i915", "xorg-x11-drv-intel"), ++ ("nouveau", "xorg-x11-drv-nouveau"), ++ ("radeon", "xorg-x11-drv-ati"), ++ ("qxl", "xorg-x11-drv-qxl"), ++] ++ ++def check_tag(line): ++ for tag in tags: ++ if re.match(tag, line) is not None: ++ for (mod, component) in checks: ++ if re.search(mod, line) is not None: ++ return component ++ return None ++ ++def get_new_component(filename): ++ try: ++ f = open(filename, "r") ++ except IOError as e: ++ return None ++ for line in f: ++ c = check_tag(line) ++ if c is not None: ++ f.close() ++ return c ++ f.close() ++ return None ++ ++def open_or_die(filename, mode): ++ try: ++ f = open(filename, mode) ++ except IOError as e: ++ sys.stderr.write(str(e) + "\n") ++ sys.exit(1) ++ return f ++ ++ ++if __name__ == "__main__": ++ try: ++ locale.setlocale(locale.LC_ALL, "") ++ except locale.Error: ++ os.environ['LC_ALL'] = 'C' ++ locale.setlocale(locale.LC_ALL, "") ++ ++ # Defeat "AttributeError: 'module' object has no attribute 'nl_langinfo'" ++ try: ++ gettext.bind_textdomain_codeset(GETTEXT_PROGNAME, ++ locale.nl_langinfo(locale.CODESET)) ++ except AttributeError: ++ pass ++ ++ gettext.bindtextdomain(GETTEXT_PROGNAME, '/usr/share/locale') ++ gettext.textdomain(GETTEXT_PROGNAME) ++ ++ # ++ # Certain drivers are in the kernel but need to be tracked separtely ++ # in other components. This fixes those components. ++ # ++ ++ new_component = get_new_component("backtrace") ++ if new_component is None: ++ sys.exit(0) ++ ++ print("Oops looks like a problem in kernel module, new component {0}" ++ .format(new_component)) ++ ++ f = open_or_die("component", "w") ++ f.write(new_component) ++ f.close() ++ ++ # keep kernel maint in the loop even if the component gets changed ++ f = open_or_die("extra-cc", "w") ++ f.write("kernel-maint@redhat.com") ++ f.close() +diff --git a/src/plugins/koops_event.conf b/src/plugins/koops_event.conf +index a811077..2379d7d 100644 +--- a/src/plugins/koops_event.conf ++++ b/src/plugins/koops_event.conf +@@ -8,6 +8,9 @@ EVENT=post-create type=Kerneloops + abrt-action-check-oops-for-hw-error + fi + { ++ abrt-action-check-oops-for-alt-component || true ++ } && ++ { + # run abrt-action-analyze-oops only if check-hw-error didn't create the + # required files + if test ! -f uuid -a ! -f duphash; then +diff --git a/src/plugins/vmcore_event.conf b/src/plugins/vmcore_event.conf +index 43fa7f0..6870332 100644 +--- a/src/plugins/vmcore_event.conf ++++ b/src/plugins/vmcore_event.conf +@@ -29,6 +29,7 @@ EVENT=post-create type=vmcore + # Do not fail the event (->do not delete problem dir) + # if check-oops-for-hw-error exits nonzero: + { abrt-action-check-oops-for-hw-error || true; } ++ { abrt-action-check-oops-for-alt-component || true; } + + # analyze + EVENT=analyze_VMcore type=vmcore +-- +2.4.3 + diff --git a/0007-ccpp-do-not-crash-if-generate_core_backtrace-fails.patch b/0007-ccpp-do-not-crash-if-generate_core_backtrace-fails.patch new file mode 100644 index 0000000..811acf1 --- /dev/null +++ b/0007-ccpp-do-not-crash-if-generate_core_backtrace-fails.patch @@ -0,0 +1,29 @@ +From 96c50b9c18aabf675e23f6df3ec584610ae5019a Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 17 Jul 2015 10:25:50 +0200 +Subject: [PATCH] ccpp: do not crash if generate_core_backtrace fails + +Add a missing return statement in the error code execution path. + +Related: rhbz#1243791 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 8ccef06..809b45e 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -426,6 +426,7 @@ static void create_core_backtrace(pid_t tid, const char *executable, int signal_ + { + log("Failed to create core_backtrace: %s", error_message); + free(error_message); ++ return; + } + + dd_save_text(dd, FILENAME_CORE_BACKTRACE, core_bt); +-- +2.4.3 + diff --git a/0008-applet-do-not-crash-if-the-new-problem-has-no-comman.patch b/0008-applet-do-not-crash-if-the-new-problem-has-no-comman.patch new file mode 100644 index 0000000..f820d9a --- /dev/null +++ b/0008-applet-do-not-crash-if-the-new-problem-has-no-comman.patch @@ -0,0 +1,32 @@ +From cdc5824e4488d419616cdfaa87ac5f6cf2a4dfea Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 17 Jul 2015 10:42:01 +0200 +Subject: [PATCH] applet: do not crash if the new problem has no command_line + +Related: rhbz#1243791 + +Signed-off-by: Jakub Filak +--- + src/applet/applet.c | 6 +++++- + 1 file changed, 5 insertions(+), 1 deletion(-) + +diff --git a/src/applet/applet.c b/src/applet/applet.c +index 296e1b4..5bdedc1 100644 +--- a/src/applet/applet.c ++++ b/src/applet/applet.c +@@ -661,7 +661,11 @@ static void notify_problem_list(GList *problems) + app = problem_create_app_from_env (problem_info_get_env(pi), problem_info_get_pid(pi)); + + if (!app) +- app = problem_create_app_from_cmdline (problem_info_get_command_line(pi)); ++ { ++ const char *const cmd_line = problem_info_get_command_line(pi); ++ if (cmd_line != NULL) ++ app = problem_create_app_from_cmdline(cmd_line); ++ } + + /* For each problem we'll need to know: + * - Whether or not the crash happened in an “app” +-- +2.4.3 + diff --git a/0009-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch b/0009-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch new file mode 100644 index 0000000..0920b06 --- /dev/null +++ b/0009-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch @@ -0,0 +1,35 @@ +From 5349718f775c39124e789457d2c012ac23c81619 Mon Sep 17 00:00:00 2001 +From: "knoha@redhat.com" +Date: Fri, 24 Jul 2015 07:56:02 +0200 +Subject: [PATCH] abrt-merge-pstoreoops: merge files in descending order + +fs/pstore reads the data from kmsg_dump_get_buffer(), which starts at +the end of the kmsg buffer, in a while loop and increases Part no. in +each iteration. + +Related: rhbz#1233662 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-merge-pstoreoops.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/hooks/abrt-merge-pstoreoops.c b/src/hooks/abrt-merge-pstoreoops.c +index 6fc3109..36f1e0b 100644 +--- a/src/hooks/abrt-merge-pstoreoops.c ++++ b/src/hooks/abrt-merge-pstoreoops.c +@@ -64,9 +64,9 @@ int compare_oops_texts(const void *a, const void *b) + return -1; + if (aa->panic_no > bb->panic_no) + return 1; +- if (aa->part_no < bb->part_no) ++ if (aa->part_no > bb->part_no) + return -1; +- return (aa->part_no > bb->part_no); ++ return (aa->part_no < bb->part_no); + } + + int main(int argc, char **argv) +-- +2.4.3 + diff --git a/0010-abrt-auto-reporting-fix-related-to-conditional-compi.patch b/0010-abrt-auto-reporting-fix-related-to-conditional-compi.patch new file mode 100644 index 0000000..ea1aa95 --- /dev/null +++ b/0010-abrt-auto-reporting-fix-related-to-conditional-compi.patch @@ -0,0 +1,33 @@ +From 03be49244ab5f4fdd7521254dd6afedbd277ceea Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 28 Jul 2015 13:17:25 +0200 +Subject: [PATCH] abrt-auto-reporting: fix related to conditional compilation + +We discovered that conditional compilation in abrt-auto-reporting does not +work. We forgot add -DAUTHENTICATED_AUTOREPORTING=1 flag if +AUTHENTICATED_AUTOREPORTING is enabled. + +Related to rhbz#1191572 +--- + src/daemon/Makefile.am | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/src/daemon/Makefile.am b/src/daemon/Makefile.am +index a8f3fa2..563923a 100644 +--- a/src/daemon/Makefile.am ++++ b/src/daemon/Makefile.am +@@ -122,6 +122,11 @@ abrt_auto_reporting_CPPFLAGS = \ + -I$(srcdir)/../lib \ + $(LIBREPORT_CFLAGS) \ + -D_GNU_SOURCE ++ ++if AUTHENTICATED_AUTOREPORTING ++abrt_auto_reporting_CPPFLAGS += -DAUTHENTICATED_AUTOREPORTING=1 ++endif ++ + abrt_auto_reporting_LDADD = \ + ../lib/libabrt.la \ + $(LIBREPORT_LIBS) +-- +2.4.3 + diff --git a/0011-doc-fix-related-to-conditional-compilation-of-man-pa.patch b/0011-doc-fix-related-to-conditional-compilation-of-man-pa.patch new file mode 100644 index 0000000..59ed02c --- /dev/null +++ b/0011-doc-fix-related-to-conditional-compilation-of-man-pa.patch @@ -0,0 +1,44 @@ +From f1e5d631932a05e3147b6af73ce1230150f9f979 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 28 Jul 2015 16:20:47 +0200 +Subject: [PATCH] doc: fix related to conditional compilation of man page + +abrt-auto-reporting.txt is a copy of either +abrt-auto-reporting-authenticated.txt or +abrt-auto-reporting-unauthenticated.txt. abrt-auto-reporting.txt file always +exists because MAN1_TXT variable contains it and is distributed (the file is listed +in the EXTRA_DIST variable). It would be difficult to ensure +to have abrt-auto-reporting.txt in the MAN1_TXT and exclude it +from the EXTRA_DIST. So enforce copy, to get the right version of man page, seems +like the easiest way. + +Related to rhbz#1191572 + +Signed-off-by: Matej Habrnal +--- + doc/Makefile.am | 9 +++++++++ + 1 file changed, 9 insertions(+) + +diff --git a/doc/Makefile.am b/doc/Makefile.am +index f39c3bf..fdd08cf 100644 +--- a/doc/Makefile.am ++++ b/doc/Makefile.am +@@ -82,6 +82,15 @@ MAN_SOURCE = + MAN_SOURCE += abrt-auto-reporting-authenticated.txt + MAN_SOURCE += abrt-auto-reporting-unauthenticated.txt + ++# abrt-auto-reporting.txt is a copy of either ++# abrt-auto-reporting-authenticated.txt or ++# abrt-auto-reporting-unauthenticated.txt. abrt-auto-reporting.txt file always ++# exists because MAN1_TXT variable contains it and is distributed (the file is listed ++# in the EXTRA_DIST variable). It would be difficult to ensure ++# to have abrt-auto-reporting.txt in the MAN1_TXT and exclude it ++# from the EXTRA_DIST. So enforce copy, to get the right version of man page, seems ++# like the easiest way. ++.PHONY: abrt-auto-reporting.txt + if AUTHENTICATED_AUTOREPORTING + abrt-auto-reporting.txt: abrt-auto-reporting-authenticated.txt + else +-- +2.4.3 + diff --git a/0012-dbus-api-unify-reporting-of-errors.patch b/0012-dbus-api-unify-reporting-of-errors.patch new file mode 100644 index 0000000..59568ab --- /dev/null +++ b/0012-dbus-api-unify-reporting-of-errors.patch @@ -0,0 +1,99 @@ +From 0c3a29b70992627481af789dab50247728bcedf1 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 11 Aug 2015 09:54:55 +0200 +Subject: [PATCH] dbus-api: unify reporting of errors + +User ERR_PTR for failures in all functions because some of the functions +use NULL as a valid response (NULL is an empty GList). + +Related: rhbz#1224984 + +Signed-off-by: Jakub Filak +--- + src/include/libabrt.h | 16 +++++++++------- + src/lib/problem_api_dbus.c | 2 +- + 2 files changed, 10 insertions(+), 8 deletions(-) + +diff --git a/src/include/libabrt.h b/src/include/libabrt.h +index 4e73a0d..da565f9 100644 +--- a/src/include/libabrt.h ++++ b/src/include/libabrt.h +@@ -163,7 +163,7 @@ void koops_print_suspicious_strings_filtered(const regex_t **filterout); + + Requires authorization + +- @return 0 if successfull non-zeru on failure ++ @return 0 if successful; non-zero on failure + */ + int chown_dir_over_dbus(const char *problem_dir_path); + +@@ -181,7 +181,7 @@ int test_exist_over_dbus(const char *problem_id, const char *element_name); + + Might require authorization + +- @return Positive number if such the proble is complete, 0 if doesn't and negative number if an error occurs. ++ @return Positive number if the problem is complete, 0 if doesn't and negative number if an error occurs. + */ + int dbus_problem_is_complete(const char *problem_id); + +@@ -198,7 +198,8 @@ char *load_text_over_dbus(const char *problem_id, const char *element_name); + @brief Delets multiple problems specified by their id (as returned from problem_data_save) + + @param problem_dir_paths List of problem ids +- @return 0 if operation was successfull, non-zero on failure ++ ++ @return 0 if operation was successful, non-zero on failure + */ + + int delete_problem_dirs_over_dbus(const GList *problem_dir_paths); +@@ -206,21 +207,21 @@ int delete_problem_dirs_over_dbus(const GList *problem_dir_paths); + /** + @brief Fetches given problem elements for specified problem id + +- @return on failures returns non zero value and emits error message ++ @return returns non-zero value on failures and prints error message + */ + int fill_problem_data_over_dbus(const char *problem_dir_path, const char **elements, problem_data_t *problem_data); + + /** + @brief Fetches problem information for specified problem id + +- @return problem_data_t or NULL on failure ++ @return a valid pointer to problem_data_t or ERR_PTR on failure + */ + problem_data_t *get_problem_data_dbus(const char *problem_dir_path); + + /** + @brief Fetches full problem data for specified problem id + +- @return problem_data_t or ERR_PTR on failure ++ @return a valid pointer to problem_data_t or ERR_PTR on failure + */ + problem_data_t *get_full_problem_data_over_dbus(const char *problem_dir_path); + +@@ -228,7 +229,8 @@ problem_data_t *get_full_problem_data_over_dbus(const char *problem_dir_path); + @brief Fetches all problems from problem database + + @param authorize If set to true will try to fetch even problems owned by other users (will require root authorization over policy kit) +- @return List of problem ids or NULL on failure ++ ++ @return List of problem ids or ERR_PTR on failure (NULL is an empty list) + */ + GList *get_problems_over_dbus(bool authorize); + +diff --git a/src/lib/problem_api_dbus.c b/src/lib/problem_api_dbus.c +index ce5c47b..0bf86e2 100644 +--- a/src/lib/problem_api_dbus.c ++++ b/src/lib/problem_api_dbus.c +@@ -165,7 +165,7 @@ problem_data_t *get_problem_data_dbus(const char *problem_dir_path) + { + error_msg(_("Can't get problem data from abrt-dbus")); + problem_data_free(pd); +- return NULL; ++ return ERR_PTR; + } + + return pd; +-- +2.4.3 + diff --git a/0013-cli-fix-testing-of-DBus-API-return-codes.patch b/0013-cli-fix-testing-of-DBus-API-return-codes.patch new file mode 100644 index 0000000..39d6e2c --- /dev/null +++ b/0013-cli-fix-testing-of-DBus-API-return-codes.patch @@ -0,0 +1,56 @@ +From a4412db28021552e1399695b3f5435ccbb03bf08 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 11 Aug 2015 10:01:53 +0200 +Subject: [PATCH] cli: fix testing of DBus API return codes + +The DBus wrapper functions uses ERR_PTR to report an error, so the +callers has to test the returned pointers for NULL and for ERR_PTR. + +Related: rhbz#1224984 + +Signed-off-by: Jakub Filak +--- + src/cli/list.c | 3 +++ + src/cli/status.c | 5 ++++- + 2 files changed, 7 insertions(+), 1 deletion(-) + +diff --git a/src/cli/list.c b/src/cli/list.c +index 68dda47..d069695 100644 +--- a/src/cli/list.c ++++ b/src/cli/list.c +@@ -36,6 +36,9 @@ static problem_data_t *load_problem_data(const char *problem_id) + + /* First, check if there is a problem with the passed id */ + GList *problems = get_problems_over_dbus(g_cli_authenticate); ++ if (problems == ERR_PTR) ++ return NULL; ++ + GList *item = g_list_find_custom(problems, problem_id, (GCompareFunc)strcmp); + + /* (git requires at least 5 char hash prefix, we do the same) */ +diff --git a/src/cli/status.c b/src/cli/status.c +index 0635289..3620cea 100644 +--- a/src/cli/status.c ++++ b/src/cli/status.c +@@ -27,6 +27,9 @@ static unsigned int count_problem_dirs(unsigned long since) + unsigned count = 0; + + GList *problems = get_problems_over_dbus(g_cli_authenticate); ++ if (problems == ERR_PTR) ++ return count; ++ + for (GList *iter = problems; iter != NULL; iter = g_list_next(iter)) + { + const char *problem_id = (const char *)iter->data; +@@ -37,7 +40,7 @@ static unsigned int count_problem_dirs(unsigned long since) + } + + char *time_str = load_text_over_dbus(problem_id, FILENAME_LAST_OCCURRENCE); +- if (time_str == NULL) ++ if (time_str == ERR_PTR || time_str == NULL) + { + log_debug("Not counting problem %s: failed to get time element", problem_id); + continue; +-- +2.4.3 + diff --git a/0014-ccpp-fix-comment-related-to-MakeCompatCore-option-in.patch b/0014-ccpp-fix-comment-related-to-MakeCompatCore-option-in.patch new file mode 100644 index 0000000..1fdc30f --- /dev/null +++ b/0014-ccpp-fix-comment-related-to-MakeCompatCore-option-in.patch @@ -0,0 +1,59 @@ +From affc4b3e644931820180aec57e128106e44b626c Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 11 Aug 2015 16:17:40 +0200 +Subject: [PATCH] ccpp: fix comment related to 'MakeCompatCore' option in + CCpp.conf + +The comment fits only on the default core_pattern template. +If the core_pattern is not default, the comment does not fit. + +Related to rhbz#1252384 + +Signed-off-by: Matej Habrnal +--- + doc/abrt-CCpp.conf.txt | 9 +++++++-- + src/hooks/CCpp.conf | 9 +++++++-- + 2 files changed, 14 insertions(+), 4 deletions(-) + +diff --git a/doc/abrt-CCpp.conf.txt b/doc/abrt-CCpp.conf.txt +index 498d53d..cf9b213 100644 +--- a/doc/abrt-CCpp.conf.txt ++++ b/doc/abrt-CCpp.conf.txt +@@ -11,8 +11,13 @@ The configuration file consists of items in the format "Option = Value". + Ithe following items are recognized: + + MakeCompatCore = 'yes' / 'no' ...:: +- If you also want to dump file named "core" +- in crashed process' current dir, set to "yes". ++ CCpp hook writes its template to the "/proc/sys/kernel/core_pattern" file ++ and stores the original template in the "/var/run/abrt/saved_core_pattern" ++ file. If you want CCpp hook to create a core dump file named according to ++ the original template as well, set 'MakeCompatCore' to 'yes'. ++ If the original template string starts with "|", the string "core" is used ++ instead of the template. ++ For more information about naming core dump files see 'man 5 core'. + + SaveBinaryImage = 'yes' / 'no' ...:: + Do you want a copy of crashed binary be saved? +diff --git a/src/hooks/CCpp.conf b/src/hooks/CCpp.conf +index 92d7438..03b9b03 100644 +--- a/src/hooks/CCpp.conf ++++ b/src/hooks/CCpp.conf +@@ -1,7 +1,12 @@ + # Configuration file for CCpp hook + +-# If you also want to dump file named "core" +-# in crashed process' current dir, set to "yes" ++# CCpp hook writes its template to the "/proc/sys/kernel/core_pattern" file ++# and stores the original template in the "/var/run/abrt/saved_core_pattern" ++# file. If you want CCpp hook to create a core dump file named according to ++# the original template as well, set 'MakeCompatCore' to 'yes'. ++# If the original template string starts with "|", the string "core" is used ++# instead of the template. ++# For more information about naming core dump files see 'man 5 core'. + MakeCompatCore = yes + + # Do you want a copy of crashed binary be saved? +-- +2.4.3 + diff --git a/0015-ccpp-use-global-TID.patch b/0015-ccpp-use-global-TID.patch new file mode 100644 index 0000000..e5601ce --- /dev/null +++ b/0015-ccpp-use-global-TID.patch @@ -0,0 +1,37 @@ +From fbb66dec11a7e8503b0cfb9b2c85e94f6b00f4a3 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 12 Aug 2015 17:40:12 +0200 +Subject: [PATCH] ccpp: use global TID + +'%i' is TID of the thread from the crashed process's PID namespace but +abrt-hook-ccpp is run by kernel in the init PID namespace, so '%i' +is TID of a completely unrelated process. + +For mode details see 'man 5 core'. + +Related: rhbz#1252590 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-install-ccpp-hook.in | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/hooks/abrt-install-ccpp-hook.in b/src/hooks/abrt-install-ccpp-hook.in +index 13832ab..707c57d 100755 +--- a/src/hooks/abrt-install-ccpp-hook.in ++++ b/src/hooks/abrt-install-ccpp-hook.in +@@ -11,9 +11,9 @@ SAVED_PATTERN_DIR="@VAR_RUN@/abrt" + SAVED_PATTERN_FILE="@VAR_RUN@/abrt/saved_core_pattern" + HOOK_BIN="@libexecdir@/abrt-hook-ccpp" + # Must match percent_specifiers[] order in abrt-hook-ccpp.c: +-PATTERN="|$HOOK_BIN %s %c %p %u %g %t %e %P %i" ++PATTERN="|$HOOK_BIN %s %c %p %u %g %t %e %P %I" + # Same, but with bogus "executable name" parameter +-PATTERN1="|$HOOK_BIN %s %c %p %u %g %t e %P %i" ++PATTERN1="|$HOOK_BIN %s %c %p %u %g %t e %P %I" + + # core_pipe_limit specifies how many dump_helpers can run at the same time + # 0 - means unlimited, but it's not guaranteed that /proc/ of crashing +-- +2.4.3 + diff --git a/0016-a-a-s-p-d-add-bash-on-the-package-blacklist.patch b/0016-a-a-s-p-d-add-bash-on-the-package-blacklist.patch new file mode 100644 index 0000000..1814049 --- /dev/null +++ b/0016-a-a-s-p-d-add-bash-on-the-package-blacklist.patch @@ -0,0 +1,31 @@ +From fba54d523b5047cef9f14cdc174fa914f0731c2b Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Thu, 20 Aug 2015 09:40:59 +0200 +Subject: [PATCH] a-a-s-p-d: add bash on the package blacklist + +In case of this package, the reported data doesn't yield sufficient information +to solve a bug. + +Related to rhbz#1250379 + +Signed-off-by: Matej Habrnal +--- + src/daemon/abrt-action-save-package-data.conf | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/daemon/abrt-action-save-package-data.conf b/src/daemon/abrt-action-save-package-data.conf +index 27b9607..0129399 100644 +--- a/src/daemon/abrt-action-save-package-data.conf ++++ b/src/daemon/abrt-action-save-package-data.conf +@@ -7,7 +7,7 @@ OpenGPGCheck = yes + + # Blacklisted packages + # +-BlackList = nspluginwrapper, valgrind, strace, mono-core, firefox ++BlackList = nspluginwrapper, valgrind, strace, mono-core, firefox, bash + + # Process crashes in executables which do not belong to any package? + # +-- +2.5.0 + diff --git a/0017-cli-don-t-start-reporting-of-not-reportable-problems.patch b/0017-cli-don-t-start-reporting-of-not-reportable-problems.patch new file mode 100644 index 0000000..7cf253e --- /dev/null +++ b/0017-cli-don-t-start-reporting-of-not-reportable-problems.patch @@ -0,0 +1,45 @@ +From c0440e41e6739f26df540aed167dc00c59eebeb0 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 20 Aug 2015 11:15:59 +0200 +Subject: [PATCH] cli: don't start reporting of not-reportable problems + +If the reported problem data contains 'not-reportable' element, the +reporting process fails unexpectedly and after the reporter already spent some +time on it. + +This commit ensures that the reporting process won't start, so +abrt-cli's behaviour will be consistent with ABRT GUI. + +However, this is not an ideal solution because we might want to allow +the reporter to report the problem directly to developers via e-mail. + +Closes #986 + +Signed-off-by: Jakub Filak +--- + src/cli/report.c | 9 +++++++++ + 1 file changed, 9 insertions(+) + +diff --git a/src/cli/report.c b/src/cli/report.c +index 19b4c51..cc4035e 100644 +--- a/src/cli/report.c ++++ b/src/cli/report.c +@@ -36,6 +36,15 @@ int _cmd_report(const char **dirs_strv, int remove) + continue; + } + ++ const int not_reportable = test_exist_over_dbus(real_problem_id, FILENAME_NOT_REPORTABLE); ++ if (not_reportable != 0) ++ { ++ error_msg(_("Problem '%s' cannot be reported"), real_problem_id); ++ free(real_problem_id); ++ ++ret; ++ continue; ++ } ++ + const int res = chown_dir_over_dbus(real_problem_id); + if (res != 0) + { +-- +2.5.0 + diff --git a/0018-introduce-bodhi2-to-abrt-bodhi.patch b/0018-introduce-bodhi2-to-abrt-bodhi.patch new file mode 100644 index 0000000..f546853 --- /dev/null +++ b/0018-introduce-bodhi2-to-abrt-bodhi.patch @@ -0,0 +1,317 @@ +From fe2db75f3c7fc37e4754241258e2c14c8d7d2826 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 25 Aug 2015 16:03:51 +0200 +Subject: [PATCH] introduce bodhi2 to abrt-bodhi + +Resolves: rhbz#1256493 + +Signed-off-by: Jakub Filak +--- + configure.ac | 1 + + src/plugins/Makefile.am | 2 + + src/plugins/bodhi.c | 197 +++++++++++++++++++++++++++--------------------- + 3 files changed, 114 insertions(+), 86 deletions(-) + +diff --git a/configure.ac b/configure.ac +index b372e12..1013e3b 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -376,6 +376,7 @@ PKG_CHECK_MODULES([JSON_C], [json], [ + if test -z "$NO_BODHI" + then + PKG_CHECK_MODULES([LIBREPORT_WEB], [libreport-web]) ++PKG_CHECK_MODULES([HAWKEY], [hawkey]) + AM_CONDITIONAL(BUILD_BODHI, true) + else + AM_CONDITIONAL(BUILD_BODHI, false) +diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am +index aa426ff..1c1ff8a 100644 +--- a/src/plugins/Makefile.am ++++ b/src/plugins/Makefile.am +@@ -366,10 +366,12 @@ abrt_bodhi_SOURCES = \ + $(LIBREPORT_WEB_CFLAGS) \ + $(JSON_C_CFLAGS) \ + $(RPM_CFLAGS) \ ++ $(HAWKEY_CFLAGS) \ + -D_GNU_SOURCE + abrt_bodhi_LDADD = \ + $(JSON_C_LIBS) \ + $(RPM_LIBS) \ ++ $(HAWKEY_LIBS) \ + $(LIBREPORT_LIBS) \ + $(LIBREPORT_WEB_LIBS) + endif +diff --git a/src/plugins/bodhi.c b/src/plugins/bodhi.c +index fcdbd83..831f5ff 100644 +--- a/src/plugins/bodhi.c ++++ b/src/plugins/bodhi.c +@@ -22,6 +22,7 @@ + #include + #include + #include ++#include + + #include + #include +@@ -32,85 +33,103 @@ + /* bodhi returns json structure + + { +- "num_items":2, +- "title":"2 updats found", +- "tg_flash":null, +- "updates":[ +- { +- "status":"stable", +- "close_bugs":true, +- "request":null, +- "date_submitted":"2011-03-18 17:25:14", +- "unstable_karma":-3, +- "submitter":"twaugh", +- "critpath":false, +- "approved":null, +- "stable_karma":2, +- "date_pushed":"2011-03-19 05:34:27", +- "builds":[ +- { +- "nvr":"system-config-printer-1.3.2-1.fc15", +- "package":{ +- "suggest_reboot":false, +- "committers":[ +- "twaugh", +- "jpopelka" +- ], +- "name":"system-config-printer" +- } +- }, +- { +- .... +- } +- ], +- "title":"system-config-printer-1.3.2-1.fc15", +- "notes":"This update fixes several bugs and re-enables translations that were accidentally disabled.", +- "date_modified":null, +- "nagged":null, +- "bugs":[ +- { +- "bz_id":685098, +- "security":false, +- "parent":false, +- "title":"[abrt] system-config-printer-1.3.1-1.fc15: authconn.py:197:_connect:RuntimeError: failed to connect to server" +- }, +- { +- ... +- } +- ], +- "comments":[ +- { +- "group":null, +- "karma":0, +- "anonymous":false, +- "author":"bodhi", +- "timestamp":"2011-03-18 17:26:34", +- "text":"This update has been submitted for testing by twaugh. " +- }, +- { +- ... +- } +- ], +- "critpath_approved":false, +- "updateid":"FEDORA-2011-3596", +- "karma":0, +- "release":{ +- "dist_tag":"dist-f15", +- "id_prefix":"FEDORA", +- "locked":false, +- "name":"F15", +- "long_name":"Fedora 15" +- }, +- "type":"bugfix" +- }, +- { +- ... +- } +- ] ++ "rows_per_page": 20, ++ "total": 1, ++ "chrome": true, ++ "display_user": true, ++ "pages": 1, ++ "updates": [ ++ { ++ "close_bugs": true, ++ "old_updateid": "FEDORA-2015-13720", ++ "pushed": true, ++ "require_testcases": false, ++ "critpath": false, ++ "date_approved": null, ++ "stable_karma": null, ++ "date_pushed": "2015-08-19 04:49:00", ++ "requirements": null, ++ "severity": "unspecified", ++ "title": "hwloc-1.11.0-3.fc22", ++ "suggest": "unspecified", ++ "require_bugs": false, ++ "comments": [ ++ { ++ "bug_feedback": [], ++ "user_id": 91, ++ "text": "This update has been submitted for testing by jhladky. ", ++ "testcase_feedback": [], ++ "karma_critpath": 0, ++ "update": 21885, ++ "update_id": 21885, ++ "karma": 0, ++ "anonymous": false, ++ "timestamp": "2015-08-18 13:38:35", ++ "id": 166016, ++ "user": {"stacks": [], ++ "name": "bodhi", ++ "avatar": "https://apps.fedoraproject.org/img/icons/bodhi-24.png"} ++ }, ++ { ++ ... ++ } ++ ], ++ "updateid": "FEDORA-2015-13720", ++ "cves": [], ++ "type": "bugfix", ++ "status": "testing", ++ "date_submitted": "2015-08-18 13:37:26", ++ "unstable_karma": null, ++ "submitter": "jhladky", ++ "user": ++ { ++ "stacks": [], ++ "buildroot_overrides": [], ++ "name": "jhladky", ++ "avatar": "https://seccdn.libravatar.org/avatar/b838b78fcf707a13cdaeb1c846d514e614d617cbf2c106718e71cb397607f59b?s=24&d=retro" ++ }, ++ "locked": false, ++ "builds": [{"override": null, ++ "nvr": "hwloc-1.11.0-3.fc22"}], ++ "date_modified": null, ++ "test_cases": [], ++ "notes": "Fix for BZ1253977", ++ "request": null, ++ "bugs": [ ++ { ++ "bug_id": 1253977, ++ "security": false, ++ "feedback": [], ++ "parent": false, ++ "title": "conflict between hwloc-libs-1.11.0-1.fc22.i686 and hwloc-libs-1.11.0-1.fc22.x86_64" ++ } ++ ], ++ "alias": "FEDORA-2015-13720", ++ "karma": 0, ++ "release": ++ { ++ "dist_tag": "f22", ++ "name": "F22", ++ "testing_tag": "f22-updates-testing", ++ "pending_stable_tag": "f22-updates-pending", ++ "long_name": "Fedora 22", ++ "state": "current", ++ "version": "22", ++ "override_tag": "f22-override", ++ "branch": "f22", ++ "id_prefix": "FEDORA", ++ "pending_testing_tag": "f22-updates-testing-pending", ++ "stable_tag": "f22-updates", ++ "candidate_tag": "f22-updates-candidate" ++ } ++ } ++ ], ++ "display_request": true, ++ "page": 1 + } + */ + +-static const char *bodhi_url = "https://admin.fedoraproject.org/updates"; ++static const char *bodhi_url = "https://bodhi.fedoraproject.org/updates"; + + struct bodhi { + char *nvr; +@@ -202,7 +221,7 @@ static GHashTable *bodhi_parse_json(json_object *json, const char *release) + { + + int num_items = 0; +- bodhi_read_value(json, "num_items", &num_items, BODHI_READ_INT); ++ bodhi_read_value(json, "total", &num_items, BODHI_READ_INT); + if (num_items <= 0) + return NULL; + +@@ -241,13 +260,19 @@ static GHashTable *bodhi_parse_json(json_object *json, const char *release) + b = xzalloc(sizeof(struct bodhi)); + + char *name = NULL; ++ long ign_e; ++ char *ign_v, *ign_r, *ign_a; ++ + json_object *build = json_object_array_get_idx(builds_item, k); + + bodhi_read_value(build, "nvr", &b->nvr, BODHI_READ_STR); + +- json_object *package = NULL; +- bodhi_read_value(build, "package", &package, BODHI_READ_JSON_OBJ); +- bodhi_read_value(package, "name", &name, BODHI_READ_STR); ++ if (hy_split_nevra(b->nvr, &name, &ign_e, &ign_v, &ign_r, &ign_a)) ++ error_msg_and_die("hawkey failed to parse '%s'", b->nvr); ++ ++ free(ign_v); ++ free(ign_r); ++ free(ign_a); + + struct bodhi *bodhi_tbl_item = g_hash_table_lookup(bodhi_table, name); + if (bodhi_tbl_item && rpmvercmp(bodhi_tbl_item->nvr, b->nvr) > 0) +@@ -287,7 +312,7 @@ static GHashTable *bodhi_parse_json(json_object *json, const char *release) + + static GHashTable *bodhi_query_list(const char *query, const char *release) + { +- char *bodhi_url_bugs = xasprintf("%s/list", bodhi_url); ++ char *bodhi_url_bugs = xasprintf("%s/?%s", bodhi_url, query); + + post_state_t *post_state = new_post_state(POST_WANT_BODY + | POST_WANT_SSL_VERIFY +@@ -298,8 +323,8 @@ static GHashTable *bodhi_query_list(const char *query, const char *release) + NULL + }; + +- post_string(post_state, bodhi_url_bugs, "application/x-www-form-urlencoded", +- headers, query); ++ get(post_state, bodhi_url_bugs, "application/x-www-form-urlencoded", ++ headers); + + if (post_state->http_resp_code != 200) + { +@@ -397,7 +422,7 @@ int main(int argc, char **argv) + { + if (release) + { +- query = strbuf_append_strf(query, "release=%s&", release); ++ query = strbuf_append_strf(query, "releases=%s&", release); + } + else + { +@@ -414,7 +439,7 @@ int main(int argc, char **argv) + map_string_t *osinfo = new_map_string(); + problem_data_get_osinfo(problem_data, osinfo); + parse_osinfo_for_rhts(osinfo, &product, &version); +- query = strbuf_append_strf(query, "release=f%s&", version); ++ query = strbuf_append_strf(query, "releases=f%s&", version); + free(product); + free(version); + free_map_string(osinfo); +@@ -424,7 +449,7 @@ int main(int argc, char **argv) + if (argv[optind]) + { + char *escaped = g_uri_escape_string(argv[optind], NULL, 0); +- query = strbuf_append_strf(query, "package=%s&", escaped); ++ query = strbuf_append_strf(query, "packages=%s&", escaped); + free(escaped); + } + +-- +2.5.0 + diff --git a/0020-ccpp-do-not-break-the-reporting-if-a-bodhi-fails.patch b/0020-ccpp-do-not-break-the-reporting-if-a-bodhi-fails.patch new file mode 100644 index 0000000..6c37ac8 --- /dev/null +++ b/0020-ccpp-do-not-break-the-reporting-if-a-bodhi-fails.patch @@ -0,0 +1,28 @@ +From 5bdcc2f09aa22180b4ce072f1ec1d65e86eafbab Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 26 Aug 2015 08:28:07 +0200 +Subject: [PATCH] ccpp: do not break the reporting if a-bodhi fails + +Related: rhbz#1256493 + +Signed-off-by: Jakub Filak +--- + src/plugins/abrt-action-analyze-ccpp-local.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/plugins/abrt-action-analyze-ccpp-local.in b/src/plugins/abrt-action-analyze-ccpp-local.in +index de131c8..5a42a03 100644 +--- a/src/plugins/abrt-action-analyze-ccpp-local.in ++++ b/src/plugins/abrt-action-analyze-ccpp-local.in +@@ -39,7 +39,7 @@ if [ $? = 0 ]; then + bug_id=$(reporter-bugzilla -h "`cat duphash`") + if $WITH_BODHI; then + if test -n "$bug_id"; then +- abrt-bodhi -r -b $bug_id ++ abrt-bodhi -r -b $bug_id || : + fi + fi + fi +-- +2.5.0 + diff --git a/0021-bodhi-add-ignoring-of-Rawhide.patch b/0021-bodhi-add-ignoring-of-Rawhide.patch new file mode 100644 index 0000000..7eb71d7 --- /dev/null +++ b/0021-bodhi-add-ignoring-of-Rawhide.patch @@ -0,0 +1,53 @@ +From 6171adb8111747550e5093cd673e2f254ec1b7c9 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Wed, 26 Aug 2015 13:18:26 +0200 +Subject: [PATCH] bodhi: add ignoring of Rawhide + +Resolves: rhbz#1256493 + +Signed-off-by: Matej Habrnal +--- + src/plugins/bodhi.c | 17 ++++++++++++++++- + 1 file changed, 16 insertions(+), 1 deletion(-) + +diff --git a/src/plugins/bodhi.c b/src/plugins/bodhi.c +index 831f5ff..9149347 100644 +--- a/src/plugins/bodhi.c ++++ b/src/plugins/bodhi.c +@@ -422,6 +422,10 @@ int main(int argc, char **argv) + { + if (release) + { ++ /* There are no bodhi updates for Rawhide */ ++ if (strcasecmp(release, "rawhide") == 0) ++ error_msg_and_die("Reselase \"%s\" is not supported",release); ++ + query = strbuf_append_strf(query, "releases=%s&", release); + } + else +@@ -439,10 +443,21 @@ int main(int argc, char **argv) + map_string_t *osinfo = new_map_string(); + problem_data_get_osinfo(problem_data, osinfo); + parse_osinfo_for_rhts(osinfo, &product, &version); +- query = strbuf_append_strf(query, "releases=f%s&", version); ++ ++ /* There are no bodhi updates for Rawhide */ ++ bool rawhide = strcasecmp(release, "rawhide") == 0; ++ if (!rawhide) ++ query = strbuf_append_strf(query, "releases=f%s&", version); ++ + free(product); + free(version); + free_map_string(osinfo); ++ ++ if (rawhide) ++ { ++ strbuf_free(query); ++ error_msg_and_die("Reselase \"Rawhide\" is not supported"); ++ } + } + } + +-- +2.5.0 + diff --git a/0022-bodhi-add-parsing-of-error-responses.patch b/0022-bodhi-add-parsing-of-error-responses.patch new file mode 100644 index 0000000..c698120 --- /dev/null +++ b/0022-bodhi-add-parsing-of-error-responses.patch @@ -0,0 +1,110 @@ +From 167ebb0a8930dcd19c4078773da8c580785053d9 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Wed, 26 Aug 2015 13:41:27 +0200 +Subject: [PATCH] bodhi: add parsing of error responses + +Resolves: rhbz#1256493 + +Signed-off-by: Matej Habrnal +--- + src/plugins/bodhi.c | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++- + 1 file changed, 69 insertions(+), 1 deletion(-) + +diff --git a/src/plugins/bodhi.c b/src/plugins/bodhi.c +index 9149347..b348a26 100644 +--- a/src/plugins/bodhi.c ++++ b/src/plugins/bodhi.c +@@ -217,6 +217,58 @@ static void print_bodhi(struct bodhi *b) + } + #endif + ++/* bodhi returns following json structure in case of error ++{ ++ "status": "error", ++ "errors": ++ [ ++ { ++ "location": "querystring", ++ "name": "releases", ++ "description": "Invalid releases specified: Rawhide" ++ } ++ ] ++} ++*/ ++static void bodhi_print_errors_from_json(json_object *json) ++{ ++ ++ json_object *errors_array = NULL; ++ bodhi_read_value(json, "errors", &errors_array, BODHI_READ_JSON_OBJ); ++ if (!errors_array) ++ { ++ error_msg("Error: unable to read 'errors' array from json"); ++ return; ++ } ++ ++ int errors_len = json_object_array_length(errors_array); ++ for (int i = 0; i < errors_len; ++i) ++ { ++ json_object *error = json_object_array_get_idx(errors_array, i); ++ if (!error) ++ { ++ error_msg("Error: unable to get 'error[%d]'", i); ++ json_object_put(errors_array); ++ return; ++ } ++ ++ char *desc_item = NULL; ++ bodhi_read_value(error, "description", &desc_item, BODHI_READ_STR); ++ if (!desc_item) ++ { ++ error_msg("Error: unable to get 'description' from 'error[%d]'", i); ++ continue; ++ } ++ ++ error_msg("Error: %s", desc_item); ++ json_object_put(error); ++ free(desc_item); ++ } ++ ++ json_object_put(errors_array); ++ return; ++} ++ + static GHashTable *bodhi_parse_json(json_object *json, const char *release) + { + +@@ -326,7 +378,7 @@ static GHashTable *bodhi_query_list(const char *query, const char *release) + get(post_state, bodhi_url_bugs, "application/x-www-form-urlencoded", + headers); + +- if (post_state->http_resp_code != 200) ++ if (post_state->http_resp_code != 200 && post_state->http_resp_code != 400) + { + char *errmsg = post_state->curl_error_msg; + if (errmsg && errmsg[0]) +@@ -340,6 +392,22 @@ static GHashTable *bodhi_query_list(const char *query, const char *release) + if (is_error(json)) + error_msg_and_die("fatal: unable parse response from bodhi server"); + ++ /* we must check the http_resp_code because only error responses contain ++ * 'status' item. 'bodhi_read_value' function prints an error message in ++ * the case it did not found the item */ ++ if (post_state->http_resp_code != 200) ++ { ++ char *status_item = NULL; ++ bodhi_read_value(json, "status", &status_item, BODHI_READ_STR); ++ if (status_item != NULL && strcmp(status_item, "error") == 0) ++ { ++ free(status_item); ++ bodhi_print_errors_from_json(json); ++ json_object_put(json); ++ xfunc_die(); // error_msg are printed in bodhi_print_errors_from_json ++ } ++ } ++ + GHashTable *bodhi_table = bodhi_parse_json(json, release); + json_object_put(json); + free_post_state(post_state); +-- +2.5.0 + diff --git a/0023-doc-actualize-the-abrt-bodhi-man-page.patch b/0023-doc-actualize-the-abrt-bodhi-man-page.patch new file mode 100644 index 0000000..34ec666 --- /dev/null +++ b/0023-doc-actualize-the-abrt-bodhi-man-page.patch @@ -0,0 +1,41 @@ +From e47863d42f78ddcd404561e21c4c75e6d2feb99e Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Wed, 2 Sep 2015 12:29:31 +0200 +Subject: [PATCH] doc: actualize the abrt-bodhi man page + +Parameters -d and -u were not in the man page. + +Signed-off-by: Matej Habrnal +--- + doc/abrt-bodhi.txt | 8 +++++++- + 1 file changed, 7 insertions(+), 1 deletion(-) + +diff --git a/doc/abrt-bodhi.txt b/doc/abrt-bodhi.txt +index 945a4a9..fe790d6 100644 +--- a/doc/abrt-bodhi.txt ++++ b/doc/abrt-bodhi.txt +@@ -7,7 +7,7 @@ abrt-bodhi - The ABRT bodhi client. + + SYNOPSIS + -------- +-'abrt-bodhi' [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... ++'abrt-bodhi' [-v] [-r[RELEASE]] [-u URL] [-d DIR] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... + + DESCRIPTION + ----------- +@@ -25,6 +25,12 @@ OPTIONS + -b, --bugs ID1,ID2,.. + Specify any number of Bugzilla IDs (--bugs=1234,5678) + ++-d, --problem-dir DIR:: ++ Path to problem directory ++ ++-u, --url URL:: ++ Specify a bodhi server url ++ + AUTHORS + ------- + * ABRT team +-- +2.5.0 + diff --git a/0024-bodhi-fix-a-segfault-when-testing-an-os-release-opt-.patch b/0024-bodhi-fix-a-segfault-when-testing-an-os-release-opt-.patch new file mode 100644 index 0000000..3c0b7e2 --- /dev/null +++ b/0024-bodhi-fix-a-segfault-when-testing-an-os-release-opt-.patch @@ -0,0 +1,29 @@ +From 66a27fb723e0930d30ea319484817b3f5ee364dc Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 7 Sep 2015 10:23:30 +0200 +Subject: [PATCH] bodhi: fix a segfault when testing an os-release opt for + 'rawhide' + +Resolves: rhbz#1260259 + +Signed-off-by: Jakub Filak +--- + src/plugins/bodhi.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/plugins/bodhi.c b/src/plugins/bodhi.c +index b348a26..bbd88f7 100644 +--- a/src/plugins/bodhi.c ++++ b/src/plugins/bodhi.c +@@ -513,7 +513,7 @@ int main(int argc, char **argv) + parse_osinfo_for_rhts(osinfo, &product, &version); + + /* There are no bodhi updates for Rawhide */ +- bool rawhide = strcasecmp(release, "rawhide") == 0; ++ bool rawhide = strcasecmp(version, "rawhide") == 0; + if (!rawhide) + query = strbuf_append_strf(query, "releases=f%s&", version); + +-- +2.5.0 + diff --git a/0025-bodhi-fix-typo-in-error-messages.patch b/0025-bodhi-fix-typo-in-error-messages.patch new file mode 100644 index 0000000..dfa8cdc --- /dev/null +++ b/0025-bodhi-fix-typo-in-error-messages.patch @@ -0,0 +1,39 @@ +From 288c3de2a74f82972e35465fb82227cd7bfc5766 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Mon, 21 Sep 2015 10:11:22 +0200 +Subject: [PATCH] bodhi: fix typo in error messages + +"Reselase" -> "Release" + +Related to rhbz#1264591 + +Signed-off-by: Matej Habrnal +--- + src/plugins/bodhi.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/plugins/bodhi.c b/src/plugins/bodhi.c +index bbd88f7..809d398 100644 +--- a/src/plugins/bodhi.c ++++ b/src/plugins/bodhi.c +@@ -492,7 +492,7 @@ int main(int argc, char **argv) + { + /* There are no bodhi updates for Rawhide */ + if (strcasecmp(release, "rawhide") == 0) +- error_msg_and_die("Reselase \"%s\" is not supported",release); ++ error_msg_and_die("Release \"%s\" is not supported",release); + + query = strbuf_append_strf(query, "releases=%s&", release); + } +@@ -524,7 +524,7 @@ int main(int argc, char **argv) + if (rawhide) + { + strbuf_free(query); +- error_msg_and_die("Reselase \"Rawhide\" is not supported"); ++ error_msg_and_die("Release \"Rawhide\" is not supported"); + } + } + } +-- +2.5.0 + diff --git a/0026-abrt-dump-xorg-support-Xorg-log-backtraces-prefixed-.patch b/0026-abrt-dump-xorg-support-Xorg-log-backtraces-prefixed-.patch new file mode 100644 index 0000000..82b8fc0 --- /dev/null +++ b/0026-abrt-dump-xorg-support-Xorg-log-backtraces-prefixed-.patch @@ -0,0 +1,109 @@ +From edf897e2d62e6cb290b314e41a471894e2a2ca8f Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Thu, 24 Sep 2015 10:30:47 +0200 +Subject: [PATCH] abrt-dump-xorg: support Xorg log backtraces prefixed by (EE) + +The backtraces looks like + [ 60244.259] (EE) Backtrace + [ 60244.262] (EE) 0: /usr/libexec/Xorg (OsLookupColor+0x139) [0x59add9] + [ 60244.264] (EE) 1: /lib64/libc.so.6 (__restore_rt+0x0) [0x7f61be425b1f] + ... + [ 60244.273] (EE) 13: ? (?+0x29) [0x29] + [ 60244.273] (EE) + [ 60244.273] (EE) Segmentation fault at address 0x7f61d93f6160 + +This format of Xorg log files was not supported by abrt-dump-xorg tool. + +Related to rhbz#1264739 + +Signed-off-by: Matej Habrnal +--- + src/plugins/abrt-dump-xorg.c | 57 +++++++++++++++++++++++++++++--------------- + 1 file changed, 38 insertions(+), 19 deletions(-) + +diff --git a/src/plugins/abrt-dump-xorg.c b/src/plugins/abrt-dump-xorg.c +index 4aaff11..6cdfc95 100644 +--- a/src/plugins/abrt-dump-xorg.c ++++ b/src/plugins/abrt-dump-xorg.c +@@ -51,8 +51,19 @@ static char *skip_pfx(char *p) + char *q = strchr(p, ']'); + if (!q) + return p; ++ + if (q[1] == ' ') +- return q + 2; ++ { ++ q += 2; ++ /* if there is (EE), ignore it */ ++ if (strncmp(q, "(EE)", 4) == 0) ++ { ++ /* if ' ' follows (EE), ignore it too */ ++ return q + (4 + (q[4] == ' ')); ++ } ++ ++ return q; ++ } + return p; + } + +@@ -114,24 +125,24 @@ static void save_bt_to_dump_dir(const char *bt, const char *exe, const char *rea + /* Called after "Backtrace:" line was read. + * Example (yes, stray newline before 'B' is real): + [ 86985.879] +-Backtrace: +-[ 86985.880] 0: /usr/bin/Xorg (xorg_backtrace+0x2f) [0x462d8f] +-[ 86985.880] 1: /usr/bin/Xorg (0x400000+0x67b56) [0x467b56] +-[ 86985.880] 2: /lib64/libpthread.so.0 (0x30a5800000+0xf4f0) [0x30a580f4f0] +-[ 86985.880] 3: /usr/lib64/xorg/modules/extensions/librecord.so (0x7ff6c225e000+0x26c3) [0x7ff6c22606c3] +-[ 86985.880] 4: /usr/bin/Xorg (_CallCallbacks+0x3c) [0x43820c] +-[ 86985.880] 5: /usr/bin/Xorg (WriteToClient+0x1f5) [0x466315] +-[ 86985.880] 6: /usr/lib64/xorg/modules/extensions/libdri2.so (ProcDRI2WaitMSCReply+0x4f) [0x7ff6c1e4feef] +-[ 86985.880] 7: /usr/lib64/xorg/modules/extensions/libdri2.so (DRI2WaitMSCComplete+0x52) [0x7ff6c1e4e6d2] +-[ 86985.880] 8: /usr/lib64/xorg/modules/drivers/intel_drv.so (0x7ff6c1bfb000+0x25ae4) [0x7ff6c1c20ae4] +-[ 86985.880] 9: /usr/lib64/libdrm.so.2 (drmHandleEvent+0xa3) [0x376b407513] +-[ 86985.880] 10: /usr/bin/Xorg (WakeupHandler+0x6b) [0x4379db] +-[ 86985.880] 11: /usr/bin/Xorg (WaitForSomething+0x1a9) [0x460289] +-[ 86985.880] 12: /usr/bin/Xorg (0x400000+0x3379a) [0x43379a] +-[ 86985.880] 13: /usr/bin/Xorg (0x400000+0x22dc5) [0x422dc5] +-[ 86985.880] 14: /lib64/libc.so.6 (__libc_start_main+0xed) [0x30a542169d] +-[ 86985.880] 15: /usr/bin/Xorg (0x400000+0x230b1) [0x4230b1] +-[ 86985.880] Segmentation fault at address 0x7ff6bf09e010 ++[ 60244.259] (EE) Backtrace: ++[ 60244.262] (EE) 0: /usr/libexec/Xorg (OsLookupColor+0x139) [0x59add9] ++[ 60244.264] (EE) 1: /lib64/libc.so.6 (__restore_rt+0x0) [0x7f61be425b1f] ++[ 60244.266] (EE) 2: /usr/lib64/xorg/modules/drivers/intel_drv.so (_init+0xa9fc) [0x7f61b903116c] ++[ 60244.267] (EE) 3: /usr/lib64/xorg/modules/drivers/intel_drv.so (_init+0xbe27) [0x7f61b90339a7] ++[ 60244.268] (EE) 4: /usr/lib64/xorg/modules/drivers/intel_drv.so (_init+0x31060) [0x7f61b907db00] ++[ 60244.269] (EE) 5: /usr/lib64/xorg/modules/drivers/intel_drv.so (_init+0x3fb73) [0x7f61b909b0c3] ++[ 60244.270] (EE) 6: /usr/lib64/xorg/modules/drivers/intel_drv.so (_init+0x3fe1a) [0x7f61b909b77a] ++[ 60244.270] (EE) 7: /usr/libexec/Xorg (DamageRegionAppend+0x3783) [0x525003] ++[ 60244.270] (EE) 8: /usr/libexec/Xorg (SendGraphicsExpose+0xeb3) [0x4340b3] ++[ 60244.270] (EE) 9: /usr/libexec/Xorg (SendErrorToClient+0x2df) [0x43684f] ++[ 60244.271] (EE) 10: /usr/libexec/Xorg (remove_fs_handlers+0x453) [0x43a893] ++[ 60244.272] (EE) 11: /lib64/libc.so.6 (__libc_start_main+0xf0) [0x7f61be411580] ++[ 60244.272] (EE) 12: /usr/libexec/Xorg (_start+0x29) [0x424b79] ++[ 60244.273] (EE) 13: ? (?+0x29) [0x29] ++[ 60244.273] (EE) ++[ 60244.273] (EE) Segmentation fault at address 0x7f61d93f6160 ++[ 60244.273] (EE) + */ + static void process_xorg_bt(void) + { +@@ -144,6 +155,14 @@ static void process_xorg_bt(void) + { + char *p = skip_pfx(line); + ++ /* ignore empty lines ++ * [ 60244.273] (EE) 13: ? (?+0x29) [0x29] ++ * [ 60244.273] (EE) <--- ++ * [ 60244.273] (EE) Segmentation fault at address 0x7f61d93f6160 ++ */ ++ if (*p == '\0') ++ continue; ++ + /* xorg-server-1.12.0/os/osinit.c: + * if (sip->si_code == SI_USER) { + * ErrorF("Recieved signal %d sent by process %ld, uid %ld\n", +-- +2.5.0 + diff --git a/0027-a-a-a-ccpp-local-don-t-delete-build_ids.patch b/0027-a-a-a-ccpp-local-don-t-delete-build_ids.patch new file mode 100644 index 0000000..67ea214 --- /dev/null +++ b/0027-a-a-a-ccpp-local-don-t-delete-build_ids.patch @@ -0,0 +1,27 @@ +From 7b393bb4b8eae7873996467ea11706127e1dbf85 Mon Sep 17 00:00:00 2001 +From: Richard Marko +Date: Wed, 17 Jun 2015 15:16:03 +0200 +Subject: [PATCH] a-a-a-ccpp-local don't delete build_ids + +rm -f always succeeds that causes further actions to run. + +Signed-off-by: Richard Marko +--- + src/plugins/abrt-action-analyze-ccpp-local.in | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/src/plugins/abrt-action-analyze-ccpp-local.in b/src/plugins/abrt-action-analyze-ccpp-local.in +index 5a42a03..d3df01d 100644 +--- a/src/plugins/abrt-action-analyze-ccpp-local.in ++++ b/src/plugins/abrt-action-analyze-ccpp-local.in +@@ -28,7 +28,6 @@ if $INSTALL_DI; then + else + abrt-action-analyze-core --core=coredump -o build_ids && @LIBEXEC_DIR@/abrt-action-install-debuginfo-to-abrt-cache --size_mb=4096 + fi +- rm -f build_ids + fi + + if [ $? = 0 ]; then +-- +2.5.0 + diff --git a/0028-abrt-retrace-client-use-atoll-for-_size-conversion.patch b/0028-abrt-retrace-client-use-atoll-for-_size-conversion.patch new file mode 100644 index 0000000..87a0c43 --- /dev/null +++ b/0028-abrt-retrace-client-use-atoll-for-_size-conversion.patch @@ -0,0 +1,35 @@ +From e5a29b08bb48b408c5e88fa5382f8253ca90a937 Mon Sep 17 00:00:00 2001 +From: Richard Marko +Date: Thu, 8 Oct 2015 15:03:26 +0200 +Subject: [PATCH] abrt-retrace-client: use atoll for _size conversion + +Otherwise we get + +The size of your crash is 28.1 MiB, but the retrace server only accepts +crashes smaller or equal to 16.0 EiB. + +(gdb) print settings->max_unpacked_size +$4 = -50331648 +--- + src/plugins/abrt-retrace-client.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/plugins/abrt-retrace-client.c b/src/plugins/abrt-retrace-client.c +index 0b67773..540cdc9 100644 +--- a/src/plugins/abrt-retrace-client.c ++++ b/src/plugins/abrt-retrace-client.c +@@ -256,9 +256,9 @@ struct retrace_settings *get_settings() + else if (0 == strcasecmp("max_running_tasks", row)) + settings->max_running_tasks = atoi(value); + else if (0 == strcasecmp("max_packed_size", row)) +- settings->max_packed_size = atoi(value) * 1024 * 1024; ++ settings->max_packed_size = atoll(value) * 1024 * 1024; + else if (0 == strcasecmp("max_unpacked_size", row)) +- settings->max_unpacked_size = atoi(value) * 1024 * 1024; ++ settings->max_unpacked_size = atoll(value) * 1024 * 1024; + else if (0 == strcasecmp("supported_formats", row)) + { + char *space; +-- +2.5.0 + diff --git a/0029-doc-fix-default-DumpLocation-in-abrt.conf-man-page.patch b/0029-doc-fix-default-DumpLocation-in-abrt.conf-man-page.patch new file mode 100644 index 0000000..29dde63 --- /dev/null +++ b/0029-doc-fix-default-DumpLocation-in-abrt.conf-man-page.patch @@ -0,0 +1,28 @@ +From 6bb7cdc454a824826362c68af66cdb92b4bc6653 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Mon, 12 Oct 2015 14:03:13 +0200 +Subject: [PATCH] doc: fix default DumpLocation in abrt.conf man page + +ABRT no longer stores crashes to /var/tmp/abrt by default. + +Signed-off-by: Matej Habrnal +--- + doc/abrt.conf.txt | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/doc/abrt.conf.txt b/doc/abrt.conf.txt +index d782e3d..6626596 100644 +--- a/doc/abrt.conf.txt ++++ b/doc/abrt.conf.txt +@@ -16,7 +16,7 @@ A description of each item follows: + + DumpLocation = 'directory':: + The directory where should 'abrt' store coredumps and all files which are +- needed for reporting. The default is /var/tmp/abrt. ++ needed for reporting. The default is /var/spool/abrt. + + MaxCrashReportsSize = 'number':: + The maximum disk space (specified in megabytes) that 'abrt' +-- +2.5.0 + diff --git a/0030-dbus-ensure-expected-bytes-width-of-DBus-numbers.patch b/0030-dbus-ensure-expected-bytes-width-of-DBus-numbers.patch new file mode 100644 index 0000000..1b52b98 --- /dev/null +++ b/0030-dbus-ensure-expected-bytes-width-of-DBus-numbers.patch @@ -0,0 +1,32 @@ +From 97633ab28bef2e65032fb81063922e3106dd135b Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 28 Oct 2015 00:21:12 +0100 +Subject: [PATCH] dbus: ensure expected bytes width of DBus numbers + +t - UINT64 - guint64 (unsigned long is not wide enough on 32bit architectures) + +Resolves: rhbz#1256456 + +Signed-off-by: Jakub Filak +--- + src/dbus/abrt-dbus.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/dbus/abrt-dbus.c b/src/dbus/abrt-dbus.c +index 44778a2..500ddb2 100644 +--- a/src/dbus/abrt-dbus.c ++++ b/src/dbus/abrt-dbus.c +@@ -625,8 +625,8 @@ static void handle_method_call(GDBusConnection *connection, + + g_variant_builder_add(response_builder, "{s(its)}", + element_name, +- element_info->flags, +- size, ++ (gint32)element_info->flags, ++ (guint64)size, + element_info->content); + } + +-- +2.6.3 + diff --git a/0032-doc-add-missing-man-page-for-abrt-dump-journal-core.patch b/0032-doc-add-missing-man-page-for-abrt-dump-journal-core.patch new file mode 100644 index 0000000..1cbca49 --- /dev/null +++ b/0032-doc-add-missing-man-page-for-abrt-dump-journal-core.patch @@ -0,0 +1,98 @@ +From 001066cf6238ee3a61f1a87607272e9736d3e371 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Mon, 26 Oct 2015 13:57:51 +0100 +Subject: [PATCH] doc: add missing man page for abrt-dump-journal-core + +Signed-off-by: Matej Habrnal +--- + doc/Makefile.am | 1 + + doc/abrt-dump-journal-core.txt | 65 ++++++++++++++++++++++++++++++++++++++++++ + 2 files changed, 66 insertions(+) + create mode 100644 doc/abrt-dump-journal-core.txt + +diff --git a/doc/Makefile.am b/doc/Makefile.am +index fdd08cf..ec6b3c5 100644 +--- a/doc/Makefile.am ++++ b/doc/Makefile.am +@@ -19,6 +19,7 @@ MAN1_TXT += abrt-action-perform-ccpp-analysis.txt + MAN1_TXT += abrt-action-notify.txt + MAN1_TXT += abrt-applet.txt + MAN1_TXT += abrt-dump-oops.txt ++MAN1_TXT += abrt-dump-journal-core.txt + MAN1_TXT += abrt-dump-journal-oops.txt + MAN1_TXT += abrt-dump-xorg.txt + MAN1_TXT += abrt-auto-reporting.txt +diff --git a/doc/abrt-dump-journal-core.txt b/doc/abrt-dump-journal-core.txt +new file mode 100644 +index 0000000..25d5e57 +--- /dev/null ++++ b/doc/abrt-dump-journal-core.txt +@@ -0,0 +1,65 @@ ++abrt-dump-journal-core(1) ++========================= ++ ++NAME ++---- ++abrt-dump-journal-core - Extract coredumps from systemd-journal ++ ++SYNOPSIS ++-------- ++'abrt-dump-journal-core' [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D] ++ ++DESCRIPTION ++----------- ++This tool creates problem directory from coredumps extracted from ++systemd-journal. ++The tool can follow systemd-journal and extract coredumps in time of their ++occurrence. ++ ++The following start from the last seen cursor. If the last seen cursor file ++does not exist, the following start by scanning the entire sytemd-journal or ++from the end if '-e' option is specified. ++ ++-c and -e options conflicts because both specifies the first read message. ++ ++-e is useful only for -f because the following of journal starts by reading ++the entire journal if the last seen possition is not available. ++ ++FILES ++----- ++/var/lib/abrt/abrt-dump-journal-core.state:: ++ State file where systemd-journal cursor to the last seen message is saved ++ ++OPTIONS ++------- ++-v, --verbose:: ++ Be more verbose. Can be given multiple times. ++ ++-s:: ++ Log to syslog ++ ++-d DIR:: ++ Create new problem directory in DIR for every coredump ++ ++-D:: ++ Same as -d DumpLocation, DumpLocation is specified in abrt.conf ++ ++-e:: ++ Starts following systemd-journal from the end ++ ++-t INT:: ++ Throttle problem directory creation to 1 per INT second ++ ++-T:: ++ Same as -t INT, INT is specified in plugins/CCpp.conf ++ ++-f:: ++ Follow systemd-journal from the last seen position (if available) ++ ++SEE ALSO ++-------- ++abrt.conf(5), journalctl(1) ++ ++AUTHORS ++------- ++* ABRT team +-- +2.6.3 + diff --git a/0033-a-d-journal-core-set-root-owner-for-created-dump-dir.patch b/0033-a-d-journal-core-set-root-owner-for-created-dump-dir.patch new file mode 100644 index 0000000..5598676 --- /dev/null +++ b/0033-a-d-journal-core-set-root-owner-for-created-dump-dir.patch @@ -0,0 +1,31 @@ +From cf9e5388ac7d94ab5aa34b274c32d735b702c48a Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Mon, 26 Oct 2015 15:21:07 +0100 +Subject: [PATCH] a-d-journal-core: set root owner for created dump directory + +Without this commit abrt-server fails during check the right owner and group of +dump dirs. + +Related to rhbz#1269827 + +Signed-off-by: Matej Habrnal +--- + src/plugins/abrt-dump-journal-core.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/plugins/abrt-dump-journal-core.c b/src/plugins/abrt-dump-journal-core.c +index 7ad69e8..02d5afe 100644 +--- a/src/plugins/abrt-dump-journal-core.c ++++ b/src/plugins/abrt-dump-journal-core.c +@@ -302,7 +302,7 @@ save_systemd_coredump_in_dump_directory(struct dump_dir *dd, struct crash_info * + static int + abrt_journal_core_to_abrt_problem(struct crash_info *info, const char *dump_location) + { +- struct dump_dir *dd = create_dump_dir(dump_location, "ccpp", info->ci_uid, ++ struct dump_dir *dd = create_dump_dir(dump_location, "ccpp", /*fs owner*/0, + (save_data_call_back)save_systemd_coredump_in_dump_directory, info); + + if (dd != NULL) +-- +2.6.3 + diff --git a/0034-doc-a-a-analyze-xorg-fix-path-to-conf-file.patch b/0034-doc-a-a-analyze-xorg-fix-path-to-conf-file.patch new file mode 100644 index 0000000..36afddb --- /dev/null +++ b/0034-doc-a-a-analyze-xorg-fix-path-to-conf-file.patch @@ -0,0 +1,31 @@ +From 8b6d1511bb89548c60a472ddbaefbf00743be1ea Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 3 Nov 2015 12:31:38 +0100 +Subject: [PATCH] doc: a-a-analyze-xorg fix path to conf file + +xorg.conf is no longer located in /etc/abrt/xorg.conf but in +/etc/abrt/plugins/xorg.conf. + +Signed-off-by: Matej Habrnal +--- + doc/abrt-action-analyze-xorg.txt | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/doc/abrt-action-analyze-xorg.txt b/doc/abrt-action-analyze-xorg.txt +index 880c6fb..aa72249 100644 +--- a/doc/abrt-action-analyze-xorg.txt ++++ b/doc/abrt-action-analyze-xorg.txt +@@ -39,8 +39,8 @@ OPTIONS + + FILES + ----- +-/etc/abrt/xorg.conf +- List of modules which, when loaded, should make Xorg crashes non-reportable. ++/etc/abrt/plugins/xorg.conf ++ Configuration file for ABRT's tools which work with Xorg crashes + + AUTHORS + ------- +-- +2.6.3 + diff --git a/0035-a-a-s-p-data-fix-segfault-if-GPGKeysDir-isn-t-config.patch b/0035-a-a-s-p-data-fix-segfault-if-GPGKeysDir-isn-t-config.patch new file mode 100644 index 0000000..8a7aa64 --- /dev/null +++ b/0035-a-a-s-p-data-fix-segfault-if-GPGKeysDir-isn-t-config.patch @@ -0,0 +1,26 @@ +From 02fa8cc3f0c63b61b4994ac66e5c7e304013b25f Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 10 Nov 2015 13:22:21 +0100 +Subject: [PATCH] a-a-s-p-data: fix segfault if GPGKeysDir isn't configured + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt-action-save-package-data.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/daemon/abrt-action-save-package-data.c b/src/daemon/abrt-action-save-package-data.c +index 7054f06..72c9878 100644 +--- a/src/daemon/abrt-action-save-package-data.c ++++ b/src/daemon/abrt-action-save-package-data.c +@@ -88,7 +88,7 @@ static void load_gpg_keys(void) + } + + const char *gpg_keys_dir = get_map_string_item_or_NULL(settings, "GPGKeysDir"); +- if (strcmp(gpg_keys_dir, "") != 0) ++ if (gpg_keys_dir != NULL && strcmp(gpg_keys_dir, "") != 0) + { + log_debug("Reading gpg keys from '%s'", gpg_keys_dir); + GHashTable *done_set = g_hash_table_new(g_str_hash, g_str_equal); +-- +2.6.3 + diff --git a/0036-ccpp-make-crashes-of-processes-with-locked-memory-no.patch b/0036-ccpp-make-crashes-of-processes-with-locked-memory-no.patch new file mode 100644 index 0000000..9b99299 --- /dev/null +++ b/0036-ccpp-make-crashes-of-processes-with-locked-memory-no.patch @@ -0,0 +1,56 @@ +From a16d12d27e5c12f3e4ab5defaf775a692c405206 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 11 Nov 2015 13:19:35 +0100 +Subject: [PATCH] ccpp: make crashes of processes with locked memory + not-reportable + +Lets begin with a simply policy preventing users from accidental +publication of problem data with security sensitive data. + +"not-reportable" problems can still be auto-reported. That is not an +security issue because uReports does not contain any user data stored in +process' memory (only stack-trace without values local|global variables +and function arguments). + +Related to #796. + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 21 +++++++++++++++++++++ + 1 file changed, 21 insertions(+) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 809b45e..4b79900 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -868,6 +868,27 @@ int main(int argc, char** argv) + + dd_save_text(dd, FILENAME_ABRT_VERSION, VERSION); + ++ /* In case of errors, treat the process as if it has locked memory */ ++ long unsigned lck_bytes = ULONG_MAX; ++ const char *vmlck = strstr(proc_pid_status, "VmLck:"); ++ if (vmlck == NULL) ++ error_msg("/proc/%s/status does not contain 'VmLck:' line", pid_str); ++ else if (1 != sscanf(vmlck + 6, "%lu kB\n", &lck_bytes)) ++ error_msg("Failed to parse 'VmLck:' line in /proc/%s/status", pid_str); ++ ++ if (lck_bytes) ++ { ++ log_notice("Process %s of user %lu has locked memory", ++ pid_str, (long unsigned)uid); ++ ++ dd_mark_as_notreportable(dd, "The process had locked memory " ++ "which usually indicates efforts to protect sensitive " ++ "data (passwords) from being written to disk.\n" ++ "In order to avoid sensitive information leakages, " ++ "ABRT will not allow you to report this problem to " ++ "bug tracking tools"); ++ } ++ + if (setting_SaveBinaryImage) + { + if (save_crashing_binary(pid, dd)) +-- +2.6.3 + diff --git a/0037-a-a-i-d-to-abrt-cache-make-own-random-temporary-dire.patch b/0037-a-a-i-d-to-abrt-cache-make-own-random-temporary-dire.patch new file mode 100644 index 0000000..cff3c68 --- /dev/null +++ b/0037-a-a-i-d-to-abrt-cache-make-own-random-temporary-dire.patch @@ -0,0 +1,103 @@ +From 4e5dfba1a1a4d5c5e49b7f6320bd2cb8052f86d1 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 30 Sep 2015 11:50:18 +0200 +Subject: [PATCH] a-a-i-d-to-abrt-cache: make own random temporary directory + +The set-user-ID wrapper must use own new temporary directory in order to +avoid security issues with unpacking specially crafted debuginfo +packages that might be used to create files or symlinks anywhere on the +file system as the abrt user. + +Withot the forking code the temporary directory would remain on the +filesystem in the case where all debuginfo data are already available. +This is caused by the fact that the underlying libreport functionality +accepts path to a desired temporary directory and creates it only if +necessary. Otherwise, the directory is not touched at all. + +This commit addresses CVE-2015-5273 + +Signed-off-by: Jakub Filak +--- + src/plugins/Makefile.am | 1 + + .../abrt-action-install-debuginfo-to-abrt-cache.c | 41 +++++++++++++++++++--- + 2 files changed, 38 insertions(+), 4 deletions(-) + +diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am +index 1c1ff8a..c5ea1ec 100644 +--- a/src/plugins/Makefile.am ++++ b/src/plugins/Makefile.am +@@ -328,6 +328,7 @@ abrt_action_install_debuginfo_to_abrt_cache_CPPFLAGS = \ + -D_GNU_SOURCE \ + -DBIN_DIR=\"$(bindir)\" \ + -DSBIN_DIR=\"$(sbindir)\" \ ++ -DLARGE_DATA_TMP_DIR=\"$(LARGE_DATA_TMP_DIR)\" \ + $(LIBREPORT_CFLAGS) \ + -Wall -Wwrite-strings \ + -fPIE +diff --git a/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c b/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c +index 81b1486..52d00de 100644 +--- a/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c ++++ b/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c +@@ -108,8 +108,14 @@ int main(int argc, char **argv) + build_ids_self_fd = xasprintf("/proc/self/fd/%d", build_ids_fd); + } + +- /* name, -v, --ids, -, -y, -e, EXACT, -r, REPO, --, NULL */ +- const char *args[11]; ++ char tmp_directory[] = LARGE_DATA_TMP_DIR"/abrt-tmp-debuginfo.XXXXXX"; ++ if (mkdtemp(tmp_directory) == NULL) ++ perror_msg_and_die("Failed to create working directory"); ++ ++ log_info("Created working directory: %s", tmp_directory); ++ ++ /* name, -v, --ids, -, -y, -e, EXACT, -r, REPO, -t, PATH, --, NULL */ ++ const char *args[13]; + { + const char *verbs[] = { "", "-v", "-vv", "-vvv" }; + unsigned i = 0; +@@ -130,6 +136,8 @@ int main(int argc, char **argv) + args[i++] = "--repo"; + args[i++] = repo; + } ++ args[i++] = "--tmpdir"; ++ args[i++] = tmp_directory; + args[i++] = "--"; + args[i] = NULL; + } +@@ -204,6 +212,31 @@ int main(int argc, char **argv) + umask(0022); + } + +- execvp(EXECUTABLE, (char **)args); +- error_msg_and_die("Can't execute %s", EXECUTABLE); ++ pid_t pid = fork(); ++ if (pid < 0) ++ perror_msg_and_die("fork"); ++ ++ if (pid == 0) ++ { ++ execvp(EXECUTABLE, (char **)args); ++ error_msg_and_die("Can't execute %s", EXECUTABLE); ++ } ++ ++ int status; ++ if (safe_waitpid(pid, &status, 0) < 0) ++ perror_msg_and_die("waitpid"); ++ ++ if (rmdir(tmp_directory) >= 0) ++ log_info("Removed working directory: %s", tmp_directory); ++ else if (errno != ENOENT) ++ perror_msg("Failed to remove working directory"); ++ ++ /* Normal execution should exit here. */ ++ if (WIFEXITED(status)) ++ return WEXITSTATUS(status); ++ ++ if (WIFSIGNALED(status)) ++ error_msg_and_die("Child terminated with signal %d", WTERMSIG(status)); ++ ++ error_msg_and_die("Child exit failed"); + } +-- +2.6.3 + diff --git a/0038-conf-introduce-DebugLevel.patch b/0038-conf-introduce-DebugLevel.patch new file mode 100644 index 0000000..11d918b --- /dev/null +++ b/0038-conf-introduce-DebugLevel.patch @@ -0,0 +1,101 @@ +From 1cb9013d7ec62b282fd404062e88371916a12fad Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 30 Sep 2015 12:17:47 +0200 +Subject: [PATCH] conf: introduce DebugLevel + +ABRT should ignore problems caused by ABRT tools if DebugLevel == 0. +DebugLevel is set to 0 by default. + +Related to CVE-2015-5287 + +Signed-off-by: Jakub Filak +--- + doc/abrt.conf.txt | 8 ++++++++ + src/daemon/abrt.conf | 8 ++++++++ + src/include/libabrt.h | 2 ++ + src/lib/abrt_conf.c | 14 ++++++++++++++ + 4 files changed, 32 insertions(+) + +diff --git a/doc/abrt.conf.txt b/doc/abrt.conf.txt +index 6626596..1276f55 100644 +--- a/doc/abrt.conf.txt ++++ b/doc/abrt.conf.txt +@@ -36,6 +36,14 @@ DeleteUploaded = 'yes/no':: + or not. + The default value is 'no'. + ++DebugLevel = '0-100': ++ Allows ABRT tools to detect problems in ABRT itself. By increasing the value ++ you can force ABRT to detect, process and report problems in ABRT. You have ++ to bare in mind that ABRT might fall into an infinite loop when handling ++ problems caused by itself. ++ The default is 0 (non debug mode). ++ ++ + SEE ALSO + -------- + abrtd(8) +diff --git a/src/daemon/abrt.conf b/src/daemon/abrt.conf +index 0050c6d..dbc2007 100644 +--- a/src/daemon/abrt.conf ++++ b/src/daemon/abrt.conf +@@ -59,3 +59,11 @@ AutoreportingEnabled = no + # SPECIAL ROOT DIRECTORY IN USER MOUNT NAMESAPCE + # + # ExploreChroots = false ++ ++# Allows ABRT tools to detect problems in ABRT itself. By increasing the value ++# you can force ABRT to detect, process and report problems in ABRT. You have ++# to bare in mind that ABRT might fall into an infinite loop when handling ++# problems caused by itself. ++# The default is 0 (non debug mode). ++# ++# DebugLevel = 0 +diff --git a/src/include/libabrt.h b/src/include/libabrt.h +index da565f9..6f89959 100644 +--- a/src/include/libabrt.h ++++ b/src/include/libabrt.h +@@ -77,6 +77,8 @@ extern char * g_settings_autoreporting_event; + extern bool g_settings_shortenedreporting; + #define g_settings_explorechroots abrt_g_settings_explorechroots + extern bool g_settings_explorechroots; ++#define g_settings_debug_level abrt_g_settings_debug_level ++extern unsigned int g_settings_debug_level; + + + #define load_abrt_conf abrt_load_abrt_conf +diff --git a/src/lib/abrt_conf.c b/src/lib/abrt_conf.c +index 46ff689..f623344 100644 +--- a/src/lib/abrt_conf.c ++++ b/src/lib/abrt_conf.c +@@ -28,6 +28,7 @@ bool g_settings_autoreporting = 0; + char * g_settings_autoreporting_event = NULL; + bool g_settings_shortenedreporting = 0; + bool g_settings_explorechroots = 0; ++unsigned int g_settings_debug_level = 0; + + void free_abrt_conf_data() + { +@@ -116,6 +117,19 @@ static void ParseCommon(map_string_t *settings, const char *conf_filename) + else + g_settings_explorechroots = false; + ++ value = get_map_string_item_or_NULL(settings, "DebugLevel"); ++ if (value) ++ { ++ char *end; ++ errno = 0; ++ unsigned long ul = strtoul(value, &end, 10); ++ if (errno || end == value || *end != '\0' || ul > INT_MAX) ++ error_msg("Error parsing %s setting: '%s'", "DebugLevel", value); ++ else ++ g_settings_debug_level = ul; ++ remove_map_string_item(settings, "DebugLevel"); ++ } ++ + GHashTableIter iter; + const char *name; + /*char *value; - already declared */ +-- +2.6.3 + diff --git a/0039-ccpp-ignore-crashes-of-ABRT-binaries-if-DebugLevel-0.patch b/0039-ccpp-ignore-crashes-of-ABRT-binaries-if-DebugLevel-0.patch new file mode 100644 index 0000000..46584ba --- /dev/null +++ b/0039-ccpp-ignore-crashes-of-ABRT-binaries-if-DebugLevel-0.patch @@ -0,0 +1,40 @@ +From 82264feebb3a816098e68f0dce1502521b6b7a92 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 30 Sep 2015 12:19:48 +0200 +Subject: [PATCH] ccpp: ignore crashes of ABRT binaries if DebugLevel == 0 + +Prior this commit abrt-hook-ccpp was saved core file of any +crashed process executing program whose name starts with "abrt" in +DUMP_LOCATION. + +ABRT does not check size constraints of these core files, so the files +could consume an uncontrolled amount of disk space. + +Related to CVE-2015-5287 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 7 +++++++ + 1 file changed, 7 insertions(+) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 4b79900..4a31b81 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -703,6 +703,13 @@ int main(int argc, char** argv) + const char *last_slash = strrchr(executable, '/'); + if (last_slash && strncmp(++last_slash, "abrt", 4) == 0) + { ++ if (g_settings_debug_level == 0) ++ { ++ log_warning("Ignoring crash of %s (SIG%s).", ++ executable, signame ? signame : signal_str); ++ goto cleanup_and_exit; ++ } ++ + /* If abrtd/abrt-foo crashes, we don't want to create a _directory_, + * since that can make new copy of abrtd to process it, + * and maybe crash again... +-- +2.6.3 + diff --git a/0040-ccpp-save-abrt-core-files-only-to-new-files.patch b/0040-ccpp-save-abrt-core-files-only-to-new-files.patch new file mode 100644 index 0000000..fade86c --- /dev/null +++ b/0040-ccpp-save-abrt-core-files-only-to-new-files.patch @@ -0,0 +1,34 @@ +From fce92be28e87f4bbcf637ec06cc3e28652628684 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 30 Sep 2015 12:24:32 +0200 +Subject: [PATCH] ccpp: save abrt core files only to new files + +Prior this commit abrt-hook-ccpp saved a core file generated by a +process running a program whose name starts with "abrt" in +DUMP_LOCATION/$(basename program)-coredump. If the file was a symlink, +the hook followed and wrote core file to the symlink's target. + +Addresses CVE-2015-5287 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 4a31b81..58d9c28 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -718,7 +718,8 @@ int main(int argc, char** argv) + if (snprintf(path, sizeof(path), "%s/%s-coredump", g_settings_dump_location, last_slash) >= sizeof(path)) + error_msg_and_die("Error saving '%s': truncated long file path", path); + +- int abrt_core_fd = xopen3(path, O_WRONLY | O_CREAT | O_TRUNC, 0600); ++ unlink(path); ++ int abrt_core_fd = xopen3(path, O_WRONLY | O_CREAT | O_EXCL, 0600); + off_t core_size = copyfd_eof(STDIN_FILENO, abrt_core_fd, COPYFD_SPARSE); + if (core_size < 0 || fsync(abrt_core_fd) != 0) + { +-- +2.6.3 + diff --git a/0041-lib-add-convenient-wrappers-for-ensuring-writable-di.patch b/0041-lib-add-convenient-wrappers-for-ensuring-writable-di.patch new file mode 100644 index 0000000..0b48b23 --- /dev/null +++ b/0041-lib-add-convenient-wrappers-for-ensuring-writable-di.patch @@ -0,0 +1,97 @@ +From d8a3bd0d464f5b75ac360f4ee4e3cc6927a09199 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 30 Sep 2015 14:13:35 +0200 +Subject: [PATCH] lib: add convenient wrappers for ensuring writable dir + +Replace lchown with fchown and chmod with fchmod. + +Related CVE-2015-5287 + +Signed-off-by: Jakub Filak +--- + src/include/libabrt.h | 4 ++++ + src/lib/hooklib.c | 41 ++++++++++++++++++++++++++++++++++------- + 2 files changed, 38 insertions(+), 7 deletions(-) + +diff --git a/src/include/libabrt.h b/src/include/libabrt.h +index 6f89959..b26dcc6 100644 +--- a/src/include/libabrt.h ++++ b/src/include/libabrt.h +@@ -42,8 +42,12 @@ int low_free_space(unsigned setting_MaxCrashReportsSize, const char *dump_locati + + #define trim_problem_dirs abrt_trim_problem_dirs + void trim_problem_dirs(const char *dirname, double cap_size, const char *exclude_path); ++#define ensure_writable_dir_id abrt_ensure_writable_dir_uid_git ++void ensure_writable_dir_uid_gid(const char *dir, mode_t mode, uid_t uid, gid_t gid); + #define ensure_writable_dir abrt_ensure_writable_dir + void ensure_writable_dir(const char *dir, mode_t mode, const char *user); ++#define ensure_writable_dir_group abrt_ensure_writable_dir_group ++void ensure_writable_dir_group(const char *dir, mode_t mode, const char *user, const char *group); + #define run_unstrip_n abrt_run_unstrip_n + char *run_unstrip_n(const char *dump_dir_name, unsigned timeout_sec); + #define get_backtrace abrt_get_backtrace +diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c +index 2b76eea..0daa144 100644 +--- a/src/lib/hooklib.c ++++ b/src/lib/hooklib.c +@@ -476,23 +476,50 @@ int signal_is_fatal(int signal_no, const char **name) + return signame != NULL; + } + +-void ensure_writable_dir(const char *dir, mode_t mode, const char *user) ++void ensure_writable_dir_uid_gid(const char *dir, mode_t mode, uid_t uid, gid_t gid) + { + struct stat sb; ++ int dir_fd; + + if (mkdir(dir, mode) != 0 && errno != EEXIST) + perror_msg_and_die("Can't create '%s'", dir); +- if (stat(dir, &sb) != 0 || !S_ISDIR(sb.st_mode)) +- error_msg_and_die("'%s' is not a directory", dir); + ++ dir_fd = open(dir, O_DIRECTORY | O_NOFOLLOW); ++ if (dir_fd < 0) ++ perror_msg_and_die("Can't open directory '%s'", dir); ++ ++ if (fstat(dir_fd, &sb) != 0) ++ perror_msg_and_die("Can't stat directory '%s'", dir); ++ ++ if ((sb.st_uid != uid || sb.st_gid != gid) && fchown(dir_fd, uid, gid) != 0) ++ perror_msg_and_die("Can't set owner %u:%u on '%s'", (unsigned int)uid, (unsigned int)gid, dir); ++ ++ if ((sb.st_mode & 07777) != mode && fchmod(dir_fd, mode) != 0) ++ perror_msg_and_die("Can't set mode %o on '%s'", mode, dir); ++ ++ close(dir_fd); ++} ++ ++void ensure_writable_dir(const char *dir, mode_t mode, const char *user) ++{ ++ struct passwd *pw = getpwnam(user); ++ if (!pw) ++ perror_msg_and_die("Can't find user '%s'", user); ++ ++ ensure_writable_dir_uid_gid(dir, mode, pw->pw_uid, pw->pw_gid); ++} ++ ++void ensure_writable_dir_group(const char *dir, mode_t mode, const char *user, const char *group) ++{ + struct passwd *pw = getpwnam(user); + if (!pw) + perror_msg_and_die("Can't find user '%s'", user); + +- if ((sb.st_uid != pw->pw_uid || sb.st_gid != pw->pw_gid) && lchown(dir, pw->pw_uid, pw->pw_gid) != 0) +- perror_msg_and_die("Can't set owner %u:%u on '%s'", (unsigned int)pw->pw_uid, (unsigned int)pw->pw_gid, dir); +- if ((sb.st_mode & 07777) != mode && chmod(dir, mode) != 0) +- perror_msg_and_die("Can't set mode %o on '%s'", mode, dir); ++ struct group *gr = getgrnam(group); ++ if (!gr) ++ perror_msg_and_die("Can't find group '%s'", group); ++ ++ ensure_writable_dir_uid_gid(dir, mode, pw->pw_uid, gr->gr_gid); + } + + bool dir_is_in_dump_location(const char *dir_name) +-- +2.6.3 + diff --git a/0042-abrtd-switch-owner-of-the-dump-location-to-root.patch b/0042-abrtd-switch-owner-of-the-dump-location-to-root.patch new file mode 100644 index 0000000..6244652 --- /dev/null +++ b/0042-abrtd-switch-owner-of-the-dump-location-to-root.patch @@ -0,0 +1,29 @@ +From 5653ddfeb61279df38e80ab18652afa68c964eb6 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 30 Sep 2015 14:14:31 +0200 +Subject: [PATCH] abrtd: switch owner of the dump location to 'root' + +Additional hardening suggested by Florian Weimer +Related to CVE-2015-5287 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrtd.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/daemon/abrtd.c b/src/daemon/abrtd.c +index 0352eed..90a7163 100644 +--- a/src/daemon/abrtd.c ++++ b/src/daemon/abrtd.c +@@ -195,7 +195,7 @@ static void sanitize_dump_dir_rights(void) + * us with thousands of bogus or malicious dumps */ + /* 07000 bits are setuid, setgit, and sticky, and they must be unset */ + /* 00777 bits are usual "rwxrwxrwx" access rights */ +- ensure_writable_dir(g_settings_dump_location, DEFAULT_DUMP_LOCATION_MODE, "abrt"); ++ ensure_writable_dir_group(g_settings_dump_location, DEFAULT_DUMP_LOCATION_MODE, "root", "abrt"); + /* temp dir */ + ensure_writable_dir(VAR_RUN"/abrt", 0755, "root"); + } +-- +2.6.3 + diff --git a/0044-a-a-save-package-data-do-not-blacklist-firefox.patch b/0044-a-a-save-package-data-do-not-blacklist-firefox.patch new file mode 100644 index 0000000..a7a0103 --- /dev/null +++ b/0044-a-a-save-package-data-do-not-blacklist-firefox.patch @@ -0,0 +1,28 @@ +From b0d5570f1d0f12adf8e00a39c60e7c5da367fd07 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Wed, 3 Feb 2016 14:41:48 +0100 +Subject: [PATCH] a-a-save-package-data: do not blacklist firefox + +Resolves: rhbz#1304310 + +Signed-off-by: Matej Habrnal +--- + src/daemon/abrt-action-save-package-data.conf | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/daemon/abrt-action-save-package-data.conf b/src/daemon/abrt-action-save-package-data.conf +index 0129399..58f5061 100644 +--- a/src/daemon/abrt-action-save-package-data.conf ++++ b/src/daemon/abrt-action-save-package-data.conf +@@ -7,7 +7,7 @@ OpenGPGCheck = yes + + # Blacklisted packages + # +-BlackList = nspluginwrapper, valgrind, strace, mono-core, firefox, bash ++BlackList = nspluginwrapper, valgrind, strace, mono-core, bash + + # Process crashes in executables which do not belong to any package? + # +-- +2.5.0 + diff --git a/0045-ccpp-drop-e-from-the-core_pattern.patch b/0045-ccpp-drop-e-from-the-core_pattern.patch new file mode 100644 index 0000000..c643f95 --- /dev/null +++ b/0045-ccpp-drop-e-from-the-core_pattern.patch @@ -0,0 +1,94 @@ +From 3c4bbdee2059525fafdd6b32a6c85cf2358febe4 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Wed, 10 Feb 2016 14:53:44 +0100 +Subject: [PATCH] ccpp: drop %e from the core_pattern + +The argument is no longer need and it must be placed either at the end +of the command or enclosed with '' as it can contain white space. + +Threads can have an arbitrary name: + man 3 pthread_setname_np + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 16 ++++++++-------- + src/hooks/abrt-install-ccpp-hook.in | 12 +----------- + 2 files changed, 9 insertions(+), 19 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 58d9c28..ac60840 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -142,9 +142,9 @@ static struct dump_dir *dd; + * %u - uid + * %g - gid + * %t - UNIX time of dump +- * %e - executable filename +- * %i - crash thread tid + * %P - global pid ++ * %I - crash thread tid ++ * %e - executable filename (can contain white spaces) + * %% - output one "%" + */ + /* Hook must be installed with exactly the same sequence of %c specifiers. +@@ -559,9 +559,9 @@ int main(int argc, char** argv) + + if (argc < 8) + { +- /* percent specifier: %s %c %p %u %g %t %e %P %i*/ +- /* argv: [0] [1] [2] [3] [4] [5] [6] [7] [8] [9]*/ +- error_msg_and_die("Usage: %s SIGNO CORE_SIZE_LIMIT PID UID GID TIME BINARY_NAME GLOBAL_PID [TID]", argv[0]); ++ /* percent specifier: %s %c %p %u %g %t %P %T */ ++ /* argv: [0] [1] [2] [3] [4] [5] [6] [7] [8] */ ++ error_msg_and_die("Usage: %s SIGNO CORE_SIZE_LIMIT PID UID GID TIME GLOBAL_PID GLOBAL_TID", argv[0]); + } + + /* Not needed on 2.6.30. +@@ -604,11 +604,11 @@ int main(int argc, char** argv) + else + free(s); + } +- const char *global_pid_str = argv[8]; +- pid_t pid = xatoi_positive(argv[8]); ++ const char *global_pid_str = argv[7]; ++ pid_t pid = xatoi_positive(argv[7]); + + pid_t tid = -1; +- const char *tid_str = argv[9]; ++ const char *tid_str = argv[8]; + if (tid_str) + { + tid = xatoi_positive(tid_str); +diff --git a/src/hooks/abrt-install-ccpp-hook.in b/src/hooks/abrt-install-ccpp-hook.in +index 707c57d..660c209 100755 +--- a/src/hooks/abrt-install-ccpp-hook.in ++++ b/src/hooks/abrt-install-ccpp-hook.in +@@ -11,9 +11,7 @@ SAVED_PATTERN_DIR="@VAR_RUN@/abrt" + SAVED_PATTERN_FILE="@VAR_RUN@/abrt/saved_core_pattern" + HOOK_BIN="@libexecdir@/abrt-hook-ccpp" + # Must match percent_specifiers[] order in abrt-hook-ccpp.c: +-PATTERN="|$HOOK_BIN %s %c %p %u %g %t %e %P %I" +-# Same, but with bogus "executable name" parameter +-PATTERN1="|$HOOK_BIN %s %c %p %u %g %t e %P %I" ++PATTERN="|$HOOK_BIN %s %c %p %u %g %t %P %I" + + # core_pipe_limit specifies how many dump_helpers can run at the same time + # 0 - means unlimited, but it's not guaranteed that /proc/ of crashing +@@ -39,14 +37,6 @@ start() { + cur=`cat "$PATTERN_FILE"` + cur_first=`printf "%s" "$cur" | sed 's/ .*//'` + +- # Is there a %e (executable name) in old pattern anywhere? +- if test x"${cur#*%e}" = x"${cur}"; then +- # No. Can use PATTERN with less risk of overflow +- # on expansion (executable names can be LONG). +- # Overflow would cause kernel to abort coredump. BAD. +- PATTERN="$PATTERN1" +- fi +- + $verbose && printf "cur:'%s'\n" "$cur" + # Is it already installed? + if test x"$cur_first" != x"|$HOOK_BIN"; then # no +-- +2.5.0 + diff --git a/0048-Translation-updates.patch b/0048-Translation-updates.patch new file mode 100644 index 0000000..9abf66b --- /dev/null +++ b/0048-Translation-updates.patch @@ -0,0 +1,92374 @@ +From d9aac55f7dc76002e8afe3558f80831177d71d63 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 11 Feb 2016 14:51:00 +0100 +Subject: [PATCH] Translation updates + +Signed-off-by: Jakub Filak +--- + po/ar.po | 690 ++++++++++++++++++------- + po/as.po | 711 ++++++++++++++++++------- + po/ast.po | 685 ++++++++++++++++++------- + po/bg.po | 693 ++++++++++++++++++------- + po/bn.po | 687 ++++++++++++++++++------- + po/bn_IN.po | 713 +++++++++++++++++++------- + po/bs.po | 685 ++++++++++++++++++------- + po/ca.po | 1028 ++++++++++++++++++++++++------------- + po/cs.po | 842 +++++++++++++++++++++--------- + po/da.po | 685 ++++++++++++++++++------- + po/de.po | 746 +++++++++++++++++++-------- + po/el.po | 685 ++++++++++++++++++------- + po/en_GB.po | 699 ++++++++++++++++++------- + po/es.po | 845 +++++++++++++++++++++--------- + po/et.po | 693 ++++++++++++++++++------- + po/eu.po | 687 ++++++++++++++++++------- + po/fa.po | 685 ++++++++++++++++++------- + po/fi.po | 754 +++++++++++++++++++-------- + po/fr.po | 939 ++++++++++++++++++++++++---------- + po/gl.po | 697 ++++++++++++++++++------- + po/gu.po | 711 ++++++++++++++++++------- + po/he.po | 685 ++++++++++++++++++------- + po/hi.po | 713 +++++++++++++++++++------- + po/hu.po | 736 ++++++++++++++++++-------- + po/ia.po | 685 ++++++++++++++++++------- + po/id.po | 685 ++++++++++++++++++------- + po/it.po | 714 +++++++++++++++++++------- + po/ja.po | 761 +++++++++++++++++++-------- + po/ka.po | 685 ++++++++++++++++++------- + po/km.po | 1275 ++++++++++++++++++++++++++++++--------------- + po/kn.po | 711 ++++++++++++++++++------- + po/ko.po | 825 ++++++++++++++++++++--------- + po/lt.po | 701 ++++++++++++++++++------- + po/lv.po | 687 ++++++++++++++++++------- + po/ml.po | 727 ++++++++++++++++++-------- + po/mr.po | 711 ++++++++++++++++++------- + po/nb.po | 685 ++++++++++++++++++------- + po/nds.po | 685 ++++++++++++++++++------- + po/nl.po | 722 ++++++++++++++++++-------- + po/or.po | 714 +++++++++++++++++++------- + po/pa.po | 707 ++++++++++++++++++------- + po/pl.po | 934 ++++++++++++++++++++++----------- + po/pt.po | 858 ++++++++++++++++++++++--------- + po/pt_BR.po | 712 +++++++++++++++++++------- + po/ru.po | 785 +++++++++++++++++++--------- + po/sk.po | 805 ++++++++++++++++++++--------- + po/sq.po | 1236 +++++++++++++++++++++++++++++--------------- + po/sr.po | 1565 ++++++++++++++++++++++++++++++++++++++------------------ + po/sr@latin.po | 685 ++++++++++++++++++------- + po/sv.po | 723 ++++++++++++++++++-------- + po/ta.po | 712 +++++++++++++++++++------- + po/te.po | 711 ++++++++++++++++++------- + po/tg.po | 685 ++++++++++++++++++------- + po/th.po | 703 ++++++++++++++++++------- + po/tr.po | 685 ++++++++++++++++++------- + po/uk.po | 720 ++++++++++++++++++-------- + po/ur.po | 685 ++++++++++++++++++------- + po/vi.po | 687 ++++++++++++++++++------- + po/zh_CN.po | 709 ++++++++++++++++++------- + po/zh_TW.po | 716 +++++++++++++++++++------- + 60 files changed, 32904 insertions(+), 12786 deletions(-) + +diff --git a/po/ar.po b/po/ar.po +index 43f1c97..650d734 100644 +--- a/po/ar.po ++++ b/po/ar.po +@@ -4,22 +4,23 @@ + # + # Translators: + # Jiří Moskovčák , 2011 ++# Khalid Moharrum , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-10-06 07:45-0400\n" +-"Last-Translator: Jakub Filak \n" ++"PO-Revision-Date: 2015-11-03 07:57-0500\n" ++"Last-Translator: Khalid Moharrum \n" + "Language-Team: Arabic (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ar/)\n" + "Language: ar\n" + "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " + "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -29,108 +30,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "تقرير" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -152,7 +164,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -185,30 +199,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -234,14 +260,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -253,11 +279,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -271,24 +297,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -296,60 +323,50 @@ msgstr "" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -357,12 +374,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -383,18 +400,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -424,73 +445,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -502,68 +524,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -587,18 +609,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -639,7 +669,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -728,12 +758,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -842,14 +904,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1064,7 +1155,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1074,16 +1166,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1092,8 +1186,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1113,6 +1211,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1136,11 +1235,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1154,16 +1255,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1171,18 +1275,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1201,14 +1308,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1217,70 +1327,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1777,63 +1937,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1855,65 +2015,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1921,49 +2082,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1972,24 +2143,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/as.po b/po/as.po +index 2f44fc6..ce31175 100644 +--- a/po/as.po ++++ b/po/as.po +@@ -12,7 +12,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -22,7 +22,7 @@ msgstr "" + "language/as/)\n" + "Language: as\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -32,102 +32,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ৰ অধিকাৰী হব নোৱাৰি" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' লিখিবলে ডাইৰেকটৰি খোলিব নোৱাৰি" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "অধিসূচনা বন্ধ কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "সংবাদ" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "অধিসূচনা দেখুৱাব নোৱাৰি: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio চেনেলৰ পৰা পঢ়িব নোৱাৰি: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio চেনেলত এনক'ডিং সংহতি কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio চেনেলৰ বাবে অপ্ৰতিৰোধি অৱস্থা আৰম্ভ কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -137,6 +137,17 @@ msgstr "" + "\n" + "এপ্লেট যি ABRT দ্বাৰা নতুন সমস্যাসমূহ চিনাক্ত কৰোতে অধিসূচিত কৰে\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "ডাইৰেকটৰি চুৰ কৰাৰ আগত সোধিব" +@@ -158,12 +169,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"স্টেক ট্ৰেইচ সৃজন কৰিবলে কেন্দ্ৰডাম্প ফাইলৰ প্ৰয়োজন যি সময় আৰু স্থান লোৱা " +-"কাৰ্য্য। ABRT এ সেৱা প্ৰদান কৰে যি স্টেক ট্ৰেইচক কেন্দ্ৰডাম্পৰ পৰা সৃজন কৰে " +-"কিন্তু আপুনি কেন্দ্ৰডাম্পক এই সেৱালৈ আপল'ড কৰিব লাগিব। এই বিকল্পৰ সৈতে " +-"অসামৰ্থবান থাকিলে ABRT এ নোসোধাকৈ কেন্দ্ৰ ডাম্পক আপল'ড কৰিব।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -208,10 +217,6 @@ msgstr "" + "নেদেখুৱায়। প্ৰভাৱশালী হয় কেৱল যেতিয়া সমু সংবাদন সামৰ্থবান থাকে।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "কেন্দ্ৰডাম্প আপল'ড কৰাৰ আগত সোধিব" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -219,15 +224,15 @@ msgstr "" + "এই বিকল্প সামৰ্থবান থাকিলে ABRT এ সদায় নিষিদ্ধ অভিগমৰ সৈতে বাগ টিকেট সৃষ্টি " + "কৰে যদি সম্ভৱত সংবেদনশীল তথ্য চিনাক্ত কৰা হয়।" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "সংবেদনশীল তথ্যৰ বাবে ব্যক্তিগত টিকেট অনুৰোধ কৰক" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "অসম্পূৰ্ণ সমস্যাবোৰ অধিসূচীত কৰক" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -237,6 +242,22 @@ msgstr "" + "আউট হৈ থকা সময়ত চিনাক্ত কৰা হয়। অমূল্য সমস্যা সংবাদসমূহ প্ৰদান কৰিবলে, ABRT " + "এ আপোনাক এই সমস্যা জমা দিয়াৰ অনুমতি নিদিব।" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "বন্ধ কৰক (_C)" +@@ -262,14 +283,14 @@ msgstr "বিষয়ে" + msgid "Quit" + msgstr "প্ৰস্থান কৰক" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -281,11 +302,11 @@ msgstr "" + msgid "Problem directory" + msgstr "সমস্যা ডাইৰেকটৰি" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "সংৰূপ নথিপত্ৰ" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -299,24 +320,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM k ক্লাএন্ট uid হিচাপে ব্যৱহাৰ কৰক" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog -লে লগ কৰক" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "লগলে প্ৰগ্ৰাম নামসমূহ যোগ কৰক" + +@@ -324,62 +346,52 @@ msgstr "লগলে প্ৰগ্ৰাম নামসমূহ যোগ + msgid "Unknown error" + msgstr "অজ্ঞাত ত্ৰুটি" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' এটা বৈধ সমস্যা ডাইৰেকটৰি নহয়" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' এটা বৈধ উপাদানৰ নাম নহয়" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' উপাদান পৰিবৰ্তন কৰিব নোৱাৰি" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' এটা বৈধ সমস্যা ডাইৰেকটৰি নহয়" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "প্ৰমাণীত নহয়" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "পৰিবৰ্তনৰ বাবে সমস্যাক অভিগম কৰিব নোৱাৰি" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' উপাদান পৰিবৰ্তন কৰিব নোৱাৰি" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "ডাইৰেকটৰি Chowning কৰোতে ব্যৰ্থ হল। অধিক বিৱৰণসমূহৰ বাবে চিস্টেম লগসমূহ " + "নীৰিক্ষণ কৰক।" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' এটা বৈধ উপাদানৰ নাম নহয়" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' ৰ আকাৰ প্ৰাপ্ত কৰিব পৰা নগল" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "কোনো সমস্যা স্থান অৱশিষ্ট নাই" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "সমস্যা ডাইৰেকটৰি '%s' ৰ পৰা উপাদান '%s' মচিব নোৱাৰি" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -388,12 +400,12 @@ msgid "" + msgstr "" + "নাম '%s' হেৰাইছে, অনুগ্ৰহ কৰি নীৰিক্ষণ কৰক একে নামৰ অন্য সেৱা চলি থকা নাই।\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "নিষ্ক্ৰিয়তাৰ NUM ছেকেণ্ডসমূহ পিছত প্ৰস্থান কৰিব" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "এই প্ৰগ্ৰামক ৰুট হিচাপে চলাব লাগিব।" + +@@ -419,18 +431,22 @@ msgstr "ডিমোনাইজ নকৰিব" + msgid "Log to syslog even with -d" + msgstr "-d -ৰ হৈতেও syslog -লে লগ কৰক" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR ত EVENT চলাওক" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "ব্যৱহাৰকাৰীৰ সৈতে প্ৰত্যক্ষভাৱে যোগাযোগ কৰক" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -468,74 +484,75 @@ msgstr "সঙ্গামী কৰ্মীসকলৰ সংখ্যা। + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB ত সৰ্বাধিক ক্যাশ আকাৰ। অবিকল্পিত হল" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "তৰ্কৰ অবৈধ সংখ্যা" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "অজ্ঞাত বিকল্প মান: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -555,83 +572,83 @@ msgstr "" + " FILENAME - Uploaded archive file name\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "এটা ডাইৰেকটৰি নহয়: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "বাদ দিয়া হৈছে: '{0}' (স্লেশৰ সৈতে আৰম্ভ হয়)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "বাদ দিয়া হৈছে: '{0}' (ডটৰ সৈতে আৰম্ভ হয়)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "বাদ দিয়া হৈছে: '{0}' (অন্তৰ্ভুক্ত কৰে ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "বাদ দিয়া হৈছে: '{0}' (স্পেইচ অন্তৰ্ভুক্ত কৰে)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "বাদ দিয়া হৈছে: '{0}' (টেব অন্তৰ্ভুক্ত কৰে)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "ডাইৰেকটৰিক '{0}' লৈ পৰিবৰ্তন কৰিব নোৱাৰি" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "অজ্ঞাত ফাইল ধৰণ: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' ত কাৰ্য্যকৰী ডাইৰেকটৰি সৃষ্টি কৰিব নোৱাৰি" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' ক '{1}' লৈ স্থানান্তৰ কৰিব নোৱাৰি" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' ক '{1}' লৈ কপি কৰিব নোৱাৰি" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' ত সত্যাপন ত্ৰুটি" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' আনপেক কৰা হৈছে" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ডাইৰেকটৰি সৃষ্টি কৰিব নোৱাৰি" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' ক আনপেক কৰিব নোৱাৰি" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' ক সফলভাৱে প্ৰক্ৰিয়াকৰণ কৰা হল" + +@@ -655,18 +672,26 @@ msgstr "'%s' chown কৰিব নোৱাৰি: %s" + msgid "Deleting problem directory failed: %s" + msgstr "সমস্যা ডাইৰেকটৰি মচি পেলোৱা ব্যৰ্থ হল: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus ৰ পৰা সমস্যা তথ্য প্ৰাপ্ত কৰিব নোৱাৰি: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus ৰ পৰা সমস্যা তালিকা প্ৰাপ্ত কৰিব নোৱাৰি: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus ৰ পৰা সমস্যা তথ্য প্ৰাপ্ত কৰিব নোৱাৰি: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -713,7 +738,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s -ৰ বাবে বেকট্ৰেইচ বিশ্লেষণ ব্যৰ্থ হল" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "স্খলন থ্ৰেড পোৱা নগল" + +@@ -818,7 +843,7 @@ msgstr "oops বাৰ্তা নিষ্কাষণ কৰিব নোৱ + msgid "Oops text extracted successfully" + msgstr "Oops লিখনী সফলভাৱে নিষ্কাষণ কৰা হল" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -826,6 +851,38 @@ msgstr "" + "কাৰনেল লগত হাৰ্ডৱেৰ ত্ৰুটিসমূহ চিনাক্ত কৰা হৈছিল।\n" + "ই সম্ভবত এটা চফ্টৱেৰ সমস্যা নহয়।\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -944,7 +1001,36 @@ msgstr "সন্ধানহিন debuginfo নথিপত্ৰ: {0}" + msgid "All debuginfo files are available" + msgstr "সকলো debuginfo ফাইল উপলব্ধ" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -954,7 +1040,7 @@ msgstr "" + "পাৰে)। যদি আপোনাৰ উত্তৰ 'নহয়' হয়, এটা স্টেক ট্ৰেইচ স্থানীয়ভাৱে সৃজন কৰা হব। " + "(ই তথ্যৰ এটা বৃহত পৰিমাণ ডাউনল'ড কৰিব পাৰে)।" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1190,7 +1276,8 @@ msgstr "প্ৰতিটো প্ৰাপ্ত oops ৰ বাবে DIR + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation নিচিনা একে, DumpLocation ক abrt.conf ত ধাৰ্য্য কৰা হয়। " +@@ -1201,16 +1288,18 @@ msgstr "PROBLEM ত নিষ্কাষিত তথ্য সংৰক্ষ + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "সমস্যা ডাইৰেকটৰি বিশ্ব পঢ়িব পৰা কৰক" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "সমস্যা ডাইৰেকটৰিৰ সৃষ্টিকৰণক ১ প্ৰতি ছেকেণ্ডলৈ থ্ৰটল কৰক" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout লে সন্ধান স্ট্ৰিং(সমূহ) প্ৰিন্ট কৰি প্ৰস্থান কৰক" + +@@ -1220,9 +1309,13 @@ msgstr "stdout লে সন্ধান স্ট্ৰিং(সমূহ) প + msgid "Failed to compile regex" + msgstr "regex কমপাইল কৰিবলে ব্যৰ্থ" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "সমস্যাক আপডেইট কৰিব নোৱাৰি: এটাতকৈ অধিক oops পোৱা গল" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1241,6 +1334,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1264,11 +1358,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1282,16 +1378,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1299,18 +1398,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1329,14 +1431,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1345,12 +1450,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1360,58 +1511,62 @@ msgstr "" + "\n" + "FILE ৰ পৰা Xorg ক্ৰেশ নিষ্কাষণ কৰক (অথবা প্ৰামাণিক ইনপুট)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "প্ৰামাণিক আউটপুটত পোৱা স্খলন তথ্য প্ৰিন্ট কৰক" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "প্ৰতিটো প্ৰাপ্ত স্খলনৰ বাবে DIR ত সমস্যা ডাইৰেকটৰি সৃষ্টি কৰক" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1945,7 +2100,7 @@ msgstr "NSS বন্ধ কৰিবলে ব্যৰ্থ।" + msgid "Sleeping for %d seconds" + msgstr "%d ছেকেণ্ডৰ বাবে নিদ্ৰাত" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1953,7 +2108,7 @@ msgstr "" + "ভগ্ন BIOS ৰ বাবে এটা কাৰনেল সমস্যা দেখা দিলে। দূৰ্ভাগ্যজনকভাৱে, এই ধৰণৰ\n" + "সমস্যা কাৰনেল ব্যৱস্থাপকৰ দ্বাৰা ঠিক কৰিব নোৱাৰি।" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1961,7 +2116,7 @@ msgstr "" + "এটা কাৰনেল সমস্যা দেখা দিছে, কিন্তু আপোনাৰ হাৰ্ডৱেৰ অসমৰ্থিত, সেয়েহে কাৰনেল " + "ব্যৱস্থাপকসকলে এই সমস্যা ঠিক কৰিব নোৱাৰে।" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1970,24 +2125,24 @@ msgstr "" + "এটা কাৰনেল সমস্যা দেখা দিলে, কিন্তু আপোনাৰ কাৰনেল আবিলিত (flags:%s)। কাৰনেল " + "ব্যৱস্থাপকসমূহ আবিলিত সংবাদসমূহ বিশ্লেষণ কৰিবলে অক্ষম।" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " লেতেৰা মডিউলসমূহ: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "বাগ আইডিসমূহৰ তালিকা" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "এটা bodhi চাৰ্ভাৰ url ধাৰ্য্য কৰক" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "এটা উন্মোচন ধাৰ্য্য কৰক" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1997,20 +2152,20 @@ msgstr "" + "\n" + "bodhi চাৰ্ভাৰত আপডেইটসমূহ সন্ধান কৰক" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "আপডেইসমূহ সন্ধান কৰা হৈছে" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "এই পেকেইজৰ বাবে কোনো আপডেইট পোৱা নগল" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "পেকেইজৰ স্থানীয় সংস্কৰণ উপলব্ধ আপডেইটসমূহতকে নতুন" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2038,66 +2193,67 @@ msgstr "প্ৰিন্ট প্ৰাপ্ত oopses" + msgid "Delete files with found oopses" + msgstr "প্ৰাপ্ত oopses ৰ সৈতে ফাইলসমূহ মচি পেলাওক" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' এ এটাতকৈ অধিক সমস্যা ডাইৰেকটৰি চিনাক্ত কৰে" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "ব্যৱহাৰ: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "সমস্যাসমূহ দেখুৱাওক [in DIRs]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "সমস্যা ডাইৰেকটৰি DIR আতৰাওক" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR ত সমস্যা তথ্য বিশ্লেষণ কৰি সংবাদন কৰক" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR ৰ বিষয়ে তথ্য প্ৰিন্ট কৰক" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "শেহতীয়া ক্ৰেশসমূহৰ গণনা প্ৰিন্ট কৰক" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "একাধিক সমস্যাসমূহ প্ৰক্ৰিয়া কৰক" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক তথ্যৰ বাবে 'abrt-cli COMMAND --help' চাওক" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "কেৱল সংবাদন-নকৰা সমস্যাবোৰ তালিকাভুক্ত কৰক" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "বিৱৰিত সংবাদ দেখুৱাওক" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্পকৈ শেহতীয়া সমস্যাসমূহ তালিকাভুক্ত কৰক" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্পতকৈ পুৰনি সমস্যাসমূহ তালিকাভুক্ত কৰক" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2108,55 +2264,65 @@ msgstr "" + "ব্যৱহাৰকাৰী ৰূপে\n" + "'abrt-auto-reporting enabled' প্ৰেৰণ কৰি সামৰ্থবান কৰক\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "ইয়াতকৈ ডাঙৰ লিখনীক এব্ৰিজ দেখুৱা হব" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "এই ধৰণৰ কোনো সমস্যা ডাইৰেকটৰি '%s' নাই" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "কেৱল সমস্যা গণনাক কোনো বাৰ্তা নহোৱাকৈ প্ৰিন্ট কৰক" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্পকে অধিক শেহতীয়া সমস্যাসমূহ প্ৰিন্ট কৰক" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT এ %u সমস্যা(সমূহ) চিনাক্ত কৰিছে। অধিক তথ্যৰ বাবে চলাওক: abrt-cli " + "list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' মচি পেলোৱা হৈছে" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "আৰু [options] DIR সংবাদন কৰক..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "সংবাদন কৰাৰ পিছত PROBLEM_DIR আতৰাওক" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' মচি পেলোৱা হৈছে" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "কাৰ্য্যসমূহ: remove(rm), info(i), skip(s):" +@@ -2167,27 +2333,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "কাৰ্য্যসমূহ: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' সংবাদন কৰা" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "পৰৱৰ্তী সমস্যাৰ বাবে ENTER টিপক:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "--since তৰ্ক নাথাকিলে, সকলো চিনাক্ত কৰা সমস্যাবোৰ পুনৰাবৃত্তি হয়।" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "কেৱল টাইমস্টাম্পৰ পিছত চিনাক্ত কৰা সমস্যাবোৰ নিৰ্বাচন কৰে" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ast.po b/po/ast.po +index fa46b52..1b75f51 100644 +--- a/po/ast.po ++++ b/po/ast.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/ast/)\n" + "Language: ast\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -28,108 +28,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Informe" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -151,7 +162,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -184,30 +197,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -233,14 +258,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -252,11 +277,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -270,24 +295,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -295,60 +321,50 @@ msgstr "" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -356,12 +372,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -382,18 +398,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -423,73 +443,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -501,68 +522,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -586,18 +607,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -638,7 +667,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -727,12 +756,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -841,14 +902,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1063,7 +1153,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1073,16 +1164,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1091,8 +1184,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1112,6 +1209,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1135,11 +1233,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1153,16 +1253,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1170,18 +1273,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1200,14 +1306,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1216,70 +1325,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1776,63 +1935,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1854,65 +2013,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1920,49 +2080,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1971,24 +2141,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/bg.po b/po/bg.po +index 80dfd29..5205c5c 100644 +--- a/po/bg.po ++++ b/po/bg.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/bg/)\n" + "Language: bg\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -28,102 +28,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Не мога да взема собствеността на '%s'" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Съобщи" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -133,6 +133,17 @@ msgstr "" + "\n" + "Аплет, известяващ потребителя, когато нов проблем бъде открит от ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -154,7 +165,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -187,30 +200,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -236,14 +261,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -255,11 +280,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Директория с проблема" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Конфигурационен файл" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -273,24 +298,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [опции]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Запис в системния журнал" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Добавяй имената на програмите в записа" + +@@ -298,60 +324,50 @@ msgstr "Добавяй имената на програмите в записа" + msgid "Unknown error" + msgstr "Непозната грешка" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' не е валидна директория с проблем" ++msgid "'%s' is not a valid element name" ++msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' не е валидна директория с проблем" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Неупълномощен" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -361,12 +377,12 @@ msgstr "" + "Името '%s' беше изгубено, моля, проверете дали не работи друга услуга, " + "собственик на името.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Изход след NUM секунди бездействие" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Тази програма трябва да бъде стартирана като root." + +@@ -387,18 +403,22 @@ msgstr "Да не преминава в режим демон" + msgid "Log to syslog even with -d" + msgstr "Записвай в системния журнал дори и при -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Стартирай EVENT върху DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -428,73 +448,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -506,68 +527,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -591,18 +612,26 @@ msgstr "Не мога да chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Изтриването на директория с проблем се провали: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Не мога да получа данни за проблем от abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Не мога да получа списъка проблеми от abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Не мога да получа данни за проблем от abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -647,7 +676,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Разбора на обратното проследяване за %s се провали" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -741,12 +770,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -860,14 +921,43 @@ msgstr "Липсващ debuginfo файл: {0}" + msgid "All debuginfo files are available" + msgstr "Всички debuginfo файлове са на разположение" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1090,7 +1180,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Също като -d DumpLocation, DumpLocation е зададено в abrt.conf" + +@@ -1100,16 +1191,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Направи директорията с проблема достъпна за четене от всички" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Отпечатва търсените низове на стандартния изход и излиза" + +@@ -1118,8 +1211,12 @@ msgstr "Отпечатва търсените низове на стандарт + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1139,6 +1236,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1162,11 +1260,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1180,16 +1280,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1197,18 +1300,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1227,14 +1333,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1243,12 +1352,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1258,58 +1413,62 @@ msgstr "" + "\n" + "Извлечи Xorg срива от FILE (или стандартния вход)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Отпечатай намерените данни за срив на стандартния изход" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1838,19 +1997,19 @@ msgstr "Провал при изключване на NSS." + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1859,24 +2018,24 @@ msgstr "" + "Възникна проблем в ядрото, но ядрото Ви е опорочено (флагове:%s). " + "Поддържащите ядрото не могат да диагностицират проблеми в такива ядра." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Списък id-та на бъгове" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Задайте url на bodhi сървър" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Задайте издание" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1886,20 +2045,20 @@ msgstr "" + "\n" + "Търси за обновления в bodhi сървър" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Търсене на обновления" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Няма намерени обновления за този пакет" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Версията на локалния пакет е по-нова от наличните обновления" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1921,65 +2080,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Употреба: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Премахни директорията с проблем DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Анализирай и рапортувай данните за проблем в DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Отпечатай информация за DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Вижте 'abrt-cli COMMAND --help' за повече информация" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Покажи детайлен рапорт" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1987,49 +2147,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2038,24 +2208,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/bn.po b/po/bn.po +index 7584e3c..d50e4aa 100644 +--- a/po/bn.po ++++ b/po/bn.po +@@ -15,7 +15,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -25,7 +25,7 @@ msgstr "" + "language/bn/)\n" + "Language: bn\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -35,102 +35,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "রিপোর্ট" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -141,6 +141,17 @@ msgstr "" + "ABRT দ্বারা নতুন সমস্যা সনাক্ত করা হলে ব্যবহারকারীদের সূচিত করতে ব্যবহৃত " + "অ্যাপ্লেট\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -162,7 +173,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -195,30 +208,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -244,14 +269,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -263,11 +288,11 @@ msgstr "" + msgid "Problem directory" + msgstr "সমস্যাযুক্ত ডিরেক্টরি" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "কনফিগারেশন ফাইল" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -281,24 +306,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog-এ লগ করা হবে" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "লগের মধ্যে প্রোগ্রামের নাম যোগ করুন" + +@@ -306,60 +332,50 @@ msgstr "লগের মধ্যে প্রোগ্রামের নাম + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -367,12 +383,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM সেকেন্ড নিষ্ক্রিয় থাকলে প্রস্থান করা হবে" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -393,18 +409,22 @@ msgstr "ডেমন তৈরি করা হবে না" + msgid "Log to syslog even with -d" + msgstr "-d সহযোগেও syslog-এ লগ করা হবে" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR-র মধ্যে EVENT সঞ্চালন করা হবে" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -434,73 +454,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -512,68 +533,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -597,18 +618,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -653,7 +682,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s-র জন্য ব্যাক-ট্রেস পার্সিং করতে ব্যর্থ" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -748,12 +777,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -868,14 +929,43 @@ msgstr "debuginfo ফাইল অনুপস্থিত: {0}" + msgid "All debuginfo files are available" + msgstr "সকল debuginfo ফাইল উপলব্ধ" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1095,7 +1185,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation -র অনুরূপ, abrt.conf ফাইলের মধ্যে DumpLocation উল্লেখ করা " +@@ -1107,16 +1198,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "সমস্যাযুক্ত ডিরেক্টরিটি সার্বজনীন রূপে পাঠযোগ্য হবে" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1125,8 +1218,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1146,6 +1243,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1169,11 +1267,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1187,16 +1287,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1204,18 +1307,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1234,14 +1340,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1250,70 +1359,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1840,19 +1999,19 @@ msgstr "NSS বন্ধ করতে ব্যর্থ।" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1861,44 +2020,44 @@ msgstr "" + "কার্নেলে সমস্যা দেখা দিয়েছে, কিন্তু আপনার কার্নেল চিহ্নযুক্ত (flags:%s) " + "হয়েছে। কার্নেল রক্ষণাবেক্ষণকারী চিহ্নযুক্ত রিপোর্টের সমাধান করতে অক্ষম।" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1920,65 +2079,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "ব্যবহারপ্রণালী: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "সমস্যার ডিরেক্টরি DIR সরিয়ে ফেলুন" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR-র মধ্যে সমস্যার তথ্য বিশ্লেষণ করে দায়ের করুন" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR সম্পর্কে তথ্য প্রিন্ট করুন" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক বিবরণের জন্য 'abrt-cli COMMAND --help' দেখুন" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "বিস্তারিত বিবরণ প্রদর্শন করা হবে" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1986,49 +2146,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2037,24 +2207,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/bn_IN.po b/po/bn_IN.po +index c42d4ba..5f6d6df 100644 +--- a/po/bn_IN.po ++++ b/po/bn_IN.po +@@ -16,7 +16,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -26,7 +26,7 @@ msgstr "" + "abrt/language/bn_IN/)\n" + "Language: bn-IN\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -36,102 +36,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s'-র মালিকানা গ্রহণ করা সম্ভব নয়" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' লেখার জন্য ডিরেক্টরি খোলা যায় না" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "সূচনাবার্তা বন্ধ করতে ব্যর্থ: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "রিপোর্ট" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "সূচনাবার্তা প্রদর্শন করতে ব্যর্থ: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio চ্যানেল থেকে পড়তে ব্যর্থ: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio চ্যানেলের জন্য এনকোডিং নির্ধারণ করতে ব্যর্থ: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio চ্যানেলের জন্য nonblocking মোড সক্রিয় করতে ব্যর্থ: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -142,6 +142,17 @@ msgstr "" + "ABRT দ্বারা নতুন সমস্যা সনাক্ত করা হলে ব্যবহারকারীদের সূচিত করতে ব্যবহৃত " + "অ্যাপ্লেট\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -162,18 +173,15 @@ msgstr "সংক্ষিপ্ত রিপোর্টিং" + msgid "Silent shortened reporting" + msgstr "নীরব সংক্ষিপ্ত রিপোর্টিং" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"স্ট্যাক ট্রেস প্রস্তুত করতে কোর-ডাম্প ফাইল প্রয়োজনীয় যা সময় এবং স্থান " +-"সাপেক্ষ এক কাজ। ABRT একটি পরিষেবা প্রদান করে, যা কোর-ডাম্প থেকে স্ট্যাক " +-"ট্রেস প্রস্তুত করে কিন্তু অাপনাকে পরিষেবায় কোর-ডাম্প অাপলোড করতে হবে। এই " +-"বিকল্প নিষ্ক্রিয় অবস্থায়, ABRT জিঞ্জাসা না করেই কোর-ডাম্প অাপলোড করবে।" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -221,29 +229,24 @@ msgstr "" + " এই বিকল্প সক্রিয় অবস্থায়, ABRT কখনও রিপোর্ট করা সমস্যাগুলির বিজ্ঞপ্তিগুলি " + "দেখাবে না। সংক্ষিপ্ত রিপোর্টিং সক্রিয় থাকলে তবেই কার্যকর হয়।" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "কোর-ডাম্প অাপলোড করার অাগে জিজ্ঞাসা করুন" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "সংবেদনশীল তথ্যের জন্য ব্যক্তিগত টিকিটের অনুরোধ জানান" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "অসম্পূর্ণ সমস্যাগুলি জানান" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -253,6 +256,22 @@ msgstr "" + "করা হয়েছে। মূল্যবান সমস্যার রিপোর্ট প্রদান করতে, ABRT অাপনাকে এই সমস্যাগুলি " + "জমা দেওয়ার অনুমতি দেবে না।" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" +@@ -279,14 +298,14 @@ msgstr "সম্বন্ধে" + msgid "Quit" + msgstr "প্রস্থান করুন" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -298,11 +317,11 @@ msgstr "" + msgid "Problem directory" + msgstr "সমস্যাযুক্ত ডিরেক্টরি" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "কনফিগারেশন ফাইল" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -316,24 +335,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "ক্লায়েন্ট id রূপে NUM ব্যবহার করা হবে" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog-এ লগ করা হবে" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "লগের মধ্যে প্রোগ্রামের নাম যোগ করুন" + +@@ -341,61 +361,51 @@ msgstr "লগের মধ্যে প্রোগ্রামের নাম + msgid "Unknown error" + msgstr "অজানা ত্রুটি" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' বৈধ সমস্যাযুক্ত ডিরেক্টরি নয়" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' কোনো বৈধ উপাদান নাম নয়" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' উপাদান সংশোধন করা যায় না" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' বৈধ সমস্যাযুক্ত ডিরেক্টরি নয়" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "অনুমোদিত নয়" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "সংশোধনের জন্য সমস্যা অ্যাক্সেস করা যায় না" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' উপাদান সংশোধন করা যায় না" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Chowning ডিরেক্টরি ব্যর্থ হয়েছে। অারো বিস্তারিত জানতে, সিস্টেম লগ দেখুন।" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' কোনো বৈধ উপাদান নাম নয়" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' এর মাপ পাওয়া যায় না" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "কোনো সমস্যা স্পেস পড়ে নেই" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "'%s' উপাদান মোছা যায় না, '%s' সমস্যা ডিরেক্টরি থেকে" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -405,12 +415,12 @@ msgstr "" + "'%s' নামটি হারিয়ে গেছে, অনুগ্রহ করে পরীক্ষা করুন এই নাম ধারণকারী অন্য কোনো " + "পরিসেবা চলছে কি না।\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM সেকেন্ড নিষ্ক্রিয় থাকলে প্রস্থান করা হবে" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "এই প্রোগ্রামটি শুধুমাত্র root পরিচয়ে সঞ্চালন করা আবশ্যক" + +@@ -436,18 +446,22 @@ msgstr "ডেমন তৈরি করা হবে না" + msgid "Log to syslog even with -d" + msgstr "-d সহযোগেও syslog-এ লগ করা হবে" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR-র মধ্যে EVENT সঞ্চালন করা হবে" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "ব্যবহারকারীর সাথে সরাসরি যোগাযোগ করুন" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -487,90 +501,91 @@ msgstr "একসাথে উদ্ভূত ওয়ার্কারের + msgid "Maximal cache size in MiB. Default is " + msgstr "সর্বাধিক ক্যাশে মাপ MiB এ। ডিফল্ট হল" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "প্রমাণীকরণ বন্ধ করে" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat Support ব্যবহারকারীর নাম" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat Support পাসওয়ার্ড, দেওয়া না থাকলে, তা দিতে বলা হবে" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL শংসাপত্রের পাথ বা শংসাপত্রের ধরন" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "অাপনাকে --password -এর জন্য --username ও নির্দিষ্ট করতে হবে" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + "অাপনি --username বা --certificate -এর মধ্যে যেকোনো একটি ব্যবহার করতে পারবেন" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + "অাপনি --username বা --anonymous -এর মধ্যে যেকোনো একটি ব্যবহার করতে পারবেন" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + "অাপনি --anonymous বা --certificate -এর মধ্যে যেকোনো একটি ব্যবহার করতে পারবেন" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "অার্গুমেন্টের সংখ্যা অবৈধ" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "অজানা বিকল্প মান: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "পাসওয়ার্ড:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "পাসওয়ার্ড না দিয়ে এগিয়ে যেতে পারবেন না\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP প্রমাণীকরণ স্বয়ংক্রিয় ভাবে জানানো" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL ক্লায়েন্ট প্রমাণীকরণ স্বয়ংক্রিয় ভাবে জানানো" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "বেনামে স্বয়ংক্রিয় ভাবে জানানো" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -590,83 +605,83 @@ msgstr "" + " FILENAME - Uploaded archive file name\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "একটি ডিরেক্টরি নয়: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (স্ল্যাশ দিয়ে শুরু)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (ডট দিয়ে শুরু)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (বিশিষ্ট ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (স্পেস রয়েছে)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (ট্যাব রয়েছে)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "ডিরেক্টরি '{0}'-এ পরিবর্তন করা সম্ভব নয়" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "অজানা ফাইল ধরন: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' -এ ওয়ার্কিং ডিরেক্টরি তৈরি করা সম্ভব নয়" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}', '{1}' -এ সরানো সম্ভব নয়" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}', '{1}'-এ অনুলিপি করা সম্ভব নয়" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}'-এ যাচাইকরণ ত্রুটি" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' অান-প্যাক করা হচ্ছে" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ডিরেক্টরি তৈরি করা সম্ভব নয়" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' অান-প্যাক করা সম্ভব নয়" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' সফল ভাবে প্রক্রিয়া করা হয়েছে" + +@@ -690,18 +705,26 @@ msgstr "'%s'-কে chown করতে ব্যর্থ: %s" + msgid "Deleting problem directory failed: %s" + msgstr "সমস্যাপূর্ণ ডিরেক্টি মুছে ফেলতে ব্যর্থ: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus থেকে সমস্যাপূর্ণ তথ্য সংগ্রহ করা যায়নি: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus থেকে সমস্যার তালিকা সংগ্রহ করা যায়নি: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus থেকে সমস্যাপূর্ণ তথ্য সংগ্রহ করা যায়নি: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -747,7 +770,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s-র জন্য ব্যাক-ট্রেস পার্সিং করতে ব্যর্থ" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "ক্র্যাশ থ্রেড খুঁজে পাওয়া যায়নি" + +@@ -854,7 +877,7 @@ msgid "Oops text extracted successfully" + msgstr "Oops পাঠ্য সফলভাবে বের করে অানা হয়েছে" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -862,6 +885,38 @@ msgstr "" + "কার্নেল লগ সূচিত করছে যে হার্ডওয়্যার ত্রুটি সনাক্ত করা হয়েছে।\n" + "এটি খুব সম্ভবত কোনো সফ্টওয়্যার সমস্যা নয়।\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -979,7 +1034,36 @@ msgstr "debuginfo ফাইল অনুপস্থিত: {0}" + msgid "All debuginfo files are available" + msgstr "সকল debuginfo ফাইল উপলব্ধ" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -989,7 +1073,7 @@ msgstr "" + "বলা হলে স্থানীয় অবস্থানে স্ট্যাক ট্রেস প্রস্তুত করা হবে। (এর ফলে অনেক পরিমাণ " + "তথ্য ডাউনলোড করা হবে)।" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1228,7 +1312,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation -র অনুরূপ, abrt.conf ফাইলের মধ্যে DumpLocation উল্লেখ করা " +@@ -1240,16 +1325,18 @@ msgstr "বের করে নিয়ে অাসা তথ্য PROBLEM এ + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "সমস্যাযুক্ত ডিরেক্টরিটি সার্বজনীন রূপে পাঠযোগ্য হবে" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Throttle সমস্যা ডিরেক্টরি তৈরি, সেকেন্ড প্রতি 1" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "অনুসন্ধানের পংক্তিগুলি stdout-এ প্রদর্শন করে প্রস্থান করা হবে" + +@@ -1259,9 +1346,13 @@ msgstr "অনুসন্ধানের পংক্তিগুলি stdout- + msgid "Failed to compile regex" + msgstr "regex একত্রিত করতে ব্যর্থ হয়েছে" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "সমস্যার অাপডেট করা যায় না: একটির বেশি oops খুঁজে পাওয়া গেছে" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1280,6 +1371,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1303,11 +1395,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1321,16 +1415,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1338,18 +1435,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1368,14 +1468,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1384,12 +1487,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1399,58 +1548,62 @@ msgstr "" + "\n" + "Extract Xorg crash from FILE (or standard input)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "বিপর্যয় সম্বন্ধে প্রাপ্ত তথ্য স্ট্যান্ডার্ড আউটপুটে প্রিন্ট করা হবে" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "খুঁজে পাওয়া প্রত্যেক ক্র্যাশের জন্য DIR এ সমস্যা ডিরেক্টরি তৈরি করুন" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1987,7 +2140,7 @@ msgstr "NSS বন্ধ করতে ব্যর্থ।" + msgid "Sleeping for %d seconds" + msgstr "%d সেকেন্ডের জন্য ঘুমন্ত" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1995,7 +2148,7 @@ msgstr "" + "ভাঙা BIOS এর কারণে একটি কার্নেল সমস্যা দেখা দিয়েছে। দুর্ভাগ্যবশতঃ, এই ধরনের " + "সমস্যা কার্নেল রক্ষণাবেক্ষণকারীদের দ্বারা সারানো সম্ভব নয়।" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2003,7 +2156,7 @@ msgstr "" + "একটি কার্নেল সমস্যা দেখা দিয়েছে, কিন্তু অাপনার হার্ডওয়্যার অসমর্থিত, তাই " + "কার্নেল রক্ষণাবেক্ষণকারীরা তা সারাতে অপরাগ।" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2013,24 +2166,24 @@ msgstr "" + "টেইন্ট হয়েছে (flags:%s)। Kernel-র পরিচালকরা টেইন্ট হওয়া kernel-র রিপোর্ট " + "থেকে সমস্যার কারণ নির্ণয় করতে সক্ষম হবেন না।" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " টেন্টেড মডিউল: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "বাগ ID-র তালিকা" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "একটি bodhi সার্ভার url নির্ধারণ করুন" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "একটি রিলিজ সংখ্যা নির্ধারণ করুন" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2040,22 +2193,22 @@ msgstr "" + "\n" + "Search for updates on bodhi server" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "আপডেট অনুসন্ধান করা হচ্ছে" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "এই প্যাকেজের কোনো আপডেট পাওয়া যায়নি" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "উপলব্ধ প্যাকেজের সংস্করণের তুলনায় নতুন প্যাকেজ স্থানীয় মেশিনে উপস্থিত " + "রয়েছে" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2082,70 +2235,71 @@ msgstr "পাওয়া oopses মুদ্রণ করুন" + msgid "Delete files with found oopses" + msgstr "খুঁজে পাওয়া oopses সমেত ফাইলগুলি মুছুন" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' একটির বেশি সমস্যার ডিরেক্টরি সনাক্ত করেছে" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "ব্যবহারপ্রণালী: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "সমস্যাগুলি তালিকাভুক্ত করুন [DIRs-এ]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "সমস্যার ডিরেক্টরি DIR সরিয়ে ফেলুন" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR-র মধ্যে সমস্যার তথ্য বিশ্লেষণ করে দায়ের করুন" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR সম্পর্কে তথ্য প্রিন্ট করুন" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "সাম্প্রতিক ক্র্যাশগুলির গণনা মুদ্রণ করুন" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "একাধিক সমস্যাগুলি প্রক্রিয়া করুন" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক বিবরণের জন্য 'abrt-cli COMMAND --help' দেখুন" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "শুধুমাত্র না জানানো সমস্যা তালিকাভুক্ত করুন" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "বিস্তারিত বিবরণ প্রদর্শন করা হবে" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "উল্লিখিত সময়স্ট্যাম্পের চেয়ে অারো সাম্প্রতিক সমস্যাগুলিই শুধুমাত্র " + "তালিকাভুক্ত করুন" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "উল্লিখিত সময়স্ট্যাম্পের চেয়ে পুরনো সমস্যাগুলিই শুধুমাত্র তালিকাভুক্ত করুন" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2156,56 +2310,66 @@ msgstr "" + "বিশেষাধিকার থাকা ব্যবহারকারী সমেত\n" + "'abrt-auto-reporting enabled' দিয়ে তা সক্রিয় করার কথা বিবেচনা করুন\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "এর থেকে বড় পাঠ্য সংক্ষিপ্ত করে দেখানো হবে" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "কোনো '%s' সমস্যা ডিরেক্টরি নেই" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "কোনো বার্তা ছাড়া শুধুমাত্র সমস্যা গণনা মুদ্রণ করুন" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "উল্লিখিত সময়স্ট্যাম্পের চেয়ে অারো সাম্প্রতিক সমস্যাগুলিই শুধুমাত্র মুদ্রণ " + "করুন" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT %u সমস্য সনাক্ত করেছে। অারো তথ্যের জন্য চালনা করুন: abrt-cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' মোছা হচ্ছে" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& রিপোর্ট [বিকল্প] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "রিপোর্ট করার পরে PROBLEM_DIR সরান" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' মোছা হচ্ছে" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "অ্যাকশন: remove(rm), info(i), skip(s):" +@@ -2216,28 +2380,183 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "অ্যাকশন: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' রিপোর্ট করা হচ্ছে" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "পরবর্তী সমস্যার জন্য ENTER টিপুন:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "--since অার্গুমেন্ট ব্যতীত, সমস্ত সনাক্ত করা সমস্যার উপরে পুনরাবৃত্তি করুন।" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "শুধুমাত্র টাইম-স্ট্যাম্পের পরে সনাক্ত করা সমস্যাগুলি নির্বাচন করে" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/bs.po b/po/bs.po +index ebef881..6974aea 100644 +--- a/po/bs.po ++++ b/po/bs.po +@@ -9,7 +9,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -20,7 +20,7 @@ msgstr "" + "Language: bs\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -30,108 +30,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Izvještaj" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -153,7 +164,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -186,30 +199,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -235,14 +260,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -254,11 +279,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfiguracijska datoteka" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -272,24 +297,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Zapiši u syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Dodaj nazive programa u zapis" + +@@ -297,60 +323,50 @@ msgstr "Dodaj nazive programa u zapis" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -358,12 +374,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -384,18 +400,22 @@ msgstr "Nemoj deamonizirati" + msgid "Log to syslog even with -d" + msgstr "Zapiši u syslog čak i sa -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -425,73 +445,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -503,68 +524,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -588,18 +609,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -640,7 +669,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Prolazak kroz funkcijski trag nije uspjelo za %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -729,12 +758,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -843,14 +904,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1065,7 +1155,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1075,16 +1166,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1093,8 +1186,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1114,6 +1211,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1137,11 +1235,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1155,16 +1255,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1172,18 +1275,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1202,14 +1308,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1218,70 +1327,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1787,63 +1946,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1865,65 +2024,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1931,49 +2091,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1982,24 +2152,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ca.po b/po/ca.po +index 8a4dadb..7b320e5 100644 +--- a/po/ca.po ++++ b/po/ca.po +@@ -8,20 +8,21 @@ + # Josep Torné , 2014 + # Robert Antoni Buj Gelonch , 2014. #zanata + # Robert Antoni Buj Gelonch , 2015. #zanata ++# Robert Antoni Buj Gelonch , 2016. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-03-28 03:29-0400\n" ++"PO-Revision-Date: 2016-01-25 06:37-0500\n" + "Last-Translator: Robert Antoni Buj Gelonch \n" + "Language-Team: Catalan \n" + "Language: ca\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -31,34 +32,34 @@ msgstr "Presentació d'informes del problema" + msgid "View and report application crashes" + msgstr "Visualitzeu i informeu de les fallides en les aplicacions" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" +-msgstr "No es pot ser el propietari de '%s'" ++msgstr "No es pot ser el propietari de «%s»" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" +-msgstr "No es pot obrir el directori per a l'escriptura '%s'" ++msgstr "No es pot obrir el directori per a l'escriptura «%s»" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "No es pot tancar la notificació: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Oops!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Informa" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Reinicia" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " +@@ -67,7 +68,7 @@ msgstr "" + "Ho sentim, sembla que %s ha tingut pana. El problema ha estat informat " + "automàticament." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -76,26 +77,26 @@ msgstr "" + "Ho sentim, sembla que %s ha tingut pana. El problema serà informat que hi " + "hagi disponible una connexió a Internet." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + "Ho sentim, sembla que %s ha tingut pana. Si us plau, poseu-vos en contacte " +-"amb el desenvolupador si voleu informar-li d'aquesta incidència." ++"amb el desenvolupador si voleu informar-lo d'aquesta incidència." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" +-"Ho sentim, sembla que %s ha tingut pana. Si voleu ajudar a què es solucioni, " +-"si us plau envieu un informe." ++"Ho sentim, sembla que %s ha tingut pana. Si voleu ajudar a solucionar-ho, si " ++"us plau, envieu un informe." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +@@ -103,7 +104,7 @@ msgstr "" + "Ho sentim, sembla que hi va haver un problema amb un component. El problema " + "ha estat informat automàticament." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +@@ -111,36 +112,36 @@ msgstr "" + "Ho sentim, sembla que hi va haver un problema amb un component. El problema " + "serà informat que hi hagi disponible una connexió a Internet." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + "Ho sentim, sembla que hi va haver un problema amb un component. Si voleu " +-"ajudar a què es solucioni, si us plau envieu un informe." ++"ajudar a solucionar-ho, si us plau, envieu un informe." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "No es pot mostrar la notificació: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" +-msgstr "No es pot llegir des del canal gio: '%s'" ++msgstr "No es pot llegir des del canal gio: «%s»" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "No es pot establir la codificació en el canal gio: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "No es pot engegar el mode no-bloquejant per al canal gio: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -151,6 +152,17 @@ msgstr "" + "Miniaplicació que notifica a l'usuari d'un nou problema detectat per " + "l'ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "Pregunta abans de robar un directori" +@@ -172,13 +184,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"El fitxer del bolcat de memòria és necessari per generar la traça de la " +-"pila, que és una operació que consumeix temps i espai. L'ABRT proporciona un " +-"servei que genera la traça de la pila des del bolcat de memòria, però heu de " +-"pujar el bolcat de memòria a aquest servei. Amb aquesta opció inhabilitada " +-"l'ABRT pujarà el bolcat de memòria sense preguntar." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -200,10 +209,10 @@ msgid "" + "uReports are sent automatically immediately after problem detection." + msgstr "" + "L'uReport és la descripció breu i completament anònima d'un problema. L'ABRT " +-"utilitza els uReport per a la ràpida detecció de duplicats a nivell global. " +-"En la configuració per defecte l'uReport és enviat al començament del procés " +-"de presentació d'informes. Amb aquesta opció habilitada els uReports són " +-"enviats automàticament tot just després de la detecció del problema." ++"utilitza els uReport per a la ràpida detecció global de duplicats. En la " ++"configuració per defecte l'uReport és enviat al començament del procés " ++"informador. Amb aquesta opció habilitada els uReports són enviats " ++"automàticament tot just després de la detecció del problema." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +@@ -226,10 +235,6 @@ msgstr "" + "d'informes reduïts." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Pregunta abans de pujar un bolcat de memòria" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -237,24 +242,40 @@ msgstr "" + "Amb aquesta opció habilitada l'ABRT sempre crea el tiquet de l'error amb " + "accés restringit si es detecten possibles dades sensibles." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" +-msgstr "Sol·licita un tiquet privat per a informació sensible" ++msgstr "Sol·licita un tiquet privat per a la informació sensible" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Notifica problemes incomplets" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" +-"El problemes incomplets es detecten mentre l'ordinador s'està aturant o " ++"Els problemes incomplets es detecten mentre l'ordinador s'està aturant o " + "s'està tancant la sessió d'un usuari. A fi de proporcionar informes de " + "problemes valuosos, l'ABRT no us permetrà enviar aquests problemes." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Tanca" +@@ -280,7 +301,7 @@ msgstr "Sobre" + msgid "Quit" + msgstr "Surt" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +@@ -291,7 +312,7 @@ msgstr "" + "Consulta a la base de dades dels paquets i desa el nom del paquet i del " + "component" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -303,11 +324,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Directori del problema" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Fitxer de configuració" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "Utilitza aquest directori com a l'arrel dels RPM" + +@@ -323,24 +344,25 @@ msgstr "& [-v] -d DIR\n" + msgid "Root directory for running container commands" + msgstr "El directori arrel per a l'execució de les ordres del contenidor" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [opcions]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" +-msgstr "Utilitza el NUM com a uid de client" ++msgstr "Utilitza el NÚM com a uid de client" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Enregistra a syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Afegeix els noms dels programes al registre" + +@@ -348,77 +370,67 @@ msgstr "Afegeix els noms dels programes al registre" + msgid "Unknown error" + msgstr "Error desconegut" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' no es un directori del problema vàlid" ++msgid "'%s' is not a valid element name" ++msgstr "«%s» no és un nom d'element vàlid" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "L'element '%s' no es pot modificar " ++msgid "'%s' is not a valid problem directory" ++msgstr "«%s» no és un directori del problema vàlid" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "No autoritzat" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "No es pot accedir al problema per a la notificació" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "L'element «%s» no es pot modificar " + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Error en canviar el propietari del directori. Reviseu els registres del " + "sistema per a més detalls." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "No es pot accedir a la lectura del problema" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' no és un nom d'element vàlid" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" +-msgstr "No es pot obtenir la mida de '%s'" ++msgstr "No es pot obtenir la mida de «%s»" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "No queda espai per al problema" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "No es pot eliminar l'element '%s' del directori del problema '%s'" ++msgstr "No es pot eliminar l'element «%s» del directori del problema «%s»" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" + msgstr "" +-"S'ha perdut el nom '%s', comproveu que no s'estigui executant un altre " ++"S'ha perdut el nom «%s», comproveu que no s'estigui executant un altre " + "servei que sigui el propietari del nom.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" +-msgstr "Surt després de NUM segons d'inactivitat" ++msgstr "Surt després de NÚM segons d'inactivitat" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Aquest programa cal executar-lo com a root." + +@@ -445,24 +457,28 @@ msgstr "No en facis un dimoni" + msgid "Log to syslog even with -d" + msgstr "Enregistra a syslog inclús amb -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" +-msgstr "Executa EVENT a DIR" ++msgstr "Executa l'ESDEVENIMENT al DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Comuniqueu-vos directament amb l'usuari" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + "No hi ha cap treballador lliure i la memòria intermèdia està plena. S'està " +-"ometent l'arxiu '%s'" ++"ometent l'arxiu «%s»" + + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" +@@ -475,7 +491,7 @@ msgid "" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" +-"& [-vs] [-w NUM] [-c MiB] [DIRECTORI_DE_PUJADA]\n" ++"& [-vs] [-w NÚM] [-c MiB] [DIRECTORI_DE_PUJADA]\n" + "\n" + "\n" + "Observa el DIRECTORI_DE_PUJADA i desempaqueta els arxius d'entrada al " +@@ -491,81 +507,82 @@ msgstr "Endimonia" + + #: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " +-msgstr "El nombre de treballs concurrents. Per defecte són " ++msgstr "El nombre de treballs concurrents. El valor per defecte és " + + #: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " +-msgstr "La mida màxima de la memòria cau en MiB. Per defecte són " ++msgstr "La mida màxima de la memòria cau en MiB. El valor per defecte és " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Desactiva l'autenticació" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "nom d'usuari del Red Hat Support" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" +-"Contrasenya de Red Hat Support, si no es proporciona se us preguntarà per " ++"Contrasenya de Red Hat Support, si no es proporciona, se us preguntarà per " + "ella" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Els camins als certificats SSL de l'uReport o el tipus de certificat" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "També heu d'especificar --username per a --password" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Podeu utilitzar tant --username com --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Podeu utilitzar tant --username com --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Podeu utilitzar tant --anonymous com --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "El nombre d'arguments no és vàlid" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "Valor d'opció desconeguda: '%s'\n" ++msgstr "Valor d'opció desconeguda: «%s»\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Contrasenya:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "No es pot continuar sense la contrasenya\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "presentació automàtica d'informes d'HTTP autentificat" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "presentació automàtica d'informes de client autentificat SSL" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "presentació anònima dels informes" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -584,68 +601,68 @@ msgstr "" + " UPLOAD_DIR - Directori on són emmagatzemats els arxius pujats\n" + " FILENAME - Nom del fitxer de l'arxiu pujat\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "No és un directori: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "S'està ometent: '{0}' (comença amb barra invertida)" ++msgstr "S'ignora: '{0}' (comença amb barra invertida)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "S'està ometent: '{0}' (comença amb punt)" ++msgstr "S'ignora: '{0}' (comença amb punt)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "S'està ometent: '{0}' (conté ..)" ++msgstr "S'ignora: '{0}' (conté ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" +-msgstr "S'està ometent: '{0}' (conté espai)" ++msgstr "S'ignora: '{0}' (conté espai)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "S'està ometent: '{0}' (conté tabulador)" ++msgstr "S'ignora: '{0}' (conté tabulador)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "No es pot canviar el directori '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Tipus de fitxer desconegut: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "No es pot crear el directori de treball en '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "No es pot moure '{0}' a '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "No es pot copiar '{0}' a '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Error de verificació en '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "S'està desempaquetant '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "No es pot crear el directori '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "No es pot desempaquetar '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' s'ha processat amb èxit" + +@@ -662,33 +679,41 @@ msgstr "No es pot connectar al DBus del sistema: %s" + #: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" +-msgstr "No es pot canviar el propietari '%s': %s" ++msgstr "No es pot canviar el propietari «%s»: %s" + + #: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Error en eliminar el directori del problema: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "No es poden obtenir les dades del problema des de l'abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "No es pot obtenir el llistat de problemes des de l'abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "No es poden obtenir les dades del problema des de l'abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "No es pot provar si l'element existeix sobre l'abrt-dbus: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +-msgstr "No es pot crear el fitxer temporal '%s'" ++msgstr "No es pot crear el fitxer temporal «%s»" + + #: ../src/lib/ignored_problems.c:250 + #, c-format +@@ -696,14 +721,14 @@ msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" + msgstr "" +-"No es pot escriure en '%s'. El problema '%s' no es traurà dels problemes " +-"ignorats '%s'" ++"No es pot escriure en «%s». El problema «%s» no es traurà dels problemes " ++"ignorats «%s»" + + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "No es pot reanomenar '%s' a '%s'. Error en eliminar el problema '%s'" ++msgstr "No es pot reanomenar «%s» a «%s». Error en eliminar el problema «%s»" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" +@@ -728,7 +753,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Error en analitzar la traça inversa per %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "No s'ha trobat el fil d'execució de la pana" + +@@ -740,18 +765,18 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcula i desa el UUID del bolcat de memòria en el directori del problema " ++"Calcula i desa l'UUID del bolc de la memòria en el directori del problema " + "DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "S'està analitzant el bolcat de memòria '%s'" ++msgstr "S'està analitzant el bolc de la memòria «%s»" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "Falta l'Id. de la contrucció: %s" ++msgstr "Falta l'id. de la construcció: %s" + + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format +@@ -770,7 +795,8 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcula i desa el UUID i el DUPHASH per al directori del problema oops DIR" ++"Calcula i desa l'UUID i el DUPHASH per al directori DIR del problema de " ++"l'oops" + + #: ../src/plugins/abrt-action-analyze-oops.c:79 + msgid "" +@@ -793,12 +819,12 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcula i desa el UUID i el DUPHASH per al directori del problema xorg DIR" ++"Calcula i desa l'UUID i el DUPHASH per al directori del problema xorg DIR" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format + msgid "Module '%s' was loaded - won't report this crash" +-msgstr "El mòdul '%s' estava carregat - no s'informarà d'aquesta pana" ++msgstr "El mòdul «%s» estava carregat - no s'informarà d'aquesta pana" + + #: ../src/plugins/abrt-action-analyze-python.c:36 + msgid "" +@@ -808,7 +834,7 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcula i desa el UUID i el DUPHASH dels bolcats de les panes de Python" ++"Calcula i desa l'UUID i el DUPHASH dels bolcs de les panes de Python" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -820,7 +846,7 @@ msgstr "El fitxer {0} no existeix" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" +-msgstr "S'estan extraient el text dels ops des del nucli" ++msgstr "S'estan extraient el text de l'oops des del nucli" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "Can't process {0}:\n" +@@ -830,13 +856,13 @@ msgstr "No es pot processar {0}:\n" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +-msgstr "No es pot extraure el missatge oops: '{0}'" ++msgstr "No es pot extraure el missatge de l'oops: '{0}'" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" +-msgstr "El text dels oop s'ha extret am èxit" ++msgstr "El text de l'oops s'ha extret amb èxit" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -845,6 +871,38 @@ msgstr "" + "de maquinari.\n" + "El més probable és que no sigui un problema de programari.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -853,7 +911,7 @@ msgid "" + msgstr "" + "& [opcions] -d DIR\n" + "\n" +-"Analitza el bolcat de memòria en el directori del problema DIR, genera i " ++"Analitza el bolc de la memòria en el directori del problema DIR, genera i " + "desa la traça inversa" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 +@@ -862,7 +920,7 @@ msgstr "Directoris debuginfo addicionals" + + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" +-msgstr "Mata al gdb si s'executa més de NUM segons" ++msgstr "Mata al gdb si s'executa més de NÚM segons" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +@@ -880,7 +938,7 @@ msgid "" + msgstr "" + "& [-v] [-r] -d DIR\n" + "\n" +-"Crea una traça inversa a nivell de bolcat de memòria des del bolcat de " ++"Crea una traça inversa a escala de bolc de la memòria des del bolc de la " + "memòria i el corresponent binari" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 +@@ -946,7 +1004,7 @@ msgstr "" + "Es llegeix la configuració de /etc/abrt/plugins/CCpp.conf\n" + "\n" + " -v Mostra informació detallada\n" +-" -y No interactiu, assumeix 'Si' a totes les preguntes\n" ++" -y No interactiu, s'assumeix 'Sí' a totes les preguntes\n" + " --ids Per defecte: build_ids\n" + " --tmpdir Per defecte: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" + "RANDOM_SUFFIX\n" +@@ -954,7 +1012,7 @@ msgstr "" + " --size_mb Per defecte: 4096\n" + " --pkgmgr Per defecte: PackageManager des de CCpp.conf o 'dnf'\n" + " -e,--exact Baixa tan sols els paquets especificats\n" +-" --repo Patró a utilitzar quan es cerquen dipòsits.\n" ++" --repo Patró a utilitzar quan se cerquen dipòsits.\n" + " Per defecte: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:175 +@@ -964,7 +1022,7 @@ msgstr "No es pot obrir {0}: {1}" + #: ../src/plugins/abrt-action-install-debuginfo.in:212 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" + msgstr "" +-"El bolcat de memòria fa referència a {0} fitxers debuginfo, {1} dels quals " ++"El bolc de la memòria fa referència a {0} fitxers debuginfo, {1} dels quals " + "no estan instal·lats" + + #: ../src/plugins/abrt-action-install-debuginfo.in:215 +@@ -976,7 +1034,7 @@ msgstr "{0} dels fitxers debuginfo no estan instal·lats" + msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" + msgstr "" + "configuració no vàlida del complement CCpp, el gestor de paquets no està " +-"suportat: '%s'" ++"suportat: «%s»" + + #: ../src/plugins/abrt-action-install-debuginfo.in:249 + msgid "Missing requested file: {0}" +@@ -990,24 +1048,53 @@ msgstr "Falta el fitxer debuginfo: {0}" + msgid "All debuginfo files are available" + msgstr "Tots els fitxers debuginfo estan disponibles" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" +-"Esteu d'acord en pujar el bolcat de memòria? (Pot contenir dades sensibles). " +-"Si la vostra resposta és 'No' aleshores es generà localment una traça de la " +-"pila. (pot baixar una gran quantitat de dades)." ++"Esteu d'acord en pujar el bolc de la memòria? (Pot contenir dades sensibles)." ++" Si la vostra resposta és «No», aleshores es generà localment una traça de " ++"la pila. (pot baixar una gran quantitat de dades)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." + msgstr "" +-"Voleu generar a nivell local una traça de la pila? (Es poden baixar una gran " +-"quantitat de dades, però la presentació d'informes no pot continuar sense la " +-"traça de la pila)." ++"Voleu generar localment una traça de la pila? (Pot baixar una gran quantitat " ++"de dades, però la presentació d'informes no pot continuar sense la traça de " ++"la pila)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" +@@ -1038,12 +1125,12 @@ msgstr "Preserva aquest directori" + #: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "Incapaç d'iniciar '%s', el missatge d'error va ser: '%s'" ++msgstr "Incapaç d'iniciar «%s», el missatge d'error va ser: «%s»" + + #: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "No és un número al fitxer '%s'" ++msgstr "No és un número al fitxer «%s»" + + #: ../src/plugins/abrt-action-ureport:99 + #, c-format +@@ -1053,8 +1140,8 @@ msgstr "Ús: %s [-v]" + #: ../src/plugins/abrt-action-ureport:120 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" +-"No s'ha pogut obtenir el directori de treball actual com probablement hagi " +-"estat eliminat" ++"No s'ha pogut obtenir el directori de treball actual, probablement es va " ++"eliminar" + + #: ../src/plugins/abrt-action-ureport:148 + msgid "A bug was already filed about this problem:" +@@ -1075,15 +1162,15 @@ msgstr "El reporter-ureport va fer fallida amb el codi de sortida %d" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +-msgstr "Senyal enviada pel codi de l'espai d'usuari" ++msgstr "Senyal enviat pel codi de l'espai d'usuari" + + #: ../src/plugins/abrt-gdb-exploitable:533 + msgid "Signal sent by timer/IO/async event" +-msgstr "Senyal enviada per l'esdeveniment timer/IO/async" ++msgstr "Senyal enviat per l'esdeveniment timer/IO/async" + + #: ../src/plugins/abrt-gdb-exploitable:541 + msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "La senyal té siginfo.si_code = SI_USER" ++msgstr "El senyal té siginfo.si_code = SI_USER" + + #: ../src/plugins/abrt-gdb-exploitable:544 + msgid "Signal due to write to closed pipe" +@@ -1092,22 +1179,22 @@ msgstr "Senyal a causa de l'escriptura en una canonada tancada" + #: ../src/plugins/abrt-gdb-exploitable:550 + #: ../src/plugins/abrt-gdb-exploitable:575 + msgid "Signal sent by keyboard" +-msgstr "Senyal enviada pel tecla" ++msgstr "Senyal enviat pel teclat" + + #: ../src/plugins/abrt-gdb-exploitable:554 + #: ../src/plugins/abrt-gdb-exploitable:579 + msgid "Job control signal sent by kernel" +-msgstr "Senyal de control de treball enviada pel nucli del sistema operatiu" ++msgstr "Senyal de control de treball enviat pel nucli del sistema operatiu" + + #: ../src/plugins/abrt-gdb-exploitable:558 + #: ../src/plugins/abrt-gdb-exploitable:587 + msgid "Signal sent by window resize" +-msgstr "Senyal enviada pel redimensionament de la finestra" ++msgstr "Senyal enviat pel redimensionament de la finestra" + + #: ../src/plugins/abrt-gdb-exploitable:562 + #: ../src/plugins/abrt-gdb-exploitable:591 + msgid "Signal sent by alarm(N) expiration" +-msgstr "Senyal enviada per l'expiració d'alarm(N)" ++msgstr "Senyal enviat per l'expiració d'alarm(N)" + + #: ../src/plugins/abrt-gdb-exploitable:583 + msgid "Signal due to write to broken pipe" +@@ -1147,7 +1234,7 @@ msgstr "Instrucció il·legal (salta a una adreça aleatòria?)" + + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" +-msgstr "Senyal relacionada amb cap pana" ++msgstr "Senyal relacionat amb cap pana" + + #: ../src/plugins/abrt-gdb-exploitable:652 + msgid "Stack overflow" +@@ -1216,12 +1303,12 @@ msgid "" + msgstr "" + "& [-vusoxm] [-d DIR]/[-D] [FITXER]\n" + "\n" +-"Extreu els oop des del FITXER (o entrada estàndard)" ++"Extreu els oops del FITXER (o entrada estàndard)" + + #: ../src/plugins/abrt-dump-oops.c:98 + #: ../src/plugins/abrt-dump-journal-oops.c:220 + msgid "Print found oopses on standard output" +-msgstr "Imprimeix els oop que s'han trobat en la sortida estàndard" ++msgstr "Imprimeix els oops que s'han trobat en la sortida estàndard" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +@@ -1230,12 +1317,13 @@ msgstr "Imprimeix els oop que s'han trobat en la sortida estàndard" + #: ../src/plugins/abrt-dump-journal-oops.c:224 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +-"Crea el nou directori del problema al DIR per a cadascun dels oop trobats" ++"Crea el nou directori del problema en DIR per a cadascun dels oops trobats" + + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "El mateix que -d DumpLocation, DumpLocation s'especifica en abrt.conf" + +@@ -1245,16 +1333,18 @@ msgstr "Desa la informació extreta en PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Fes que el directori del problema el pugui llegir tot el món" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Regula la creació del directori del problema a 1 per segon" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Imprimeix les cadenes de text de cerca a l'stdout i surt" + +@@ -1263,14 +1353,18 @@ msgstr "Imprimeix les cadenes de text de cerca a l'stdout i surt" + msgid "Failed to compile regex" + msgstr "Error en compilar l'expressió regular" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "No es pot actualitzar el problema: s'han trobat més d'un oops" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 + msgid "Failed to obtain all required information from journald" +-msgstr "Ha fallat l'obtenció de tota la informació solicitada del journald" ++msgstr "Ha fallat l'obtenció de tota la informació sol·licitada del journald" + + #. We don't want to update the counter here. + #: ../src/plugins/abrt-dump-journal-core.c:401 +@@ -1286,6 +1380,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "Error en inicialitzar l'observació de systemd-journal" + +@@ -1304,7 +1399,7 @@ msgid "" + msgstr "" + "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" + "\n" +-"Extreu els bolcats de memòria des de systemd-journal\n" ++"Extreu els bolcs de la memòria des de systemd-journal\n" + "\n" + "les opcions -c i -e entren en conflicte perquè ambdós especifiquen la " + "lectura del primer missatge.\n" +@@ -1318,18 +1413,20 @@ msgstr "" + #: ../src/plugins/abrt-dump-journal-core.c:478 + msgid "Create new problem directory in DIR for every coredump" + msgstr "" +-"Crea un nou directori del problema al DIR per a cadascun dels bolcats de " ++"Crea un nou directori del problema al DIR per a cadascun dels bolcs de la " + "memòria" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" +-msgstr "Inicia la lectuta de systemd-journal des de la posició del CURSOR" ++msgstr "Inicia la lectura de systemd-journal des de la posició del CURSOR" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" +-msgstr "Inicia la lectuta de systemd-journal des del final" ++msgstr "Inicia la lectura de systemd-journal des del final" + + #: ../src/plugins/abrt-dump-journal-core.c:482 + msgid "Throttle problem directory creation to 1 per INT second" +@@ -1341,17 +1438,20 @@ msgstr "El mateix que -t INT, INT s'especifica en plugins/CCpp.conf" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + "Segueix systemd-journal des de la darrera posició vista (si n'hi hagués)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "Heu d'especificar -c CURSOR o bé -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "No es pot obrir systemd-journal" + +@@ -1360,18 +1460,21 @@ msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + "No es pot filtrar systemd-journal a únicament les dades systemd-coredump" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "No es pot buscar fins al final de la publicació" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" +-msgstr "Error en establir el cursor de systemd-journal '%s'" ++msgstr "Error en establir el cursor de systemd-journal «%s»" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "No es poden llegir les dades de la publicació." + +@@ -1390,7 +1493,7 @@ msgid "" + msgstr "" + "& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" + "\n" +-"Extrau els oops des del systemd-journal\n" ++"Extrau l'oops des del systemd-journal\n" + "\n" + "les opcions -c i -e entren en conflicte perquè ambdós especifiquen el primer " + "missatge llegit.\n" +@@ -1402,17 +1505,20 @@ msgstr "" + "La darrera posició vista està desada en " + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "Llegeix els fitxers de publicació des de totes les màquines" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Llegeix tots els fitxers de publicació del directori ubicat al CAMÍ" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "No es pot inicialitzar systemd-journal al directori «%s»" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" +@@ -1420,96 +1526,146 @@ msgstr "" + "No es pot filtrar systemd-journal únicament a dades del nucli del sistema " + "operatiu" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" +-msgstr "Error en iniciar l'observació des del cursor '%s'" ++msgstr "Error en iniciar l'observació des del cursor «%s»" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" +-"& [-vsoxm] [-d DIR]/[-D] [FITXER]\n" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +-"Extreu la pana d'Xorg des del FITXER (o entrada estàndard)" ++"Extreu la fallida Xorg des de FILE (o entrada estàndard)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + "Imprimeix les dades de les panes que s'han trobat en la sortida estàndard" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Crea el directori del problema al DIR per a cadascuna de les panes trobades" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "No es pot desar la posició d'observació de la publicació" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "No es pot desar la posició d'observació de la publicació: open('%s')" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" +-"No es restaura la posició d'observació de la publicació: el fitxer '%s' no " ++"No es restaura la posició d'observació de la publicació: el fitxer «%s» no " + "existeix" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + "No es pot restaurar la posició d'observació de la publicació des del fitxer " +-"'%s'" ++"«%s»" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" +-"No es pot restaurar la posició d'observació de la publicació: el camí '%s' " ++"No es pot restaurar la posició d'observació de la publicació: el camí «%s» " + "no és un fitxer normal" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" +-"No es pot restaurar la posició d'observació de la publicació: el fitxer '%s' " +-"supera el límit de la mida %dB" ++"No es pot restaurar la posició d'observació de la publicació: el fitxer «%s» " ++"supera el límit de la mida %d B" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + "No es pot restaurar la posició d'observació de la publicació: open('%s')" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + "No es pot restaurar la posició d'observació del servei de publicació: no es " +-"pot llegir el fitxer sencer '%s'" ++"pot llegir el fitxer sencer «%s»" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" +-msgstr "Error en moure el cursor de la publicació des del fitxer '%s'" ++msgstr "Error en moure el cursor de la publicació des del fitxer «%s»" + + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." + msgstr "" +-"No es pot utilitzar el servidor de resseguiment, a causa de que la mida del " ++"No es pot utilitzar el servidor de resseguiment, a causa que la mida del " + "fitxer de la pana és massa gran. Proveu amb un resseguiment local." + + #. Hopefully, by this time child emitted more meaningful +@@ -1565,8 +1721,8 @@ msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" + msgstr "" +-"El servidor de resseguiment no es capaç de processar el paquet '%s.%s'.\n" +-"Forma part dels dipòsits oficials de '%s'?" ++"El servidor de resseguiment no és capaç de processar el paquet «%s.%s».\n" ++"Forma part dels dipòsits oficials de «%s»?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1585,7 +1741,7 @@ msgstr "El servidor ha rebutjat la vostra sol·licitud." + #, c-format + msgid "'%s' must be a regular file in order to use Retrace server." + msgstr "" +-"'%s' ha de ser un fitxer normal per a poder utilitzar un servidor de " ++"«%s» ha de ser un fitxer normal per a poder utilitzar un servidor de " + "resseguiment." + + #: ../src/plugins/abrt-retrace-client.c:520 +@@ -1599,12 +1755,12 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:540 + msgid "The server does not support xz-compressed tarballs." +-msgstr "El servidor no és compatible amb els tarballs comprimits amb xz." ++msgstr "El servidor no és compatible amb els arxius tar comprimits amb xz." + + #: ../src/plugins/abrt-retrace-client.c:577 + #, c-format + msgid "The release '%s' is not supported by the Retrace server." +-msgstr "El llançament '%s' no està suportat pel servidor de resseguiment." ++msgstr "El llançament «%s» no està suportat pel servidor de resseguiment." + + #: ../src/plugins/abrt-retrace-client.c:581 + msgid "The server is not able to handle your request." +@@ -1624,8 +1780,8 @@ msgid "" + "The size of your archive is %s, but the retrace server only accepts archives " + "smaller or equal to %s." + msgstr "" +-"La mida del vostre arxiu es de %s, però el servidor de resseguiment " +-"únicament accepta arxius més petits o iguals de %s." ++"La mida del vostre arxiu és de %s, però el servidor de resseguiment " ++"únicament accepta arxius més petits o iguals a %s." + + #: ../src/plugins/abrt-retrace-client.c:640 + #, c-format +@@ -1648,7 +1804,7 @@ msgstr "S'està pujant %d%%\n" + + #: ../src/plugins/abrt-retrace-client.c:721 + msgid "Failed to read from a pipe" +-msgstr "Error en llegir de d'una canonada" ++msgstr "Error en llegir d'una canonada" + + #: ../src/plugins/abrt-retrace-client.c:734 + #, c-format +@@ -1677,11 +1833,11 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:782 + msgid "Invalid response from server: missing X-Task-Id." +-msgstr "La resposta del servidor no és vàlida: falta l'X-Task-Id." ++msgstr "La resposta del servidor no és vàlida: falta X-Task-Id." + + #: ../src/plugins/abrt-retrace-client.c:788 + msgid "Invalid response from server: missing X-Task-Password." +-msgstr "La resposta del servidor no és vàlida: falta l'X-Task-Password." ++msgstr "La resposta del servidor no és vàlida: falta X-Task-Password." + + #: ../src/plugins/abrt-retrace-client.c:795 + msgid "Retrace job started" +@@ -1696,7 +1852,7 @@ msgstr "Id. de la tasca: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:866 + msgid "Invalid response from server: missing X-Task-Status." +-msgstr "La resposta del servidor no és vàlida: falta l'X-Task-Status." ++msgstr "La resposta del servidor no és vàlida: falta X-Task-Status." + + #: ../src/plugins/abrt-retrace-client.c:878 + #, c-format +@@ -1718,8 +1874,8 @@ msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." + msgstr "" +-"Error en el resseguiment. Proveu-ho de nou més tard i si el problema perdura " +-"informeu d'aquesta incidència." ++"Error en el resseguiment. Proveu-ho de nou més tard i si el problema " ++"perdura, informeu d'aquesta incidència." + + #: ../src/plugins/abrt-retrace-client.c:1217 + msgid "log to syslog" +@@ -1759,7 +1915,7 @@ msgstr "llegeix les dades des del directori del problema de l'ABRT" + + #: ../src/plugins/abrt-retrace-client.c:1233 + msgid "read data from coredump" +-msgstr "llegeix les dades des del bolcat de memòria" ++msgstr "llegeix les dades des del bolc de la memòria" + + #: ../src/plugins/abrt-retrace-client.c:1235 + msgid "Delay for polling operations" +@@ -1769,7 +1925,7 @@ msgstr "Retard per a les operacions de sondeig" + msgid "(debug) do not delete temporary archive created from dump dir in " + msgstr "" + "(depuració) no eliminis els arxius temporals que s'hagin creat des del " +-"directori del bolcat en " ++"directori del bolc en " + + #: ../src/plugins/abrt-retrace-client.c:1239 + msgid "For status, backtrace, and log operations" +@@ -1794,7 +1950,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1292 + #: ../src/plugins/abrt-retrace-client.c:1298 + msgid "Either problem directory or coredump is needed." +-msgstr "Es necessita el directori del problema o bé el bolcat de memòria." ++msgstr "Es necessita el directori del problema o bé el bolc de la memòria." + + #: ../src/plugins/abrt-retrace-client.c:1304 + #: ../src/plugins/abrt-retrace-client.c:1312 +@@ -1822,8 +1978,8 @@ msgstr "Depurador GNU local" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" + msgstr "" +-"Baixa els paquets debuginfo i genera a nivell local la traça inversa " +-"mitjançant GDB" ++"Baixa els paquets debuginfo i genera localment la traça inversa mitjançant " ++"GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" +@@ -1831,14 +1987,15 @@ msgid "" + "and take up disk space. However, unlike RetraceServer, doesn't send coredump " + "to remote machines." + msgstr "" +-"Necessita baixar els paquets debuginfo, els quals prenen un temps " +-"significant i espai de de disc. No obstant, a diferència dels servidors de " +-"resseguiment, no envia els bolcats de la memòria a màquines remotes." ++"Necessita baixar els paquets debuginfo, els quals prenen un temps i espai de " ++"disc considerable. No obstant això, a diferència dels servidors de " ++"resseguiment, no envia els bolcs de la memòria a màquines remotes." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" + msgstr "" +-"Envia el bolcat de memòria al servidor remot de resseguiment per a l'anàlisi" ++"Envia el bolc de la memòria al servidor remot de resseguiment per a " ++"l'anàlisi" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +@@ -1848,12 +2005,12 @@ msgid "" + "you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" +-"Puja el bolcat de memòria a un servidor que genera una traça inversa i la " +-"retorna. Pros: no hi hi la necessitat de baixar els debuginfo. La base de " ++"Puja el bolc de la memòria a un servidor que genera una traça inversa i la " ++"retorna. Pros: no hi ha la necessitat de baixar els debuginfo. La base de " + "dades dels debuginfo del servidor de resseguiment és més completa. El " + "servidor de resseguiment pot generar millor les traces inverses. Cons: el " +-"bolcat de memòria que pugeu conté totes les dades del programa que ha tingut " +-"pana, que inclouen les vostres dades privades, si fos el cas." ++"bolc de la memòria que pugeu conté totes les dades del programa que ha " ++"tingut pana, que inclouen les vostres dades privades, si fos el cas." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + msgid "Retrace server URL" +@@ -1887,7 +2044,7 @@ msgstr "Recull .xsession-errors" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:2 + msgid "Save relevant lines from ~/.xsession-errors file" +-msgstr "Desa les línies rellevants del fitxer ~/.xsession-errors" ++msgstr "Desa les línies apropiades del fitxer ~/.xsession-errors" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:3 + msgid "" +@@ -1905,7 +2062,7 @@ msgstr "S'ha produït un error en el cantó del servidor." + #: ../src/plugins/https-utils.c:65 + #, c-format + msgid "A server-side error occurred on '%s'" +-msgstr "S'ha produït un error en el cantó del servidor en '%s'" ++msgstr "S'ha produït un error en el cantó del servidor en «%s»" + + #: ../src/plugins/https-utils.c:74 + msgid "An error occurred while connecting to the server" +@@ -1914,7 +2071,7 @@ msgstr "S'ha produït un error mentre es connectava amb el servidor" + #: ../src/plugins/https-utils.c:77 + #, c-format + msgid "An error occurred while connecting to '%s'" +-msgstr "S'ha produït un error mentre es connectava a '%s'" ++msgstr "S'ha produït un error mentre es connectava a «%s»" + + #: ../src/plugins/https-utils.c:97 + #, c-format +@@ -1932,7 +2089,7 @@ msgstr "" + msgid "Certificate subject name '%s' does not match target host name '%s'." + msgstr "" + "El nom del subjecte del certificat '%s' no coincideix amb el nom de " +-"l'amfitrió de destinació '%s'." ++"l'amfitrió de destinació «%s»." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1941,12 +2098,12 @@ msgstr "El certificat remot ha expirat." + #: ../src/plugins/https-utils.c:110 + #, c-format + msgid "Certificate issuer is not recognized: '%s'." +-msgstr "No s'ha reconegut l'emissor del certificat: '%s'." ++msgstr "No s'ha reconegut l'emissor del certificat: «%s»." + + #: ../src/plugins/https-utils.c:113 + #, c-format + msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "S'ha rebut un certificat dolent. Subjecte '%s', emissor '%s'." ++msgstr "S'ha rebut un certificat dolent. Subjecte «%s», emissor «%s»." + + #: ../src/plugins/https-utils.c:149 + #, c-format +@@ -1956,13 +2113,13 @@ msgstr "Error en obtenir la ranura 'PEM Token #0': %d." + #: ../src/plugins/https-utils.c:182 + #, c-format + msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "No es pot resoldre el nom de l'amfitrió '%s'. error de NSS %d." ++msgstr "No es pot resoldre el nom de l'amfitrió «%s». error de NSS %d." + + #. Host exists, but has neither IPv4 nor IPv6?? + #: ../src/plugins/https-utils.c:203 + #, c-format + msgid "Can't resolve host name '%s'." +-msgstr "No es pot resoldre el nom de l'amfitrió '%s'." ++msgstr "No es pot resoldre el nom de l'amfitrió «%s»." + + #: ../src/plugins/https-utils.c:210 + msgid "Failed to set socket blocking mode." +@@ -1986,12 +2143,12 @@ msgstr "L'habilitació de TLS ha fallat." + + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." +-msgstr "Error en establir la URL al sòcol SSL." ++msgstr "Error en establir l'URL al sòcol SSL." + + #: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" +-msgstr "No es pot connectar a '%s'" ++msgstr "No es pot connectar a «%s»" + + #: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." +@@ -2003,7 +2160,7 @@ msgstr "Ha fallat l'establiment del retorn de la salutació." + + #: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." +-msgstr "Error en resetejar la salutació." ++msgstr "Error en restablir la salutació." + + #: ../src/plugins/https-utils.c:258 + #, c-format +@@ -2017,7 +2174,7 @@ msgstr "Error en tancar el sòcol SSL." + #: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" +-msgstr "Capçalera de resposta HTTP amb format incorrecte: '%s'" ++msgstr "Capçalera de resposta HTTP amb format incorrecte: «%s»" + + #: ../src/plugins/https-utils.c:369 + #, c-format +@@ -2045,7 +2202,7 @@ msgstr "Error en aturar NSS." + msgid "Sleeping for %d seconds" + msgstr "S'està dormint durant %d segons" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2054,7 +2211,7 @@ msgstr "" + "trencada, per desgràcia aquests problemes no es poden corregir pels " + "mantenidors del nucli del sistema operatiu." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2063,7 +2220,7 @@ msgstr "" + "maquinari no és compatible, per tant els mantenidors del nucli del sistema " + "operatiu no poden corregir-ho." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2073,24 +2230,24 @@ msgstr "" + "nucli ha estat contaminat (marcadors: %s). Els mantenidors del nucli del " + "sistema operatiu no poden fer diagnòstics amb informes contaminats." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Mòduls contaminats: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Llistat dels Id. dels errors" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Especifica un servidor bodhi" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Especifica un llançament" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2100,22 +2257,22 @@ msgstr "" + "\n" + "Cerca si hi ha actualitzacions en el servidor bodhi" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "S'està cercant si hi ha actualitzacions" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "No s'han trobat actualitzacions per aquest paquet" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "La versió local del paquet és més recent que la de les actualitzacions " + "disponibles" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2133,79 +2290,80 @@ msgid "" + msgstr "" + "& [-v] [-od] FITXER...\n" + "\n" +-"Escaneja els fitxers per a dividir els missatges oop. Pot imprimir-los i/o " +-"eliminar-los." ++"Escaneja els fitxers per a dividir el missatge de l'oops. Pot imprimir-los i/" ++"o eliminar-los." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +-msgstr "Imprimeix els oop que s'han trobat" ++msgstr "Imprimeix els oops que s'han trobat" + + #: ../src/hooks/abrt-merge-pstoreoops.c:98 + msgid "Delete files with found oopses" +-msgstr "Elimina els fitxers amb els oop que s'han trobat" ++msgstr "Elimina els fitxers amb els oops que s'han trobat" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" +-msgstr "'%s' fa referència a més d'un directori de problema" ++msgstr "«%s» fa referència a més d'un directori de problema" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Ús: abrt-cli [--version] ORDRE [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Llista els problemes [als DIRs]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Elimina el directori del problema DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analitza i informa de les dades del problema al DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Imprimeix informació sobre el DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Imprimeix el compte de les panes recents" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Processa múltiples problemes" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Consulteu 'abrt-cli ORDRE --help' per a més informació" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& list [opcions]" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Llista únicament els problemes que s'hagin informat" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Mostra informes detallats" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Llista únicament els problemes que siguin més recents que la marca de temps " + "especificada" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Llista únicament els problemes anteriors a la marca de temps especificada" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2216,53 +2374,63 @@ msgstr "" + "Considereu habilitar-ho\n" + "amb 'abrt-auto-reporting enabled' com a usuari amb els privilegis de root\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [opcions] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "El text que sigui més gran que aquest es mostrarà abreujat" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" +-msgstr "El directori del problema '%s' no existeix" ++msgstr "El directori del problema «%s» no existeix" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& status" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Imprimeix únicament el compte dels problemes sense cap missatge" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Imprimeix únicament els problemes que siguin més recents que la marca de " + "temps especificada" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" +-"ABRT ha detectat %u problem[a|es]. Per a més informació executeu: abrt-cli " ++"ABRT ha detectat %u problem[a/es]. Per a més informació executeu: abrt-cli " + "list%s\n" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "S'està eliminant «%s»" ++ ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [opcions] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Elimina PROBLEM_DIR després de la presentació d'informes" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "S'està eliminant '%s'" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Accions: remove(rm), info(i), skip(s):" +@@ -2271,33 +2439,188 @@ msgstr "Accions: remove(rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Accions: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" +-msgstr "S'està informant '%s'" ++msgstr "S'està informant «%s»" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Per al següent problema premeu RETORN:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Sense l'argument --since, s'itera sobre tots els problemes detectats." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + "Selecciona únicament els problemes que es van detectar després de la marca " + "de temps" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" + msgstr "" +-"Envia el bolcat de memòria a un servidor remot de resseguiment per a " +-"l'anàlisi o per a la realització de l'anàlisis local si es produeix un error " ++"Envia el bolc de la memòria a un servidor remot de resseguiment per a " ++"l'anàlisi o per a la realització de l'anàlisi local si es produeix un error " + "en el servidor remot de l'anàlisi" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 +@@ -2310,15 +2633,14 @@ msgid "" + "you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" +-"Puja el bolcat de memòria a un servidor que genera una traça inversa i la " +-"retorna. Si l'usuari no vol pujar el seu bolcat de memòria enlloc, " +-"l'esdeveniment realitza l'anàlisi a nivell local. L'anàlisi local s'executa " +-"si l'anàlisi remot falla. Pros: no hi hi la necessitat de baixar els " +-"debuginfo. La base de dades dels debuginfo del servidor de resseguiment és " +-"més completa. El servidor de resseguiment pot generar millor les traces " +-"inverses. Cons: el bolcat de memòria que pugeu conté totes les dades del " +-"programa que ha ha tingut pana, que inclouen les vostres dades privades, si " +-"fos el cas." ++"Puja el bolc de la memòria a un servidor que genera una traça inversa i la " ++"retorna. Si l'usuari no vol pujar el seu bolc de la memòria enlloc, " ++"l'esdeveniment realitza localment l'anàlisi. L'anàlisi local s'executa si " ++"falla l'anàlisi remota. Pros: no hi ha la necessitat de baixar els debuginfo." ++" La base de dades dels debuginfo del servidor de resseguiment és més " ++"completa. El servidor de resseguiment pot generar millor les traces inverses." ++" Cons: el bolc de la memòria que pugeu conté totes les dades del programa " ++"que ha tingut pana, que inclouen les vostres dades privades, si fos el cas." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -2329,7 +2651,7 @@ msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + "Instal·la els paquets debuginfo del nucli del sistema operatiu, genera " +-"registres del nucli del sistema operatiu i missatges oops" ++"registres del nucli del sistema operatiu i missatges de l'oops" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" +@@ -2337,7 +2659,7 @@ msgid "" + "time, and take up disk space." + msgstr "" + "Necessita instal·lar els paquets debuginfo del nucli del sistema operatiu, " +-"els quals prenen un temps significant i espai de de disc." ++"els quals prenen un temps i espai de disc considerable." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -2352,8 +2674,8 @@ msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." + msgstr "" +-"Executa gconftool-2 --recursive-list /apps/executable i desa-ho com element " +-"de 'gconf_subtree'." ++"Executa gconftool-2 --recursive-list /apps/executable i ho desa com a " ++"element de 'gconf_subtree'." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +diff --git a/po/cs.po b/po/cs.po +index 5a092d7..debed52 100644 +--- a/po/cs.po ++++ b/po/cs.po +@@ -18,121 +18,134 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-03-05 09:29-0500\n" +-"Last-Translator: Jiri Eischmann \n" ++"PO-Revision-Date: 2015-05-13 05:06-0400\n" ++"Last-Translator: Zdenek \n" + "Language-Team: čeština \n" + "Language: cs\n" + "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "Hlášení problemů" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "Prohlédni a nahlas chyby aplikací" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Nelze převzít vlastnictví '%s'" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Nemohu otevřít adresář pro zápis '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nemohu zavřít oznámení: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" +-msgstr "" ++msgstr "Oops!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Nahlásit" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" +-msgstr "" ++msgstr "Restart" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" ++"Je nám líto, ale zdá se, že %s havaroval. Problém byl automaticky nahlášen." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" ++"Je nám líto, ale zdá se, že %s havaroval. Problém bude nahlášen jakmile bude " ++"dostupný internet." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" ++"Je nám líto, ale zdá se, že %s havaroval. Kontaktujte prosím vývojáře, pokud " ++"chcete problém nahlásit." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" ++"Je nám líto, ale zdá se, že %s havaroval. Pokud chcete pomoct s řešením " ++"tohoto problému, zašlete nám ho prosím." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" ++"Je nám líto, ale zdá se, že se v komponentě objevil problém. Problém byl " ++"automaticky nahlášen." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" ++"Je nám líto, ale zdá se, že se v komponentě objevil problém. Problém bude " ++"nahlášen, jakmile bude dostupný internet." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" ++"Je nám líto, ale zdá se, že se v komponentě objevil problém. Pokud chcete " ++"pomoct s řešením tohoto problému, zašlete nám ho prosím." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Nemohu zobrazit oznámení: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Nemohu číst z kanálu gio: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Nemohu nastavit kódování na kanálu gio: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Nemohu zapnout neblokový režim pro kanál gio: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -142,6 +155,17 @@ msgstr "" + "\n" + "Applet, který uživatele upozorní, když ABRT detekuje nový problém\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "Zeptat se před ukradnutím adresáře" +@@ -163,12 +187,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"Soubor coredumpu je nezbytný pro vygenerování stack tracu, což je časově a " +-"prostorově náročná operace. ABRT poskytuje službu, která vygeneruje stack " +-"trace z coredumpu, ale musíte do této služby coredump nahrát. Pokud tuto " +-"volbu zakážete, ABRT nahraje coredump bez ptaní." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -214,10 +236,6 @@ msgstr "" + "nahlášené problémy. Funguje pouze, pokud je povoleno Zkrácené hlášení." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Zeptat se před odesláním coredumpu" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -225,15 +243,15 @@ msgstr "" + "Pokud je tato volba povolená, ABRT vždy vytvoří chybové hlášení s omezeným " + "přístupem, jsou-li potenciálně citlivá data detekována." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Vyžadovat neveřejné hlášení v případě citlivých informací" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Upozornit na nekompletní problémy" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -242,6 +260,22 @@ msgstr "" + "Nekompletní problémy jsou detekovány, když se počítač vypíná nebo uživatel " + "odhlašuje. V zájmu užitečnosti hlášení, ABRT tyto problémy odesílat nebude." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Zavřít" +@@ -267,14 +301,17 @@ msgstr "O" + msgid "Quit" + msgstr "Konec" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" ++"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" ++"\n" ++"Dotáže databázi balíčků a uloží jméno balíčku a komponenty" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -286,42 +323,45 @@ msgstr "" + msgid "Problem directory" + msgstr "Adresář problému" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfigurační soubor" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" +-msgstr "" ++msgstr "Použít tento adresář jako RPM root" + + #: ../src/daemon/abrt-action-save-container-data.c:199 + msgid "& [-v] -d DIR\n" + "\n" + "Save container metadata" +-msgstr "" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"Uloží zásobník metadat" + + #: ../src/daemon/abrt-action-save-container-data.c:211 + msgid "Root directory for running container commands" +-msgstr "" ++msgstr "Kořenový adresář pro běžící zásobník příkazů" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [volby]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Použít NUM jako klient uid" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Protokolovat do syslogu" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Přidá názvy programů do protokolu" + +@@ -329,62 +369,52 @@ msgstr "Přidá názvy programů do protokolu" + msgid "Unknown error" + msgstr "Neznámá chyba" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' není platným adresářem problému" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' není platným jménem prvku" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' prvek nemůže být modifikován" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' není platným adresářem problému" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Neautorizovaný" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Nemohu zpřístupnit problém ke změně" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' prvek nemůže být modifikován" ++ ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Změna vlastníka adresáře selhala. Zkontrolujte logy systému pro více " + "informací." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' není platným jménem prvku" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Nemohu získat velikost '%s'" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Nezbývá místo na problémy" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Nemohu smazat prvek '%s' z adresáře problému '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -394,12 +424,12 @@ msgstr "" + "Jméno '%s' bylo ztraceno, zkontrolujte prosím, zda-li jiná služba vlastnící " + "toto jméno neběží.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Ukončí po NUM sekundách neaktivity" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Tento program musí být spuštěn pod root uživatelem." + +@@ -425,18 +455,22 @@ msgstr "Nedémonizuje se" + msgid "Log to syslog even with -d" + msgstr "Protokoluje do syslogu i s -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Spustí EVENT v DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Komunikovat přímo s uživatelem" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -474,73 +508,76 @@ msgstr "Počet souběžných \"dělníků\". Výchozí je " + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximální velikost mezipaměti v MiB. Výchozí je " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "Vypíná autentizaci" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Uživatelské jméno podpory Red Hat" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" ++"Heslo pro podporu Red Hat. Pokud není uvedeno, bude obdržena výzva pro jeho " ++"vydání" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" +-msgstr "" ++msgstr "Cesta nebo typ SSL certifikátu pro uReport" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" +-msgstr "" ++msgstr "Musíte zadat --username pro --password" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" +-msgstr "" ++msgstr "Můžete použít buď --username nebo --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" +-msgstr "" ++msgstr "Můžete použít buď --username nebo --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" +-msgstr "" ++msgstr "Můžete použít buď --anonymous nebo --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Neplatný počet argumentů" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Neznámá hodnota možnosti: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" +-msgstr "" ++msgstr "Heslo:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Bez zadání hesla nelze pokračovat\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" +-msgstr "" ++msgstr "Automatické hlášení chyb autorizováno pro HTTP" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" +-msgstr "" ++msgstr "Automatické hlášení chyb autorizováno pro SSL klienta" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" +-msgstr "" ++msgstr "Anonymní automatické hlášení chyb" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -560,68 +597,68 @@ msgstr "" + " UPLOAD_DIR - Adresář, kde jsou nahrané archivy uložené\n" + " FILENAME - Název souboru nahraného archivu\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Ne adresář: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Přeskočení: '{0}' (začíná lomítkem)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Přeskočení: '{0}' (začíná tečkou)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Přeskočení: '{0}' (obsahuje..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Přeskočení: '{0}' (obsahuje mezeru)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Přeskočení: '{0}' (obsahuje tabulátor)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" +-msgstr "Nelze změnit adresáž na '{0}'" ++msgstr "Nelze změnit adresář na '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Neznámý typ souboru '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Nelze vytvořit pracovní adresář '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Nelze přesunout '{0}' do '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Nelze zkopírovat '{0}' do '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Chyba ověření na '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Rozbalení '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Nelze vytvořit adresář '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Nelze rozbalit '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' byl úspěšně zpracován" + +@@ -645,21 +682,29 @@ msgstr "Nelze provést chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Odstraňování adresáře problému selhalo: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Nemohu získat data problému z abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Nemohu získat seznam problémů z abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Nemohu získat data problému z abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "Nelze otestovat zda-li element existuje nad abrt-dbus: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -704,7 +749,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Rozbor zásobníku volání v %s se nezdařil" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Vlákno poruchy nenalezeno" + +@@ -809,7 +854,7 @@ msgstr "Nelze vytáhnout zprávu oops: '{0}'" + msgid "Oops text extracted successfully" + msgstr "Text oops úspěšně vyňat." + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -817,6 +862,38 @@ msgstr "" + "Protokol jádra indikuje, že byly detekovány chyby hardwaru.\n" + "Toto není s největší pravděpodobností softwarový problém.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -902,6 +979,28 @@ msgid "" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" + msgstr "" ++"Použití: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Instaluje debuginfo pro všechny ID buildů v BUILD_IDS_FILE\n" ++"do CACHEDIR pomocí TMPDIR jako dočasného vyčkávacího prostoru.\n" ++"Staré soubory v CACHEDIR jsou smazány, dokud nejsou menší než SIZE.\n" ++"\n" ++"Načítá konfiguraci z /etc/abrt/plugins/CCpp.conf\n" ++"\n" ++" -v Být upovídaný\n" ++" -y Neinterkativní, předpokládá 'Ano' pro všechny otázky\n" ++" --ids Výchozí: build_ids\n" ++" --tmpdir Výchozí: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX\n" ++" --cache Výchozí: /var/cache/abrt-di\n" ++" --size_mb Výchozí: 4096\n" ++" --pkgmgr Výchozí: Správce balíčků z CCpp.conf nebo 'dnf'\n" ++" -e,--exact Stáhnout pouze uvedený soubor\n" ++" --repo Vzor, který použít pro hledání repozitářů.\n" ++" Výchozí: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:175 + msgid "Can't open {0}: {1}" +@@ -921,6 +1020,7 @@ msgstr "{0} souborů debuginfo není nainstalováno" + #, c-format + msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" + msgstr "" ++"Neplatná konfigurace doplňku CCpp, nepodporovaný správce balíčku: '%s'" + + #: ../src/plugins/abrt-action-install-debuginfo.in:249 + msgid "Missing requested file: {0}" +@@ -934,7 +1034,36 @@ msgstr "Chybějící soubory ladících údajů: {0}" + msgid "All debuginfo files are available" + msgstr "Všechny soubory debuginfo jsou dostupné" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -944,7 +1073,7 @@ msgstr "" + "Pokud bude vaše odpověď 'Ne', zásobník volání se vygeneruje lokálně. (to " + "může mít za následek stažení velkého množství dat)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1177,7 +1306,8 @@ msgstr "Vytvoř nový adresář problému v DIR pro každý nalezený oops" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Stejné jako -d DumpLocation, DumpLocation je specifikováno v abrt.conf" +@@ -1188,16 +1318,18 @@ msgstr "Uložit vyňaté informace v PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Učiň adresář problému přístupný pro čtení všem" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Omezit vytváření adresářů s problémy na 1 za sekundu" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Vytiskne znak(y) vyhledávání do stdout a ukončí se" + +@@ -1206,27 +1338,32 @@ msgstr "Vytiskne znak(y) vyhledávání do stdout a ukončí se" + msgid "Failed to compile regex" + msgstr "Selhalo zkompilování regexu" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "Nelze aktualizovat problém: nalezen více než jeden oops" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 + msgid "Failed to obtain all required information from journald" +-msgstr "" ++msgstr "Nepodařilo se získat všechny požadované informace ze žurnálu" + + #. We don't want to update the counter here. + #: ../src/plugins/abrt-dump-journal-core.c:401 + #, c-format + msgid "Not saving repeating crash after %ds (limit is %ds)" +-msgstr "" ++msgstr "Neukládat opakující se pád po %ds (limit je %ds)" + + #: ../src/plugins/abrt-dump-journal-core.c:407 + msgid "Failed to save detect problem data in abrt database" +-msgstr "" ++msgstr "Nepodařilo se uložit data detekovaného problému v abrt databazi" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "Selhalo inicializování systemd-journal watch" + +@@ -1243,60 +1380,78 @@ msgid "" + "\n" + "The last seen position is saved in " + msgstr "" ++"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" ++"\n" ++"Extrahuje záznamy jádra ze systemd-journalu\n" ++"\n" ++"volby -c and -e jsou v konfliktu, protože obě určují první přečtenou zprávu.\n" ++"\n" ++"-e je užitečné pouze pro -f, protože po startu journalu následuje čtení\n" ++"celého journalu, pokud není k dispozici poslední pozice.\n" ++"\n" ++"Poslední zhlédnutá pozice je uložená v " + + #: ../src/plugins/abrt-dump-journal-core.c:478 + msgid "Create new problem directory in DIR for every coredump" +-msgstr "" ++msgstr "Vytvoř nový adresář problému v DIR pro každý nalezený záznam jádra" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "Začít číst systemd-journal z pozice CURSOR" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "Začít číst systemd-journal od konce" + + #: ../src/plugins/abrt-dump-journal-core.c:482 + msgid "Throttle problem directory creation to 1 per INT second" +-msgstr "" ++msgstr "Omezit vytváření adresářů s problémy na 1 za INT sekund" + + #: ../src/plugins/abrt-dump-journal-core.c:483 + msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" +-msgstr "" ++msgstr "Stejné jako -t INT, INT je specifikováno v plugins/CCpp.conf" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "Sleduj system-journal z poslední zhlédnuté pozice (pokud je dostupná)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "Musíte zadat buď -c CURSOR nebo -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "Nelze otevřít systemd-journal" + + #: ../src/plugins/abrt-dump-journal-core.c:544 + msgid "Cannot filter systemd-journal to systemd-coredump data only" +-msgstr "" ++msgstr "Ze systemd-journal nelze vyfiltrovat pouze data o záznamu jádra" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "Nelze skočit na konec journalu" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "Selhalo nastavení kurzoru systemd-journal '%s'" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "Nelze číst data journalu." + +@@ -1325,28 +1480,77 @@ msgstr "" + "Poslední zhlédnutá pozice je uložená v " + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" +-msgstr "" ++msgstr "Čte soubory žurnálu ze všech systémů" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Čte všechny soubory žurnálu z adresáře v PATH" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "Nelze iniciovat systemd-journal v adresáři '%s'" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "Ze systemd-journal nelze vyfiltrovat pouze data o kernelu" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "Selhalo nastartování sledování z kurzoru '%s'" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1356,41 +1560,45 @@ msgstr "" + "\n" + "Extrahuje pád Xorg ze souboru FILE (nebo standardního vstupu)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Vypiš nalezená data o havárii na standardní výstup" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "Vytvoř adresář problému v DIR pro každý nalezený pád" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "Nelze uložit pozici journal watch" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "Nelze uložit pozici journal watch: open('%s')" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "Neobnovuje se pozice journal watch: soubor '%s' neexistuje" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "Nelze obnovit soubor pozice journal watch '%s'" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "Nelze obnovit pozici journal watch: cesta '%s' není běžný soubor" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" +@@ -1398,18 +1606,18 @@ msgstr "" + "Nelze obnovit pozici journal watch: soubor '%s' překračuje limit velikosti " + "%dB" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "Nelze obnovit pozici journal watch: open('%s')" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "Nelze obnovit pozici journal watch: nelze přečíst celý soubor '%s'" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "Selhalo přesunutí journalu do kurzoru ze souboru '%s'" +@@ -1779,9 +1987,9 @@ msgid "" + "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(warning)</a>" + msgstr "" +-"K povolení nezabezpečeného spojení použijte pole Nezabezpečený" ++"Zapiště \"nezabezpečený\" k povolení nezabezpečeného připojení <a href=" ++"\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(varování)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1876,11 +2084,11 @@ msgstr "Selhalo povolení handshake pro SSL soket." + + #: ../src/plugins/https-utils.c:220 + msgid "Failed to enable SSL3." +-msgstr "" ++msgstr "Selhalo povolení SSL3." + + #: ../src/plugins/https-utils.c:222 + msgid "Failed to enable TLS." +-msgstr "" ++msgstr "Selhalo povolení TLS." + + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." +@@ -1943,7 +2151,7 @@ msgstr "Selhalo ukončení NSS." + msgid "Sleeping for %d seconds" + msgstr "Spánek po %d sekund" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1951,7 +2159,7 @@ msgstr "" + "Problém v kernelu se vyskytl kvůli rozbitému BIOSu. Takového problémy nejsou " + "bohužel vývojáři kernelu opravitelné." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1959,7 +2167,7 @@ msgstr "" + "Vyskytl se problém v kernelu, ale váš hardware není podporovaný, proto " + "vývojáři kernelu nejsou schopní tento problém opravit." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1968,24 +2176,24 @@ msgstr "" + "Vyskytl se problém s jádrem, ale vaše jádro bylo modifikováno (parametry:%s)." + " Správci jádra nejsou schopni diagnostikovat modifikované reporty." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Závadné moduly: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Seznam ID chyb" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Urči url bodhi serveru" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Urči vydání" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1995,20 +2203,20 @@ msgstr "" + "\n" + "Hledej aktualizace na serveru bodhi" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Vyhledávání aktualizací" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Pro tento balíček nenalezeny žádné aktualizace" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Lokální verze balíčku je novější než verze dostupná v aktualizacích" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2035,65 +2243,66 @@ msgstr "Vypsat nalezené oopsy" + msgid "Delete files with found oopses" + msgstr "Smazat soubory s nalezenými oopsy" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' nalezl více než jeden adresář s problémy" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Použití: abrt-cli [--version] PŘÍKAZ [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Vypsat seznam problémů [v adresářích]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Odstraň adresář problému DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analyzuj a reportuj data problému v DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Tisk informací o DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Vypsat počet nedávných pádů" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Zpracovat více problémů" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Více informací získáte příkazem „abrt-cli PŘÍKAZ --help“" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& list [volby]" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Vypsat seznam pouze nenahlášených problémů" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Zbrazit detailní zprávu" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "Vypsat seznam problémů novějších než zadaná časová značka" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "Vypsat seznam problémů starších než zadaná časová značka" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2103,51 +2312,61 @@ msgstr "" + "Funkce automatického hlášení je zakázána. Prosím zvažte její povolení pomocí\n" + "spuštění 'abrt-auto-reporting enabled' s právy roota\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [volby] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Text delší než toto bude zestručněný" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Žádný adresář s problémy '%s'" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& stav" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Vypsat pouze počet problémů beze zpráv" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Vypsat pouze problémy novější než zadaná časová značka" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT detekoval %u problém(ů). Chcete-li více informací, spusťte: abrt-cli " + "list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" +-msgstr "Odstranit PROBLEM_DIR po nahlášení" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "Mazání '%s'" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "& report [options] DIR..." ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "Odstranit PROBLEM_DIR po nahlášení" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Akce: remove(rm), info(i), skip(s):" +@@ -2156,25 +2375,180 @@ msgstr "Akce: remove(rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Akce: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Hlášení '%s'" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Na další problémy přejdete tisknutím ENTER:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "Bez argumentu --since provedete operaci nad všemi detekovanými problémy." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Vybere pouze problémy detekované po časové značce" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/da.po b/po/da.po +index 5056f43..4d62355 100644 +--- a/po/da.po ++++ b/po/da.po +@@ -9,7 +9,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -19,7 +19,7 @@ msgstr "" + "language/da/)\n" + "Language: da\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -29,102 +29,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan ikke tage ejerskab over \"%s\"" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Rapportér" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -135,6 +135,17 @@ msgstr "" + "Panelprogram som giver brugeren besked, når nye problemet er fundet af " + "ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -156,7 +167,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -189,30 +202,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -238,14 +263,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -257,11 +282,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Problemmappe" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfigurationsfil" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -275,24 +300,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [tilvalg]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Skriv til syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Føj programnavne til log" + +@@ -300,60 +326,50 @@ msgstr "Føj programnavne til log" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -361,12 +377,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -387,18 +403,22 @@ msgstr "Dæmonisér ikke" + msgid "Log to syslog even with -d" + msgstr "Skriv til syslog, selv med -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -428,73 +448,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -506,68 +527,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -591,18 +612,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -643,7 +672,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Fortolkning af backtrace mislykkedes for %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -735,12 +764,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -849,14 +910,43 @@ msgstr "Manglende debuginfo-fil: {0}" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1071,7 +1161,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Samme som -d DumpLocation, DumpLocation er angivet i abrt.conf" + +@@ -1081,16 +1172,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1099,8 +1192,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1120,6 +1217,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1143,11 +1241,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1161,16 +1261,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1178,18 +1281,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1208,14 +1314,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1224,70 +1333,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1807,63 +1966,63 @@ msgstr "Kunne ikke nedlukke NSS." + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Liste over fejl-id'er" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Angiv en url til bodhi-server" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Angiv en udgivelse" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Søger efter opdateringer" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Ingen opdateringer fundet for denne pakke" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Lokal version af pakken er nyere end tilgængelige opdateringer" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1885,65 +2044,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Se \"abrt-cli COMMAND --help\" for mere information" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Vis detaljeret rapport" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1951,49 +2111,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2002,24 +2172,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/de.po b/po/de.po +index 527eb21..73a2018 100644 +--- a/po/de.po ++++ b/po/de.po +@@ -20,17 +20,17 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-03-20 08:24-0400\n" ++"PO-Revision-Date: 2015-08-19 02:33-0400\n" + "Last-Translator: Roman Spirgi \n" + "Language-Team: German (http://www.transifex.com/projects/p/fedora-abrt/" + "language/de/)\n" + "Language: de\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -40,34 +40,34 @@ msgstr "Problemberichterstattung" + msgid "View and report application crashes" + msgstr "Anwendungsabstürze anzeigen und berichten" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Eigentumsrechte von »%s« können nicht geändert werden." + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Verzeichnis kann nicht mit Schreibrechten geöffnet werden - »%s«" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Benachrichtigung kann nicht geschlossen werden: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Hoppla!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Melden" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Neustart" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " +@@ -76,7 +76,7 @@ msgstr "" + "Entschuldigung, %s scheint abgestürzt zu sein. Dieses Problem wurde " + "automatisch gemeldet." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -85,8 +85,8 @@ msgstr "" + "Entschuldigung, %s scheint abgestürzt zu sein. Dieses Problem wird gemeldet, " + "sobald die Internetverbindung verfügbar ist." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " +@@ -95,7 +95,7 @@ msgstr "" + "Entschuldigung, %s scheint abgestürzt zu sein. Bitte kontaktieren Sie den " + "Entwickler, wenn Sie diesen Fehler melden wollen." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " +@@ -104,7 +104,7 @@ msgstr "" + "Entschuldigung, %s scheint abgestürzt zu sein. Bitte melden Sie dies, wenn " + "Sie mithelfen möchten, dieses Problem zu beheben." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +@@ -112,7 +112,7 @@ msgstr "" + "Entschuldigung, in einer Komponente scheint ein Fehler aufgetreten zu sein. " + "Dieses Problem wurde automatisch gemeldet." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +@@ -120,7 +120,7 @@ msgstr "" + "Entschuldigung, in einer Komponente scheint ein Fehler aufgetreten zu sein. " + "Dieses Problem wird gemeldet, sobald die Internetverbindung verfügbar ist." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +@@ -128,28 +128,28 @@ msgstr "" + "Entschuldigung, es scheint ein Fehler aufgetreten zu sein. Bitte melden Sie " + "dies, wenn Sie mithelfen möchten, das Problem zu beheben." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Benachrichtigung kann nicht angezeigt werden: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Von gio channel kann nicht gelesen werden: »%s«" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Verschlüsselung kann auf gio channel nicht gesetzt werden: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Nichtblockier-Modus kann für gio channel nicht gesetzt werden: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -160,6 +160,17 @@ msgstr "" + "Applet zur Benachrichtigung des Benutzers, wenn neue Abstürze durch ABRT " + "entdeckt werden\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -177,19 +188,15 @@ msgstr "Verkürzte Berichterstattung" + msgid "Silent shortened reporting" + msgstr "Verkürzte Berichterstattung (silent)" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"Die Coredump-Datei ist notwendig zur Generierung eines Stack Trace – eine " +-"Operation, die viel Zeit und Speicherplatz in Anspruch nimmt. ABRT bietet " +-"einen Service, der den Stack Trace aus dem Coredump erstellt, allerdings " +-"müssen Sie den Coredump für diesen Service hochladen. Ist diese Option " +-"deaktiviert, lädt ABRT den Coredump ohne Nachfrage hoch." + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -242,10 +249,6 @@ msgstr "" + "aktiviert ist." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Vor dem Hochladen des Coredumps nachfragen" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -254,16 +257,16 @@ msgstr "" + "eingeschränktem Zugriff, falls die Daten allenfalls persönliche Daten " + "enthalten." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Privates Ticket für sensible Informationen anfordern" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Unvollständige Probleme melden" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -273,6 +276,22 @@ msgstr "" + "gegebenenfalls unvollständige Fehler erkannt werden. Um nur nützliche " + "Fehlerberichte einzureichen, lässt ABRT das Melden dieser Fehler nicht zu." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Schließen" +@@ -298,7 +317,7 @@ msgstr "Über" + msgid "Quit" + msgstr "Beenden" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +@@ -308,7 +327,7 @@ msgstr "" + "\n" + "Paket-Datenbank durchsuchen und Paket- und Komponentennamen sichern" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -320,11 +339,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Fehler-Verzeichnis" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfigurationsdatei" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "Dieses Verzeichnis als RPM-Root verwenden" + +@@ -340,24 +359,25 @@ msgstr "& [-v] -d DIR\n" + msgid "Root directory for running container commands" + msgstr "Root-Verzeichnis, um Container-Befehle auszuführen" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM als Client-UID benutzen" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "In Systemprotokoll speichern" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Anwendungsnamen protokollieren" + +@@ -365,62 +385,52 @@ msgstr "Anwendungsnamen protokollieren" + msgid "Unknown error" + msgstr "Unbekannter Fehler" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "»%s« ist kein gültiges Problem-Verzeichnis" ++msgid "'%s' is not a valid element name" ++msgstr "»%s« ist kein gültiger Name für das Element" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "Element »%s« kann nicht geändert werden" ++msgid "'%s' is not a valid problem directory" ++msgstr "»%s« ist kein gültiges Problem-Verzeichnis" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Nicht erlaubt" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Der Fehlerbericht kann nicht für die Bearbeitung geöffnet werden" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "Element »%s« kann nicht geändert werden" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Ordnerrechte konnten nicht angepasst werden. Für detaillierte Hinweise die " + "System-Logdateien überprüfen." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "Fehlerbericht kann nicht mit Lesezugriff geöffnet werden" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "»%s« ist kein gültiger Name für das Element" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Größe von '%s' kann nicht bestimmt werden" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Kein weiterer Speicherplatz für die Fehlerbeschreibung vorhanden" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Element »%s« kann nicht vo Fehlerverzeichnis »%s« entfernt werden" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -430,12 +440,12 @@ msgstr "" + "Der Name »%s« ist verloren gegangen. Bitte stellen Sie sicher, dass kein " + "anderer Dienst unter dem gleichen Namen läuft.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Nach NUM Sekunden Inaktivität beenden" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Die Anwendung muss mit Root-Rechten ausgeführt werden." + +@@ -462,18 +472,22 @@ msgstr "Nicht als Hintergrunddienst ausführen" + msgid "Log to syslog even with -d" + msgstr "Auch mit -d im Systemprotokoll speichern" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "EVENT auf DIR ausführen" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Direkt mit dem Benutzer kommunizieren" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -513,89 +527,90 @@ msgstr "Anzahl der gleichzeitig laufenden Dienste. Standard ist " + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximale Cache-Größe in MB. Standard ist " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Deaktiviert die Authentifizierung" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat Support Benutzername" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat Support Passwort; falls nicht angegeben, wird zur Eingabe eines " + "Passworts aufgefordert" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL-Zertifikatspfad oder -Zertifikatstyp" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "Sie müssen ebenfalls --username für --password angeben" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Sie können entweder --username oder --certificate verwenden" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Sie können entweder --username oder --anonymous verwenden" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Sie können entweder --anonymous oder --certificate verwenden" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Ungültige Parameteranzahl" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Unbekannter Optionswert: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Passwort:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "Fortfahren ohne Passwort nicht möglich\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "Per HTTP authentifizierte automatische Berichterstattung" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "Per SSL-Client authentifizierte automatische Berichterstattung" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "Anonyme automatische Berichterstattung" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -617,83 +632,83 @@ msgstr "" + " DATEINAME - Name der Archivdatei\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Kein Verzeichnis: »{0}«" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Überspringen: »{0}« (beginnt mit einem Schrägstrich)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Überspringen: »{0}« (beginnt mit einem Punkt)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Überspringen: »{0}« (enthält ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Überspringen: »{0}« (enthält Leerzeichen)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Überspringen: »{0}« (enthält Tabulatoren)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Verzeichnis kann nicht auf »{0}« geändert werden" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Unbekannter Dateityp: »{0}«" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Arbeitsverzeichnis kann nicht in »{0}« erstellt werden" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "»{0}« kann nicht nach »{1}« verlegt werden" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "»{0}« kann nicht nach »{1}« kopiert werden" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Fehler bei Prüfung von »{0}«" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "»{0}« wird entpackt" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Verzeichnis »{0}« kann nicht erstellt werden" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "»{0}« kann nicht entpackt werden" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "»{0}« erfolgreich verarbeitet" + +@@ -717,21 +732,30 @@ msgstr "Chown nicht möglich: »%s«: %s" + msgid "Deleting problem directory failed: %s" + msgstr "Problematisches Verzeichnis konnte nicht gelöscht werden: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Fehler-Daten können von abrt-dbus nicht abgerufen werden: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Fehler-Liste kann von abrt-dbus nicht abgerufen werden: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Fehler-Daten können von abrt-dbus nicht abgerufen werden: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" ++"Über abrt-dbus kann nicht überprüft werden, ob das Element existiert: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -777,7 +801,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Verarbeitung der Ablaufverfolgung für %s ist fehlgeschlagen" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Absturz Thread nicht gefunden" + +@@ -888,7 +912,7 @@ msgstr "Oops-Meldung kann nicht ausgelesen werden: »{0}«" + msgid "Oops text extracted successfully" + msgstr "Oops-Text erfolgreich ausgelesen" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -896,6 +920,38 @@ msgstr "" + "Das Kernel-Protokoll weist darauf hin, dass Hardware-Fehler entdeckt wurden.\n" + "Höchstwahrscheinlich handelt es sich dabei nicht um ein Software-Problem.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -982,6 +1038,28 @@ msgid "" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" + msgstr "" ++"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" ++"to CACHEDIR, using TMPDIR as temporary staging area.\n" ++"Old files in CACHEDIR are deleted until it is smaller than SIZE.\n" ++"\n" ++"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" ++"\n" ++" -v Be verbose\n" ++" -y Noninteractive, assume 'Yes' to all questions\n" ++" --ids Default: build_ids\n" ++" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX\n" ++" --cache Default: /var/cache/abrt-di\n" ++" --size_mb Default: 4096\n" ++" --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" ++" -e,--exact Download only specified files\n" ++" --repo Pattern to use when searching for repos.\n" ++" Default: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:175 + msgid "Can't open {0}: {1}" +@@ -1015,7 +1093,36 @@ msgstr "Fehlende Debuginfo-Datei: {0}" + msgid "All debuginfo files are available" + msgstr "Alle Debuginfo-Dateien sind vorhanden" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -1026,7 +1133,7 @@ msgstr "" + "wird eine lokale Stapelüberwachung erstellt - und damit unter Umständen ein " + "große Datenmenge heruntergeladen." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1270,7 +1377,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Entspricht -d DumpLocation, DumpLocation ist in abrt.conf spezifiziert" +@@ -1281,16 +1389,18 @@ msgstr "Speichern Sie die extrahierten Informationen in PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Fehler-Verzeichnis allgemein lesbar machen" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Erstellung eines Fehlerverzeichnisses auf 1 pro Sekunde beschränken" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Suchbegriff(e) in Stdout schreiben und beenden" + +@@ -1300,9 +1410,13 @@ msgstr "Suchbegriff(e) in Stdout schreiben und beenden" + msgid "Failed to compile regex" + msgstr "Kompilieren von regex fehlgeschlagen" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "Fehler kann nicht aktualisiert werden: mehrere Oops gefunden" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1321,6 +1435,7 @@ msgstr "Fehlerdaten konnten nicht in ABRT-Datenbank gespeichert werden" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "Systemd-Journal watch konnte nicht initialisiert werden" + +@@ -1344,11 +1459,13 @@ msgstr "Für jeden Coredump ein neues Fehlerverzeichnis erstellen" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "Systemd-Journal ab Cursor-Position lesen" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "Systemd-Journal ab Ende lesen" + +@@ -1362,17 +1479,20 @@ msgstr "Gleich wie -t INT, INT ist definiert in plugins/CCpp.conf" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + "Systemd-Journal ab der letzten gesehenen Position folgen (sofern verfügbar)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "Entweder -c CURSOR oder -e muss angegeben werden" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "Systemd-Journal kann nicht geöffnet werden" + +@@ -1381,18 +1501,21 @@ msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + "Systemd-Journal kann nicht nur auf systemd-coredump-Daten gefiltert werden" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "Das Ende des Journals konnte nicht erreicht werden" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "Cursor '%s' des Systemd-Journals kann nicht festgelegt werden" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "Journal-Daten können nicht gelesen werden" + +@@ -1411,28 +1534,77 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "Journal-Dateien aller Geräte auslesen" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Alle Journal-Daten aus PFAD-Verzeichnis auslesen" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "Systemd-Journal kann im Verzeichnis »%s« nicht initialisiert werden" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "Systemd-Journal kann nicht nur auf Kernel-Dateien gefiltert werden" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "Beginn der Ansicht ab Cursor '%s' fehlgeschlagen" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1442,46 +1614,50 @@ msgstr "" + "\n" + "Xorg-Absturz aus FILE extrahieren (oder Standard-Eingabe)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Gefundene Daten zum Absturz auf Standard-Eingabe ausgeben" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "Neues Fehlerverzeichnis in DIR erstellen für jeden gefundenen Absturz" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "Ansichtsposition des Journals kann nicht gespeichert werden" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "Position des Journals kann nicht gespeichert werden: offen('%s')" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + "Journal-Ansichtsposition kann nicht wiederhergestellt werden: Datei »%s« ist " + "nicht vorhanden" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + "Journal-Ansichtsposition kann nicht aus Datei »%s« wiederhergestellt werden" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + "Journal-Ansichtsposition kann nicht wiederhergestellt werden: Pfad »%s« ist " + "keine reguläre Datei" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" +@@ -1489,14 +1665,14 @@ msgstr "" + "Journal-Ansichtsposition kann nicht wiederhergestellt werden: Datei »%s« " + "überschreitet %dB Größenbeschränkung" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + "Ansichtsposition des Journals kann nicht wiederhergestellt werden: " + "offen('%s')" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" +@@ -1504,7 +1680,7 @@ msgstr "" + "kann nicht vollständig gelesen werden" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "Journal konnte nicht aus Datei »%s« zu einem Cursor verschoben werden" +@@ -2044,7 +2220,7 @@ msgstr "NSS konnte nicht heruntergefahren werden." + msgid "Sleeping for %d seconds" + msgstr "%d Sekunden warten" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2052,7 +2228,7 @@ msgstr "" + "Ein Kernel-Problem ist aufgetreten aufgrund eines beschädigten BIOS. Leider " + "können derartige Probleme nicht von Kernel-Maintainern behoben werden." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2060,7 +2236,7 @@ msgstr "" + "Ein Kernel-Problem ist aufgetreten, aber Ihre Hardware wird nicht " + "unterstützt, weshalb Kernel-Maintainer dieses Problem nicht beheben können." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2069,24 +2245,24 @@ msgstr "" + "Es ist ein Kernel-Problem aufgetreten, aber Ihr Kernel ist defekt (flags:%s)." + " Kernel-Maintainer können keine Berichte beschädigter Kernel analysieren." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Betroffene Module: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Liste der Bug-ID-Nummern" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Geben Sie eine Bodhi-Server-URL an" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Geben Sie eine Version an" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2096,20 +2272,20 @@ msgstr "" + "\n" + "Nach Aktualisierungen auf dem Bodhi-Server suchen" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Nach Aktualisierungen suchen" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Keine Aktualisierungen zu diesem Paket gefunden" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Die lokale Version ist aktueller als die verfügbaren Aktualisierungen" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2138,69 +2314,70 @@ msgstr "Gefundene Oopses ausgeben" + msgid "Delete files with found oopses" + msgstr "Löschen Dateien mit gefundenen Oopses" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "»%s« findet mehr als ein Fehlerverzeichnis" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Aufruf: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Fehler anzeigen [in DIRs]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Fehler-Verzeichnis DIR entfernen" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Fehlerdaten in DIR analysieren und berichten" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Informationen zu DIR auflisten" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Anzahl der jüngsten Abstürze ausgeben" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Mehrere Fehler verarbeiten" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Siehe 'abrt-cli COMMAND --help' für weitere Informationen" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& Liste [Optionen]" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Nur noch nicht berichtete Probleme anzeigen" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Detaillierten Bericht anzeigen" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Nur die Probleme anzeigen, welcher vor dem festgelegten Zeitpunkt auftraten" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Nur die Probleme anzeigen, welcher nach dem festgelegten Zeitpunkt auftraten" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2211,57 +2388,67 @@ msgstr "" + "Betracht, sie\n" + "zu aktivieren, indem Sie 'abrt-auto-reporting enabled' als Root ausführen\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [Optionen] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Längere Texte werden gekürzt angezeigt" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Kein solches Fehlerverzeichnis »%s« vorhanden" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& Status" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Nur die Fehleranzahl ohne Mitteilung ausgeben" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Das aktuellste Auftreten des Fehlers anstatt des angegebenen Zeitstempel " + "ausgeben" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT hat %u Fehler festgestellt. (Für weitere Informationen: abrt-cli " + "list%s)\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "»%s« wird gelöscht" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& berichten [Optionen] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "PROBLEM_DIR nach Berichterstattung löschen" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "»%s« wird gelöscht" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Aktionen: entfernen(rm), info(i), überspringen(s):" +@@ -2272,27 +2459,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Aktionen: entfernen(rm), berichten(e), info(i), überspringen(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "»%s« wird gemeldet" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Drücken Sie die EINGABETASTE für den nächsten Fehler" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Ohne --since Parameter werden alle erkannten Fehler durchgegangen." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Nur Fehler auswählen, die nach diesem Zeitpunkt auftraten" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/el.po b/po/el.po +index dc3f503..4430929 100644 +--- a/po/el.po ++++ b/po/el.po +@@ -11,7 +11,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -21,7 +21,7 @@ msgstr "" + "language/el/)\n" + "Language: el\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -31,108 +31,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Αναφορά" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -154,7 +165,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -187,30 +200,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -236,14 +261,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -255,11 +280,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Αρχείο παραμετροποίησης" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -273,24 +298,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Καταγραφή στο syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Προσθήκη του ονόματος του προγράμματος στο αρχείο καταγραφής" + +@@ -298,60 +324,50 @@ msgstr "Προσθήκη του ονόματος του προγράμματος + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -359,12 +375,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -385,18 +401,22 @@ msgstr "Μην το κάνεις Daemon" + msgid "Log to syslog even with -d" + msgstr "Καταγραφή στο syslog χρησιμοποιώντας την παράμετρο -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -426,73 +446,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -504,68 +525,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -589,18 +610,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -641,7 +670,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -730,12 +759,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -844,14 +905,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1066,7 +1156,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1076,16 +1167,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1094,8 +1187,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1115,6 +1212,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1138,11 +1236,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1156,16 +1256,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1173,18 +1276,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1203,14 +1309,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1219,70 +1328,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1794,63 +1953,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1872,65 +2031,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1938,49 +2098,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1989,24 +2159,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/en_GB.po b/po/en_GB.po +index adab5f7..abac5db 100644 +--- a/po/en_GB.po ++++ b/po/en_GB.po +@@ -12,7 +12,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -22,7 +22,7 @@ msgstr "" + "fedora-abrt/language/en_GB/)\n" + "Language: en-GB\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -32,102 +32,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Can't take ownership of '%s'" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Can't open directory for writing '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Can't close notification: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Report" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Can't show notification: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Can't read from gio channel: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Can't set encoding on gio channel: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Can't turn on nonblocking mode for gio channel: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -137,6 +137,17 @@ msgstr "" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -158,7 +169,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -191,30 +204,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -240,14 +265,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -259,11 +284,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Problem directory" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Configuration file" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -277,24 +302,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Use NUM as client uid" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Log to syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Add program names to log" + +@@ -302,60 +328,50 @@ msgstr "Add program names to log" + msgid "Unknown error" + msgstr "Unknown error" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' is not a valid element name" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' is not a valid problem directory" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Not Authorised" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Can't access the problem for modification" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' is not a valid element name" ++msgid "'%s' element can't be modified" ++msgstr "'%s' element can't be modified" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Can't get size of '%s'" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "No problem space left" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Can't delete the element '%s' from the problem directory '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -365,12 +381,12 @@ msgstr "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Exit after NUM seconds of inactivity" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "This program must be run as root." + +@@ -391,18 +407,22 @@ msgstr "Do not daemonise" + msgid "Log to syslog even with -d" + msgstr "Log to syslog even with -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Run EVENT on DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Communicate directly to the user" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -432,73 +452,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -510,68 +531,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -595,18 +616,26 @@ msgstr "Can't chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Deleting problem directory failed: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Can't get problem list from abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Can't get problem data from abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -651,7 +680,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Backtrace parsing failed for %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -746,12 +775,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -864,7 +925,36 @@ msgstr "Missing debuginfo file: {0}" + msgid "All debuginfo files are available" + msgstr "All debuginfo files are available" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -874,7 +964,7 @@ msgstr "" + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1097,7 +1187,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + +@@ -1107,16 +1198,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Make the problem directory world readable" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Print search string(s) to stdout and exit" + +@@ -1125,8 +1218,12 @@ msgstr "Print search string(s) to stdout and exit" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1146,6 +1243,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1169,11 +1267,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1187,16 +1287,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1204,18 +1307,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1234,14 +1340,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1250,12 +1359,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1265,58 +1420,62 @@ msgstr "" + "\n" + "Extract Xorg crash from FILE (or standard input)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Print found crash data on standard output" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1839,19 +1998,19 @@ msgstr "Failed to shutdown NSS." + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1860,24 +2019,24 @@ msgstr "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " Tainted modules: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "List of bug ids" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Specify a bodhi server url" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Specify a release" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1887,20 +2046,20 @@ msgstr "" + "\n" + "Search for updates on bodhi server" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Searching for updates" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "No updates for this package found" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Local version of the package is newer than available updates" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1924,65 +2083,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Remove problem directory DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analyse and report problem data in DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Print information about DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "See 'abrt-cli COMMAND --help' for more information" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Show detailed report" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1990,49 +2150,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2041,24 +2211,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/es.po b/po/es.po +index 44f8932..d91744e 100644 +--- a/po/es.po ++++ b/po/es.po +@@ -31,54 +31,54 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-04-06 12:18-0400\n" +-"Last-Translator: Alex Puchades \n" ++"PO-Revision-Date: 2015-09-30 06:57-0400\n" ++"Last-Translator: Gladys Guerrero Lozano \n" + "Language-Team: Spanish (http://www.transifex.com/projects/p/fedora-abrt/" + "language/es/)\n" + "Language: es\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "Informe de errores" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "Ver e informar sobre errores de aplicación" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" +-msgstr "No se puede tomar la propiedad de «%s»" ++msgstr "No se puede tomar propiedad de «%s»" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" +-msgstr "No puedo abrir carpeta para escribir '%s'" ++msgstr "No se puede abrir la carpeta '%s' para escritura" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "No se puede cerrar la notificación: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Ups!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Informar" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Reiniciar" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " +@@ -87,7 +87,7 @@ msgstr "" + "Lo sentimos, parece que %s ha dejado de funcionar. Se ha informado " + "automáticamente de este problema." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -96,72 +96,72 @@ msgstr "" + "Lo sentimos, parece que %s ha dejado de funcionar. Se informará de este " + "problema cuando el acceso a Internet esté disponible." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" +-"Lo sentimos, parece que %s ha dejado de funcionar. Por favor, póngase en " +-"contacto con el desarrollados si quiere informar de este problema." ++"Lo sentimos, parece que %s ha dejado de funcionar. Póngase en contacto con " ++"el desarrollador si quiere informar de este problema." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + "Lo sentimos, parece que %s ha dejado de funcionar. Si le gustaría ayudarnos " +-"a solucionar este problema, envíe un informe." ++"a solucionar este problema, envíenos un informe." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" +-"Lo sentimos, parece que ha habido un problema en alguno de los componentes. " +-"Se ha informado automáticamente de este problema." ++"Lo sentimos, parece que ha ocurrido un problema con alguno de los " ++"componentes. Se ha informado automáticamente de este problema." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" +-"Lo sentimos, parece que ha habido un problema en alguno de los componentes. " +-"Se informará automáticamente de este problema cuando el acceso a Internet " +-"esté disponible." ++"Lo sentimos, parece que ha ocurrido un problema con alguno de los " ++"componentes. Se informará automáticamente de este problema cuando el acceso " ++"a Internet esté disponible." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" +-"Lo sentimos, parece que ha habido algún problema. Si quiere ayudarnos a " ++"Lo sentimos, parece que ha ocurrido algún problema. Si quiere ayudarnos a " + "solucionar el problema, envíenos un informe." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "No se puede mostrar la notificación: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "No se puede leer desde el canal gio: «%s»" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "No se puede fijar la codificación sobre el canal gio: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "No se puede establecer el modo de no bloqueo para el canal gio: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -169,12 +169,23 @@ msgid "" + msgstr "" + "& [-v] [DIR]...\n" + "\n" +-"Applet que notifica al usuario cuando ABRT detecta nuevos problemas\n" +-"\n" ++"Miniaplicación que notifica al usuario cuando ABRT detecta nuevos " ++"problemas\n" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "Preguntar antes de robar carpeta" ++msgstr "Preguntar antes de robar directorio" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +@@ -193,13 +204,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"El archivo de volcado de memoria se necesita para generar un trazado de la " +-"pila, una operación que consume bastante tiempo y espacio. ABRT ofrece un " +-"servicio que genera el trazado de la pila pero usted tiene que subir el " +-"volcado a este servicio. Con esta opción deshabilitada, ABRT subirá el " +-"archivo de volcado sin preguntar." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -246,10 +254,6 @@ msgstr "" + "informados. Tiene efecto sólo si los informes abreviados están habilitados." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Preguntar antes de subir el archivo de volcado" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -257,15 +261,15 @@ msgstr "" + "Con esta opción habilitada ABRT siempre crea una entrada del error con " + "acceso restringido si se detecta datos posiblemente sensibles." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Pedir registro privado por información sensible" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Notificar problemas incompletos" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -275,6 +279,22 @@ msgstr "" + "apagando o el usuario está saliendo. Con el objetivo de suministrar informes " + "útiles, ABRT no le permitirá presentar estos problemas." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Cerrar" +@@ -300,7 +320,7 @@ msgstr "Acerca de" + msgid "Quit" + msgstr "Salir" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +@@ -311,7 +331,7 @@ msgstr "" + "Interrogar a la base de datos de paquetes y guardar el nombre de paquete y " + "componente" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -323,11 +343,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Carpeta de problemas" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Archivo de configuración" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "Utilizar esta carpeta como raíz RPM" + +@@ -343,24 +363,25 @@ msgstr "& [-v] -d DIR\n" + msgid "Root directory for running container commands" + msgstr "Carpeta raíz para los comandos de contenedor mientras se ejecutan" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Utilice NUM como uid del cliente" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Registrar en syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Añadir nombre de programa al registro" + +@@ -368,77 +389,67 @@ msgstr "Añadir nombre de programa al registro" + msgid "Unknown error" + msgstr "Error desconocido" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' no es una carpeta de problemas válida" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' no es un nombre de elemento válido" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' elemento no puede ser modificado" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' no es una carpeta de problemas válida" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "No autorizado" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "No se puede acceder al problema para modificación" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' elemento no puede ser modificado" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Error cambiando el propietario de la carpeta. Revise los registros del " + "sistema para más detalles." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "No se puede acceder al problema para lectura" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' no es un nombre de elemento válido" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "No se puede obtener el tamaño de «%s»" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "No queda espacio para problemas" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "No se puede borrar el elemento '%s' de la carpeta de problemas '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" + msgstr "" +-"El nombre '%s' ser perdió, verifique que otro servicio con el mismo nombre " +-"no se esté ejecutando.\n" ++"El nombre '%s' se perdió, verifique que no se esté ejecutando ningún otro " ++"servicio con el mismo nombre.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Sale después de NUM segundos de inactividad" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa debe ser ejecutado como root." + +@@ -451,11 +462,11 @@ msgid "" + "sort out this problem, please contact them directly." + msgstr "" + "Los datos del problema están incompletos. Esto suele suceder cuando se " +-"detecta un problema en el momento en que el computador se está apagando o el " +-"usuario está saliendo. Con el fin de proporcionar informes valiosos del " +-"problema, ABRT no le permitirá a usted enviar este problema. Si usted tiene " +-"tiempo y desea ayudar a los desarrolladores en su esfuerzo por solucionarlo, " +-"por favor contáctelos directamente." ++"detecta un problema en el momento en que el ordenador se está apagando o el " ++"usuario está saliendo. Con el fin de proporcionar informes útiles del " ++"problema, ABRT no le permitirá enviar este informe. Si tiene tiempo y desea " ++"ayudar a los desarrolladores en su esfuerzo por solucionarlo, contáctelos " ++"directamente." + + #: ../src/daemon/abrtd.c:457 + msgid "Do not daemonize" +@@ -465,18 +476,22 @@ msgstr "No convertir en un demonio" + msgid "Log to syslog even with -d" + msgstr "Registrar en syslog aún con -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Ejecutar EVENTO en DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Comunicar directamente al usuario" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -515,86 +530,87 @@ msgstr "Número de trabajadores concurrentes. El valor por defecto es" + msgid "Maximal cache size in MiB. Default is " + msgstr "Tamaño máximo de la caché en MB. Por defecto es" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Desactiva la autenticación" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Nombre de usuario de Red Hat Support" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Contraseña de Red Hat Support, si no la ingresa, se le indicará" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Rutas de certificado uReport SSL o tipo de certificado" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "También necesita especificar --username para --password" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Puede usar --username o --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Puede usar --username o --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Puede usar --anonymous o --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Número de argumentos no válido" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valor de opción desconocido: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Contraseña:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "No puede continuar sin contraseña\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "Autoreporte autenticado HTTP" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "Autoreporte de cliente autenticadoSSL " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "Autoreporte anónimo " + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -614,68 +630,68 @@ msgstr "" + " UPLOAD_DIR - Carpeta donde los archivos subidos son almacenados\n" + " FILENAME - Nombre del archivo a subir.\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "No es una carpeta: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Omitiendo: '{0}' (inicia con barra inclinada)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Omitiendo: '{0}' (inicia con punto)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Omitiendo: '{0}' (contiene ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Omitiendo: '{0}' (contiene espacio)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Omitiendo: '{0}' (contiene tabulacion)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "No se puede cambiar la carpeta a '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Tipo de archivo desconocido: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "No se puede crear una carpeta de trabajo en '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "No se puede mover '{0}' a '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "No se puede copiar '{0}' a '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Error de verificacion en '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Desempaquetando '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "No se puede crear la carpeta '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "No se puede desempaquetar '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' procesado exitosamente" + +@@ -699,21 +715,30 @@ msgstr "No puedo hacer chown'%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Falló el borrado de la carpeta de problema: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "No se pudo obtener datos del problema usando abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "No se pudo obtener la lista de problemas desde abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "No se pudo obtener datos del problema usando abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" ++"No se puede comprobar si el elemento existe por medio de abrt-dbus: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -758,7 +783,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Ha fallado el análisis del trazado de %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "No se encontró el hilo que se colgó" + +@@ -866,7 +891,7 @@ msgstr "No puedo extraer el mensaje ups: '{0}'" + msgid "Oops text extracted successfully" + msgstr "EL texto ups se ha extraído correctamente" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -874,6 +899,38 @@ msgstr "" + "El registro del kernel indica que se han detectado errores en el hardware.\n" + "Esto muy probablemente no es un problema de software.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -960,6 +1017,29 @@ msgid "" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" + msgstr "" ++"Uso: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Instala debuginfos para todos los build-ids listados en BUILD_IDS_FILE\n" ++"a CACHEDIR, usando TMPDIR como área temporal de pruebas.\n" ++"Los archivos antiguos en CACHEDIR son eliminados hasta que su tamaño sea " ++"menor que SIZE.\n" ++"\n" ++"Lee la configuración de /etc/abrt/plugins/CCpp.conf\n" ++"\n" ++" -v Explicito\n" ++" -y No interactivo, asume 'Si' a todas las preguntas\n" ++" --ids Prederterminado: build_ids\n" ++" --tmpdir Prederterminado: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX\n" ++" --cache Prederterminado: /var/cache/abrt-di\n" ++" --size_mb Prederterminado: 4096\n" ++" --pkgmgr Prederterminado: PackageManager from CCpp.conf or 'dnf'\n" ++" -e,--exact Descarga los archivos especificados unicamente\n" ++" --repo Patrón a usar cuando se buscan repos.\n" ++" Prederterminado: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:175 + msgid "Can't open {0}: {1}" +@@ -979,6 +1059,8 @@ msgstr "{0} de archivos debuginfo no están instalados" + #, c-format + msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" + msgstr "" ++"Configuración inválida del complemento CCpp, gestor de paquetes no soportado:" ++" '%s'" + + #: ../src/plugins/abrt-action-install-debuginfo.in:249 + msgid "Missing requested file: {0}" +@@ -992,23 +1074,53 @@ msgstr "No se encuentra el archivo de información de depuración: {0}" + msgid "All debuginfo files are available" + msgstr "Todos los archivos debuginfo están disponibles" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" +-"¿De acuerdo con volcado del core? (Puede contener datos sensible), Si su " +-"respuesta es 'No', se generará localmente una traza localmente. (Puede " +-"descargar una enorme cantidad de datos)." ++"¿Está de acuerdo con el volcado de memoria? (Puede contener datos sensibles)." ++" Si su respuesta es 'No', se generará una traza localmente. (Puede que sea " ++"necesario descargar una enorme cantidad de datos)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." + msgstr "" +-"¿Desea generar una traza de la pila localmente? (Puede descargar una gran " +-"cantidad de datos pero el reporte no puede continuar sin una traza de pila)." ++"¿Desea generar una traza de la pila localmente? (Puede que sea necesario " ++"descargar una gran cantidad de datos, pero el reporte no puede continuar sin " ++"un trazado de pila)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" +@@ -1236,7 +1348,8 @@ msgstr "Creado una nueva carpeta de problemas en DIR por cada ups encontrado" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Igual que -d DumpLocation, lugar de volcado se especifica en abrt.conf" +@@ -1247,16 +1360,18 @@ msgstr "Guardar la información extraída en PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Hacer la carpeta de problemas legible por todos" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Acelerar la creación de la carpeta de problemas a 1 por segundo" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Imprime la(s) cadena(s) de búsqueda a stdout y sale" + +@@ -1265,27 +1380,34 @@ msgstr "Imprime la(s) cadena(s) de búsqueda a stdout y sale" + msgid "Failed to compile regex" + msgstr "Fallo al compilar regex" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "No se pudo actualizar el problema: se encontraron mas de un oops" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 + msgid "Failed to obtain all required information from journald" +-msgstr "" ++msgstr "No se pudo obtener toda la información necesaria de journald" + + #. We don't want to update the counter here. + #: ../src/plugins/abrt-dump-journal-core.c:401 + #, c-format + msgid "Not saving repeating crash after %ds (limit is %ds)" +-msgstr "" ++msgstr "No se guarda el fallo recurrente después de %ds (el límite es %ds)" + + #: ../src/plugins/abrt-dump-journal-core.c:407 + msgid "Failed to save detect problem data in abrt database" + msgstr "" ++"No se pudo guardar los datos de detección de problemas en la base de datos " ++"de abrt" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "Fallo al inicializar systemd-journal watch" + +@@ -1302,6 +1424,17 @@ msgid "" + "\n" + "The last seen position is saved in " + msgstr "" ++"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" ++"\n" ++"Extrae los volcados de memoria de systemd-journal\n" ++"\n" ++"Las opciones -c y -e entran en conflicto debido a que ambas especifican el " ++"primer mensaje leído.\n" ++"\n" ++"-e es útil unicamente para -f porque el siguiente journal inicia leyendo\n" ++"el journal completo si la última posición vista no está disponible.\n" ++"\n" ++"La última posición fue guardada en " + + #: ../src/plugins/abrt-dump-journal-core.c:478 + msgid "Create new problem directory in DIR for every coredump" +@@ -1309,11 +1442,13 @@ msgstr "Crear nueva carpeta de problemas en DIR por cada volcado de memoria" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "Inicia leyendo systemd-journal desde la posición CURSOR" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "Inicia leyendo systemd-journal desde el final" + +@@ -1324,40 +1459,48 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:483 + msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" +-msgstr "" ++msgstr "Lo mismo que -t INT, INT está especificado en plugins/CCpp.conf" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + "Sigue systemd-jounal desde la última posición vista(si está disponible)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "Necesitas especificar -c CURSOR o -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "No se puede abrir systemd-journal" + + #: ../src/plugins/abrt-dump-journal-core.c:544 + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" ++"No pueden filtrarse unicamente los datos de systemd-journal a systemd-" ++"coredump" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "No se puede buscar hacia el final del diario" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "Fallo al establecer el cursor '%s' en systemd-journal" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "No se puede leer los datos del diario." + +@@ -1387,29 +1530,78 @@ msgstr "" + "La última posición vista está guardada en" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" +-msgstr "" ++msgstr "Leer archivos de journal de todos los sistemas" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Leer todos los archivos de journal de la carpeta PATH" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "No se puede inicializar systemd-journal en la carpeta '%s'" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + "No se puede filtrar systemd-journal para los datos del kernel únicamente" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "Fallo al iniciar watch desde el cursor '%s'" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1419,45 +1611,49 @@ msgstr "" + "\n" + "Extrae el cuelgue de Xorg desde el ARCHIVO (o la entrada estándar)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Prime los datos del cuelgue encontrados en la salida estándar" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "Crear una carpeta de problemaa en DIR por cada crash encontrado" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "No se puede guardar la posición observada del diario" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "No se puede guardar la posición observada del diario: abierto('%s')" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + "No se restaura la posición observada del diario: el archivo '%s' no existe" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + "No se puede restaurar la posición observada del diario desde el archivo '%s'" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + "No se puede restaurar la posición observada del diario: la dirección '%s' no " + "es un archivo normal" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" +@@ -1465,12 +1661,12 @@ msgstr "" + "No se puede restaurar la posición observada del diario: el archivo '%s' " + "excede el límite de tamaño %dB" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "No se puede restaurar la posición observada del diario: abierto('%s')" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" +@@ -1478,7 +1674,7 @@ msgstr "" + "archivo completo '%s'" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "Fallo al mover el diario a un cursor desde el archivo '%s'" +@@ -1805,10 +2001,10 @@ msgid "" + "and take up disk space. However, unlike RetraceServer, doesn't send coredump " + "to remote machines." + msgstr "" +-"Necesita descargar paquetes de información de depuración, lo que podría " ++"Se necesita descargar paquetes de información de depuración, lo que podría " + "tardar un tiempo considerable y ocupar espacio en disco. Sin embargo, a " + "diferencia de RetraceServer, no se envía el volcado de memoria a ningún " +-"equipo remotos." ++"equipo remoto." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1970,7 +2166,7 @@ msgstr "No se pudo conectar a '%s'." + + #: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." +-msgstr "Error al establecer enlace de certificado." ++msgstr "Error al establecer hook de certificado." + + #: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." +@@ -2020,15 +2216,16 @@ msgstr "Error al apagar NSS." + msgid "Sleeping for %d seconds" + msgstr "Durmiendo por %d segundos" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" +-"Ha ocurrido un problema de kernel debido a un BIOS dañado. Infortunadamente, " +-"los mantenedores de kernel no pueden corregir dichos problemas." ++"Ha ocurrido un problema de kernel debido a una BIOS defectuosa. " ++"Desafortunadamente, los mantenedores de kernel no pueden corregir dichos " ++"problemas." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2036,7 +2233,7 @@ msgstr "" + "Ha ocurrido un problema de kernel, pero su hardware no tiene soporte, por lo " + "tanto los mantenedores de kernel no pueden corregir este problema." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2046,24 +2243,24 @@ msgstr "" + "%s). Los mantenedores del núcleo no pueden diagnosticar informes de núcleos " + "dañados." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Módulos manchados: %s" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Lista de ids de errores" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Especifique la url del servidor bodhi" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Especifique el lanzamiento" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2073,22 +2270,22 @@ msgstr "" + "\n" + "Buscar actualizaciones en el servidor bodhi" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Buscando actualizaciones" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "No se encontraron actualizaciones para este paquete" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "La versión local del paquete es mas nueva que la disponible en las " + "actualizaciones" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2116,124 +2313,135 @@ msgstr "Imprimir los oopses encontrados" + msgid "Delete files with found oopses" + msgstr "Borrar los archivos con oopses encontrados" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' identificado más de una carpeta de problema" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Uso: abrt-cli [--version] COMANDO [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Listar problemas [en DIRs]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Retirar carpeta de problemas DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analizar y reportar datos de problemas en DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Imprimir información sobre DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Imprima el conteo de las fallas recientes" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Procesando múltiples problemas" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Para obtener mayor información, ver 'abrt-cli COMMAND --help' " + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& list [opciones]" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Listar únicamente problemas no reportados" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Muestre el reporte detallado" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Listar sólo los problemas más recientes que la marca de tiempo especificada" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Listar sólo los problemas más viejos que la marca de tiempo especificada" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " + "issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" +-"The Autoreporting feature is disabled. Please consider enabling it by " +-"issuing\n" +-"'abrt-auto-reporting enabled' as a user with root privileges\n" ++"El reporte automático de errores está desactivado. Puede activarlo " ++"ejecutando\n" ++"'abrt-auto-reporting enabled' como usuario con privilegios de root\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Los textos de mayor longitud que éste se mostrarán abreviados" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "No se encontró la carpeta de problema '%s'" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& status" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Imprimir únicamente el conteo del problema sin ningún mensaje" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Imprimir únicamente los problemas más recientes que la marca de tiempo " + "especificada" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT a detectado %u problema(s). Para más información ejecute: abrt-cli list " + "%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "& report [opciones] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" +-msgstr "Elimina PROBLEM_DIR después de reportarlo" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "Borrando '%s'" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "& report [opciones] DIR..." ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "Elimina PROBLEM_DIR después de reportarlo" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Acciones: eliminar(rm), información(i), omitir(s):" +@@ -2242,26 +2450,181 @@ msgstr "Acciones: eliminar(rm), información(i), omitir(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Acciones: eliminar(rm), reporte(e), información(i), omitir(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Reportando '%s'" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Para el siguiente problema presione la tecla ENTER:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "Without -- puesto que el argumento se repite sobre todos los problemas " + "detectados." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Selecciona únicamente los problemas después del tiempo especificado" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/et.po b/po/et.po +index 97e99c2..b45ae6c 100644 +--- a/po/et.po ++++ b/po/et.po +@@ -9,7 +9,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -19,7 +19,7 @@ msgstr "" + "language/et/)\n" + "Language: et\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -29,102 +29,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' omandamine nurjus" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Teavita" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -134,6 +134,17 @@ msgstr "" + "\n" + "Aplett, mis teavitab kasutajat, kui ABRT on tuvastanud uusi probleeme\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -155,7 +166,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -188,30 +201,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -237,14 +262,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -256,11 +281,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Probleemide kataloog" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Seadistuste fail" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -274,24 +299,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [valikud]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Logi syslog-i" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Lisa programminimed logisse" + +@@ -299,60 +325,50 @@ msgstr "Lisa programminimed logisse" + msgid "Unknown error" + msgstr "Tundmatu viga" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' ei ole korrektne probleemi kataloog" ++msgid "'%s' is not a valid element name" ++msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' ei ole korrektne probleemi kataloog" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Pole autenditud" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -360,12 +376,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Välju peale NUM sekundit tegevusetust" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Seda rakendust peab käivitama administraatori õigustes." + +@@ -386,18 +402,22 @@ msgstr "Deemoniks ei minda" + msgid "Log to syslog even with -d" + msgstr "Logi syslog-i isegi koos -d'ga" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Käivita SÜNDMUS KATALOOGIS" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -427,73 +447,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -505,68 +526,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -590,18 +611,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "Probleemi kataloogi kustutamine nurjus: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Probleemi andmete pärimine üle abrt-dbus'i nurjus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Probleemi nimekirja pärimine üle abrt-dbus'i nurjus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Probleemi andmete pärimine üle abrt-dbus'i nurjus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -647,7 +676,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s-i tagasijälituse parsimine nurjus" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -742,12 +771,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -861,14 +922,43 @@ msgstr "Puuduv silumisinfo fail: {0}" + msgid "All debuginfo files are available" + msgstr "Kõik silumisinfo failid on saadaval" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1089,7 +1179,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Sama kui -d DumpLocation, DumpLocation määratakse abrt.conf failis" + +@@ -1099,16 +1190,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Tee probleemide kataloog kõikidele loetavaks" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Trüki otsingustringid stdout-i ja välju" + +@@ -1117,8 +1210,12 @@ msgstr "Trüki otsingustringid stdout-i ja välju" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1138,6 +1235,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1161,11 +1259,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1179,16 +1279,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1196,18 +1299,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1226,14 +1332,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1242,70 +1351,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Trüki leitud krahhi andmed standardsesse väljundisse" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1828,19 +1987,19 @@ msgstr "NSS-i sulgemine nurjus." + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1849,44 +2008,44 @@ msgstr "" + "Tekkis tuuma probleem, aga sinu masina tuum on ebapuhas (lipud:%s).\n" + "Tuuma haldajad ei suuda diagnoosida ebapuhtaid raporteid." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Vigade id-e nimekiri" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Määra bodhi serveri url" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Määra väljalase" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Uuenduste otsimine" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Sellele pakile uuendusi ei leitud" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Selle paki kohalik versioon on uuem kui saadavaloleval värskendusel" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1908,65 +2067,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Kasutamine: abrt-cli [--versioon] KÄSK [KATALOOG]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Eemalda probleemide kataloog KATALOOG" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analüüsi ja teavita probleemide andmed KATALOOGis" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Kuva infot KATALOOGi kohta" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Vaata 'abrt-cli KÄSK --help' info saamiseks" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Kuva detailne raport" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1974,49 +2134,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [valikud] KATALOOG..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2025,24 +2195,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/eu.po b/po/eu.po +index 1e1ce98..36c79c9 100644 +--- a/po/eu.po ++++ b/po/eu.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/eu/)\n" + "Language: eu\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -28,108 +28,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -151,7 +162,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -184,30 +197,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -233,14 +258,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -252,11 +277,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfigurazio fitxategia" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -270,24 +295,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [aukerak]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -295,60 +321,50 @@ msgstr "" + msgid "Unknown error" + msgstr "Errore ezezaguna" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -356,12 +372,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Programa hau root bezala exekutatu behar da." + +@@ -382,18 +398,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -423,73 +443,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -501,68 +522,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -586,18 +607,26 @@ msgstr "Ezin da chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -638,7 +667,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -727,12 +756,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -841,14 +902,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1063,7 +1153,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1073,16 +1164,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1091,8 +1184,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1112,6 +1209,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1135,11 +1233,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1153,16 +1253,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1170,18 +1273,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1200,14 +1306,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1216,70 +1325,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1777,64 +1936,64 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Eguneraketen bila" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Ez da eguneraketarik aurkitu pakete honentzat" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "Paketearen bertsio lokala eskuragarri dauden eguneraketak baino berriagoa da" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1856,65 +2015,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Erabilera: abrt-cli [--version] KOMANDOA [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1922,49 +2082,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1973,24 +2143,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/fa.po b/po/fa.po +index 84377cd..820fec0 100644 +--- a/po/fa.po ++++ b/po/fa.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -20,7 +20,7 @@ msgstr "" + "language/fa/)\n" + "Language: fa\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -30,108 +30,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "گزارش" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -153,7 +164,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -186,30 +199,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -235,14 +260,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -254,11 +279,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -272,24 +297,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "در syslog سیاهه شد" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -297,60 +323,50 @@ msgstr "" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -358,12 +374,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -384,18 +400,22 @@ msgstr "دیمون سازی نکن" + msgid "Log to syslog even with -d" + msgstr "هم‌چنین در syslog با -d سیاهه شد" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -425,73 +445,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -503,68 +524,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -588,18 +609,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -640,7 +669,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "واکاوی دنباله برای %s شکست خورد" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -729,12 +758,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -843,14 +904,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1065,7 +1155,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1075,16 +1166,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1093,8 +1186,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1114,6 +1211,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1137,11 +1235,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1155,16 +1255,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1172,18 +1275,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1202,14 +1308,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1218,70 +1327,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1778,63 +1937,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1856,65 +2015,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1922,49 +2082,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1973,24 +2143,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/fi.po b/po/fi.po +index ff44364..b34f717 100644 +--- a/po/fi.po ++++ b/po/fi.po +@@ -8,126 +8,134 @@ + # Ville-Pekka Vainio , 2011 + # Ville-Pekka Vainio , 2011-2013 + # Ville Skyttä , 2011 ++# Juhani Numminen , 2016. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-10-06 07:45-0400\n" +-"Last-Translator: Jakub Filak \n" ++"PO-Revision-Date: 2016-01-12 01:09-0500\n" ++"Last-Translator: Juhani Numminen \n" + "Language-Team: Finnish (http://www.transifex.com/projects/p/fedora-abrt/" + "language/fi/)\n" + "Language: fi\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "Ongelmien raportointi" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "Katsele ja raportoi ohjelmien kaatumisia" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kohteen ”%s” omistajuutta ei voida ottaa" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" +-msgstr "" ++msgstr "Hakemistoa ”%s” ei voida avata kirjoittamista varten" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" +-msgstr "" ++msgstr "Ilmoitusta ei voida sulkea: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Ilmoita" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" +-msgstr "" ++msgstr "Käynnistä uudelleen" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" ++"Valitettavasti %s näyttää kaatuneen. Ongelma on raportoitu automaattisesti." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" ++"Valitettavasti %s näyttää kaatuneen. Ongelma raportoidaan, kun internet-" ++"yhteys on saatavilla." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" ++"Valitettavasti %s näyttää kaatuneen. Ota yhteyttä kehittäjään, jos haluat " ++"raportoida ongelman." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" ++"Valitettavasti %s näyttää kaatuneen. Jos haluat auttaa ongelman " ++"selvittämisessä, lähetä virheilmoitus." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" +-msgstr "" ++msgstr "Ei voida näyttää ilmoitusta: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -138,13 +146,24 @@ msgstr "" + "Ohjelma, joka huomauttaa käyttäjälle uusista ABRT:n havaitsemista " + "ongelmista\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "Kysy ennen hakemiston varastamista" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "Lähetä uReport automaattisesti" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +@@ -159,7 +178,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -192,42 +213,54 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" +-msgstr "" ++msgstr "_Sulje" + + #: ../src/configuration-gui/system-config-abrt.c:88 + msgid "_Defaults" +-msgstr "" ++msgstr "_Oletukset" + + #: ../src/configuration-gui/system-config-abrt.c:116 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" +-msgstr "" ++msgstr "Ongelmienraportointiasetukset" + + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +@@ -235,20 +268,23 @@ msgstr "" + + #: ../src/configuration-gui/main.c:105 + msgid "About" +-msgstr "" ++msgstr "Tietoja" + + #: ../src/configuration-gui/main.c:106 + msgid "Quit" +-msgstr "" ++msgstr "Lopeta" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" ++"& [-v] [-c ASETUSTIEDOSTO] [-r CHROOT] -d HAK\n" ++"\n" ++"Kysele pakettitietokantaa ja tallenna paketin ja komponentin nimi" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -260,42 +296,45 @@ msgstr "" + msgid "Problem directory" + msgstr "Ongelmahakemisto" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Asetustiedosto" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" +-msgstr "" ++msgstr "Käytä tätä hakemistoa RPM-juurihakemistona" + + #: ../src/daemon/abrt-action-save-container-data.c:199 + msgid "& [-v] -d DIR\n" + "\n" + "Save container metadata" +-msgstr "" ++msgstr "& [-v] -d HAK\n" ++"\n" ++"Tallenna säiliön metatiedot" + + #: ../src/daemon/abrt-action-save-container-data.c:211 + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [valitsimet]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Kirjoita lokia syslogiin" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Lisää ohjelmanimet lokiin" + +@@ -303,60 +342,50 @@ msgstr "Lisää ohjelmanimet lokiin" + msgid "Unknown error" + msgstr "Tuntematon virhe" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "”%s” ei ole kelvollinen ongelmakansio" ++msgid "'%s' is not a valid element name" ++msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "" ++msgid "'%s' is not a valid problem directory" ++msgstr "”%s” ei ole kelvollinen ongelmakansio" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "" ++msgstr "Ei käyttöoikeutta" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" ++msgid "'%s' element can't be modified" ++msgstr "elementtiä ”%s” ei voi muokata" ++ ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -364,12 +393,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Lopeta NUM sekunnin toimettomuuden jälkeen" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Tämä ohjelma täytyy suorittaa pääkäyttäjänä." + +@@ -390,18 +419,22 @@ msgstr "Älä aseta taustaprosessiksi" + msgid "Log to syslog even with -d" + msgstr "Kirjoita lokia syslogiin myös valitsimen -d kanssa" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Suorita TAPAHTUMA HAKemistoissa" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -431,73 +464,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -509,68 +543,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "Ei ole kansio: ”{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "Ohitetaan: ”{0}” (alkaa kauttaviivalla)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "Ohitetaan: ”{0}” (alkaa pisteellä)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "Ohitetaan: ”{0}” (sisältää ”..”)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "Ohitetaan: ”{0}” (sisältää välilyönnin)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "Ohitetaan: ”{0}” (sisältää sarkaimen)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -594,18 +628,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -646,7 +688,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Kohteen %s pinolistauksen jäsentäminen epäonnistui" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -735,12 +777,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -850,14 +924,43 @@ msgstr "Puuttuva debuginfo-tiedosto: {0}" + msgid "All debuginfo files are available" + msgstr "Kaikki debuginfo-tiedostot ovat saatavilla" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1072,7 +1175,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Sama kuin -d DumpLocation, DumpLocation on määritetty tiedostossa abrt.conf" +@@ -1083,16 +1187,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Tee ongelmahakemistosta kaikkien luettava" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1101,8 +1207,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1122,6 +1232,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1145,11 +1256,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1163,16 +1276,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1180,18 +1296,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1210,14 +1329,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1226,70 +1348,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1812,19 +1984,19 @@ msgstr "NSS:n sammuttaminen epäonnistui." + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1834,44 +2006,44 @@ msgstr "" + " %s). Ytimen ylläpitäjät eivät pysty tutkimaan tärvellyistä ytimistä tehtyjä " + "raportteja." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1893,65 +2065,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Käyttö: abrt-cli [--version] KOMENTO [HAK]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Poista ongelmallinen hakemisto HAK" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analysoi ja raportoi ongelmadata HAKemistossa" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Tulosta tietoja HAKemistosta" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Katso lisätietoja komennolla \"abrt-cli KOMENTO --help\"" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Näytä yksityiskohtainen raportti" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1959,49 +2132,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [valinnat] HAK..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2010,24 +2193,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/fr.po b/po/fr.po +index c106602..43a8e21 100644 +--- a/po/fr.po ++++ b/po/fr.po +@@ -17,128 +17,145 @@ + # Sam Friedmann , 2014 + # Vincent HERBER , 2011 + # Vincent , 2011 ++# Jibec , 2015. #zanata + # Julie Carbone , 2015. #zanata ++# Maxim Therrien , 2015. #zanata + # dominique , 2015. #zanata ++# Jérôme Bivia , 2016. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-01-25 10:42-0500\n" +-"Last-Translator: dominique \n" ++"PO-Revision-Date: 2016-01-16 11:19-0500\n" ++"Last-Translator: Jérôme Bivia \n" + "Language-Team: French (http://www.transifex.com/projects/p/fedora-abrt/" + "language/fr/)\n" + "Language: fr\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "Signalement de problèmes" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "Voir et signaler des incidents d'application" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Impossible de s'approprier « %s »" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Impossible d'ouvrir le répertoire pour écrire « %s »" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Impossible de fermer la notification : %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" +-msgstr "" ++msgstr "Oups!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" +-msgstr "Rapporter" ++msgstr "Signaler" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" +-msgstr "" ++msgstr "Redémarrer" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" ++"Nous sommes désolés, il semble qu'il y ait eu un incident avec %s. Le " ++"problème a été automatiquement signalé." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" ++"Nous sommes désolés, il semble qu'il y ait eu un incident avec %s. Le " ++"problème sera signalé lorsque le réseau sera disponible." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" ++"Nous sommes désolés, il semble qu'il y ait eu incident avec %s. Veuillez " ++"contacter le développeur si vous souhaitez signaler le problème." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" ++"Nous sommes désolés, il semble qu'il y ait eu un incident avec %s. Si vous " ++"souhaitez aider à résoudre le problème, transmettez un rapport." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" ++"Nous sommes désolés, il semble qu'il y ait eu un incident dans un composant. " ++"Le problème a été automatiquement signalé." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" ++"Nous sommes désolés, il semble qu'il y ait eu un incident dans un composant. " ++"Le problème sera signalé quand le réseau sera disponible." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" ++"Nous sommes désolés, il semble qu'il y ait eu un incident. Si vous souhaitez " ++"aider à résoudre le problème, transmettez un rapport." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Impossible d'afficher la notification : %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Impossible de lire à partir du canal gio : « %s »" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Impossible de déterminer l'encodage sur le canal gio : %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Impossible d'activer le mode non bloquant sur le canal gio : %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -146,9 +163,20 @@ msgid "" + msgstr "" + "& [-v] [DIR]...\n" + "\n" +-"Appliquette notifiant l'utilisateur lorsque de nouveaux incidents sont " ++"Appliquette informant l'utilisateur lorsque de nouveaux incidents sont " + "détectés par ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "Demander avant d'occuper furtivement un répertoire" +@@ -159,25 +187,21 @@ msgstr "Envoyer automatiquement le « uReport »" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "Rapporter en mode abrégé" ++msgstr "Signalement en mode abrégé" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "Rapporter silencieusement en mode abrégé" ++msgstr "Signalement silencieux en mode abrégé" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"Le fichier du vidage de la mémoire est nécessaire pour générer la trace de " +-"la pile — cette opération est consommatrice de temps et d'espace. ABRT " +-"dispose d'un service générant la trace de la pile à partir du vidage de la " +-"mémoire, mais vous devez téléverser ce vidage pour bénéficier du service. Si " +-"cette option est désactivée, ABRT téléversera le vidage de la mémoire sans " +-"demander la permission." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -190,7 +214,7 @@ msgstr "" + "que ABRT a besoin d'un répertoire dans lequel il puisse écrire, ce " + "répertoire est déplacé de l'emplacement système vers votre répertoire " + "personnel. Quand cette option est désactivée, ABRT déplace le répertoire des " +-"données de l'incident sans rien demander." ++"données de l'incident sans demander." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -202,7 +226,7 @@ msgstr "" + "Un « uReport » est une courte description de l'incident totalement anonyme. " + "ABRT utilise des « uReports » pour une détection rapide et globale des " + "doublons. Dans la configuration par défaut, le « uReport » est envoyé dès le " +-"début du processus de rapport. Quand cette option est activée, les " ++"début du processus de signalement. Quand cette option est activée, les " + "« uReports » sont adressés automatiquement immédiatement après la détection " + "de l'incident." + +@@ -215,7 +239,8 @@ msgstr "" + "Quand cette option est activée, le processus d'envoi de rapport initié en " + "cliquant sur le bouton Rapporter dans la bulle de notification d'incident " + "peut être interrompu après l'envoi du « uReport ». Vous pourrez toujours " +-"utiliser le navigateur d'incident par défaut pour faire un rapport complet." ++"utiliser le navigateur d'incident par défaut pour faire un signalement " ++"complet." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" +@@ -223,14 +248,10 @@ msgid "" + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "" + "Quand cette option est activée, ABRT n'affiche aucune notification des " +-"incidents rapportés. Elle ne prend effet que si le mode rapport abrégé est " +-"activé." ++"incidents signalés. Elle ne prend effet que si le mode Signalement abrégé " ++"est activé." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Demander avant de téléverser le vidage de la mémoire" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -238,15 +259,15 @@ msgstr "" + "Quand cette option est activée, ABRT crée toujours un ticket d'anomalie à " + "accès restreint si des données possiblement sensibles ont été détectées." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Demander un ticket privé pour informations sensibles" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Notifier des incidents incomplets" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -257,6 +278,22 @@ msgstr "" + "rapports d'incidents valables, ABRT ne vous autorise pas à soumettre ces " + "incidents." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Fermer" +@@ -282,14 +319,18 @@ msgstr "À propos" + msgid "Quit" + msgstr "Quitter" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" ++"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" ++"\n" ++"Interroge la base de données des paquets et sauvegarde les noms du paquet et " ++"du composant" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -301,42 +342,45 @@ msgstr "" + msgid "Problem directory" + msgstr "Répertoire des incidents" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Fichier de configuration" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" +-msgstr "" ++msgstr "Utiliser ce répertoire comme racine RPM" + + #: ../src/daemon/abrt-action-save-container-data.c:199 + msgid "& [-v] -d DIR\n" + "\n" + "Save container metadata" +-msgstr "" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"Sauvegarder les métadonnées du conteneur" + + #: ../src/daemon/abrt-action-save-container-data.c:211 + msgid "Root directory for running container commands" +-msgstr "" ++msgstr "Répertoire racine pour lancer les commandes du conteneur" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Utiliser NUM en tant qu'UID client" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Journaliser vers syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Ajouter le nom des programmes dans le journal" + +@@ -344,78 +388,68 @@ msgstr "Ajouter le nom des programmes dans le journal" + msgid "Unknown error" + msgstr "Erreur inconnue" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "« %s » n'est pas un répertoire d'incidents valide" ++msgid "'%s' is not a valid element name" ++msgstr "« %s » n'est pas un nom d'élément valide" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "L'élément « %s » ne peut pas être modifié" ++msgid "'%s' is not a valid problem directory" ++msgstr "« %s » n'est pas un répertoire d'incidents valide" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Interdit" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Impossible d'accéder à l'incident pour effectuer des modifications" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "L'élément « %s » ne peut être modifié" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" +-"Échec du chown sur le répertoire. Vérifier les journaux du système pour plus " ++"Échec du chown sur le répertoire. Vérifiez les journaux du système pour plus " + "de détails." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "« %s » n'est pas un nom d'élément valide" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Impossible d'obtenir la taille de « %s »" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Il ne reste plus d'espace pour les incidents" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + "Impossible de supprimer l'élément « %s » du répertoire des incidents « %s »" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" + msgstr "" +-"Le nom « %s » a été perdu, merci de vérifier qu'un autre service utilisant " ++"Le nom « %s » a été perdu, veuillez vérifier qu'un autre service utilisant " + "ce même nom ne tourne pas.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Quitter après NUM secondes d'inactivité" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Le programme doit être lancé en tant que root." + +@@ -442,18 +476,22 @@ msgstr "Ne pas lancer le démon" + msgid "Log to syslog even with -d" + msgstr "Journaliser vers syslog même avec -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Exécuter EVENT sur DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Communiquer directement à l'utilisateur" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -487,94 +525,95 @@ msgstr "Daemize" + + #: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " +-msgstr "Nombre de moteurs concurrents. La valeur par défaut est :" ++msgstr "Nombre de moteurs concurrents. La valeur par défaut est " + + #: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " +-msgstr "Taille maximale de cache en Mio. La valeur par défaut est" ++msgstr "Taille maximale de cache en MiO. La valeur par défaut est " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Désactive l'authentification" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Nom d'utilisateur du Support Red Hat" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Si le mot de passe du Support Red Hat n'est pas fourni, vous serez invité à " + "en créer un." + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Types ou chemins de certificat uReport SSL" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "Vous devez également indiquer --username pour --password" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" +-msgstr "Vous pouvez utiliser --username ou --certificate" ++msgstr "Vous pouvez utiliser soit --username ou --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" +-msgstr "Vous pouvez utiliser --username ou --anonymous" ++msgstr "Vous pouvez utiliser soit --username ou --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" +-msgstr "Vous pouvez utiliser --anonymous ou --certificate" ++msgstr "Vous pouvez utiliser soit --anonymous ou --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Nombre d'arguments non valide" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valeur de l'option inconnue : « %s »\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Mot de passe :" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "Impossible de continuer sans mot de passe\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" +-msgstr "Autoreporting authentifié avec HTTP" ++msgstr "Signalement automatique authentifié avec HTTP" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" +-msgstr "Autoreporting authentifié avec le Client SSL" ++msgstr "Signalement automatique authentifié avec le Client SSL" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" +-msgstr "Autoreporting anonyme" ++msgstr "Signalement automatique anonyme" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -595,79 +634,79 @@ msgstr "" + "stockées\n" + " FILENAME - Nom de fichier de l'archive téléversée\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" +-msgstr "« {0} » n'est pas un répertoire" ++msgstr "'{0}' n'est pas un répertoire" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "Ignorer : « {0} » (commence par une barre oblique)" ++msgstr "Ignoré : '{0}' (commence par une barre oblique)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "Ignorer : « {0} » (commence par un point)" ++msgstr "Ignoré : '{0}' (commence par un point)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "Ignorer : « {0} » (contient ...)" ++msgstr "Ignoré : '{0}' (contient ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" +-msgstr "Ignorer : « {0} » (contient un espace)" ++msgstr "Ignoré : '{0}' (contient un espace)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "Ignorer : « {0} » (contient un onglet)" ++msgstr "Ignoré : '{0}' (contient une tabulation)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" +-msgstr "Impossible de modifier le répertoire sur « {0} »" ++msgstr "Impossible de modifier le répertoire sur '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Type de fichier inconnu : « {0} »" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Impossible de créer un répertoire de travail dans « {0} »" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Impossible de déplacer « {0} » vers « {1} »" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Impossible de copier « {0} » sur « {1} »" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Erreur de vérification sur « {0} »" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Décompression de « {0} »" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Impossible de créer le répertoire « {0} »" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Impossible de décompresser « {0} »" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "Traitement de « {0} » réussi" + +@@ -691,21 +730,29 @@ msgstr "chown impossible sur « %s » : %s" + msgid "Deleting problem directory failed: %s" + msgstr "La suppression du répertoire d'incidents a échoué : %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Impossible d'obtenir les données de l'incident depuis abrt-dbus : %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Impossible d'obtenir la liste des incidents depuis abrt-dbus : %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Impossible d'obtenir les données de l'incident depuis abrt-dbus : %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "Impossible de tester si l'élément existe via abrt-dbus : %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -738,9 +785,8 @@ msgid "" + msgstr "" + "& [options] -d DIR\n" + "\n" +-"Analyse le backtrace C/C++, crée le hash de duplication, évalue la trace " +-"arrrière et identifie la fonction du plantage dans le répertoire DIR des " +-"incidents" ++"Analyse la trace C/C++, crée le hash de duplication, évalue la trace arrière\n" ++"et identifie la fonction du plantage dans le répertoire DIR des incidents" + + #. + #. * The parser failed. Compute the duphash from the executable +@@ -750,9 +796,9 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +-msgstr "Erreur lors de l'analyse du backtrace pour %s" ++msgstr "Erreur lors de l'analyse de la trace arrière pour %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Fil d'exécution planté introuvable" + +@@ -771,7 +817,7 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "Analyse en cours du vidage de la mémoire '%s'" ++msgstr "Analyse en cours du vidage de la mémoire « %s »" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-action-analyze-core.in:110 +@@ -787,7 +833,7 @@ msgstr "Utilisation : %s [-v] [-o FICHIER_SORTIE] -c FICHIER_CORE" + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "Le FICHIER_CORE n'est pas indiqué" ++msgstr "Le COREFILE n'est pas indiqué" + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" +@@ -797,7 +843,7 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcule et enregistre l'UUID et le DUPHASH pour le oops dans le répertoire " ++"Calcule et enregistre l'UUID et le DUPHASH pour le oups dans le répertoire " + "des incidents DIR" + + #: ../src/plugins/abrt-action-analyze-oops.c:79 +@@ -807,6 +853,11 @@ msgid "" + "your computer. ABRT will not allow you to create a report in a bug tracking " + "system but you can contact kernel maintainers via e-mail." + msgstr "" ++"La trace ne contient pas assez de cadres de fonction pertinentes pour être " ++"rapportée. Bien qu'agaçant, cela ne démontre pas nécessairement un problème " ++"avec votre ordinateur. ABRT ne vous permettera pas de créer un rapport dans " ++"le système de suivi des bogues, mais vous pouvez contacter les mainteneurs " ++"du noyau via courriel." + + #: ../src/plugins/abrt-action-analyze-xorg.c:73 + msgid "" +@@ -832,7 +883,7 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcule et enregistre l'UUID et le DUPHASH pour les vidages sur incident " ++"Calcule et enregistre l'UUID et le DUPHASH pour les vidages sur incident en " + "python" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 +@@ -845,7 +896,7 @@ msgstr "Le fichier {0} n'existe pas" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" +-msgstr "Extraction du texte du oops depuis le vidage mémoire" ++msgstr "Extraction du texte du oups depuis le vidage mémoire" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "Can't process {0}:\n" +@@ -855,13 +906,13 @@ msgstr "Impossible de traiter {0}:\n" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +-msgstr "Impossible d'extraire le message oops : « {0} »" ++msgstr "Impossible d'extraire le message oups : « {0} »" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" +-msgstr "Extraction réussie du texte du oops" ++msgstr "Extraction du texte du oups réussie" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -869,6 +920,38 @@ msgstr "" + "Le journal du noyau indique que des erreurs matérielles ont été détectées.\n" + "Ce problème n'est donc a priori pas logiciel.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -886,7 +969,7 @@ msgstr "Répertoires debuginfo supplémentaires" + + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" +-msgstr "Tuer gdb s'il est exécuté pendant plus de NUM secondes" ++msgstr "Tuer gdb s'il tourne pendant plus de NUM secondes" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +@@ -894,7 +977,7 @@ msgstr "Tuer gdb s'il est exécuté pendant plus de NUM secondes" + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +-msgstr "Le backtrace est généré et enregistré, %u octets" ++msgstr "La trace arrière a été générée et enregistrée, %u octets" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 + msgid "" +@@ -904,8 +987,8 @@ msgid "" + msgstr "" + "& [-v] [-r] -d DIR\n" + "\n" +-"Créer une trace du vidage mémoire à partir du vidage mémoire et du binaire " +-"correspondant" ++"Créer une trace arrière du vidage mémoire à partir du vidage mémoire et du " ++"binaire correspondant" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -930,7 +1013,7 @@ msgid "Exiting on user command" + msgstr "Arrêt à la demande de l'utilisateur" + + #: ../src/plugins/abrt-action-install-debuginfo.in:89 +-#, c-format ++#, fuzzy, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" + " [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " +@@ -955,6 +1038,30 @@ msgid "" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" + msgstr "" ++"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Installe les informations de déboguage pour tous les BUILD_IDS listés dans " ++"BUILD_IDS_FILE\n" ++"dans CACHEDIR, utilisant TMPDIR en tant que dossier temporaire.\n" ++"Les anciens fichiers dans CACHEDIR sont supprimés jusqu'à temps que le " ++"répertoire soit plus petit que SIZE.\n" ++"\n" ++"Lit la configuration /etc/abrt/plugins/CCpp.conf\n" ++"\n" ++" -v Être verbeux\n" ++" -y Non-interactif, assume « Oui » à toutes les questions\n" ++" --ids Défaut: build_ids\n" ++" --tmpdir Défaut: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX\n" ++" --cache Défaut: /var/cache/abrt-di\n" ++" --size_mb Défaut: 4096\n" ++" --pkgmgr Défaut: PackageManager de CCpp.conf ou 'dnf'\n" ++" -e,--exact Télécharge seulement les fichiers spécifiés\n" ++" --repo Motif à utiliser lors de la recherche de dépôts\n" ++" Défaut: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:175 + msgid "Can't open {0}: {1}" +@@ -974,10 +1081,12 @@ msgstr "{0} des fichiers debuginfo ne sont pas installés" + #, c-format + msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" + msgstr "" ++"La configuration de l'addition CCpp est invalide, gestionnaire de paquets " ++"invalide: « %s »" + + #: ../src/plugins/abrt-action-install-debuginfo.in:249 + msgid "Missing requested file: {0}" +-msgstr "Le fichier requis est manquant : {0}" ++msgstr "Fichier requis manquant : {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:254 + msgid "Missing debuginfo file: {0}" +@@ -987,7 +1096,36 @@ msgstr "Fichier debuginfo manquant : {0}" + msgid "All debuginfo files are available" + msgstr "Tous les fichiers debuginfo sont disponibles" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -997,7 +1135,7 @@ msgstr "" + "sensibles). Si votre réponse est « Non », une analyse locale sera effectuée " + "(ce qui pourrait télécharger une énorme quantité de données)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1041,7 +1179,7 @@ msgstr "Impossible de lancer « %s », le message d'erreur est : « %s »" + #: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "N'est pas un numéro dans le fichier « %s »" ++msgstr "Non-numéro dans le fichier « %s »" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-action-ureport:99 +@@ -1066,7 +1204,7 @@ msgstr "uReport a déjà été envoyé, il ne sera pas envoyé à nouveau" + + #: ../src/plugins/abrt-action-ureport:179 + msgid "Adding you to CC List of the existing bugzilla bug" +-msgstr "" ++msgstr "Ajout de votre nom à la liste de CC de l'anomalie sur Bugzilla" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-action-ureport:193 +@@ -1116,7 +1254,7 @@ msgstr "Signal causé par l'écriture dans un tube cassé" + + #: ../src/plugins/abrt-gdb-exploitable:607 + msgid "ABRT signal (abort() was called?)" +-msgstr "Signal ABRT (abort() a été appelé ?)" ++msgstr "Signal ABRT (abort() a été appelé?)" + + #: ../src/plugins/abrt-gdb-exploitable:616 + msgid "XCPU signal (over CPU time limit)" +@@ -1132,7 +1270,7 @@ msgstr "Signal TRAP (peut être une anomalie dans un débogueur/traceur)" + + #: ../src/plugins/abrt-gdb-exploitable:628 + msgid "SYS signal (unknown syscall was called?)" +-msgstr "Signal SYS (un appel système inconnu a été appelé ?)" ++msgstr "Signal SYS (un appel système inconnu a été appelé?)" + + #: ../src/plugins/abrt-gdb-exploitable:633 + msgid "Arithmetic exception" +@@ -1144,7 +1282,7 @@ msgstr "Division par zéro" + + #: ../src/plugins/abrt-gdb-exploitable:641 + msgid "Illegal instruction (jump to a random address?)" +-msgstr "Instruction illégale (passage à une adresse aléatoire ?)" ++msgstr "Instruction illégale (passage à une adresse aléatoire?)" + + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" +@@ -1160,7 +1298,7 @@ msgstr "Écriture à une adresse invalide" + + #: ../src/plugins/abrt-gdb-exploitable:660 + msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "La sous-routine retourne à une adresse invalide (pile corrompue ?)" ++msgstr "La sous-routine retourne à une adresse invalide (pile corrompue?)" + + #: ../src/plugins/abrt-gdb-exploitable:666 + #: ../src/plugins/abrt-gdb-exploitable:670 +@@ -1182,15 +1320,15 @@ msgstr "" + + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +-msgstr "Raison possible de l'arrêt brutal :" ++msgstr "Raison possible de l'arrêt brutal : " + + #: ../src/plugins/abrt-gdb-exploitable:707 + msgid "Exploitable rating (0-9 scale): " +-msgstr "Taux d'exploitabilité (échelle 0-9) :" ++msgstr "Taux d'exploitabilité (échelle 0-9) : " + + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " +-msgstr "Instruction actuelle :" ++msgstr "Instruction actuelle : " + + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" +@@ -1219,12 +1357,12 @@ msgid "" + msgstr "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +-"Extrait le oops de FILE (ou de l'entrée standard)" ++"Extrait le oups de FILE (ou de l'entrée standard)" + + #: ../src/plugins/abrt-dump-oops.c:98 + #: ../src/plugins/abrt-dump-journal-oops.c:220 + msgid "Print found oopses on standard output" +-msgstr "Afficher les oops noyau trouvés sur la sortie standard" ++msgstr "Afficher les oups noyau trouvés sur la sortie standard" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +@@ -1233,15 +1371,16 @@ msgstr "Afficher les oops noyau trouvés sur la sortie standard" + #: ../src/plugins/abrt-dump-journal-oops.c:224 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +-"Créer un nouveau répertoire d'incidents dans DIR pour chaque oops découvert" ++"Créer un nouveau répertoire d'incidents dans DIR pour chaque oups découvert" + + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" +-"Identique à l'option -d emplacement_de_vidage, l'emplacement du vidage est " ++"Identique à l'option -d EmplacementDeVidage, l'emplacement du vidage est " + "spécifié dans abrt.conf" + + #: ../src/plugins/abrt-dump-oops.c:104 +@@ -1250,16 +1389,18 @@ msgstr "Sauvegarder les informations extraites dans PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Rendre le répertoire des incidents lisible par tout le monde" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Limiter la création de répertoire d'incident à 1 par seconde" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Afficher les chaînes recherchées sur la sortie standard et quitter" + +@@ -1268,29 +1409,36 @@ msgstr "Afficher les chaînes recherchées sur la sortie standard et quitter" + msgid "Failed to compile regex" + msgstr "Échec de la compilation des expressions régulières" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "Impossible de mettre à jour l'incident : plus d'un oops trouvé" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 + msgid "Failed to obtain all required information from journald" + msgstr "" ++"Échec de l'obtention de toutes les informations nécessaires de journald" + + #. We don't want to update the counter here. + #: ../src/plugins/abrt-dump-journal-core.c:401 + #, c-format + msgid "Not saving repeating crash after %ds (limit is %ds)" +-msgstr "" ++msgstr "Ne sauvegardera pas un plantage répétitif après %ds (limite: %ds)" + + #: ../src/plugins/abrt-dump-journal-core.c:407 + msgid "Failed to save detect problem data in abrt database" + msgstr "" ++"Échec de la sauvegarde des données du problème détecté dans la base d'ABRT" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" +-msgstr "" ++msgstr "Échec de l'initialisation de la surveillance systemd-journal" + + #: ../src/plugins/abrt-dump-journal-core.c:447 + msgid "" +@@ -1305,60 +1453,84 @@ msgid "" + "\n" + "The last seen position is saved in " + msgstr "" ++"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" ++"\n" ++"Extrait un vidage de processus de systemd-journal\n" ++"\n" ++"Les options -c et -e entrent en conflit car les deux spécifient le premier " ++"message de lecture.\n" ++"\n" ++"-e n'est utile seulement pour -f car la suite du journal débute par la " ++"lecture\n" ++"du journal entier si la dernière position lue n'est pas disponible.\n" ++"\n" ++"La dernière position lue est sauvegardée dans " + + #: ../src/plugins/abrt-dump-journal-core.c:478 + msgid "Create new problem directory in DIR for every coredump" + msgstr "" ++"Créer un nouveau répertoire d'incidents dans DIR pour chaque vidage de la " ++"mémoire découvert" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" +-msgstr "" ++msgstr "Débuter la lecture du systemd-journal depuis la position du CURSEUR" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" +-msgstr "" ++msgstr "Débuter la lecture du systemd-journal depuis la fin" + + #: ../src/plugins/abrt-dump-journal-core.c:482 + msgid "Throttle problem directory creation to 1 per INT second" +-msgstr "" ++msgstr "Limiter la création de répertoire d'incident à 1 par INT seconde(s)" + + #: ../src/plugins/abrt-dump-journal-core.c:483 + msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" +-msgstr "" ++msgstr "Identique à -t INT, INT est spécifié dans plugins/CCpp.conf" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" ++"Suivre systemd-journal depuis la dernière position lue (si disponible)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" +-msgstr "" ++msgstr "Vous devez spécifier soit -c CURSEUR ou -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" +-msgstr "" ++msgstr "Impossible d'ouvrir systemd-journal" + + #: ../src/plugins/abrt-dump-journal-core.c:544 + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" +-msgstr "" ++msgstr "Impossible de déplacer le curseur vers la fin du journal" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" ++"Impossible de définir la position du curseur de systemd-journal « %s »" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "Impossible de lire les données du journal." + +@@ -1377,14 +1549,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" +-msgstr "" ++msgstr "Lire tous les fichiers de journaux de toutes les machines" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Lire tous les fichiers de journaux dans le répertoire PATH" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1393,12 +1568,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1408,59 +1629,63 @@ msgstr "" + "\n" + "Extraire les données de plantage de Xorg de FILE (ou de l'entrée standard)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Afficher les données de plantage sur la sortie standard" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Créer un répertoire d'incidents dans DIR pour chaque incident découvert" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -2006,7 +2231,7 @@ msgstr "Impossible de fermer NSS." + msgid "Sleeping for %d seconds" + msgstr "Mise en sommeil pour %d secondes" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2014,7 +2239,7 @@ msgstr "" + "Un problème de noyau s'est produit car le BIOS est cassé. Malheureusement, " + "de tels problèmes ne peuvent pas être corrigés par les mainteneurs du noyau." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2023,7 +2248,7 @@ msgstr "" + "charge, les mainteneurs du noyau ne sont donc pas en mesure de corriger ce " + "problème." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2033,24 +2258,24 @@ msgstr "" + "Les mainteneurs du noyau n'ont pas la possibilité de diagnostiquer les " + "rapports teintés." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Modules teintés : %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Liste des identifiants d'anomalies" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Spécifier l'URL d'un serveur bodhi" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Spécifier une révision" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2060,21 +2285,21 @@ msgstr "" + "\n" + "Rechercher des mises à jour sur le serveur bodhi" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Recherche de mises à jour" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Mises à jour introuvables pour ce paquet" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "La version de ce paquet est plus récente que les mises à jour disponibles" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2103,69 +2328,70 @@ msgstr "Afficher les oops trouvés" + msgid "Delete files with found oopses" + msgstr "Supprimer les fichiers avec des oops trouvés" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "« %s » identifie plus d'un répertoire d'incident" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Usage : abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Liste des incidents [dans DIR]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Supprimer le répertoire d'incidents DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analyser et rapporter les données des incidents dans DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Imprimer des informations sur DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Affiche le nombre de plantages récents" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Traiter de multiples problèmes" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + "Voir « abrt-cli COMMAND --help » pour obtenir davantage d'informations" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Répertorier les problèmes non rapportés uniquement" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Afficher le rapport détaillé" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Répertorier uniquement les problèmes plus récents que la date indiquée" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Répertorier uniquement les incidents plus anciens que la date indiquée" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2176,55 +2402,65 @@ msgstr "" + "Veuillez envisager de l'activer en effectuant\n" + "la commande « abrt-auto-reporting enabled » en tant qu'utilisateur root.\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Un texte plus grand que ce qui suit sera abrégé" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Répertoire d'incidents « %s » inconnu" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Affiche uniquement le nombre d'incident sans autre message" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Affiche les seuls incidents plus récents que l'horodatage indiqué" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT a détecté %u incident(s). Pour plus d'informations, lancer : abrt-cli " + "list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Suppression de « %s »" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Supprimer PROBLEM_DIR après le rapport" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "Suppression de « %s »" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Actions : supprimer (rm), informations (i), ignorer (s) :" +@@ -2236,27 +2472,182 @@ msgstr "" + "Actions : supprimer (rm), rapporter (e), informations (i), ignorer (s) :" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Rapporter « %s »" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Pour le problème suivant, veuillez appuyer sur ENTRÉE :" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Sans l'argument --since, réitère tous les problèmes détectés." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Sélectionne uniquement les problèmes détectés après l'horodatage" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/gl.po b/po/gl.po +index 16b716a..61bd784 100644 +--- a/po/gl.po ++++ b/po/gl.po +@@ -9,7 +9,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -19,7 +19,7 @@ msgstr "" + "language/gl/)\n" + "Language: gl\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -29,102 +29,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Non é posíbel asumir a propiedade sobre «%s»" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Non é posíbel abrir o directorio para escribir «%s»" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Non é posíbel fechar a notificación: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Informe" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Non é posíbel mostrar a notificación: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Non é posíbel ler da canle gio: «%s»" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Non é posíbel definir a codificación da canle gio: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Non é posíbel activar o modo sen bloqueo para a canle gio: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -134,6 +134,17 @@ msgstr "" + "\n" + "Applet que notifica o usuario cando o ABRT detecta problemas novos\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -155,7 +166,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -188,30 +201,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Notificar os problemas incompletos" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Pechar" +@@ -237,14 +262,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -256,11 +281,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Directorio de problemas" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Ficheiro de configuración" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -274,24 +299,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [opcións]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Empregar NUM como identificador de usuario do cliente" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Rexistrar en syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Engadir os nomes dos programas ao rexistro" + +@@ -299,63 +325,53 @@ msgstr "Engadir os nomes dos programas ao rexistro" + msgid "Unknown error" + msgstr "Produciuse un erro descoñecido" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "«%s» non é un directorio de problemas válido" ++msgid "'%s' is not a valid element name" ++msgstr "«%s» non é un nome válido para un elemento" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "Non é posíbel modificar o elemento «%s»" ++msgid "'%s' is not a valid problem directory" ++msgstr "«%s» non é un directorio de problemas válido" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Non autorizado " + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Non é posíbel acceder ao problema para modificar" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "Non é posíbel modificar o elemento «%s»" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Fallou a execución de chown no directorio. Comprobe os rexistros do sistema " + "para máis detalles." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "«%s» non é un nome válido para un elemento" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Non é posíbel obter o tamaño de «%s»" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Non fica espazo para os problemas" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + "Non é posíbel eliminar o elemento «%s» do directorio de problemas «%s»" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -365,12 +381,12 @@ msgstr "" + "Perdeuse o nome «%s»; comprobe se outro servizo que posúa o nome non está en " + "execución.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Saír despois de NUM segundos de inactividade" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa débese executar como administrador." + +@@ -397,18 +413,22 @@ msgstr "Non converter en daemon" + msgid "Log to syslog even with -d" + msgstr "Rexistrar en syslog mesmo con -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event DIR DE EVENTO..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Executar EVENTO en DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Comunicar directamente ao usuario" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -438,73 +458,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "O número de argumentos é incorrecto" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -516,68 +537,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -601,18 +622,26 @@ msgstr "Non é posíbel cambiar o propietario de «%s»: %s" + msgid "Deleting problem directory failed: %s" + msgstr "Fallou a eliminación do directorio de problemas: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Non é posíbel obter os datos do problema de abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Non é posíbel obter a lista do problema de abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Non é posíbel obter os datos do problema de abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -661,7 +690,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Fallou a análise do trazado inverso de %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -763,12 +792,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -881,14 +942,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1103,7 +1193,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1113,16 +1204,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1131,8 +1224,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1152,6 +1249,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1175,11 +1273,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1193,16 +1293,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1210,18 +1313,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1240,14 +1346,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1256,70 +1365,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1819,64 +1978,64 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Lista de identificadores dos fallos" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "A buscar actualizacións" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Non se atopou ningunha actualización para este paquete" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "A versión do paquete local é máis recente que as actualizacións dispoñíbeis" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1900,65 +2059,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Mostrar un informe detallado" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1966,49 +2126,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Imprimir só o número de problemas sen ningunha mensaxe" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Imprimir só os problemas anteriores á marca temporal indicada" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2017,24 +2187,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/gu.po b/po/gu.po +index 7f25c54..a95b17f 100644 +--- a/po/gu.po ++++ b/po/gu.po +@@ -13,7 +13,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -23,7 +23,7 @@ msgstr "" + "language/gu/)\n" + "Language: gu\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -33,102 +33,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ની માલિકી લઇ શકાતી નથી" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' ને લખવા માટે ડિરેક્ટરીને ખોલી શકાતી નથી" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "સૂચનાને બંધ કરી શકાતી નથી: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "અહેવાલ" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "સૂચનાને બતાવી શકાતુ નથી: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio ચેનલમાંથી વાંચી શકાતુ નથી: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ચેનલ પર એનકોડીંગ સુયોજિત કરી શકાતુ નથી: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ચેનલ માટે બ્લોક ન થાય તેવી સ્થિતિને ચાલુ કરી શકાતી નથી: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -139,6 +139,17 @@ msgstr "" + "એપલેટ કે જે વપરાશકર્તાને સૂચન કરે છે જ્યારે નવી સમસ્યાઓ ABRT દ્દારા શોધાયેલ " + "છે\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "ડિરેક્ટરીની ચોરી પહેલાં પૂછો" +@@ -160,12 +171,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"coredump ફાઇલ સ્ટેક ટ્રેસને પેદા કરવા માટે જરૂરી છે કે જે સમય અને જગ્યા " +-"વપરાશ ક્રિયા છે. ABRT સેવાને પૂરુ પાડે છે કે જે coredump માંથી સ્ટેક ટ્રેસને " +-"પેદા કરે છે, પરંતુ તમે આ સેવા માટે coredump ને અપલોડ કરવુ જ પડશે. નિષ્ક્રિય " +-"થયેલ ABRT આ વિકલ્પ સાથે તેમને પૂછ્યા વગર coredump ને અપલોડ કરશે." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -211,10 +220,6 @@ msgstr "" + "અસર થાય છે જો ટૂંકી થયેલ અહેવાલીકરણ સક્રિય થયેલ હોય." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Coredump અપલોડ કરતા પહેલા પૂછો " +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -222,15 +227,15 @@ msgstr "" + "સક્રિય થયેલ ABRT આ વિકલ્પ સાથે મર્યાદિત થયેલ પ્રવેશ સાથે હંમેશા ભૂલ ટિકીટ " + "બનાવે છે જો શક્ય સંવેદનશીલ માહિતી બનાવેલ હોય." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "સંવેદનશીલ માહિતી માટે ખાનગી ટિકિટની વિનંતી" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "અપૂર્ણ સમસ્યાઓ સૂચિત" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -240,6 +245,22 @@ msgstr "" + "વપરાશકર્તા બહાર નીકળી રહ્યા હોય. કિંમતી સમસ્યા અહેવાલને પૂરુ પાડવા માટે " + "ક્રમમાં, ABRT એ આ સમસ્યાઓને મોકલવા માટે તમને પરવાનગી આપશે નહિં." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "બંધ કરો (_C)" +@@ -265,14 +286,14 @@ msgstr "વિશે" + msgid "Quit" + msgstr "બહાર નીકળો" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -284,11 +305,11 @@ msgstr "" + msgid "Problem directory" + msgstr "સમસ્યા ડિરેક્ટરી" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "રૂપરેખાંકન ફાઇલ" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -302,24 +323,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "ક્લાયન્ટ uid તરીકે NUM ને વાપરો" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog માં લૉગ લો" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "લૉગ રાખવા માટે કાર્યક્રમ નામો ઉમેરો" + +@@ -327,60 +349,50 @@ msgstr "લૉગ રાખવા માટે કાર્યક્રમ ન + msgid "Unknown error" + msgstr "અજ્ઞાત ભૂલ" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' માન્ય સમસ્યા ડિરેક્ટરી નથી" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' એ યોગ્ય ઘટક નામ નથી" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' ઘટકને બદલી શકાતુ નથી" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' માન્ય સમસ્યા ડિરેક્ટરી નથી" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "અધિકૃત નથી" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "સૂચના માટે સમસ્યાને વાપરી શકાતુ નથી" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "ડિરેક્ટરીને માલિકી કરવામાં નિષ્ફળતા. વધારે વિગતો માટે સિસ્ટમ લૉગ જુઓ." +- +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' એ યોગ્ય ઘટક નામ નથી" ++msgid "'%s' element can't be modified" ++msgstr "'%s' ઘટકને બદલી શકાતુ નથી" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." ++msgstr "ડિરેક્ટરીને માલિકી કરવામાં નિષ્ફળતા. વધારે વિગતો માટે સિસ્ટમ લૉગ જુઓ." ++ ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' નું માપ મેળવી શકાતુ નથી" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "સમસ્યાની જગ્યા બાકી રહેલ નથી" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "સમસ્યા ડિરેક્ટરી '%s' માંથી ઘટક '%s' ને કાઢી શકાતુ નથી" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -390,12 +402,12 @@ msgstr "" + "નામ '%s' ગુમ થઇ ગયુ છે, મહેરબાની કરીને ચકાસો જો માલિકી ધરાવતા નામ વાળી બીજી " + "સેવા ચાલી રહી નથી.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "નિષ્ક્રિયતાની NUM સેકંડ પછી બહાર નીકળો" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "આ કાર્યક્રમ રુટ તરીકે જ ચલાવવો જોઇએ." + +@@ -422,18 +434,22 @@ msgstr "ડિમોનાઇઝ કરો નહિં" + msgid "Log to syslog even with -d" + msgstr "-d સાથે પણ syslog નો લૉગ લો" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR પર EVENT ચલાવો" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "સીધુ વપરાશકર્તા સાથે વાર્તાલાપ કરો" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -472,88 +488,89 @@ msgstr "સહવર્તી કામદારો સંખ્યા. મૂ + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB માં મહત્તમ કેશ માપ. મૂળભૂત છે" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "સત્તાધિકરણને બંધ કરો" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat Support વપરાશકર્તા નામ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat Support પાસવર્ડ, જો આપેલ ન હોય તો, તેની માટે પ્રોમ્પ્ટ કરવામાં આવશે" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL પ્રમાણપત્ર પાથ અથવા પ્રમાણપત્ર પ્રકાર" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "તમારે --password માટે --username ને પણ સ્પષ્ટ કરવુ જ જોઇએ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "તમારે ક્યાંતો --username અથવા --certificate ને વાપરી શકો છો" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "તમે ક્યાંતો --username અથવા --anonymous ને વાપરી શકો છો" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "તમે ક્યાંતો --anonymous અથવા --certificate વાપરી શકો છો" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "દલીલોની અયોગ્ય સંખ્યા" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "અજ્ઞાત વિકલ્પ કિંમત: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "પાસવર્ડ:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "પાસવર્ડ વગર ચાલુ કરી શકાતુ નથી\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP સત્તાધિકરણ થયેલ આપોઆપ અહેવાલીકરણ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL ક્લાયન્ટ સત્તાધિકરણ થયેલ આપોઆપ અહેવાલીકરણ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "અનામિક આપોઆપ અહેવાલીકરણ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -573,83 +590,83 @@ msgstr "" + " FILENAME - અપલોડ થયેલ પેટી ફાઇલ નામ\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "ડિરેક્ટરી નથી: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "છોડી રહ્યા છે: '{0}' (સ્લેશ સાથે શરૂ કરે છે)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "છોડી રહ્યા છે: '{0}' (બિંદુ સાથે શરૂ કરે છે)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "છોડી રહ્યા છે: '{0}' (સમાવે છે ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "છોડી રહ્યા છે: '{0}' (જગ્યાને સમાવે છે)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "છોડી રહ્યા છે: '{0}' (ટૅબને સમાવે છે)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "'{0}' માટે ડિરેક્ટરીને બદલી શકાતી નથી" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "અજ્ઞાત ફાઇલ પ્રકાર: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' માં કાર્ય કરવાની ડિરેક્ટરીને બનાવી શકાતી નથી" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' થી '{1}' ને ખસેડી શકાતુ નથી" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' થી '{1}' માં નકલ કરી શકાતી નથી" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' પર ચકાસણી ભૂલ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' ને ખોલી રહ્યા છે" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ડિરેક્ટરીને બનાવી શકાતી નથી" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' ને ખોલી શકાતુ નથી" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' પ્રક્રિયા સફળતાપૂર્વક થઇ" + +@@ -673,18 +690,26 @@ msgstr "'%s' નું chown કરી શકાતુ નથી: %s" + msgid "Deleting problem directory failed: %s" + msgstr "ડિરેક્ટરીની સમસ્યાને કાઢી નાંખવામાં નિષ્ફળતા: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus માંથી સમસ્યા માહિતીને મેળવી શકાતી નથી: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus માંથી સમસ્યા યાદીને મેળવી શકાતી નથી: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus માંથી સમસ્યા માહિતીને મેળવી શકાતી નથી: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -732,7 +757,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s બેકટ્રેસ પાર્સિંગ નિષ્ફળ" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "ભંગાણ થ્રેડ મળ્યુ નથી" + +@@ -838,7 +863,7 @@ msgstr "oops સંદેશાને કાઢી શકાતુ નથી: '{ + msgid "Oops text extracted successfully" + msgstr "Oops લખાણને સફળતાપૂર્વક કાઢી નાંખેલ છે" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -846,6 +871,38 @@ msgstr "" + "કર્નલ લૉગ સૂચવે છે કે હાર્ડવેર ભૂલો મળી આવી હતી.\n" + "આ મોટે ભાગે સોફ્ટવેર સમસ્યા નથી.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -963,7 +1020,36 @@ msgstr "ગેરહાજર debuginfo ફાઇલ: {0}" + msgid "All debuginfo files are available" + msgstr "બધી ડિબગ જાણકારી ફાઇલો ઉપલબ્ધ છે" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -973,7 +1059,7 @@ msgstr "" + "જો તમારો જવાબ 'ના' હોય તો, સ્ટેક ટ્રેસ સ્થાનિક રીતે ઉત્પન્ન કરાશે. (તે વિશાળ " + "પ્રમાણમાં માહિતીને ડાઉનલોડ કરી શકે છે)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1210,7 +1296,8 @@ msgstr "મળેલ દરેક oops માટે DIR માં નવી સ + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation નાં જેવી, DumpLocation એ abrt.conf માં સ્પષ્ટ થયેલ છે" + +@@ -1220,16 +1307,18 @@ msgstr "PROBLEM માં કાઢી નાંખેલ જાણકારી + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "સમસ્યા ડિરેક્ટરીને દુનિયામાં વાંચી શકાય એ રીતે બનાવો" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "દરેક 1 સેકંડે થ્રોટલ સમસ્યા ડિરેક્ટરી નિર્માણ" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout માટે શોધ શબ્દમાળા (ઓ) ને છાપો અને બહાર નીકળો" + +@@ -1239,9 +1328,13 @@ msgstr "stdout માટે શોધ શબ્દમાળા (ઓ) ને છ + msgid "Failed to compile regex" + msgstr "regex ને કમ્પાઇલ કરવામાં નિષ્ફળતા" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "સમસ્યાને સુધારી શકાતી નથી: એક કરતા વધારે oops મળ્યુ" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1260,6 +1353,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1283,11 +1377,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1301,16 +1397,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1318,18 +1417,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1348,14 +1450,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1364,12 +1469,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1379,58 +1530,62 @@ msgstr "" + "\n" + "FILE માંથી Xorg ભંગાણને કાઢો (અથવા મૂળભૂત ઇનપુટ)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "મૂળભૂત આઉટપુટ પર મળેલ ભંગાણ માહિતીને છાપો" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "મળેલ દરેક ભંગાણ માટે DIR માં સમસ્યા ડિરેક્ટરીને બનાવો" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1971,7 +2126,7 @@ msgstr "NSS ને બંધ કરવામાં નિષ્ફળતા." + msgid "Sleeping for %d seconds" + msgstr "%d સેકંડ માટે નિષ્ક્રિય" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1979,7 +2134,7 @@ msgstr "" + "બગડેલા BIOS ના કારણે કર્નલ સમસ્યા ઉદ્ભવી. કમનસીબે, આવી સમસ્યાઓ કર્નલના " + "માલિકોથી સુધારી શકાતી નથી." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1987,7 +2142,7 @@ msgstr "" + "કર્નલ સમસ્યા ઉદ્ભવી, પરંતુ તમારું હાર્ડવેર આધારભૂત નથી, તેથી કર્નલ માલિકો આ " + "સમસ્યા સુધારવામાં અસમર્થ છે." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1996,24 +2151,24 @@ msgstr "" + "કર્નલ સમસ્યા ઉદ્ભવી, પરંતુ તમારુ કર્નલને દૂષિત કરવામાં આવ્યુ છે (ફ્લેગ:%s). " + "કર્નલ સંચાલકો દૂષિત થયેલ અહેવાલોનું નિદાન કરવા માટે અસક્ષમ છે." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " લાઇસન્સ વગરનાં મોડ્યુલો: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "ભૂલ ids ની યાદી" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "bodhi સર્વર url સ્પષ્ટ કરો" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "પ્રકાશન સ્પષ્ટ કરો" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2023,20 +2178,20 @@ msgstr "" + "\n" + "bodhi સર્વર પર સુધારાઓ માટે શોધો" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "સુધારા માટે શોધી રહ્યા છે" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "આ પેકેજ માટે સુધારો મળ્યો નથી" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "પેકેજની સ્થાનિક આવૃત્તિ ઉપલબ્ધ સુધારા કરતા નવી છે" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2065,66 +2220,67 @@ msgstr "મળેલ oopses ને છાપો" + msgid "Delete files with found oopses" + msgstr "મળેલ oopses સાથે ફાઇલોને કાઢી નાંખો" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' એ એક કરતા વધારે સમસ્યા ડિરેક્ટરીને ઓળખે છે" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "વપરાશ: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "સમસ્યાઓની યાદી કરો [DIRs માં]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "સમસ્યા ડિરેક્ટરી DIR ને દૂર કરો" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR માં સમસ્યા માહિતીનું વિશ્ર્લેષણ અને અહેવાલ કરો" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR વિશે જાણકારીને છાપો" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "તાજેતરનાં ભંગાણોની ગણતરીને છાપો" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "ઘણી સમસ્યાઓની પ્રક્રિયા" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "વધારે જાણકારી માટે 'abrt-cli COMMAND --help' જુઓ" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "માત્ર નહિં-અહેવાલ અપાયેલ સમસ્યાઓની જ યાદી આપો" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "વિગત થયેલ અહેવાલને બતાવો" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "સ્પષ્ટ થયેલ ટાઇમસ્ટેમ્પ કરતા વધારે તાજેતરની સમસ્યાઓની યાદી કરો" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "સ્પષ્ટ થયેલ ટાઇમસ્ટેમ્પ કરતા જૂની સમસ્યાઓની ફક્ત યાદી કરો" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2135,54 +2291,64 @@ msgstr "" + "કરવાનું ધ્યાન રાખો\n" + "'abrt-auto-reporting enabled' ને રુટ હકોવાળા વપરાશકર્તા તરીકે ચલાવીને\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "આનાં કરતા વધારે લખાણને સંક્ષિપ્ત બતાવવામાં આવશે" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "આવી સમસ્યા ડિરેક્ટરી '%s' નથી" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "કોઇપણ સંદેશા વગર ફક્ત સમસ્યાની ગણતરીને છાપો" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "સ્પષ્ટ થયેલ ટાઇમસ્ટેમ્પ કરતા ફક્ત વધારે તાજેતની સમસ્યાઓને છાપો" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT એ %u સમસ્યા(ઓ) ને શોધી. વધારે જાણકારી માટે ચલાવો: abrt-cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' ને કાઢી રહ્યા છે" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "અહેવાલ થયા પછી PROBLEMDIR ને દૂર કરો (_D)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' ને કાઢી રહ્યા છે" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "ક્રિયાઓ: remove(rm), info(i), skip(s):" +@@ -2193,27 +2359,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "ક્રિયાઓ: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' નો અહેવાલ કરી રહ્યા છે" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "આગળની સમસ્યા માટે ENTER ને દબાવો:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "--since દલીલ વગર, બધી શોધાયેલ સમસ્યાઓ પર પુનરાવર્તિત થાય છે." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "ટાઇમસ્ટેમ્પ પછી ફક્ત શોધાયેલ સમસ્યાઓને પસંદ કરે છે" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/he.po b/po/he.po +index a020d49..d6b6a71 100644 +--- a/po/he.po ++++ b/po/he.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -20,7 +20,7 @@ msgstr "" + "language/he/)\n" + "Language: he\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -30,108 +30,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "דווח" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -153,7 +164,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -186,30 +199,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -235,14 +260,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -254,11 +279,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -272,24 +297,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "רשום ליומן המערכת" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -297,60 +323,50 @@ msgstr "" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -358,12 +374,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -384,18 +400,22 @@ msgstr "Do not daemonize" + msgid "Log to syslog even with -d" + msgstr "Log to syslog even with -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -425,73 +445,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -503,68 +524,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -588,18 +609,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -640,7 +669,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "ניתוח מידע הקריסה נכשל עבור %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -729,12 +758,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -843,14 +904,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1065,7 +1155,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1075,16 +1166,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1093,8 +1186,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1114,6 +1211,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1137,11 +1235,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1155,16 +1255,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1172,18 +1275,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1202,14 +1308,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1218,70 +1327,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1785,63 +1944,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1863,65 +2022,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1929,49 +2089,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1980,24 +2150,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/hi.po b/po/hi.po +index 7065a3f..0ec276c 100644 +--- a/po/hi.po ++++ b/po/hi.po +@@ -18,7 +18,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -28,7 +28,7 @@ msgstr "" + "language/hi/)\n" + "Language: hi\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -38,102 +38,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' का स्वामित्व नहीं ले सकता है" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "लिखने के लिए निर्देशिका नहीं खोल सकते हैं '% s' " + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "अधिसूचना बंद नहीं कर सकता है: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "रिपोर्ट" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "अधिसूचना नहीं दिखा सकता है: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio चैनल से पढ़ा नहीं जा सकता: '% s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "जिओ चैनल पर एन्कोडिंग सेट नहीं कर सकता है: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "जिओ चैनल के लिए गैर ब्लॉकिंग पर चालू नहीं कर सकता है: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -144,6 +144,17 @@ msgstr "" + "एप्प्लेट जो उपयोक्ता को अधिसूचित करता है जब नई समस्या ABRT द्वारा पायी जाती " + "है\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -164,18 +175,15 @@ msgstr "संक्षिप्त रिपोर्टिंग" + msgid "Silent shortened reporting" + msgstr "मौन संक्षिप्त रिपोर्टिंग" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"कोरडंप फाइल स्टैक ट्रैस जनित करने के लिए जरूरी है जो कि समय और स्थान की खपत " +-"करने वाला काम है. ABRT ऐसी सेवा प्रदान करता है कोरडंप से स्टैक ट्रैस जनित " +-"करता है लेकिन आपको इस सेवा में कोरडंप को अपलोड करना है. इस विकल्प के साथ " +-"निष्क्रिय ABRT बिना पूछे कोरडंप को अपलोड करेगा." + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -223,29 +231,24 @@ msgstr "" + " इस विकल्प के साथ सक्रिय ABRT रिपोर्ट किए गए समस्या को कभी नहीं दिखाता है. " + "यह तभी प्रभावी होता है जब संक्षिप्त रिपोर्टिंग सक्रिय किया जाता है." + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "कोरडंप अपलोड के पहले पूछें" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "संवेदनशील सूचना के लिए निजी टिकट का निवेदन करें" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "अपूर्ण समस्या अधिसूचित करें" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -255,6 +258,22 @@ msgstr "" + "आउट है. मूल्यवान समस्या रिपोर्ट देने के क्रम में, ABRT आपको इन समस्याओं के " + "सुपुर्द करने की छूट नहीं देगा." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" +@@ -281,14 +300,14 @@ msgstr "परिचय" + msgid "Quit" + msgstr "बाहर" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -300,11 +319,11 @@ msgstr "" + msgid "Problem directory" + msgstr "समस्या निर्देशिका" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "विन्यास फाइल" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -318,24 +337,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [विकल्प]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM को बतौर क्लायंट uid उपयोग करें" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "सिसलॉग में लॉग करेंसिस्टल" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "लाग करने के लिए अधिक प्रोग्राम नाम" + +@@ -343,61 +363,51 @@ msgstr "लाग करने के लिए अधिक प्रोग् + msgid "Unknown error" + msgstr "अज्ञात त्रुटि" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' एक वैध समस्या निर्देशिका नहीं है" ++msgid "'%s' is not a valid element name" ++msgstr "'% s' एक वैध तत्व का नाम नहीं है" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' तत्व रूपांतरित नहीं हो सकता है" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' एक वैध समस्या निर्देशिका नहीं है" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "प्राधिकृत नहीं" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "संशोधन के लिए समस्या का उपयोग नहीं कर सकते है" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' तत्व रूपांतरित नहीं हो सकता है" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Chowning डायरेक्टरी विफल. अधिक जानकारी के लिए सिस्टम लॉग की जाँच करें." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'% s' एक वैध तत्व का नाम नहीं है" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' का आकार पा नहीं सकता है" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "कोई समस्या स्थान नहीं छोड़ दिया है" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "तत्व '%s' को समस्या निर्देशिका '%s' से मिटा नहीं सकता है" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -407,12 +417,12 @@ msgstr "" + "नाम '%s' खो गया है, कृपया जाँचें कि क्या अन्य सेवाएँ जो नाम का स्वामित्व " + "रखती है नहीं चल रहा हो.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM सेकेंड की निष्क्रियता के बाद बाहर निकलें" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "इस प्रोग्राम को जरूर बतौर रूट चलाया जाना चाहिए." + +@@ -438,18 +448,22 @@ msgstr "डेमॉनाइज मत करें" + msgid "Log to syslog even with -d" + msgstr "-d के साथ सिसलॉग घटना में लॉग-d के साथ सिस्" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "EVENT को DIR पर चलाएँ" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "उपयोक्ता से सीधे संचार करें" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -487,89 +501,90 @@ msgstr "सहवर्ती वर्कर की संख्या. तय + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB में अधिकतम कैश आकार. तयशुदा है " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "सत्यापन बंद करें" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat समर्थन उपयोक्ता नाम" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat समर्थन कूटशब्द, यदि नहीं दिया हुआ है तो इसके लिए कोई प्रांप्ट निर्गत " + "किया जाएगा" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL प्रमाणपत्र पथ या प्रमाणपत्र प्रकार" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "आपको --username को --password के लिए निर्दिष्ट करने की जरूरत होगी" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "आप या तो --username या --certificate का प्रयोग कर सकते हैं" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "आप या तो --username या --anonymous का प्रयोग कर सकते हैं" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "आप या तो --anonymous या --certificate का प्रयोग कर सकते हैं" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "तर्क की अवैध संख्या" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "अज्ञात विकल्प मान '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "कूटशब्द:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "कूटशब्द के बिना जारी नहीं रख सकते हैं\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP सत्यापन स्वचालित रिपोर्टिंग" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL क्लायंट सत्यापन स्वचालित रिपोर्टिंग" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "अनाम स्वचालित रिपोर्टिंग" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -589,83 +604,83 @@ msgstr "" + " FILENAME - Uploaded archive file name\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "निर्देशिका नहीं है: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "छोड़ रहा है: '{0}' (starts with slash)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "छोड़ रहा है: '{0}' (starts with dot)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "छोड़ रहा है: '{0}' (contains ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "छोड़ रहा है: '{0}' (contains space)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "छोड़ रहा है: '{0}' (contains tab)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "'{0}' में निर्देशिका बदल नहीं सकता है" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "अज्ञात फाइल प्रकार: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' में कार्यशील निर्देशिका नहीं बना सकता है" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' को '{1}' में खिसका नहीं सकता है" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' को '{1}' में नहीं नक़ल ले सकता है" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' पर सत्यापन त्रुटि" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' को खोला जा रहा है" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' निर्देशिका नहीं बना सकता है" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' खोल नहीं सकता है" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' को सफलतापूर्वक प्रक्रिया किया गया" + +@@ -689,18 +704,26 @@ msgstr "chown '%s' नहीं कर सकता है: %s" + msgid "Deleting problem directory failed: %s" + msgstr "समस्या निर्देशिका को मिटाना विफल रहा: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus से समस्या आँकड़ा पा नहीं सकता है: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus से समस्या सूची पा नहीं सकता है: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus से समस्या आँकड़ा पा नहीं सकता है: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -747,7 +770,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s के लिए बैकट्रैस विश्लेषण विफल" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "क्रैश लड़ी नहीं मिला" + +@@ -854,7 +877,7 @@ msgid "Oops text extracted successfully" + msgstr "वूप्स पाठ सफलतापूर्वक निकाले गए" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -862,6 +885,38 @@ msgstr "" + "कर्नेल लॉग बताता है कि हार्डवेयर त्रुटि का पता चला.\n" + "यह अधिक संभव है कि सॉफ्टवेयर समस्या नहीं है.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -977,7 +1032,36 @@ msgstr "अनुपस्थित डिबगइंफो फ़ाइल: {0 + msgid "All debuginfo files are available" + msgstr "सभी डिबगइंफो फ़ाइलें उपलब्ध हैं" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -987,7 +1071,7 @@ msgstr "" + "आपका उत्तर 'नहीं' है, तो एक स्टैक ट्रैस स्थानीय रूप से बनाया जाएगा. (यह बड़ी " + "मात्रा में आँकड़ा डाउनलोड कर सकता है)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1224,7 +1308,8 @@ msgstr "DIR में हर वूप्स क्षण के लिए न + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation की तरह, DumpLocation को abrt.conf में निर्दिष्ट है" + +@@ -1234,16 +1319,18 @@ msgstr "समस्या में निकाले सूचना को + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "समस्या निर्देशिका को सभी के लिए लिखने योग्य बनाएँ" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "1 प्रति सेकेंड से थ्रोटल समस्या निर्देशिका निर्माण" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout में खोज स्ट्रिंग छापें और बाहर निकलें" + +@@ -1253,9 +1340,13 @@ msgstr "stdout में खोज स्ट्रिंग छापें औ + msgid "Failed to compile regex" + msgstr "रिजेक्स कंपाइल करने में विफल" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "समस्या नहीं अद्यतन कर सका: एकाधिक वूप्स मिला" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1274,6 +1365,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1297,11 +1389,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1315,16 +1409,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1332,18 +1429,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1362,14 +1462,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1378,12 +1481,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1393,58 +1542,62 @@ msgstr "" + "\n" + "फ़ाइल से Xorg क्रैश निकालें (या मानक इनपुट)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "मानक आउटपुट पर छपाई में क्रैश आँकड़ा मिला" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "DIR में हर क्रैश के लिए नयी समस्या निर्देशिका बनाएँ" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1978,7 +2131,7 @@ msgstr "NSS शटडाउन करने में विफल." + msgid "Sleeping for %d seconds" + msgstr "%d सेकेंड से लिए सुप्त" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1986,7 +2139,7 @@ msgstr "" + "कर्नेल समस्या आयी, टूट बीआईओएस के कारण. दुर्भाग्य से,ऐसे समस्या देखभालकर्ता " + "ठीक करने में असमर्थ हैं." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1994,7 +2147,7 @@ msgstr "" + "कर्नेल समस्या आयी, लेकिन आपका हार्डवेयर असमर्थित है, इसलिए कर्नेल " + "देखभालकर्ता इस समस्या के निदान में असमर्थ हैं." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2003,24 +2156,24 @@ msgstr "" + "कर्नेल समस्या आयी, लेकिन आपका कर्नेल टेंट किया गया है (फ्लैग:%s). कर्नेल " + "देखभाल कर्ता टेंट किया रिपोर्ट के निदान में असमर्थ है." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " टेंटेड मॉड्यूल: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "बग आईडी की सूची" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "बोधि सर्वर यूआरएल निर्दिष्ट करें" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "किसी रिलीज को निर्दिष्ट करें" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2030,20 +2183,20 @@ msgstr "" + "\n" + "बोधि सर्वर पर अद्यतन के लिए खोजें" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "अद्यतन के लिए खोजा जा रहा है" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "इस संकुल के लिए कोई अद्यतन नहीं मिला" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "संकुल का स्थानीय संस्करण उपलब्ध अद्यतन के बनिस्बत नया है" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2071,67 +2224,68 @@ msgstr "छपाई में वूप्स मिले" + msgid "Delete files with found oopses" + msgstr "मिले वूप्स से फ़ाइल मिटाएँ" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ने एकाधिक समस्या निर्देशिका की पहचान की" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "उपयोग: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "[in DIRs] में समस्या की सूची दें" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "समस्या निर्देशिका DIR को हटाएँ" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR में समस्या आँकड़े को विश्लेषित और रिपोर्ट करें" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR के बारे में प्रिंट सूचना" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "हालिया क्रैश की गिनती छापें" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "एकाधिक समस्या की प्रक्रिया करें" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "'abrt-cli COMMAND --help' को अधिक सूचना के लिए देखें" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "बिना रिपोर्ट की गई समस्या को सूचीबद्ध करें" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "विस्तृत विवरण देखें" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "निर्दिष्ट टाइमस्टैंप के बनिस्बत केवल समस्याओं की सूची दें" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "निर्दिष्ट समयस्टैंप से पुराने समस्या की केवल सूची दें" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2142,55 +2296,65 @@ msgstr "" + "'abrt-auto-reporting enabled' को बतौर उपयोक्ता रूट अधिकार चलाकर निर्गत " + "करके\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "इससे बड़ा पाठ संक्षिप्त कर दिया जाएगा" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "कोई ऐसी समस्या निर्देशिका '%s' नहीं" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "बिना किसी संदेश के केवल समस्या गिनती छापें" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "निर्दिष्ट टाइमस्टैंप के बनिस्बत हालिय समस्याओं को केवल छापें" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT ने %u समस्या का पता किया है. अधिक जानकारी के लिए चलाएँ: abrt-cli " + "list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' मिटा रहा है" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "रिपोर्टिंग के बाद PROBLEM_DIR हटाएँ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' मिटा रहा है" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "क्रिया: remove(rm), info(i), skip(s):" +@@ -2201,27 +2365,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "क्रिया: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' की रिपोर्टिंग" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "ENTER को अगली समस्या के लिए दबाएँ:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "बिना --since argumen के, सभी पता किए समस्या पर बार-बार आता है." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "टाइमस्टैंप के बाद पता चली समस्या को केवल दिखाता है" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/hu.po b/po/hu.po +index c0e3d06..bdb34ab 100644 +--- a/po/hu.po ++++ b/po/hu.po +@@ -12,127 +12,142 @@ + # teknos.ferenc , 2013-2014 + # Zoltan Hoppár , 2011-2013 + # Zoltan Hoppár , 2014 ++# Kardos László , 2015. #zanata + # Szűcs Kornél Géza , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-01-31 05:23-0500\n" ++"PO-Revision-Date: 2015-12-16 06:53-0500\n" + "Last-Translator: Szűcs Kornél Géza \n" + "Language-Team: Hungarian (http://www.transifex.com/projects/p/fedora-abrt/" + "language/hu/)\n" + "Language: hu\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "Hibajelentés" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "Alkalmazás összeomlás megtekintés és jelentés" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' tulajdona nem átvehető" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Mappa nem megnyitható írásra: '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Jelzés nem bezárható: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" +-msgstr "" ++msgstr "Hoppá!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Jelentés" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" +-msgstr "" ++msgstr "Újraindítás" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" ++"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. A probléma " ++"automatikusan bejelentésre került." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" ++"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. A probléma " ++"bejelentésre kerül, amint lesz internetkapcsolat. " + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" ++"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. Kérjük vegye " ++"fel a kapcsolatot a fejlesztővel, ha szeretné bejelenteni a hibát" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" ++"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. Ha szeretne " ++"segíteni a hiba megoldásában, kérjük küldjön egy hibajelentést." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" ++"Elnézést kérünk, úgy néz ki, hogy egy probléma lépett fel egy összetevőben. " ++"A probléma automatikusan bejelentésre került. " + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" ++"Elnézést kérünk, úgy néz ki, hogy egy probléma lépett fel egy összetevőben. " ++"A probléma bejelentésre kerül, amint lesz internetkapcsolat." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" ++"Elnézést kérünk, úgy néz ki, hogy egy probléma lépett fel. Ha szeretne " ++"segíteni a probléma megoldásában, kérjük küldjön egy hibajelentést." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Jelzés nem megjeleníthető: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "GIO csatorna nem olvasható: %s" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "GIO csatorna kódolása nem beállítása: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "GIO nonblocking módja nem beállítható: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -143,6 +158,17 @@ msgstr "" + "Alkalmazás amely képes jelezni az ABRT-n keresztül a felhasználó felé ha új " + "probléma történne\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "Kérdezzen a mappa kisajátítása előtt" +@@ -164,12 +190,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"A coredump fájl fontos a stack trace generálása érdekében. Mivel ez egy idő- " +-"és erőforrás-igényes folyamat, az ABRT ad szolgáltatást ehhez, ami ezt " +-"elvégzi, de előtte fel kell tölteni a coredump fájlt. Ezzel az opcióval " +-"természetesen az ABRT fel fogja tölteni őket kérdés nélkül." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -217,10 +241,6 @@ msgstr "" + "Rövidített jelentés opció be van kapcsolva." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Kérdezzen a coredump feltöltése előtt" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -228,15 +248,15 @@ msgstr "" + "Ha ez az opció engedélyezve van, akkor az ABRT mindig korlátozott " + "hozzáféréssel jelenti a hibát, ha az bizalmas adatot tartalmaz." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Privát bejegyzés kérése érzékeny információk miatt" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Jelezze a hiányos problémákat" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -246,6 +266,22 @@ msgstr "" + "felhasználó kiléptetése zajlik. Mivel az ABRT célja, hogy hasznos hiba " + "jelentéseket küldjön, így ezeket nem tudjuk elküldeni." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Kilépés" +@@ -271,14 +307,14 @@ msgstr "Rólunk" + msgid "Quit" + msgstr "Kilépés" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -290,11 +326,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Probléma könyvtár" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfigurációs fájl" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -308,24 +344,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [opciók]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Alkalmazza a NUM számot mint kliens UID-t" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Jelentés a rendszernaplóba" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Programnevek hozzáadása a log-hoz" + +@@ -333,62 +370,52 @@ msgstr "Programnevek hozzáadása a log-hoz" + msgid "Unknown error" + msgstr "Ismeretlen hiba" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' nem egy érvényes hibamappa" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' nem érvényes elem név" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' elemek nem módosíthatóak" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' nem egy érvényes hibamappa" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Nincs engedélyezve" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Módosításhoz a probléma nem elérhető" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' elemek nem módosíthatóak" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Chown parancs végrehajtása sikertelen a mappán. Ellenőrizze a rendszer " + "logfájljait a további részletekért." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' nem érvényes elem név" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' mérete nem megállapítható" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Nem maradt hibagyűjtő terület" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "A probléma mappából '%s' nem törölhető '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -398,12 +425,12 @@ msgstr "" + "A '%s' név elveszett, kérem elllenőrizze, hogy más futó szolgáltatás nem épp " + "ezzel a névvel aktív-e vagy sem.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Kilépés NUM másodperc inaktivitás után" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Ennek a programnak root jogokkal kell futnia." + +@@ -430,18 +457,22 @@ msgstr "Ne automatizálja" + msgid "Log to syslog even with -d" + msgstr "Jelentés a rendszernaplóba akkor is, ha -d opcióval ellátott" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "EVENT futtatása a DIR könyvtáron" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Közvetlen kommunikáció a felhasználóval" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -480,73 +511,74 @@ msgstr "Egyidejűleg elérhető dolgozók. Alapértelmezésben " + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximális gyorstár mérete Mbyte-ban. Alapértelmezésben " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Red Hat támogatás felhasználónév" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Érvénytelen számú paraméter" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Ismeretlen opcionális érték: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" +-msgstr "" ++msgstr "Jelszó:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Jelszó megadása nélkül nem folytatható\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -558,74 +590,74 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Nem egy könyvtár: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Átugrás: '{0}' (perjellel kezdődik)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Átugrás: '{0}' (ponttal kezdődik)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + #, fuzzy + msgid "Skipping: '{0}' (contains ..)" + msgstr "Átugrás: '{0}' (.. tartalmaz)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Átugrás: '{0}' (szóközt tartalmaz)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Átugrás: '{0}' (tabulátort tartalmaz)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + #, fuzzy + msgid "Can't change directory to '{0}'" + msgstr "Sikertelen könyvtár váltás ide: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Ismeretlen fájltípus: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + #, fuzzy + msgid "Can't create working directory in '{0}'" + msgstr "Munkakönyvtár létrehozása sikertelen itt: '{0}' " + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + #, fuzzy + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' nem helyezhető át ide: '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + #, fuzzy + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' nem másolható ide: '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + #, fuzzy + msgid "Verification error on '{0}'" + msgstr "Hitelesítési hiba '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Kicsomagolás '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' könyvtár létrehozása sikertelen" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Kicsomagolás sikertelen '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + #, fuzzy + msgid "'{0}' processed successfully" + msgstr "'{0}' feldolgozása sikeres" +@@ -650,18 +682,26 @@ msgstr "Sikertelen chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Hibagyüjtő mappa törlése sikertelen: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Probléma adatok nem elérhetőek az abrt-dbus szolgáltatásból: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Problémák listája em elérhetőek az abrt-dbus szolgáltatásból: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Probléma adatok nem elérhetőek az abrt-dbus szolgáltatásból: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -709,7 +749,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s, nyomkövetési értelmezés sikertelen" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Az összeomlás szálja nem található" + +@@ -814,7 +854,7 @@ msgstr "Oops üzenet nem kibontható: '{0}'" + msgid "Oops text extracted successfully" + msgstr "Oops szöveg sikeresen kibontva" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -822,6 +862,38 @@ msgstr "" + "A kernelnapló szerint hardver hiba történt.\n" + "Ez valószínűleg nem egy szoftver hiba.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -941,7 +1013,36 @@ msgstr "Hiányzó debuginfo fájl: {0}" + msgid "All debuginfo files are available" + msgstr "MInden debuginfo fájl elérhető" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -951,7 +1052,7 @@ msgstr "" + "tartalmazhat) Ha a válasza 'Nem', a nyomkövetési adatokat helyben állítjuk " + "elő. (Ezzel nagy mennyiségű adat kerülhet letöltésre)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1186,7 +1287,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Ugyanaz mint a -d DumpLocation, a DumpLocation-t pedig az abrt.conf " +@@ -1198,16 +1300,18 @@ msgstr "Mentse a kivonatolt információkat PROBLÉMA gyüjtőbe" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "A dump könyvtár környezetének olvashatóvá tétele" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Aktiválja a probéma mappa létrehozását 1 másodpercenként" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Nyomtassa ki a keresési string(eke)t az stdout-ra és lépjen ki" + +@@ -1216,9 +1320,13 @@ msgstr "Nyomtassa ki a keresési string(eke)t az stdout-ra és lépjen ki" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "Probléma nem frissíthető: több mint egy oops található" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1237,6 +1345,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1260,11 +1369,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1278,16 +1389,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1295,18 +1409,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1325,14 +1442,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1341,12 +1461,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1356,59 +1522,63 @@ msgstr "" + "\n" + "Bontsa ki az Xorg összeomlást a FILE-ból (vagy szabványos bemenetről)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Nyomtassa ki az összeomlási adatokat a szabványos kimenetre" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Készítsen mindig új mappát DIR mappában minden egyes ütközéshez amit talál" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1942,7 +2112,7 @@ msgstr "NSS leállítása sikertelen." + msgid "Sleeping for %d seconds" + msgstr "Kivárás %d másodpercig" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1950,7 +2120,7 @@ msgstr "" + "Kernelhiba történt egy hibás BIOS miatt. Sajnálatos módon, az ilyen " + "problémákat nem tudják a kernel programozók kijavítani." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1958,7 +2128,7 @@ msgstr "" + "Kernelhiba történt és a hardvere nem támogatott, ezért a kernel programozók " + "nem tudják megjavítani ezt a problémát." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1967,24 +2137,24 @@ msgstr "" + "Kernelhiba történt, de a kernele összekeveredett más kóddal (flags: %s). A " + "kernel karbantartói képtelenek analizálni ezeket a jelentéseket." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Tainted állapotú modulok: %s" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Hibaazonosítók listája" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Adjon meg egy bodhi kiszolgáló URL-t" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Adja a meg a kiadást" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1994,20 +2164,20 @@ msgstr "" + "\n" + "Keressen frissítéseket bodhi szervereken" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Frissítések keresése" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Ehhez a csomaghoz frissítések nem találhatóak" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "A helyben lévő csomag verziója frissebb mint a frissítésekben levő" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2037,70 +2207,71 @@ msgstr "A nyomtatás során talált oops " + msgid "Delete files with found oopses" + msgstr "Fájlok törlése közben oops történt" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + "'%s' egyidejűleg egyszerre több problémagyüjtő könyvtára is azonosított" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Használat: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Listázza a még be nem jelentett hibákat [DIR könyvtárakban]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Hibagyűjtő DIR könyvtár eltávolítása" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Elemzi és bejelenti a hibaadatokat a DIR könyvtárban" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Információk nyomtatása DIR könyvtárról" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Írja ki a legutóbbi összeomlások számát" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Tekintse meg az 'abrt-cli PARANCS --help' a további információkért" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Csak a nem jelentett problémákat listázza" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Részletes jelentés megjelenítése" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Csak azoknak az esetek számát jelenítse meg ami frissebb, mintt a " + "meghatározott időbélyeg" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Csak azokat a megadott eseteket jelenítse meg amik régebbiek mint az " + "időbélyeg" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2111,55 +2282,65 @@ msgstr "" + "engedélyezze root jogú felhasználóként a 'abrt-auto-reporting enabled' " + "paranccsal.\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [opciók] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Szöveg nagyobb, ezért így fog megjelenni rövidített szövegként" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Nincs ilyen problémát tartalmazó könyvtár '%s'" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + "Jelenítse meg csak azoknak az eseteknek a számát ahol minden üzenet nélkül " + "történt" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Csak azoknak az eseteknek a számát jelenítse meg, ami a megjelölt időbélyeg " + "óta történt" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "Az ABRT több hibát is talált %u (s) . További információhoz futtasa az abrt-" + "cli list %s parancsot\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2168,24 +2349,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ia.po b/po/ia.po +index 8249e12..4eabf14 100644 +--- a/po/ia.po ++++ b/po/ia.po +@@ -9,7 +9,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -19,7 +19,7 @@ msgstr "" + "language/ia/)\n" + "Language: ia\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -29,108 +29,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Reportar" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -152,7 +163,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -185,30 +198,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -234,14 +259,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -253,11 +278,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "File de configuration" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -271,24 +296,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Registrar in syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Adder nomines de programma in registro" + +@@ -296,60 +322,50 @@ msgstr "Adder nomines de programma in registro" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -357,12 +373,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -383,18 +399,22 @@ msgstr "Non lancear como demone" + msgid "Log to syslog even with -d" + msgstr "Registrar in syslog mesmo con -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -424,73 +444,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -502,68 +523,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -587,18 +608,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -639,7 +668,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Error durante le analyse del retraciamento de %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -728,12 +757,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -842,14 +903,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1064,7 +1154,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Identic a \"-d locodelinstantaneo\"; le loco del instantaneo es specificate " +@@ -1076,16 +1167,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1094,8 +1187,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1115,6 +1212,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1138,11 +1236,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1156,16 +1256,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1173,18 +1276,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1203,14 +1309,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1219,70 +1328,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1807,63 +1966,63 @@ msgstr "Fallimento de arrestar NSS." + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1885,65 +2044,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Monstrar un reporto detaliate" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1951,49 +2111,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2002,24 +2172,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/id.po b/po/id.po +index ec554cf..38f9d34 100644 +--- a/po/id.po ++++ b/po/id.po +@@ -12,7 +12,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -22,7 +22,7 @@ msgstr "" + "language/id/)\n" + "Language: id\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -32,108 +32,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Laporan" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -155,7 +166,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -188,30 +201,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -237,14 +262,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -256,11 +281,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Direktori masalah" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Berkas konfigurasi" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -274,24 +299,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Catat ke syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Menambahkan nama program untuk log" + +@@ -299,60 +325,50 @@ msgstr "Menambahkan nama program untuk log" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -360,12 +376,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,18 +402,22 @@ msgstr "Jangan dibuat daemon" + msgid "Log to syslog even with -d" + msgstr "Log ke syslog meskipun dengan -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -427,73 +447,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -505,68 +526,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -590,18 +611,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -642,7 +671,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Parsing backtrace gagal untuk %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -731,12 +760,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -845,14 +906,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1067,7 +1157,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1077,16 +1168,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1095,8 +1188,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1116,6 +1213,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1139,11 +1237,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1157,16 +1257,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1174,18 +1277,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1204,14 +1310,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1220,70 +1329,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1784,63 +1943,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1862,65 +2021,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1928,49 +2088,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1979,24 +2149,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/it.po b/po/it.po +index c4be184..41d3d18 100644 +--- a/po/it.po ++++ b/po/it.po +@@ -21,7 +21,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -31,7 +31,7 @@ msgstr "" + "language/it/)\n" + "Language: it\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -41,102 +41,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Impossibile ottenere la proprietà di '%s'" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Impossibile aprire la directory per la scrittura: '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Impossibile chiudere la notifica: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Segnala" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Impossibile mostrare la notifica: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Impossibile eseguire la lettura dal canale gio: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Impossibile impostare la codifica sul canale gio: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Impossibile abilitare la modalità nonblocking per il canale gio: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -147,6 +147,17 @@ msgstr "" + "Applet che notifica all'utente il rilevamento di un nuovo problema da parte " + "di ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -167,19 +178,15 @@ msgstr "Notifica abbreviata" + msgid "Silent shortened reporting" + msgstr "Notifica abbreviata silenziosa" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"Il file coredump è necessario per la generazione degli stack trace. Questa " +-"operazione richiederà tempo e spazio. ABRT fornisce un servizio in grado di " +-"generare uno stack trace da coredump, e a tal proposito sarà necessario " +-"caricare coredump per il suddetto servizio. Con questa opzione disabilitata, " +-"ABRT caricherà coredump senza richiederlo all'utente." + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -230,29 +237,24 @@ msgstr "" + "problemi riportati. Questa impostazione è effettiva solo se è stata " + "abilitata la Notifica abbreviata." + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Chiedi prima di caricare coredump" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Richiedi un ticket privato per le informazioni sensibili" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Notifica problemi incompleti" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -262,6 +264,22 @@ msgstr "" + "durante l'operazione di logout di un utente. Al fine di fornire notifiche " + "utili, ABRT non permetterà l'invio di questi problemi." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Chiudi" +@@ -287,14 +305,14 @@ msgstr "Informazioni" + msgid "Quit" + msgstr "Esci" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -306,11 +324,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Directory del problema" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "File di configurazione" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -324,24 +342,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [opzioni]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Utilizzare NUM per l'uid del client" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Log su syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Aggiungi i nomi dei programmi sul log" + +@@ -349,63 +368,53 @@ msgstr "Aggiungi i nomi dei programmi sul log" + msgid "Unknown error" + msgstr "Errore sconosciuto" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' non è una directory di problema valida" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' non è un nome di elemento valido" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "Impossibile modificare l'elemento '%s' " ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' non è una directory di problema valida" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Non Autorizzato" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Impossibile accedere al problema per la modifica" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "Impossibile modificare l'elemento '%s' " + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Modifica proprietario della directory fallita. Controllare i log del sistema " + "per maggiori informazioni." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' non è un nome di elemento valido" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Impossibile ottenere la dimensione di '%s'" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Nessuno spazio del problema rimasto" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + "Impossibile cancellare l'elemento '%s' dalla directory del problema '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -415,12 +424,12 @@ msgstr "" + "Il nome '%s' è stato perso, verificare che altri servizi che utilizzano " + "questo nome non siano in esecuzione.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Esci dopo NUM secondi di inattività" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Questo programma deve essere eseguito come root." + +@@ -446,18 +455,22 @@ msgstr "Non rendere demone" + msgid "Log to syslog even with -d" + msgstr "Log su syslog anche con -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Esegui EVENT su DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Comunica direttamente all'utente" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -498,89 +511,90 @@ msgstr "Numero di thread di lavoro simultanei. L'impostazione predfinita è" + msgid "Maximal cache size in MiB. Default is " + msgstr "Dimensione cache massima in MiB. L'impostazione predefinita è" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr " Disabilita l'autenticazione" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Nome utente per il Red Hat Support" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Password per il Red Hat Support, se non specificata verrà richiesto di " + "inserirne una" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Tipo di certificato o percorsi per il certificato SSL uReport" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "Specificare --username per --password" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Usare --username o --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Usare --username o --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Usare --anonymous o --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Numero non valido di argomenti" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valore opzione sconosciuto: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Password:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "Impossibile continuare senza password\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "Auto reporting autenticato con HTTP" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "Auto reporting autenticato con client SSL" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "auto reporting anonimo" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -602,83 +616,83 @@ msgstr "" + " FILENAME - Nome del file dell'archivio caricato\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Non è una directory: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Saltato: '{0}' (inizia con barra)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Saltato: '{0}' (inizia con un punto)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Saltato: '{0}' (contiene ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Saltato: '{0}' (presenta uno spazio)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Saltato: '{0}' (presenta un tab)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Impossibile modificare la directory su '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Tipo di file sconosciuto: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Impossibile creare una directory operativa in '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Impossibile spostare '{0}' su '{1}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Impossibile copiare '{0}' su '{1}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Errore di verifica su '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Estrazione '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Impossibile creare la directory '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Impossibile estrarre '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' processato con successo" + +@@ -702,18 +716,26 @@ msgstr "Impossibile ottenere la proprietà '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Cancellazione directory del problema non riuscita: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Impossibile ottenere i dati del problema da abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Impossibile ottenere la lista problemi da abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Impossibile ottenere i dati del problema da abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -762,7 +784,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Fallita analisi del backtrace per %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Thread di crash non trovato" + +@@ -870,7 +892,7 @@ msgstr "Impossibile estrarre il messaggio oops: '{0}'" + msgid "Oops text extracted successfully" + msgstr "Estratto con successo il testo oops" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -878,6 +900,38 @@ msgstr "" + "Il log del kernel indica che sono stati rilevati errori hardware.\n" + "Questo molto probabilmente non è un errore software.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -994,7 +1048,36 @@ msgstr "File debuginfo mancante: {0}" + msgid "All debuginfo files are available" + msgstr "Tutti i file contenenti le informazioni di debug sono disponibili" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -1004,7 +1087,7 @@ msgstr "" + "risponde 'No', uno stack trace sarà generato localmente. (Può scaricare una " + "grande quantità di dati)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1244,7 +1327,8 @@ msgstr "Crea una nuova directory del problema in DIR per ogni oops rilevato" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Uguale a -d DumpLocation, DumpLocation viene specificato in abrt.conf" + +@@ -1254,16 +1338,18 @@ msgstr "Salva l'informazione estratta in PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Rendi la directory del problema leggibile a tutti" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Aumenta la creazione della directory del problema a 1 per secondo" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Stampa la/le stringa/stringhe ricercate in stdout ed esce" + +@@ -1273,9 +1359,13 @@ msgstr "Stampa la/le stringa/stringhe ricercate in stdout ed esce" + msgid "Failed to compile regex" + msgstr "Impossibile compilare regex" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "Impossibile aggiornare il problema: trovati più di un oops" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1294,6 +1384,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1317,11 +1408,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1335,16 +1428,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1352,18 +1448,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1382,14 +1481,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1398,12 +1500,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1413,58 +1561,62 @@ msgstr "" + "\n" + "Estrae il crash di Xorg da FILE (o da standard input)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Stampa i dati trovati relativi al crash sullo standard output" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "Crea una nuova directory del problema in DIR per ogni crash rilevato" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -2002,7 +2154,7 @@ msgstr "Arresto NSS fallito." + msgid "Sleeping for %d seconds" + msgstr "In sospensione per %d secondi" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2011,7 +2163,7 @@ msgstr "" + "Sfortunatamente questi problemi non possono essere risolti dai manutentori " + "del kernel." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2020,7 +2172,7 @@ msgstr "" + "per questo motivo i manutentori del kernel non sono in grado di risolvere " + "questo problema." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2030,24 +2182,24 @@ msgstr "" + "%s). I manutentori del kernel non sono in grado di effettuare diagnosi dei " + "rapporti inquinati." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Moduli corrotti: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Lista dei bug ids" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Specificare un url di un server bodhi" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Specificare una release" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2057,22 +2209,22 @@ msgstr "" + "\n" + "Ricerca aggiornamenti disponibili su un server bodhi" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Ricerca di aggiornamenti" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Non sono stati trovati aggiornamenti per questo pacchetto" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "La versione locale del pacchetto è più recente rispetto a quella disponibile " + "negli aggiornamenti" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2100,67 +2252,68 @@ msgstr "Stampa gli errori trovati" + msgid "Delete files with found oopses" + msgstr "Cancella file con errori trovati" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' identifica più di una directory del problema" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Utilizzo: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Elenca i problemi [in DIR]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Rimuovi la directory del problema DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analizza e riporta i dati del problema in DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Stampa le informazioni sulla DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Stampa il contatore dei crash recenti" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Elabora problemi multipli" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Consultare 'abrt-cli COMMAND --help' per maggiori informazioni" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Elenca solo problemi non riportati" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Mostra i dettagli della segnalazione" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "Elenca solo i problemi più recenti della data specificata" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "Elenca solo i problemi più vecchi della data specificata" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2170,55 +2323,65 @@ msgstr "" + "La funzione di auto-reporting è disabilitata. Abilitarla con il comando\n" + "'abrt-auto-reporting enabled' come utente con privilegi root\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [opzioni] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "I testi con dimensioni maggiori di questo verranno mostrati ridotti" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Directory '%s' del problema non trovata" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Stampa solo il contatore del problema senza nessun messaggio" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Stampa solo i problemi più recenti di un timestamp specificato" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT ha trovato %u problema(i). Per maggiori informazioni usare: abrt-cli " + "list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Rimozione '%s'" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Rimuovi PROBLEM_DIR dopo la notifica" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "Rimozione '%s'" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Azioni: remove(rm), info(i), skip(s):" +@@ -2229,27 +2392,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Azioni: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Notifica '%s'" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Per il problema successivo premere ENTER:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Senza l'argomento --since, ripetere su tutti i problemi rilevati." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Seleziona solo i problemi rilevati dopo il timestamp" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ja.po b/po/ja.po +index de6991a..4a59702 100644 +--- a/po/ja.po ++++ b/po/ja.po +@@ -16,126 +16,127 @@ + # Tomoyuki KATO , 2012-2013 + # carrotsoft , 2011, 2012 + # Noriko Mizumoto , 2015. #zanata ++# Ooyama Yosiyuki , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-01-08 11:11-0500\n" +-"Last-Translator: Noriko Mizumoto \n" ++"PO-Revision-Date: 2015-08-23 07:49-0400\n" ++"Last-Translator: Ooyama Yosiyuki \n" + "Language-Team: Japanese (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ja/)\n" + "Language: ja\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "問題の報告" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "アプリケーションクラッシュの表示とレポート" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' の所有権を取得できません" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' を書き込むためのディレクトリを開くことができません" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "通知を閉じることができません: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" +-msgstr "" ++msgstr "おっと!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "報告する" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" +-msgstr "" ++msgstr "再開" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." +-msgstr "" ++msgstr "申し訳ございません、 %s がクラッシュしたようです。問題は自動的に報告されています。" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." +-msgstr "" ++msgstr "申し訳ございません、 %s がクラッシュしたようです。問題はインターネット利用可能時に自動的に報告されます。" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." +-msgstr "" ++msgstr "申し訳ございません、 %s がクラッシュしたようです。問題を報告したい場合は、開発者に連絡してください。" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." +-msgstr "" ++msgstr "申し訳ございません、 %s がクラッシュしたようです。問題を解決したい場合は、報告を送ってください。" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +-msgstr "" ++msgstr "申し訳ございません、コンポーネント内で問題が発生したようです。問題は自動的に報告されています。" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +-msgstr "" ++msgstr "申し訳ございません、コンポーネント内で問題が発生したようです。問題はインターネット利用可能時に自動的に報告されます。" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +-msgstr "" ++msgstr "申し訳ございません、 問題が発生したようです。問題を解決したい場合は、報告を送ってください。" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "通知を表示できません: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio チャネルからの読み込みができません: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio チャネルでエンコーディングを設定できません: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio チャネルのノンブロッキングモードを有効にできません: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -144,6 +145,17 @@ msgstr "& [-v] [DIR]...\n" + "\n" + "新しい問題が ABRT で検出されるとユーザーに通知するアプレットです\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -161,17 +173,15 @@ msgstr " " + msgid "Silent shortened reporting" + msgstr " " + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"coredump ファイルは、時間がかかりスペースを消費する操作であるスタックトレースの生成に必要です。ABRT は、coredump " +-"からスタックトレースを生成するサービスを提供しますが、coredump " +-"をこのサービスにアップロードする必要があります。このオプションを無効にすると、ABRT は尋ねることなく coredump をアップロードします。" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -214,29 +224,24 @@ msgid "" + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "このオプションを有効にすると、ABRT は報告された問題の通知を表示しません。短縮形レポーティングが有効な場合にのみ、実行されます。" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "coredump をアップロードする前に尋ねる" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "機密情報のプライベートチケットを要求する" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "完了していない問題を通知する" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -245,6 +250,22 @@ msgstr "" + "コンピューターのシャットダウン中またはユーザーのログアウト中に完了していない問題が検出されました。価値のある問題レポートを提出するため、ABRT " + "はユーザーによるこれらの問題の提出を許可しません。" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "閉じる (_C)" +@@ -270,14 +291,14 @@ msgstr "ABRT について" + msgid "Quit" + msgstr "終了" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -289,11 +310,11 @@ msgstr "" + msgid "Problem directory" + msgstr "問題ディレクトリ" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "設定ファイル" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -307,24 +328,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [オプション]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM をクライアントの uid として使用する" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog にログする" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "ログにプログラム名を追加する" + +@@ -332,60 +354,50 @@ msgstr "ログにプログラム名を追加する" + msgid "Unknown error" + msgstr "不明なエラーです" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "「%s」は有効な問題ディレクトリではありません" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' は有効なエレメント名ではありません" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' エレメントを修正できません" ++msgid "'%s' is not a valid problem directory" ++msgstr "「%s」は有効な問題ディレクトリではありません" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "権限がありません" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "問題にアクセスして修正できません" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "ディレクトリの所有者変更に失敗しました。詳細はシステムログを確認してください。" +- +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' は有効なエレメント名ではありません" ++msgid "'%s' element can't be modified" ++msgstr "'%s' エレメントを修正できません" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." ++msgstr "ディレクトリの所有者変更に失敗しました。詳細はシステムログを確認してください。" ++ ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' の容量を取得できません" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "残っている問題領域はありません" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "「%s」エレメントを問題ディレクトリの「%s」から削除できません" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -393,12 +405,12 @@ msgid "" + "is not running.\n" + msgstr "'%s' の名前を紛失しました。その名前を持つ他のサービスが実行していないかチェックして下さい。\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "休止状態が NUM 秒以上続いた場合は終了します" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "このプログラムは root で実行しなければなりません" + +@@ -421,18 +433,22 @@ msgstr "デーモン化しない" + msgid "Log to syslog even with -d" + msgstr "-d オプションを使用するとログを syslog へ書き込みます" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "EVENT を DIR で実行する" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "ユーザーと直接通信する" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -470,87 +486,88 @@ msgstr "同時実行ワーカー数。規定値は次のとおりです。" + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB 単位の最大キャッシュ容量。規定値は次のとおりです。" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "認証をオフにする" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat サポートユーザー名" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat Support パスワード、入力しないとあとで入力が求められます" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL 証明書パスまたは証明書タイプ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "--password には --username も指定してください" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "--username または --certificate のいずれかを使用します" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "--username または --anonymous のいずれかを使用します" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "--anonymous または --certificate のいずれかを使用します" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "引数の数が無効な数です" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "不明なオプション値です: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "パスワード:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "パスワードを入力しないと先に進めません\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP 認証の自動報告" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL クライアント認証の自動報告" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "anonymous 自動報告" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -570,83 +587,83 @@ msgstr "" + " FILENAME - アップロード済みアーカイブファイル名\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "ディレクトリではありません: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "スキップ中: '{0}' (スラッシュで開始)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "スキップ中: '{0}' (ドットで開始)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "スキップ中: '{0}' (.. を含む)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "スキップ中: '{0}' (空白を含む)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "スキップ中: '{0}' (タブを含む)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "'{0}' にディレクトリを変更できません" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "不明なファイルタイプ: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' に作業ディレクトリを作成できません" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' を '{1}' に移動できません" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' を '{1}' にコピーできません" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' で確認エラー" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' を解凍中" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ディレクトリを作成できません" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' を解凍できません" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' が正常に処理されました" + +@@ -670,21 +687,29 @@ msgstr "'%s の chown ができません: %s" + msgid "Deleting problem directory failed: %s" + msgstr "問題ディレクトリの削除に失敗しました: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus から問題のデータを取り込めません: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus から問題の一覧を取りこめません: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus から問題のデータを取り込めません: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "abrt-dbus でエレメントが存在しているかどうかのテストができません : %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -727,7 +752,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s のバックトレース構文解析に失敗しました" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "クラッシュスレッドは見つかりませんでした" + +@@ -832,13 +857,45 @@ msgstr "ウップスメッセージを抽出できません: '{0}'" + msgid "Oops text extracted successfully" + msgstr "ウップステキストが正常に抽出されました" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "カーネルログではハードウェア関連のエラーが検出されたことが示されているため、\n" + "これはおそらくソフトウェアに関する問題ではないでしょう。\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -952,7 +1009,36 @@ msgstr "debuginfo ファイルがありません: {0}" + msgid "All debuginfo files are available" + msgstr "すべての debuginfo ファイルが利用可能です" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -961,7 +1047,7 @@ msgstr "" + "コアダンプをアップロードしてもよいですか (これには機密情報が含まれている可能性があります) " + "?「いいえ」の場合にはスタックトレースがローカルに生成されます (これにより大量のデータがダウンロードされる可能性があります)。" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1029,7 +1115,7 @@ msgstr "uReport はすでに送信されているので、再送信されませ + + #: ../src/plugins/abrt-action-ureport:179 + msgid "Adding you to CC List of the existing bugzilla bug" +-msgstr "" ++msgstr "既知のBugzilla バグの CC リストにあなたを追加する" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-action-ureport:193 +@@ -1194,7 +1280,8 @@ msgstr "検出される oops ごと DIR 内に新規の問題ディレクトリ + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation と同じです、 DumpLocation は abrt.conf で指定します" + +@@ -1204,16 +1291,18 @@ msgstr "抽出した情報を PROBLEM に保存します" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "問題ディレクトリを誰でも見れるようにします" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "問題のディレクトリの作成を毎秒 1 個に制限" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "検索文字列を標準出力に表示して終了" + +@@ -1223,9 +1312,13 @@ msgstr "検索文字列を標準出力に表示して終了" + msgid "Failed to compile regex" + msgstr "regex のコンパイルに失敗しました" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "問題を更新できません: 複数のウップスが見つかりました" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1244,6 +1337,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1263,15 +1357,17 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:478 + msgid "Create new problem directory in DIR for every coredump" +-msgstr "" ++msgstr "検出されるコアダンプごと DIR 内に新規の問題ディレクトリを作成します" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1285,37 +1381,43 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" +-msgstr "" ++msgstr "systemd-journal を開けません" + + #: ../src/plugins/abrt-dump-journal-core.c:544 + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" +-msgstr "" ++msgstr "ジャーナルの最後までシークできません" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" +-msgstr "" ++msgstr "systemd-journal cursor '%s' を設定できませんでした" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." +-msgstr "" ++msgstr "ジャーナルデータを読めません" + + #: ../src/plugins/abrt-dump-journal-oops.c:186 + msgid "" +@@ -1332,14 +1434,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1348,12 +1453,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1362,58 +1513,62 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "FILE (または標準入力) から Xorg クラッシュを抽出します" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "発見したクラッシュデータを標準出力に表示する" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "検出されるクラッシュごと DIR 内に問題ディレクトリを作成します" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1500,7 +1655,7 @@ msgstr "Retrace サーバーを使用するには '%s' が普通のファイル + msgid "" + "The size of your crash is %s, but the retrace server only accepts crashes " + "smaller or equal to %s." +-msgstr "" ++msgstr "クラッシュサイズは %s ですが、リトレースサーバーで受け取れるクラッシュサイズは %s か、それ以下のサイズになります。" + + #: ../src/plugins/abrt-retrace-client.c:540 + msgid "The server does not support xz-compressed tarballs." +@@ -1528,12 +1683,12 @@ msgstr "アップロードするアーカイブを準備中" + msgid "" + "The size of your archive is %s, but the retrace server only accepts archives " + "smaller or equal to %s." +-msgstr "" ++msgstr "アーカイブのサイズは %s ですが、リトレースサーバーで受け取れるアーカイブのサイズは %s か、それ以下のサイズになります。" + + #: ../src/plugins/abrt-retrace-client.c:640 + #, c-format + msgid "You are going to upload %s. Continue?" +-msgstr "" ++msgstr "%s をアップロードしようとしています。継続しますか?" + + #: ../src/plugins/abrt-retrace-client.c:649 + msgid "Cancelled by user" +@@ -1542,7 +1697,7 @@ msgstr "ユーザーにより取り消されました" + #: ../src/plugins/abrt-retrace-client.c:683 + #, c-format + msgid "Uploading %s\n" +-msgstr "" ++msgstr "%s をアップロード中 \n" + + #: ../src/plugins/abrt-retrace-client.c:709 + #, c-format +@@ -1927,19 +2082,19 @@ msgstr "NSS のシャットダウンに失敗しました。" + msgid "Sleeping for %d seconds" + msgstr "%d 秒スリープします" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "BIOS が破損しているためカーネル関連の問題が発生しました。残念ながら、このような問題はカーネルのメンテナーでは修正できません。" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "カーネル関連の問題が発生しましたが、お使いのハードウェアはサポートされていないため、カーネルメンテナーは問題の修正ができません。" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1947,24 +2102,24 @@ msgid "" + msgstr "" + "カーネル関連の問題が発生しましたが、カーネル自体が破損しています (フラグ:%s)。破損したレポートの診断はカーネルメンテナーでは行なえません。" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "破損モジュール: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "バグ id の一覧" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "bodhi サーバーの url を指定する" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "リリースを指定する" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1974,20 +2129,20 @@ msgstr "" + "\n" + "bodhi サーバー上で更新を検索します" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "更新の検索中" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "このパッケージ用の更新は見つかりませんでした" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "このパッケージは、利用可能な更新よりローカルバージョンの方が新しいものになります" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2012,67 +2167,68 @@ msgstr "検出した oops を表示" + msgid "Delete files with found oopses" + msgstr "検出した oops を含んでいるファイルを削除" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' が複数の問題ディレクトリを確認しました" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "使い方: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "問題を一覧表示する [in DIRs]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "DIR 問題ディレクトリを削除する" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR 内の問題データを分析、 報告する" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR に関する情報を出力する" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "最新のクラッシュ回数を表示する" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "複数の問題を処理する" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "詳細については abrt-cli COMMAND --help を参照してください" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "報告されていない問題のみを表示する" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "詳細報告を表示する" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "指定したタイムスタンプより新しい問題のみを表示します" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "指定したタイムスタンプよりも古い問題のみを表示します" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2082,53 +2238,63 @@ msgstr "" + "自動報告機能は無効になっています。root の特権を持つユーザーで\n" + "'abrt-auto-reporting enabled' を発行し、この機能を有効にすることを検討してみてください\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [オプション] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "これより大きなテキストは要約して表示されます" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "そのような問題ディレクトリ '%s' はありません" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "問題の件数のみを表示し、メッセージは表示しません" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "指定されたタイムスタンプよりも新しい問題のみを表示する" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT により %u 件の問題が検出されました。次を実行して詳細を確認してください: abrt-cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' を削除中" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "レポート後に PROBLEM_DIR を削除します" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' を削除中" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "アクション: 削除(rm), 情報(i), スキップ(s):" +@@ -2139,27 +2305,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "アクション: 削除(rm), レポート(e), 情報(i), スキップ(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' をレポート中" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "次の問題に移るには、ENTER を押します:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "--since 引数がないと、すべての検出済み問題を繰り返します。" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "タイムスタンプ後に検出された問題のみを選択します" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ka.po b/po/ka.po +index 3c168a1..76c2da6 100644 +--- a/po/ka.po ++++ b/po/ka.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/ka/)\n" + "Language: ka\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -28,108 +28,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "ანგარიში" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -151,7 +162,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -184,30 +197,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -233,14 +258,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -252,11 +277,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "კონფიგურაციის ფაილი" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -270,24 +295,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "ჟურნალირება syslog-ში" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -295,60 +321,50 @@ msgstr "" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -356,12 +372,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -382,18 +398,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -423,73 +443,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -501,68 +522,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -586,18 +607,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -638,7 +667,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -727,12 +756,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -841,14 +902,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1063,7 +1153,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1073,16 +1164,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1091,8 +1184,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1112,6 +1209,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1135,11 +1233,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1153,16 +1253,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1170,18 +1273,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1200,14 +1306,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1216,70 +1325,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1776,63 +1935,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "მიუთითეთ bodhi სერვერის url" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "მიუთითეთ რელიზი" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "განახლებების მოძებნა" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "ამ პაკეტისთვის განახლებები არ არის" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1854,65 +2013,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "დეტალური ანგარიშის ჩვენება" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1920,49 +2080,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1971,24 +2141,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/km.po b/po/km.po +index 3af0d2e..84bb1b1 100644 +--- a/po/km.po ++++ b/po/km.po +@@ -1,220 +1,179 @@ +-# SOME DESCRIPTIVE TITLE. +-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# +-# Translators: ++# Leap Sok , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-06 13:44+0200\n" +-"PO-Revision-Date: 2014-10-06 11:45+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Khmer (http://www.transifex.com/projects/p/fedora-abrt/language/km/)\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2015-11-01 12:29-0400\n" ++"Last-Translator: Leap Sok \n" ++"Language-Team: Khmer\n" + "Language: km\n" +-"Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 3.8.2\n" ++"Plural-Forms: nplurals=1; plural=0\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +-msgid "Automatic Bug Reporting Tool" +-msgstr "" ++msgid "Problem Reporting" ++msgstr "រាយការណ៍អំពីបញ្ហា" + + #: ../src/applet/abrt-applet.desktop.in.h:2 +-msgid "ABRT notification applet" +-msgstr "" +- +-#: ../src/applet/applet.c:129 +-msgid "" +-"The report which will be sent does not contain any security sensitive data. " +-"Therefore it is not necessary to bother you next time and require any " +-"further action by you. \n" +-msgstr "" +- +-#: ../src/applet/applet.c:135 +-msgid "Do you want to enable automatically submitted crash reports?" +-msgstr "" ++msgid "View and report application crashes" ++msgstr "មើលនិងរាយការណ៍ពីកម្មវិធី​ដែលបានគាំង" + +-#: ../src/applet/applet.c:140 +-msgid "Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "" ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "មិនអាចយកភាពជាម្ចាស់នៃ'%s'" + +-#. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:241 ++#: ../src/applet/applet.c:268 + #, c-format +-msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" ++msgid "Can't open directory for writing '%s'" ++msgstr "​កញ្ចប់ឯកសារមិនអាចអានបាន'%s'" + +-#: ../src/applet/applet.c:265 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format +-msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" ++msgid "Can't close notification: %s" ++msgstr "មិនអាចបិទការជូនដំណឹង:'%s'" + +-#: ../src/applet/applet.c:384 +-msgid "A problem has been detected" +-msgstr "" ++#: ../src/applet/applet.c:598 ++msgid "Oops!" ++msgstr "អូ!" + +-#: ../src/applet/applet.c:386 +-#, c-format +-msgid "A problem in the %s package has been detected" +-msgstr "" ++#: ../src/applet/applet.c:616 ++msgid "Report" ++msgstr "របាយការណ៍" + +-#: ../src/applet/applet.c:396 +-#, c-format +-msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++#: ../src/applet/applet.c:625 ++msgid "Restart" ++msgstr " ការចាប់ផ្តើមសារឡើងវិញ" + +-#: ../src/applet/applet.c:556 ../src/plugins/abrt-retrace-client.c:131 +-#: ../src/plugins/abrt-retrace-client.c:168 ++#: ../src/applet/applet.c:694 + #, c-format +-msgid "Can't execute '%s'" ++msgid "" ++"We're sorry, it looks like %s crashed. The problem has been automatically " ++"reported." + msgstr "" ++"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ " ++"បញ្ហានេះត្រូវបានរាយការណ៍ដោយស្វ័យប្រវត្តិ។" + +-#: ../src/applet/applet.c:641 ../src/applet/applet.c:713 ++#: ../src/applet/applet.c:699 + #, c-format +-msgid "Can't close notification: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:675 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" +-"\n" +-"Do you want to continue?" ++"We’re sorry, it looks like %s crashed. The problem will be reported when the " ++"internet is available." + msgstr "" ++"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ " ++"បញ្ហានេះនឹងត្រូវបានរាយការណ៍នៅពេលដែលអ៊ីនធឺណិតអាចប្រើបាន។" + +-#: ../src/applet/applet.c:753 ../src/applet/applet.c:755 +-msgid "Warning" +-msgstr "" +- +-#: ../src/applet/applet.c:803 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 ++#, c-format + msgid "" +-"Notification area applet that notifies users about issues detected by ABRT" +-msgstr "" +- +-#: ../src/applet/applet.c:819 +-msgid "translator-credits" +-msgstr "" +- +-#: ../src/applet/applet.c:827 +-msgid "_Quit" ++"We're sorry, it looks like %s crashed. Please contact the developer if you " ++"want to report the issue." + msgstr "" ++"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ " ++"សូមទាក់ទងអ្នកបង្កើតកម្មវិធីបើអ្នកចង់រាយការណ៍ពីបញ្ហានេះ។" + +-#: ../src/applet/applet.c:829 +-msgid "Hide" +-msgstr "" +- +-#: ../src/applet/applet.c:831 +-msgid "_About" +-msgstr "" +- +-#: ../src/applet/applet.c:899 +-msgid "Problem detected" +-msgstr "" +- +-#: ../src/applet/applet.c:949 +-msgid "Ignore forever" +-msgstr "" +- +-#. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:960 ../src/applet/applet.c:975 +-msgid "Open" +-msgstr "" +- +-#: ../src/applet/applet.c:965 +-msgid "The Problem has already been Reported" +-msgstr "" +- +-#: ../src/applet/applet.c:965 +-msgid "A Known Problem has Occurred" +-msgstr "" +- +-#. Problem has not yet been 'autoreported' and can be +-#. * 'autoreported' on user request. +-#: ../src/applet/applet.c:984 ../src/applet/applet.c:1019 +-msgid "Report" ++#: ../src/applet/applet.c:713 ++#, c-format ++msgid "" ++"We're sorry, it looks like %s crashed. If you'd like to help resolve the " ++"issue, please send a report." + msgstr "" ++"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ ប្រសិនបើអ្នកចង់ជួយដោះស្រាយបញ្ហានេះ, " ++"សូមផ្ញើរបាយការណ៍។" + +-#: ../src/applet/applet.c:989 +-msgid "A Problem has Occurred" ++#: ../src/applet/applet.c:732 ++msgid "" ++"We're sorry, it looks like a problem occurred in a component. The problem " ++"has been automatically reported." + msgstr "" ++"យើងសូមទោស, បញ្ហាដូចជាបានកើតឡើងនៅក្នុងផ្នែកណាមួយ។​​​​​​​​ " ++"បញ្ហានេះត្រូវបានរាយការណ៍ដោយស្វ័យប្រវត្តិ។" + +-#: ../src/applet/applet.c:1015 +-msgid "A Problem has been Reported" ++#: ../src/applet/applet.c:736 ++msgid "" ++"We're sorry, it looks like a problem occurred in a component. The problem " ++"will be reported when the internet is available." + msgstr "" ++"យើងសូមទោស, បញ្ហាដូចជាបានកើតឡើងនៅក្នុងផ្នែកណាមួយ។ " ++"បញ្ហានេះនឹងត្រូវបានរាយការណ៍នៅពេលដែលអ៊ីនធឺណិតអាចប្រើបាន។" + +-#: ../src/applet/applet.c:1023 +-msgid "A New Problem has Occurred" ++#: ../src/applet/applet.c:741 ++msgid "" ++"We're sorry, it looks like a problem occurred. If you'd like to help resolve " ++"the issue, please send a report." + msgstr "" ++"យើងសូមទោស, បញ្ហាដូចជាត្រូវបានកើតឡើង។ ប្រសិនបើអ្នកចង់ជួយដោះស្រាយបញ្ហានេះ, " ++"សូមផ្ញើរបាយការណ៍។" + +-#: ../src/applet/applet.c:1033 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" +-msgstr "" ++msgstr "មិនអាចផ្តល់ការជូនដំណឹង: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1067 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" +-msgstr "" ++msgstr "មិនអាចអានពីឆានែលgio: '%s'" + +-#: ../src/applet/applet.c:1151 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" +-msgstr "" ++msgstr "មិនអាចកំណត់ការបម្លែងកូដនៅលើឆានែលgio: '%s'" + +-#: ../src/applet/applet.c:1155 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1189 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" ++msgstr "មិនអាចបើក nonblocking mode សម្រាប់ឆានែលgio: %s" + +-#: ../src/applet/applet.c:1198 +-#, c-format +-msgid "Can't open directory for writing '%s'" ++#: ../src/applet/applet.c:1186 ++msgid "" ++"& [-v] [DIR]...\n" ++"\n" ++"Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" ++"Applet ដែលបានជូនដំណឹងអ្នកប្រើនៅពេលដែលមានបញ្ហាថ្មីត្រូវបានរកឃើញដោយ ABRT" + +-#: ../src/applet/applet.c:1481 +-#, c-format ++#: ../src/configuration-gui/abrt-config-widget.c:483 + msgid "" +-"Failed to open connection to session manager: '%s', notification may " +-"reappear on the next login" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." + msgstr "" + +-#: ../src/applet/applet.c:1622 +-msgid "" +-"& [-v] [DIR]...\n" +-"\n" +-"Applet which notifies user when new problems are detected by ABRT\n" ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "សួរមុនពេលបានយកកញ្ចប់ឯកសារ" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "ទទួលផ្ញើ uReport ដោយស្វ័យប្រវត្តិ" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "របាយការណ៍សង្ខេបឱ្យខ្លី" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "របាយការណ៍គ្មានសំលេងសង្ខេបខ្លី" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +187,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -247,30 +206,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -296,16 +267,17 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:388 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" +-"& [-v] [-c CONFFILE] -d DIR\n" ++"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:400 ++#: ../src/daemon/abrt-action-save-package-data.c:406 ++#: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 ++#: ../src/plugins/abrt-action-analyze-c.c:141 + #: ../src/plugins/abrt-action-analyze-oops.c:48 + #: ../src/plugins/abrt-action-analyze-xorg.c:84 + #: ../src/plugins/abrt-action-analyze-python.c:47 +@@ -314,123 +286,143 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:401 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:781 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 ++#: ../src/daemon/abrt-action-save-package-data.c:408 ++msgid "Use this directory as RPM root" ++msgstr "" ++ ++#: ../src/daemon/abrt-action-save-container-data.c:199 ++msgid "& [-v] -d DIR\n" ++"\n" ++"Save container metadata" ++msgstr "" ++ ++#: ../src/daemon/abrt-action-save-container-data.c:211 ++msgid "Root directory for running container commands" ++msgstr "" ++ ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:96 +-#: ../src/plugins/abrt-dump-journal-oops.c:302 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 ++#: ../src/plugins/abrt-dump-journal-core.c:477 ++#: ../src/plugins/abrt-dump-journal-oops.c:219 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 +-msgid "Can't access the problem for modification" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 ++#: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:499 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +-#: ../src/daemon/abrtd.c:451 ++#: ../src/daemon/abrtd.c:389 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" provide valuable problem reports, ABRT will not allow you to submit this " +-"problem. If you have time and want to help the developers in their effort to" +-" sort out this problem, please contact them directly." ++"detected while computer is shutting down or user is logging out. In order to " ++"provide valuable problem reports, ABRT will not allow you to submit this " ++"problem. If you have time and want to help the developers in their effort to " ++"sort out this problem, please contact them directly." + msgstr "" + +-#: ../src/daemon/abrtd.c:497 ++#: ../src/daemon/abrtd.c:457 + msgid "Do not daemonize" + msgstr "" + +-#: ../src/daemon/abrtd.c:498 ++#: ../src/daemon/abrtd.c:458 + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -460,20 +452,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:234 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:235 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:236 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:252 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:258 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:264 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:270 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-auto-reporting.c:336 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:339 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:380 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:382 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:384 ++msgid "anonymous auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -485,68 +531,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -570,16 +616,30 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -606,19 +666,21 @@ msgid "" + "and identifies crash function in problem directory DIR" + msgstr "" + ++#. + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. ++#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-c.c:67 ++#: ../src/plugins/abrt-action-analyze-c.c:130 + msgid "" + "& [-v] -d DIR\n" + "\n" +@@ -691,8 +753,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -704,12 +765,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -727,6 +820,7 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. ++#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -761,60 +855,99 @@ msgstr "" + msgid "Exiting on user command" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:88 ++#: ../src/plugins/abrt-action-install-debuginfo.in:89 + #, c-format + msgid "" +-"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" + "to CACHEDIR, using TMPDIR as temporary staging area.\n" + "Old files in CACHEDIR are deleted until it is smaller than SIZE.\n" + "\n" ++"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" ++"\n" + " -v Be verbose\n" + " -y Noninteractive, assume 'Yes' to all questions\n" + " --ids Default: build_ids\n" +-" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n" ++" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX\n" + " --cache Default: /var/cache/abrt-di\n" + " --size_mb Default: 4096\n" ++" --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" + " -e,--exact Download only specified files\n" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:169 ++#: ../src/plugins/abrt-action-install-debuginfo.in:175 + msgid "Can't open {0}: {1}" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:206 ++#: ../src/plugins/abrt-action-install-debuginfo.in:212 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:209 ++#: ../src/plugins/abrt-action-install-debuginfo.in:215 + msgid "{0} of debuginfo files are not installed" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:223 ++#: ../src/plugins/abrt-action-install-debuginfo.in:234 ++#, c-format ++msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:249 + msgid "Missing requested file: {0}" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:228 ++#: ../src/plugins/abrt-action-install-debuginfo.in:254 + msgid "Missing debuginfo file: {0}" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:231 ++#: ../src/plugins/abrt-action-install-debuginfo.in:257 + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -824,7 +957,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -840,38 +974,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:40 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:51 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:80 ++#: ../src/plugins/abrt-action-ureport:99 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:100 ++#: ../src/plugins/abrt-action-ureport:120 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:128 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:138 ++#: ../src/plugins/abrt-action-ureport:158 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:159 ++#: ../src/plugins/abrt-action-ureport:179 + msgid "Adding you to CC List of the existing bugzilla bug" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:164 ++#: ../src/plugins/abrt-action-ureport:193 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +@@ -1005,116 +1139,168 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:76 ++#: ../src/plugins/abrt-dump-oops.c:77 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:97 +-#: ../src/plugins/abrt-dump-journal-oops.c:303 ++#: ../src/plugins/abrt-dump-oops.c:98 ++#: ../src/plugins/abrt-dump-journal-oops.c:220 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#: ../src/plugins/abrt-dump-oops.c:101 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#. ++#: ../src/plugins/abrt-dump-oops.c:102 ++#: ../src/plugins/abrt-dump-journal-oops.c:224 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:102 +-#: ../src/plugins/abrt-dump-journal-oops.c:308 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:103 ++#: ../src/plugins/abrt-dump-journal-core.c:479 ++#: ../src/plugins/abrt-dump-journal-oops.c:225 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:103 ++#: ../src/plugins/abrt-dump-oops.c:104 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:104 +-#: ../src/plugins/abrt-dump-journal-oops.c:309 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:105 ++#: ../src/plugins/abrt-dump-journal-oops.c:226 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:105 +-#: ../src/plugins/abrt-dump-journal-oops.c:310 ++#: ../src/plugins/abrt-dump-oops.c:106 ++#: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:106 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:126 +-#: ../src/plugins/abrt-dump-journal-oops.c:214 ++#: ../src/plugins/abrt-dump-oops.c:127 ++#: ../src/plugins/abrt-dump-journal-oops.c:128 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:185 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:43 +-msgid "Cannot read journal data." ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + +-#. Only notice because this is expected +-#: ../src/plugins/abrt-dump-journal-oops.c:125 +-#, c-format +-msgid "Not restoring journal watch's position: file '%s' does not exist" ++#: ../src/plugins/abrt-dump-journal-core.c:341 ++#: ../src/plugins/abrt-dump-journal-core.c:377 ++msgid "Failed to obtain all required information from journald" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:129 ++#. We don't want to update the counter here. ++#: ../src/plugins/abrt-dump-journal-core.c:401 + #, c-format +-msgid "Cannot restore journal watch's position form file '%s'" ++msgid "Not saving repeating crash after %ds (limit is %ds)" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:135 +-#, c-format +-msgid "Cannot restore journal watch's position: path '%s' is not regular file" ++#: ../src/plugins/abrt-dump-journal-core.c:407 ++msgid "Failed to save detect problem data in abrt database" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:141 +-#, c-format ++#: ../src/plugins/abrt-dump-journal-core.c:427 ++#: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 ++msgid "Failed to initialize systemd-journal watch" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:447 + msgid "" +-"Cannot restore journal watch's position: file '%s' exceeds %dB size limit" ++"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" ++"\n" ++"Extract coredumps from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in " + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:149 +-#, c-format +-msgid "Cannot restore journal watch's position: open('%s')" ++#: ../src/plugins/abrt-dump-journal-core.c:478 ++msgid "Create new problem directory in DIR for every coredump" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:158 +-#, c-format +-msgid "Cannot restore journal watch's position: cannot read entire file '%s'" ++#: ../src/plugins/abrt-dump-journal-core.c:480 ++#: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 ++msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + +-#. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-dump-journal-oops.c:170 +-#, c-format +-msgid "Failed to move the journal to a cursor from file '%s'" ++#: ../src/plugins/abrt-dump-journal-core.c:481 ++#: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 ++msgid "Start reading systemd-journal from the end" + msgstr "" + +-#. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-dump-journal-oops.c:185 +-msgid "Cannot save journal watch's position" ++#: ../src/plugins/abrt-dump-journal-core.c:482 ++msgid "Throttle problem directory creation to 1 per INT second" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:483 ++msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:484 ++#: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 ++msgid "Follow systemd-journal from the last seen position (if available)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:495 ++#: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 ++msgid "You need to specify either -c CURSOR or -e" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:541 ++#: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 ++msgid "Cannot open systemd-journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:544 ++msgid "Cannot filter systemd-journal to systemd-coredump data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 ++msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:195 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format +-msgid "Cannot save journal watch's position: open('%s')" ++msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:251 +-msgid "Failed to initialize systemd-journal watch" ++#: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 ++msgid "Cannot read journal data." + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:272 ++#: ../src/plugins/abrt-dump-journal-oops.c:186 + msgid "" + "& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" + "\n" +@@ -1128,59 +1314,144 @@ msgid "" + "The last seen position is saved in " + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:311 +-msgid "Start reading systemd-journal from the CURSOR position" ++#: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 ++msgid "Read journal files from all machines" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:312 +-msgid "Start reading systemd-journal from the end" ++#: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 ++msgid "Read all journal files from directory at PATH" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:313 +-msgid "Follow systemd-journal from the last seen position (if available)" ++#: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 ++#, c-format ++msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:327 +-msgid "You need to specify either -c CURSOR or -e" ++#: ../src/plugins/abrt-dump-journal-oops.c:288 ++msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:356 +-msgid "Cannot open systemd-journal" ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 ++#, c-format ++msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:359 +-msgid "Cannot filter systemd-journal to kernel data only" ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:362 +-msgid "Cannot seek to the end of journal" ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:369 +-#, c-format +-msgid "Failed to start watch from cursor '%s'" ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:378 +-#, c-format +-msgid "Failed to set systemd-journal cursor '%s'" ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ ++#. abrt_journal_set_cursor() prints error message in verbose mode ++#: ../src/plugins/abrt-journal.c:274 ++msgid "Cannot save journal watch's position" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:284 ++#, c-format ++msgid "Cannot save journal watch's position: open('%s')" ++msgstr "" ++ ++#. Only notice because this is expected ++#: ../src/plugins/abrt-journal.c:302 ++#, c-format ++msgid "Not restoring journal watch's position: file '%s' does not exist" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:304 ++#, c-format ++msgid "Cannot restore journal watch's position form file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:311 ++#, c-format ++msgid "Cannot restore journal watch's position: path '%s' is not regular file" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:317 ++#, c-format ++msgid "" ++"Cannot restore journal watch's position: file '%s' exceeds %dB size limit" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:325 ++#, c-format ++msgid "Cannot restore journal watch's position: open('%s')" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:334 ++#, c-format ++msgid "Cannot restore journal watch's position: cannot read entire file '%s'" ++msgstr "" ++ ++#. abrt_journal_set_cursor() prints error message in verbose mode ++#: ../src/plugins/abrt-journal.c:346 ++#, c-format ++msgid "Failed to move the journal to a cursor from file '%s'" ++msgstr "" ++ + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " +@@ -1189,12 +1460,19 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: ++#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 + msgid "Can't create temporary file in " + msgstr "" + ++#: ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/plugins/abrt-retrace-client.c:168 ++#, c-format ++msgid "Can't execute '%s'" ++msgstr "" ++ + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 + #: ../src/plugins/abrt-retrace-client.c:677 +@@ -1211,8 +1489,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1011 + #: ../src/plugins/abrt-retrace-client.c:1070 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1281,8 +1558,8 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:628 + #, c-format + msgid "" +-"The size of your archive is %s, but the retrace server only accepts archives" +-" smaller or equal to %s." ++"The size of your archive is %s, but the retrace server only accepts archives " ++"smaller or equal to %s." + msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:640 +@@ -1343,8 +1620,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:808 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1354,8 +1630,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:878 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1471,8 +1746,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1481,11 +1756,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1506,9 +1781,9 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1596,133 +1871,140 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +-#: ../src/plugins/oops-utils.c:71 ++#: ../src/plugins/oops-utils.c:73 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:205 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:210 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:225 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:233 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1740,114 +2022,126 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:127 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:66 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1856,24 +2150,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +@@ -1886,8 +2335,8 @@ msgid "" + "user doesn't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1944,8 +2393,8 @@ msgstr "" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:3 + msgid "" +-"Checks if there are .vimrc and .gvimrc in your home directory and saves them" +-" as user_vimrc and user_gvimrc, respectively." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/kn.po b/po/kn.po +index c122d05..a202a7f 100644 +--- a/po/kn.po ++++ b/po/kn.po +@@ -14,7 +14,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -24,7 +24,7 @@ msgstr "" + "language/kn/)\n" + "Language: kn\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -34,103 +34,103 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ನ ಮಾಲಿಕತ್ವವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "ಕೋಶವನ್ನು '%s' ಬರೆಯುವ ಸಲುವಾಗಿ ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ " + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "ಸೂಚನೆಯನ್ನು ಮುಚ್ಚಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "ವರದಿ" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "ಸೂಚನೆಯನ್ನು ತೋರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio ಮಾರ್ಗದಿಂದ ಓದಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ಚಾನಲ್‌ನಲ್ಲಿ ಎನ್ಕೋಡಿಂಗ್ ಅನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + "gio ಚಾನಲ್‌ಗಾಗಿ ಬ್ಲಾಕಿಂಗ್ ಸ್ಥಿತಿಯಲ್ಲದ ಕ್ರಮವನ್ನು ಆನ್ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -140,6 +140,17 @@ msgstr "" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "ಕೋಶವನ್ನು ಕಸಿದುಕೊಳ್ಳುವ ಮೊದಲು ಕೇಳು" +@@ -161,13 +172,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"ಕೋರ್‌ಡಂಪ್ ಕಡತವು ಸ್ಟಾಕ್‌ ಟ್ರೇಸ್ ಅನ್ನು ರಚಿಸಲು ಅಗತ್ಯವಿರುತ್ತದೆ ಆದರೆ ಇದಕ್ಕಾಗಿ " +-"ಹೆಚ್ಚಿನ ಸಮಯ ಹಾಗು ಸ್ಥಳವು ಬೇಕಿರುತ್ತದೆ. ABRT ಯು ಕೋರ್‌ಡಂಪ್‌ನಿಂದ ಸ್ಟಾಕ್‌ ಟ್ರೇಸ್ " +-"ಅನ್ನು ಉತ್ಪಾದಿಸುವ ಒಂದು ಸೇವೆಯನ್ನು ಒದಗಿಸುತ್ತದೆ ಆದರೆ ಈ ಸೇವೆಗಾಗಿ ನೀವು ಕೋರ್‌ಡಂಪ್ " +-"ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡಬೇಕಿರುತ್ತದೆ. ಈ ಆಯ್ಕೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT " +-"ನಿಮ್ಮನ್ನು ಕೇಳದೆ ಕೋರ್‌ಡಂಪ್ ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡುತ್ತದೆ." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -215,10 +223,6 @@ msgstr "" + "ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದಲ್ಲಿ ಮಾತ್ರ ಕಾರ್ಯರೂಪಕ್ಕೆ ಬರುತ್ತದೆ." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "ಕೋರ್‌ಡಂಪ್ ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡುವ ಮೊದಲು ನನ್ನನ್ನು ಕೇಳು" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -226,15 +230,15 @@ msgstr "" + "ಈ ಆಯ್ಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT ಯು, ಸೂಕ್ಷ್ಮಸಂವೇದಿ ಮಾಹಿತಿಯು ಕಂಡುಬಂದಲ್ಲಿ " + "ಯಾವಾಗಲೂ ಸಹ ನಿರ್ಬಂಧಿತ ನಿಲುಕನ್ನು ಹೊಂದಿರುವ ದೋಷದ ಟಿಕೆಟ್ ಅನ್ನು ರಚಿಸುತ್ತದೆ." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "ಸೂಕ್ಷ್ಮಸಂವೇದಿ ಮಾಹಿತಿಗಾಗಿ ಖಾಸಗಿ ಟಿಕೆಟ್‌ಗಾಗಿನ ಮನವಿ" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "ಅಪೂರ್ಣವಾದ ಸಮಸ್ಯೆಗಳನ್ನು ಸೂಚಿಸು" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -244,6 +248,22 @@ msgstr "" + "ಸಮಸ್ಯೆಗಲು ಕಂಡುಬರಬಹುದು. ಮೌಲ್ಯಯುತವಾದ ಸಮಸ್ಯೆಯ ವರದಿಗಳನ್ನು ಒದಗಿಸಲು, ABRT ಈ " + "ಸಮಸ್ಯೆಗಳನ್ನು ಸಲ್ಲಿಸಲು ನಿಮಗೆ ಅನುಮತಿಸುವುದಿಲ್ಲ." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "ಮುಚ್ಚು (_C)" +@@ -269,14 +289,14 @@ msgstr "ಕುರಿತು" + msgid "Quit" + msgstr "ನಿರ್ಗಮಿಸು" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -288,11 +308,11 @@ msgstr "" + msgid "Problem directory" + msgstr "ತೊಂದರೆಯ ಕೋಶ" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "ಸಂರಚನಾ ಕಡತ" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -306,24 +326,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [ಆಯ್ಕೆಗಳು]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM ಅನ್ನು ಕ್ಲೈಂಟ್ uid ಆಗಿ ಬಳಸು" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog ಗೆ ದಾಖಲಿಸು" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "ಪ್ರೊಗ್ರಾಮ್‌ನ ಹೆಸರುಗಳನ್ನು ದಾಖಲೆಗೆ ಸೇರಿಸು" + +@@ -331,62 +352,52 @@ msgstr "ಪ್ರೊಗ್ರಾಮ್‌ನ ಹೆಸರುಗಳನ್ನು + msgid "Unknown error" + msgstr "ಗೊತ್ತಿರದ ದೋಷ" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' ಎನ್ನುವುದು ಒಂದು ಮಾನ್ಯವಾದ ತೊಂದರೆಯ ಕೋಶವಾಗಿಲ್ಲ" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' ಎನ್ವುವುದು ಒಂದು ಮಾನ್ಯವಾದ ಘಟಕದ ಹೆಸರಾಗಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' ಘಟಕವನ್ನು ಮಾರ್ಪಡಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' ಎನ್ನುವುದು ಒಂದು ಮಾನ್ಯವಾದ ತೊಂದರೆಯ ಕೋಶವಾಗಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "ಅಧಿಕಾರವಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "ಮಾರ್ಪಡಿಸುವ ಸಲುವಾಗಿ ತೊಂದರೆಯನ್ನು ತಲುಪಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' ಘಟಕವನ್ನು ಮಾರ್ಪಡಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "ಕೋಶವನ್ನು chown ಮಾಡುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ. ಹೆಚ್ಚಿನ ವಿವರಗಳಿಗಾಗಿ ವ್ಯವಸ್ಥೆಯ " + "ದಾಖಲೆಗಳನ್ನು ಪರಿಶೀಲಿಸಿ." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' ಎನ್ವುವುದು ಒಂದು ಮಾನ್ಯವಾದ ಘಟಕದ ಹೆಸರಾಗಿಲ್ಲ" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' ಗಾತ್ರವನ್ನು ಪಡೆಯಲಾಗಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "ಯಾವುದೆ ತೊಂದರೆ ಸ್ಥಳವು ಉಳಿದಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "'%s' ಘಟಕವನ್ನು '%s' ತೊಂದರೆಯ ಕೋಶದಿಂದ ಅಳಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -396,12 +407,12 @@ msgstr "" + "'%s' ಎಂಬ ಹೆಸರು ಕಾಣೆಯಾಗಿದೆ, ಇದೇ ಹೆಸರಿನ ಇನ್ನೊಂದು ಸೇವೆಯು ಚಾಲನೆಯಲ್ಲಿಲ್ಲವೆ ಎಂದು " + "ಪರೀಕ್ಷಿಸಿ.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM ಸೆಕೆಂಡುಗಳ ನಿಷ್ಕ್ರಿಯತೆಯ ನಂತರ ನಿರ್ಗಮಿಸು" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ಈ ಪ್ರೊಗ್ರಾಮ್ ಅನ್ನು ನಿರ್ವಾಹಕರಾಗಿ ಚಲಾಯಿಸಬೇಕು." + +@@ -427,18 +438,22 @@ msgstr "ಡೆಮನ್‌ ಆಗಿ ಮಾಡಬೇಡ" + msgid "Log to syslog even with -d" + msgstr "-d ಯೊಂದಿಗೂ ಸಹ syslog ಗೆ ದಾಖಲಿಸಿ" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR ನಲ್ಲಿ EVENT ಅನ್ನು ಚಲಾಯಿಸಿ" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "ಬಳಕೆದಾರರೊಂದಿಗೆ ನೇರವಾಗಿ ವ್ಯವಹರಿಸು" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -479,89 +494,90 @@ msgstr "ಏಕಕಾಲದ ಕೆಲಸಗಾರರ ಸಂಖ್ಯೆ. ಪೂ + msgid "Maximal cache size in MiB. Default is " + msgstr "ಕ್ಯಾಶೆಯ ಗರಿಷ್ಟ ಗಾತ್ರ, MiB ಯಲ್ಲಿ. ಪೂರ್ವನಿಯೋಜಿತವು ಹೀಗಿದೆ" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "ದೃಢೀಕರಣವನ್ನು ಆಫ್ ಮಾಡುತ್ತದೆ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat ಸಪೋರ್ಟ್‌ನ ಬಳಕೆದಾರ ಹೆಸರು" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat ಸಪೋರ್ಟ್‌ಗಾಗಿನ ಗುಪ್ತಪದ, ನೀಡಲಾಗಿರದೆ ಇದ್ದರೆ, ಒಂದು ಪ್ರಾಂಪ್ಟ್ ಅನ್ನು " + "ನೀಡಲಾಗುತ್ತದೆ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL ಪ್ರಮಾಣಪತ್ರದ ಮಾರ್ಗಗಳು ಅಥವ ಪ್ರಮಾಣಪತ್ರದ ಬಗೆ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "--password ಕ್ಕಾಗಿ ನೀವು --username ಅನ್ನೂ ಸಹ ಒದಗಿಸಬೇಕು" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "ನೀವು --username ಮತ್ತು --certificate ನಲ್ಲಿ ಒಂದನ್ನು ಬಳಸಬಹುದು" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "ನೀವು --username ಮತ್ತು --anonymous ನಲ್ಲಿ ಒಂದನ್ನು ಬಳಸಬಹುದು" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "ನೀವು --anonymous ಮತ್ತು --certificate ನಲ್ಲಿ ಒಂದನ್ನು ಬಳಸಬಹುದು" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "ಅಮಾನ್ಯವಾದ ಆರ್ಗ್ಯುಮೆಂಟ್‌ಗಳ ಸಂಖ್ಯೆ" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "ಗೊತ್ತಿರದ ಆಯ್ಕೆ ಮೌಲ್ಯ: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "ಗುಪ್ತಪದ:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "ಗುಪ್ತಪದವಿಲ್ಲದೆ ಮುಂದುವರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP ಯು ಸ್ವಯಂ ವರದಿ ಮಾಡುವಿಕೆಯನ್ನು ದೃಢೀಕರಿಸಿದೆ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL ಕ್ಲೈಂಟ್‌ ಸ್ವಯಂ ವರದಿ ಮಾಡುವಿಕೆಯನ್ನು ದೃಢೀಕರಿಸಿದೆ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "ಅನಾಮಧೇಯವಾಗಿ ಸ್ವಯಂ ವರದಿ ಮಾಡುವಿಕೆ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -582,83 +598,83 @@ msgstr "" + " FILENAME - ಅಪ್‌ಲೋಡ್ ಆರ್ಕೈವ್‌ ಕಡತದ ಹೆಸರು\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "ಒಂದು ಕೋಶವಲ್ಲ: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಅಡ್ಡಗೆರೆಯಿಂದ ಆರಂಭಗೊಳ್ಳುತ್ತದೆ)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಚುಕ್ಕಿಯಿಂದ ಆರಂಭಗೊಳ್ಳುತ್ತದೆ)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (.. ಅನ್ನು ಹೊಂದಿದೆ)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಖಾಲಿಸ್ಥಳವನ್ನು ಹೊಂದಿದೆ)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಟ್ಯಾಬ್ ಅನ್ನು ಹೊಂದಿದೆ)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "ಕೋಶವನ್ನು '{0}' ಗೆ ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "ಗೊತ್ತಿರದ ಕಡತದ ಬಗೆ: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' ನಲ್ಲಿ ಕೆಲಸ ಕೋಶವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' ಅನ್ನು '{1}' ಗೆ ಸ್ಥಳಾಂತರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' ಅನ್ನು '{1}' ಗೆ ಪ್ರತಿಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' ನಲ್ಲಿ ಪರಿಶೀಲನಾ ದೋಷ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' ಅನ್ನು ಅನ್‌ಪ್ಯಾಕ್‌ ಮಾಡಲಾಗುತ್ತಿದೆ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ನಲ್ಲಿ ಕೋಶವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' ಅನ್ನು ಹೊರತೆಗೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' ಅನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಸಂಸ್ಕರಿಸಲಾಗಿದೆ" + +@@ -682,18 +698,26 @@ msgstr "'%s' ಅನ್ನು chown ಮಾಡಲಾಗಿಲ್ಲ: %s" + msgid "Deleting problem directory failed: %s" + msgstr "ತೊಂದರೆಯ ಕೋಶವನ್ನು ಅಳಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ದತ್ತಾಂಶವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ಪಟ್ಟಿಯನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ದತ್ತಾಂಶವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -742,7 +766,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s ಗಾಗಿ ಬ್ಯಾಕ್‌ಟ್ರೇಸ್ ಪಾರ್ಸಿಂಗ್ ವಿಫಲಗೊಂಡಿದೆ" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "ಕುಸಿತದ ಎಳೆಯು (ತ್ರೆಡ್‌) ಕಂಡುಬಂದಿಲ್ಲ" + +@@ -850,7 +874,7 @@ msgstr "ಸಂದೇಶವನ್ನು ಹೊರತೆಗೆಯಲು ಸಾಧ + msgid "Oops text extracted successfully" + msgstr "Oops ಪಠ್ಯವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಹೊರತೆಗೆಯಲಾಗಿದೆ" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -858,6 +882,38 @@ msgstr "" + "ಯಂತ್ರಾಂಶ ದೋಷಗಳು ಕಂಡುಬಂದಿವೆ ಎಂದು ಕರ್ನಲ್ ಲಾಗ್ ಸೂಚಿಸಿದೆ.\n" + "ಇದು ಬಹುಷಃ ತಂತ್ರಾಂಶದ ತೊಂದರೆಯಾಗಿಲ್ಲ.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -975,7 +1031,36 @@ msgstr "debuginfo ಕಡತವು ಕಾಣಿಸುತ್ತಿಲ್ಲ: {0}" + msgid "All debuginfo files are available" + msgstr "debuginfo ಕಡತಗಳಿಗಾಗಿ ಪ್ಯಾಕೇಜುಗಳನ್ನು ಪತ್ತೆ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -985,7 +1070,7 @@ msgstr "" + "ನಿಮ್ಮ ಉತ್ತರವು 'ಇಲ್ಲ' ಆಗಿದ್ದಲ್ಲಿ, ಸ್ಥಳೀಯವಾಗಿ ಒಂದು ಸ್ಟ್ಯಾಕ್ ಟ್ರೇಸ್‌ ಅನ್ನು " + "ಉತ್ಪಾದಿಸಲಾಗುತ್ತದೆ. (ಇದು ದೊಡ್ಡ ಮೊತ್ತದ ದತ್ತಾಂಶವನ್ನು ಇಳಿಸಿಕೊಳ್ಳಬಹುದು)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1227,7 +1312,8 @@ msgstr "ಕಂಡುಬಂದ ಪ್ರತಿಯೊಂದು oops ಗೂ ಸಹ + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation ನಂತೆಯೆ, abrt.conf ನಲ್ಲಿ DumpLocation ಅನ್ನು ಸೂಚಿಸಲಾಗಿರುತ್ತದೆ" +@@ -1238,16 +1324,18 @@ msgstr "ಹೊರತೆಗೆಯಲಾದ ಮಾಹಿತಿಯನ್ನು PROB + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "ದೋಷದ ಕೋಶವನ್ನು ಜಗತ್ತು ಓದುವ ರೀತಿಯಲ್ಲಿ ಮಾಡಿ" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "ತೊಂದರೆ ಕೋಶದ ರಚನೆಯು ಪ್ರತಿ ಸೆಕೆಂಡಿಗೆ 1 ಇರುವಂತೆ ಹತೋಟಿಯಲ್ಲಿಡು" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "ಹುಡುಕು ವಾಕ್ಯಾಂಶವನ್ನು(ಗಳನ್ನು) stdout ಗೆ ಮುದ್ರಿಸು ಮತ್ತು ನಿರ್ಗಮಿಸು" + +@@ -1257,10 +1345,13 @@ msgstr "ಹುಡುಕು ವಾಕ್ಯಾಂಶವನ್ನು(ಗಳನ್ + msgid "Failed to compile regex" + msgstr "regex ಅನ್ನು ಕಂಪೈಲ್ ಮಾಡಲು ವಿಫಲಗೊಂಡಿದೆ" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" +-"ತೊಂದರೆಯನ್ನು ಅಪ್‌ಡೇಟ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ; ಒಂದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ oops ಕಂಡುಬಂದಿದೆ" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1279,6 +1370,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1302,11 +1394,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1320,16 +1414,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1337,18 +1434,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1367,14 +1467,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1383,12 +1486,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1398,58 +1547,62 @@ msgstr "" + "\n" + "Xorg ಕುಸಿತವನ್ನು FILE (ಅಥವ ಶಿಷ್ಟವಾದ ಇನ್‌ಪುಟ್‌) ಇಂದ ಹೊರತೆಗೆ" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "ಕಂಡು ಬಂದ ಕುಸಿತದ ದತ್ತಾಂಶವನ್ನು ಶಿಷ್ಟವಾದ ಔಟ್‌ಪುಟ್‌ಗೆ ಮುದ್ರಿಸು" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "ಕಂಡುಬಂದ ಪ್ರತಿಯೊಂದು oops ಗೂ ಸಹ DIR ಯಲ್ಲಿ ಕುಸಿತ ಕೋಶವನ್ನು ರಚಿಸು" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1991,7 +2144,7 @@ msgstr "NSS ಅನ್ನು ಸ್ಥಗಿತಗೊಳಿಸಲು ವಿಫಲ + msgid "Sleeping for %d seconds" + msgstr "%d ಸೆಕೆಂಡುಗಳವರೆಗೆ ಜಡವಾಗಿರುತ್ತದೆ" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1999,7 +2152,7 @@ msgstr "" + "ಹಾಳಾಗಿರುವ BIOS ಕಾರಣದಿಂದಾಗಿ ಒಂದು ಕರ್ನಲ್ ತೊಂದರೆ ಕಾಣಿಸಿಕೊಂಡಿದೆ. ದುರದೃಷ್ಟವಶಾತ್, " + "ಆ ತೊಂದರೆಗಳನ್ನು ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕಗಳಿಂದ ಸರಿಪಡಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2007,7 +2160,7 @@ msgstr "" + "ಕರ್ನಲ್ ತೊಂದರೆ ಉಂಟಾಗಿದೆ, ಆದರೆ ನಿಮ್ಮ ಯಂತ್ರಾಂಶವು ಬೆಂಬಲಿಸುವುದಿಲ್ಲ, ಆದ್ದರಿಂದ ಆ " + "ತೊಂದರೆಗಳನ್ನು ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕಗಳಿಂದ ಸರಿಪಡಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2016,24 +2169,24 @@ msgstr "" + "ಒಂದು ಕರ್ನಲ್ ತೊಂದರೆ ಎದುರಾಗಿದೆ, ಆದರೆ ಕರ್ನಲ್‌ಗೆ ಸೋಂಕು ಹಿಡಿದಿದೆ (flags:%s). " + "ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕರಿಂದ ಸೋಂಕು ವರದಿಗಳನ್ನು ತಪಾಸಣೆ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " ಪರವಾನಗಿ ಸರಿ ಇರದ ಮಾಡ್ಯೂಲ್‌ಗಳು: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "ದೋಷದ idಗಳ ಪಟ್ಟಿ" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "ಒಂದು ಬೋಧಿ ಪೂರೈಕೆಗಣಕ url ಅನ್ನು ಸೂಚಿಸಿ" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "ಒಂದು ಬಿಡುಗಡೆಯನ್ನು ಸೂಚಿಸಿ" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2043,22 +2196,22 @@ msgstr "" + "\n" + "ಬೋಧಿ ಪೂರೈಕೆಗಣಕದಲ್ಲಿ ಅಪ್‌ಡೇಟ್‌ಗಳಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "ಅಪ್‌ಡೇಟ್‌ಗಳಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "ಈ ಪ್ಯಾಕೇಜಿಗೆ ಯಾವುದೆ ಅಪ್‌ಡೇಟ್‌ಗಳಿಲ್ಲ" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "ಪ್ಯಾಕೇಜಿನ ಸ್ಥಳೀಯ ಆವೃತ್ತಿಯು ಲಭ್ಯವಿರುವ ಅಪ್‌ಡೇಟ್‌ನ ಇತ್ತೀಚಿನ ಆವೃತ್ತಿಗಿಂತ " + "ಹೊಸತಾಗಿದೆ" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2087,69 +2240,70 @@ msgstr "ಕಂಡುಬಂದ oopses ಅನ್ನು ಮುದ್ರಿಸು" + msgid "Delete files with found oopses" + msgstr "ಕಂಡುಬಂದ oopses ಗಳಿಂದ ಕಡತಗಳನ್ನು ಅಳಿಸು" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ಒಂದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ ತೊಂದರೆ ಕೋಶವನ್ನು ಗುರುತಿಸುತ್ತದೆ" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "ಬಳಕೆ: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "ತೊಂದರೆಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡು [DIR ಗಳಲ್ಲಿ]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "ತೊಂದರೆಯ ಕೋಶ DIR ಅನ್ನು ತೆಗೆದುಹಾಕು" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "ತೊಂದರೆಯ ಮಾಹಿತಿಯನ್ನು DIR ನಲ್ಲಿ ವಿಶ್ಲೇಷಿಸು ಹಾಗು ವರದಿ ಮಾಡು" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR ಬಗೆಗಿನ ಮಾಹಿತಿಯನ್ನು ಮುದ್ರಿಸು" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "ಇತ್ತೀಚಿನ ಕ್ರಾಶ್‌ಗಳ ಎಣಿಕೆಯನ್ನು ಮುದ್ರಿಸಲಾಗುತ್ತಿದೆ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "ಅನೇಕ ತೊಂದರೆಗಳನ್ನು ಸಂಸ್ಕರಿಸಿ" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ 'abrt-cli COMMAND --help' ಅನ್ನು ನೋಡಿ" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "ವರದಿ-ಮಾಡದೆ ಇರುವ ತೊಂದರೆಗಳನ್ನು ಮಾತ್ರ ಪಟ್ಟಿ ಮಾಡು" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "ವಿವರವಾದ ವರದಿಯನ್ನು ತೋರಿಸು" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಅತ್ಯಂತ ಇತ್ತೀಚಿನ ತೊಂದರೆಯ ಎಣಿಕೆ ಪಟ್ಟಿಯನ್ನು ಮಾತ್ರ " + "ತೋರಿಸು" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಹಳೆಯ ತೊಂದರೆಯ ಎಣಿಕೆ ಪಟ್ಟಿಯನ್ನು ಮಾತ್ರ ತೋರಿಸು" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2160,57 +2314,67 @@ msgstr "" + "ಅಧಿಕಾರಗಳನ್ನು ಹೊಂದಿರುವ ಬಳಕೆದಾರರ\n" + "ಮೂಲಕ 'abrt-auto-reporting enabled' ಅನ್ನು ಚಲಾಯಿಸುವ ಮೂಲಕ ಇದನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "ಇದಕ್ಕಿಂತ ದೊಡ್ಡದಾದ ಪಠ್ಯವನ್ನು ಸಂಕ್ಷೇಪವಾಗಿ ತೋರಿಸಲಾಗುತ್ತದೆ" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "ಅಂತಹ ಯಾವುದೆ ತೊಂದರೆ ಕೋಶ'%s' ಇಲ್ಲ" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "ಯಾವುದೆ ಸಂದೇಶವಿಲ್ಲದೆ ಕೇವಲ ತೊಂದರೆಯ ಎಣಿಕೆಯನ್ನು ಮಾತ್ರ ಮುದ್ರಿಸು" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಅತ್ಯಂತ ಇತ್ತೀಚಿನ ತೊಂದರೆಯ ಎಣಿಕೆಯನ್ನು ಮಾತ್ರ " + "ಮುದ್ರಿಸು" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT ಗೆ %u ತೊಂದರೆ(ಗಳು) ಕಂಡುಬಂದಿದೆ. (ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ ಇದನ್ನು ಚಲಾಯಿಸಿ: abrt-" + "cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' ಅನ್ನು ಅಳಿಸಲಾಗುತ್ತಿದೆ" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "ಮತ್ತು ವರದಿ [ಆಯ್ಕೆಗಳು] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "ವರದಿ ಮಾಡಿದ ನಂತರ PROBLEM_DIR ಅನ್ನು ತೆಗೆದುಹಾಕು" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' ಅನ್ನು ಅಳಿಸಲಾಗುತ್ತಿದೆ" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "ಕ್ರಿಯೆಗಳು: remove(rm), info(i), skip(s):" +@@ -2221,28 +2385,183 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "ಕ್ರಿಯೆಗಳು: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' ಅನ್ನು ವರದಿ ಮಾಡಲಾಗುತ್ತಿದೆ" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "ಮುಂದಿನ ಸಮಸ್ಯೆಗಾಗಿ ENTER ಅನ್ನು ಒತ್ತಿ:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "--since ಆರ್ಗ್ಯುಮೆಂಟ್ ಇಲ್ಲದೆ, ಅಳಿಸಲಾದ ಎಲ್ಲಾ ಸಮಸ್ಯೆಗಳ ಮೇಲೆ ಪುನರಾವರ್ತಿಸುತ್ತದೆ." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "ಈ ಸಮಯಮುದ್ರೆಯ ನಂತರ ಕಂಡುಬಂದ ಸಮಸ್ಯೆಗಳನ್ನು ಮಾತ್ರ ಆರಿಸು" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ko.po b/po/ko.po +index 340ca29..ab62425 100644 +--- a/po/ko.po ++++ b/po/ko.po +@@ -9,126 +9,127 @@ + # Jiří Moskovčák , 2011 + # , 2011-2012 + # , 2011-2012, 2013 ++# MinWoo Joh , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-10-06 07:45-0400\n" +-"Last-Translator: Jakub Filak \n" ++"PO-Revision-Date: 2015-07-30 11:38-0400\n" ++"Last-Translator: MinWoo Joh \n" + "Language-Team: Korean (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ko/)\n" + "Language: ko\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "문제 보고" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "애플리케이션 충돌을 확인 및 보고합니다" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s'의 소유 권한을 갖을 수 없음 " + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s'을 작성하기 위해 디렉토리를 열 수 없습니다 " + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "통지를 종료할 수 없음: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "보고 " + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" +-msgstr "" ++msgstr "재시작" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." +-msgstr "" ++msgstr "죄송합니다. %s 가 충돌했습니다. 문제는 자동으로 보고됩니다." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." +-msgstr "" ++msgstr "죄송합니다. %s 가 충돌했습니다. 인터넷 연결이 활성화되면 문제는 자동으로 보고됩니다." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." +-msgstr "" ++msgstr "죄송합니다. %s 가 충돌했습니다. 문제를 보고하려면 개발자에게 문의하십시오." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." +-msgstr "" ++msgstr "죄송합니다. %s 가 충돌했습니다. 문제 보고서를 전송하시면, 문제 해결에 도움이 됩니다." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +-msgstr "" ++msgstr "죄송합니다. 내부 구성에 문제가 발생하였습니다. 문제는 자동으로 보고되었습니다." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +-msgstr "" ++msgstr "죄송합니다. 내부 구성에 문제가 발생하였습니다. 인터넷 연결이 활성화되면 문제는 자동으로 보고됩니다." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +-msgstr "" ++msgstr "죄송합니다. 문제가 발생했습니다. 문제 보고서를 전송하시면, 문제 해결에 도움이 됩니다." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "통지를 표시할 수 없음: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio 채널에서 읽을 수 없음: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio 채널에서 인코딩을 설정할 수 없음: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio 채널의 비 차단 모드를 활성화할 수 없습니다: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -137,6 +138,17 @@ msgstr "& [-v] [DIR]...\n" + "\n" + "ABRT가 새로운 문제를 감지할 경우 사용자에게 통지하는 애플릿\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -157,17 +169,15 @@ msgstr "단축형 보고서 " + msgid "Silent shortened reporting" + msgstr "자동 단축형 보고서 " + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"코어 덤프 파일은 시간 및 공간을 많이 사용하는 작업인 스택 트레이스 생성에 필요합니다. ABRT는 코어덤프에서 스택 트레이스를 생성하는 " +-"서비스를 제공하지만 이 서비스에 코어 덤프를 업로드해야 합니다. 이 옵션을 사용하지 않으면 ABRT는 묻지 않고 코어 덤프를 업로드합니다." +-" " + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -208,29 +218,24 @@ msgid "" + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "이 옵션을 사용하면 ABRT는 보고된 문제에 대해 알림을 표시하지 않습니다. 단축형 보고가 유효한 경우에만 실행됩니다. " + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "coredump를 업로드하기 전 묻습니다 " +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +-msgstr "" ++msgstr "이 옵션이 적용되면 ABRT는 민감한 데이터가 감지되었을 경우 항상 엑세스가 제한된 버크 티켓을 생성합니다." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "민감한 정보에 대해 비공개 티켓을 요청합니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "완료하지 않은 문제를 알려줍니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -239,6 +244,22 @@ msgstr "" + "컴퓨터 종료시 또는 사용자 로그 아웃 시에 완료하지 않은 문제가 감지되었습니다. 정확한 문제 보고서를 제출하기 위해 ABRT는 이러한 " + "문제에 대해 보고 허용하지 않습니다." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" +@@ -270,14 +291,17 @@ msgstr "ABRT에 대해 " + msgid "Quit" + msgstr "종료 " + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" ++"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" ++"\n" ++"패키지 데이터베이스를 쿼리하고 패키지 및 구성요소의 이름을 저장합니다." + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -289,42 +313,45 @@ msgstr "" + msgid "Problem directory" + msgstr "문제가 있는 디렉토리 " + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "설정 파일 " + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" +-msgstr "" ++msgstr "이 디렉토리를 RPM Root로 사용합니다." + + #: ../src/daemon/abrt-action-save-container-data.c:199 + msgid "& [-v] -d DIR\n" + "\n" + "Save container metadata" +-msgstr "" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"저장소의 메타데이터를 저장합니다." + + #: ../src/daemon/abrt-action-save-container-data.c:211 + msgid "Root directory for running container commands" +-msgstr "" ++msgstr "저장소 명령을 실행하기 위한 루트 디렉토리" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM을 클라이언트 uid로 사용 " + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog에 로그 " + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "로그에 프로그램 이름 추가 " + +@@ -332,60 +359,50 @@ msgstr "로그에 프로그램 이름 추가 " + msgid "Unknown error" + msgstr "알 수 없는 오류" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s'는 유효한 문제 디렉토리가 아닙니다" ++msgid "'%s' is not a valid element name" ++msgstr "'%s'은 유효한 요소 이름이 아닙니다 " + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' 요소를 수정할 수 없습니다 " ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s'는 유효한 문제 디렉토리가 아닙니다" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "권한이 없습니다 " + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "수정하기 위해 문제에 액세스할 수 없습니다 " +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "디렉토리의 소유자 변경에 실패했습니다. 보다 자세한 내용은 시스템 로그를 확인하십시오. " +- +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s'은 유효한 요소 이름이 아닙니다 " ++msgid "'%s' element can't be modified" ++msgstr "'%s' 요소를 수정할 수 없습니다 " ++ ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." ++msgstr "디렉토리의 소유자 변경에 실패했습니다. 보다 자세한 내용은 시스템 로그를 확인하십시오. " + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' 용량을 얻을 수 없습니다 " + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "남은 문제 공간이 없음 " + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "문제 디렉토리 '%s'에서 요소 '%s'를 삭제할 수 없습니다 " + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -393,12 +410,12 @@ msgid "" + "is not running.\n" + msgstr "'%s'의 이름이 분실되었습니다. 이 이름을 갖는 다른 서비스가 실행되고 있지 않은지 확인하십시오.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM 초 동안 동작하지 않을 경우 종료합니다 " + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "이 프로그램은 root로 실행해야 합니다." + +@@ -423,18 +440,22 @@ msgstr "데몬화하지 않습니다 " + msgid "Log to syslog even with -d" + msgstr "-d를 사용하여 syslog에 로그 " + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR에서 EVENT 실행 " + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "사용자에게 직접 통신 " + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format +@@ -478,76 +499,77 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "MiB 단위의 최대 캐시 용량입니다. 기본값은 다음과 같습니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "인증을 해제합니다." + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Red Hat Support 사용자 이름" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" +-msgstr "" ++msgstr "Red Hat Support 암호, 지정하지 않은 경우, 이를 요청하는 메세지가 나타납니다." + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" +-msgstr "" ++msgstr "uReport SSL 인증서 경로 또는 인증서 유형" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" +-msgstr "" ++msgstr "--password에 대한 --username을 지정하십시오." + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" +-msgstr "" ++msgstr "--username 또는 --certificate 중 하나를 사용할 수 있습니다." + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" +-msgstr "" ++msgstr "--username 또는 --anonymous 중 하나를 사용할 수 있습니다" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" +-msgstr "" ++msgstr "--anonymous 또는 --certificate 중 하나를 사용할 수 있습니다" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "잘못된 인수 개수 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "알 수 없는 옵션 값: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" +-msgstr "" ++msgstr "암호:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "암호없이 계속 진행할 수 없습니다\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" +-msgstr "" ++msgstr "HTTP 인증 자동 보고" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" +-msgstr "" ++msgstr "SSL 클라이언트 인증 자동 보고" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" +-msgstr "" ++msgstr "익명으로 자동 보고" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -567,83 +589,83 @@ msgstr "" + " FILENAME - 업로드된 아카이브 파일 이름 \n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "디렉토리가 아닙니다: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "생략 중: '{0}' (슬래시로 시작)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "생략 중: '{0}' (점으로 시작)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "생략 중: '{0}' (.. 포함)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "생략 중: '{0}' (공백 포함)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "생략 중: '{0}' (탭 포함)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "'{0}'로 디렉토리를 변경할 수 없습니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "알 수 없는 파일 형식: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}'에 작업 디렉토리를 생성할 수 없습니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}'을 '{1}'로 이동할 수 없습니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}'을 '{1}'에 복사할 수 없습니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}'에서 확인 오류 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' 압축 해제 중 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' 디렉토리를 생성할 수 없습니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}'을 압축 해제할 수 없습니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}'이 성공적으로 처리되었습니다 " + +@@ -667,21 +689,29 @@ msgstr "'%s'의 chown할 수 없음: %s" + msgid "Deleting problem directory failed: %s" + msgstr "문제 디렉토리 삭제 실패: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus에서 문제 데이터를 가져올 수 없음: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus에서 문제 목록을 가져올 수 없음: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus에서 문제 데이터를 가져올 수 없음: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr " abrt-dbus에서 요소가 존재하는지 여부를 검증할 수 없습니다: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -724,7 +754,7 @@ msgid "Backtrace parsing failed for %s" + msgstr "%s 용 백트레이스 구문 분석 실패 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "충돌 스레드를 찾을 수 없습니다 " + +@@ -830,13 +860,45 @@ msgid "Oops text extracted successfully" + msgstr "Oops 텍스트가 성공적으로 추출되었습니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "커널 로그에 하드웨어 관련 오류가 발견된 것으로 표시됩니다.\n" + "이는 소프트웨어 문제는 아닌것 같습니다.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -923,6 +985,28 @@ msgid "" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" + msgstr "" ++"사용법: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" \n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"TMPDIR을 임시 준비 영역으로 사용하여 CASHEDIR에 BUILD_IDS_FILE에 나열된 모든 빌드 ID의 디버그 정보를 " ++"설치합니다. \n" ++"CACHEDIR에 있는 오래된 파일은 SIZE보다 작게될 때 까지 삭제됩니다.\n" ++"\n" ++"/etc/abrt/plugins/CCpp.conf 로부터 설정을 읽어들입니다.\n" ++"\n" ++" -v 대화식으로 실행합니다.\n" ++" -y 비 대화식으로, 모든 옵션에 대해 '예'라고 가정합니다.\n" ++" --ids 기본ID: build_id들\n" ++" --tmpdir 기본위치: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n" ++" --cache 기본위치: /var/cache/abrt-di\n" ++" --size_mb 기본크기: 4096\n" ++" --pkgmgr 기본: PackageManager from CCpp.conf or 'dnf'\n" ++" -e,--exact 지정된 파일만 다운로드 합니다.\n" ++" --repo 리포지터리 검색시 사용할 규칙\n" ++" 기본: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:175 + msgid "Can't open {0}: {1}" +@@ -940,7 +1024,7 @@ msgstr "{0} debuginfo 파일이 설치되어 있지 않습니다 " + #: ../src/plugins/abrt-action-install-debuginfo.in:234 + #, c-format + msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" +-msgstr "" ++msgstr "CCpp 애드온의 잘못된 설정, 지원되지 않는 패키지 관리자 : '%s'" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:249 +@@ -955,7 +1039,36 @@ msgstr "debuginfo 파일이 누락되어 있습니다: {0}" + msgid "All debuginfo files are available" + msgstr "모든 debuginfo 파일이 사용 가능합니다" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -964,7 +1077,7 @@ msgstr "" + "코어 덤프를 업로드해도 되겠습니까? (민감한 데이터가 포함되어 있을 수 있습니다). '아니요'로 대답할 경우 스택 추적이 로컬에 " + "생성됩니다. (이는 거대한 용량의 데이터를 다운로드할 수 있습니다)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1032,7 +1145,7 @@ msgstr "uReport가 이미 전송되어 있기때문에 다시 전송되지 않 + + #: ../src/plugins/abrt-action-ureport:179 + msgid "Adding you to CC List of the existing bugzilla bug" +-msgstr "" ++msgstr "존재하는 Bugzilla bug 의 CC목록에 추가합니다. " + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-action-ureport:193 +@@ -1226,7 +1339,8 @@ msgstr "발견된 모든 oops에 대해 DIR에 새로운 문제 디렉토리를 + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation과 동일, DumpLocation은 abrt.conf에 지정됩니다 " + +@@ -1237,17 +1351,19 @@ msgstr "추출한 정보를 PROBLEM에 저장합니다 " + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "문제 디렉토리를 전역에서 읽기 가능하게 합니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "1 초당 한 개로 문제 디렉토리 생성 제한 " + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "검색 문자열을 표준 출력에 인쇄하고 종료 " + +@@ -1257,15 +1373,18 @@ msgstr "검색 문자열을 표준 출력에 인쇄하고 종료 " + msgid "Failed to compile regex" + msgstr "regex 컴파일에 실패했습니다 " + +-# translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "문제를 업데이트할 수 없습니다: 하나 이상의 oops 발견 " ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 + msgid "Failed to obtain all required information from journald" +-msgstr "" ++msgstr "journald로부터 필요한 모든 정보를 얻는데 실패했습니다." + + #. We don't want to update the counter here. + #: ../src/plugins/abrt-dump-journal-core.c:401 +@@ -1275,10 +1394,11 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:407 + msgid "Failed to save detect problem data in abrt database" +-msgstr "" ++msgstr "abrt 데이터베이스에 문제 감지 데이터를 저장하는데에 실패했습니다." + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1298,59 +1418,67 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:478 + msgid "Create new problem directory in DIR for every coredump" +-msgstr "" ++msgstr "모든 코어덤프에 대해 DIR에 새로운 문제 디렉토리를 생성" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" +-msgstr "" ++msgstr "CURSOR의 위치에서 systemd-journal을 읽기 시작" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" +-msgstr "" ++msgstr "뒤에서 부터 systemd-journal을 읽기 시작 " + + #: ../src/plugins/abrt-dump-journal-core.c:482 + msgid "Throttle problem directory creation to 1 per INT second" +-msgstr "" ++msgstr "1 초당 한 개로 문제 디렉토리 생성 제한 " + + #: ../src/plugins/abrt-dump-journal-core.c:483 + msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" +-msgstr "" ++msgstr "-t INT와 같이, INT는 plugins/CCpp.conf에 정의되어 있습니다." + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" +-msgstr "" ++msgstr "-c CURSOR 또는 -e 중 하나를 지정해야 합니다." + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" +-msgstr "" ++msgstr "systemd-journal을 열 수 없습니다." + + #: ../src/plugins/abrt-dump-journal-core.c:544 + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." +-msgstr "" ++msgstr "저널 데이터를 읽을 수 없습니다." + + #: ../src/plugins/abrt-dump-journal-oops.c:186 + msgid "" +@@ -1367,14 +1495,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1383,12 +1514,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1397,58 +1574,62 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "FILE (또는 표준 입력)에서 Xorg 크래시를 추출합니다" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "검색된 크래시 데이터를 표준 출력에 인쇄 " + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "발견된 모든 크래시에 대해 DIR에 문제 디렉토리를 생성" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1968,44 +2149,44 @@ msgid "Sleeping for %d seconds" + msgstr "%d 초 동안 절전 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "BIOS 손상으로 인해 커널 관련 문제가 발생했습니다. 불행히도 이러한 문제는 커널 관리자에 의해 수정될 수 없습니다." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "커널 관련 문제가 발생했지만 해당 하드웨어가 지원되지 않기 때문에 커널 관리자는 이 문제를 수정할 수 없습니다." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "커널에 문제가 발생했지만 커널 자체가 손상되어 있습니다 (플래그: %s). 커널 관리자는 손상된 보고를 진단할 수 없습니다." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "잘못된 모듈: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "버그 ID 목록" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "bodhi 서버 url 지정" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "릴리즈 지정" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2015,20 +2196,20 @@ msgstr "" + "\n" + "bodhi 서버에서 업데이트 검색" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "업데이트 검색 중" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "이 패키지에 대한 업데이트를 찾을 수 없음" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "패키지의 로컬 버전은 사용 가능한 업데이트 보다 새로운 버전입니다" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2058,72 +2239,73 @@ msgid "Delete files with found oopses" + msgstr "검색된 oopses가 있는 파일을 삭제합니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s'가 하나 이상의 문제 디렉토리를 확인했습니다 " + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "사용법: abrt-cli [--version] COMMAND [DIR]... " ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr " [in DIRs]에 문제 나열 " + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "문제 디렉토리 DIR 제거 " + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR에 문제가 있는 데이터를 분석 및 보고 " + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR에 관한 정보 출력 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "최근 충돌 횟수를 출력" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "여러 문제 처리 " + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "보다 자세한 내용은 'abrt-cli COMMAND --help'에서 참조하십시오 " + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "보고되지 않는 문제만 나열합니다 " + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "상세 보고를 표시합니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "지정된 타임 스탬프 보다 최신의 문제만 나열 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "지정된 타임 스탬프보다 오래된 문제만 나열합니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2133,59 +2315,69 @@ msgstr "" + "자동보고 기능은 비활성화되어 있습니다. root 권한을 가진 사용자로\n" + "'abrt-auto-reporting enabled'를 실행하여 이를 활성화합니다\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "이보다 더 큰 텍스트는 요약하여 표시됩니다" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "이러한 문제 디렉토리 '%s'가 없음 " + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "아무 메세지를 표시하지 않고 문제의 건수만 출력 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "지정된 타임 스탬프 보다 최신의 문제만 출력" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT에 의해 '%u' 건의 문제가 발견되었습니다. (다음을 실행하여 보다 자세한 내용을 확인합니다: abrt-cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' 삭제 중 " ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "보고 후 PROBLEM_DIR 삭제 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' 삭제 중 " +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "동작: 삭제(rm), 정보(i), 생략(s):" +@@ -2196,27 +2388,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "동작: 삭제(rm), 보고 (e), 정보(i), 생략(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' 보고 중 " + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "다음 문제로 이동하려면 ENTER를 누릅니다: " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "--since 인수가 없으면 감지된 모든 문제를 반복합니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "타임 스탬프 후 감지된 문제만 선택합니다 " + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/lt.po b/po/lt.po +index 09c6e2b..caf1761 100644 +--- a/po/lt.po ++++ b/po/lt.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -21,7 +21,7 @@ msgstr "" + "Language: lt\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "(n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -31,102 +31,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Nepavyko tapti „%s“ savininku" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Nepavyksta atverti katalogo rašymui „%s“" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nepavyksta užverti pranešimo: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Pranešti" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Nepavyksta parodyti pranešimo: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Nepavyksta skaityti iš gio kanalo: „%s“" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Nepavyksta nustatyti gio kanalo koduotės: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Nepavyksta įjungti neblokuojančios veiksenos gio kanalui: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -136,6 +136,17 @@ msgstr "" + "\n" + "Įtaisas, kuris praneša naudotojui, kai ABRT aptinka naują problemą\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -157,7 +168,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -190,30 +203,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -239,14 +264,14 @@ msgstr "Apie" + msgid "Quit" + msgstr "Išeiti" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -258,11 +283,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Problemų katalogas" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfigūracijos failas" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -276,24 +301,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [parinktys]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Naudoti NUM kaip kliento uid" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Įrašyti į syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Pridėti programų pavadinimus žurnalizavimui" + +@@ -301,62 +327,52 @@ msgstr "Pridėti programų pavadinimus žurnalizavimui" + msgid "Unknown error" + msgstr "Nežinoma klaida" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "„%s“ nėra tinkamas problemų katalogas" ++msgid "'%s' is not a valid element name" ++msgstr "„%s“ nėra tinkamas elemento pavadinimas" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "„%s“ elementas negali būti pakeistas" ++msgid "'%s' is not a valid problem directory" ++msgstr "„%s“ nėra tinkamas problemų katalogas" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Neleista" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Nepavyksta prieiti problemos pakeitimui" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "„%s“ elementas negali būti pakeistas" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Nepavyko pakeisti aplanko savininko. Daugiau informacijos rasite sistemos " + "žurnaluose." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "„%s“ nėra tinkamas elemento pavadinimas" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Nepavyko gauti „%s“ dydžio" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Nėra likusios problemų vietos" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Nepavyksta ištrinti elemento „%s“ iš problemų katalogo „%s“" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -366,12 +382,12 @@ msgstr "" + "Vardas „%s“ buvo prarastas, patikrinkite, ar neveikia kita tarnyba su šiuo " + "vardu.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Išeiti po NUM sekundžių neaktyvumo" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Šią programą reikia paleisti root naudotojo teisėmis." + +@@ -397,18 +413,22 @@ msgstr "Nedemonizuoti" + msgid "Log to syslog even with -d" + msgstr "Įrašyti į syslog net su -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event ĮVYKIO KAT..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Vykdyti ĮVYKĮ KAT" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Komunikuoti tiesiogiai su naudotoju" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -446,73 +466,74 @@ msgstr "Darbininkų skaičius. Numatyta " + msgid "Maximal cache size in MiB. Default is " + msgstr "Didžiausias podėlio dydis MiB. Numatyta " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Neteisingas argumentų skaičius" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Nežinoma parametro vertė: „%s“\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -524,68 +545,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -609,18 +630,26 @@ msgstr "Nepavyko chown „%s“: %s" + msgid "Deleting problem directory failed: %s" + msgstr "Nepavyko ištrinti problemos katalogo: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Nepavyko gauti problemos duomenų iš abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Nepavyko gauti problemų sąrašo iš abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Nepavyko gauti problemos duomenų iš abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -667,7 +696,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Nepavyko perskaityti %s pėdsako" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Lūžimo gija nerasta" + +@@ -769,12 +798,44 @@ msgstr "Nepavyksta išgauti oops pranešimo: „{0}“" + msgid "Oops text extracted successfully" + msgstr "Oops tekstas sėkmingai išgautas" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -892,7 +953,36 @@ msgstr "Trūksta derinimo informacijos failo: {0}" + msgid "All debuginfo files are available" + msgstr "Yra visi derinimo informacijos failai" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -902,7 +992,7 @@ msgstr "" + "atsakysite „Ne“, steko pėdsakas bus generuojamas vietoje. (Tai gali " + "parsiųsti daug duomenų)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1133,7 +1223,8 @@ msgstr "Sukurti naują problemos katalogą KAT kataloge kiekvienai rastai oops" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Tas pats kaip -d DumpLocation, DumpLocation yra nurodyta abrt.conf" + +@@ -1143,16 +1234,18 @@ msgstr "Įrašyti išgautą informaciją į PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Padaryti problemų katalogą skaitomą pasauliui" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Nustatyti problemų aplankų kūrimą į 1 per sekundę" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Atspausdinti paieškos eilutę(-es) standartinėje išvestyje ir išeiti" + +@@ -1161,9 +1254,13 @@ msgstr "Atspausdinti paieškos eilutę(-es) standartinėje išvestyje ir išeiti + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "Nepavyksta atnaujinti problemos: rastas daugiau nei vienas oops" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1182,6 +1279,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1205,11 +1303,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1223,16 +1323,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1240,18 +1343,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1270,14 +1376,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1286,12 +1395,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1301,59 +1456,63 @@ msgstr "" + "\n" + "Išgauti Xorg lūžimą iš FAILO (arba standartinės įvesties)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Atspausdinti rastus lūžimo duomenis standartinėje išvestyje" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Sukurti naują problemos katalogą KAT kataloge kiekvienam rastam lūžimui" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1886,7 +2045,7 @@ msgstr "Nepavyko išjungti NSS." + msgid "Sleeping for %d seconds" + msgstr "Miegama %d sekundžių" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1894,7 +2053,7 @@ msgstr "" + "Dėl blogo BIOS kilo branduolio problema. Deja, tokių problemų branduolio " + "prižiūrėtojai negali pataisyti." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1902,7 +2061,7 @@ msgstr "" + "Kilo branduolio problema, bet jūsų aparatinė įranga yra nepalaikoma, tad " + "branduolio prižiūrėtojai negali pataisyti šios problemos." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1911,24 +2070,24 @@ msgstr "" + "Kilo branduolio problema, bet jūsų branduolys buvo pakeistas (požymiai:%s). " + "Branduolio prižiūrėtojai negali diagnozuoti pakeistų pranešimų." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " Sugadinti moduliai: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Klaidų id sąrašas" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Nurodykite bohdi serverio url" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Nurodykite leidimą" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1939,20 +2098,20 @@ msgstr "" + "\n" + "Ieškoti atnaujinimų bodhi serveryje" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Ieškoma atnaujinimų" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Nerasta šio paketo atnaujinimų" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Vietinė paketo versija yra naujesnė nei prieinama atnaujinimuose" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1980,65 +2139,66 @@ msgstr "Atspausdinti rastus oops" + msgid "Delete files with found oopses" + msgstr "Ištrinti failus su rastais oops" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "„%s“ nurodo daugiau nei vieną problemos aplanką" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Naudojimas: abrt-cli [--version] KOMANDA [KAT]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Pašalinti problemos katalogą KAT" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analizuoti ir pranešti KAT problemos duomenis" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Atspausdinti informaciją apie KAT" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Atspausdinti nesenų lūžimų skaičių" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Daugiau informacijos gausite įvykdę „abrt-cli KOMANDAS --help“" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Išvardinti tik nepraneštas problemas" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Rodyti detalią ataskaitą" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "Išvardinti tik problemas, kurios naujesnės nei nurodyta laiko žyma" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "Išvardinti tik problemas, kurios senesnės nei nurodyta laiko žymo" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2049,51 +2209,61 @@ msgstr "" + "teisėmis\n" + "„abrt-auto-reporting enabled“\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [parinktys] KAT..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Ilgesnis nei toks tekstas bus rodomas sutrumpintas" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Nėra tokio problemos aplanko „%s“" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Atspausdinti tik problemų skaičių be jokių pranešimų" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Atspausdinti tik problemas, naujesnes nei nurodyta laiko žyma" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT aptiko %u problemą(as). Daugiau informacijos gausite įvykdę: abrt-cli " + "list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2102,24 +2272,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/lv.po b/po/lv.po +index 2c4a453..fd0d22d 100644 +--- a/po/lv.po ++++ b/po/lv.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -19,7 +19,7 @@ msgstr "" + "Language: lv\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " + "2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -29,108 +29,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nevar aizvērt paziņojumu: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Ziņot" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -152,7 +163,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -185,30 +198,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -234,14 +259,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -253,11 +278,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfigurācijas datne" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -271,24 +296,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [iespējas]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -296,60 +322,50 @@ msgstr "" + msgid "Unknown error" + msgstr "Nezināma kļūda" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' nav derīgs elementa nosaukums" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' nav derīgs elementa nosaukums" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -357,12 +373,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -383,18 +399,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -424,73 +444,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -502,68 +523,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -587,18 +608,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -639,7 +668,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -728,12 +757,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -842,14 +903,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1064,7 +1154,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1074,16 +1165,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1092,8 +1185,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1113,6 +1210,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1136,11 +1234,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1154,16 +1254,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1171,18 +1274,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1201,14 +1307,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1217,70 +1326,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1778,63 +1937,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Šai pakotnei netika atrasts neviens atjauninājums." + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1856,65 +2015,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Parādīt detalizētu ziņojumu" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1922,49 +2082,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1973,24 +2143,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ml.po b/po/ml.po +index 2508892..19da90a 100644 +--- a/po/ml.po ++++ b/po/ml.po +@@ -10,122 +10,127 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-01-08 10:57-0500\n" ++"PO-Revision-Date: 2015-09-25 05:50-0400\n" + "Last-Translator: Ani Peter \n" + "Language-Team: Malayalam (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ml/)\n" + "Language: ml\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 ++#, fuzzy + msgid "Problem Reporting" +-msgstr "" ++msgstr "പ്രശ്നം രേഖപ്പെടുത്തുന്ന ക്രമീകരണം" + ++# auto translated by TM merge from project: gnome-abrt, version: master, DocId: gnome-abrt + #: ../src/applet/abrt-applet.desktop.in.h:2 ++#, fuzzy + msgid "View and report application crashes" +-msgstr "" ++msgstr "പ്രയോഗത്തിന്റെ തകരാറുകള്‍ രേഖപ്പെടുത്തുക" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s'-ന്റെ അവകാശം സ്വീകരിയ്ക്കുവാന്‍ സാധ്യമല്ല" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s'സൂക്ഷിയ്ക്കുന്നതിനായി ഡയറക്ടറി തുറക്കുവാന്‍ സാധ്യമല്ല" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "അറിയിപ്പു് അടയ്ക്കുവാന്‍ സാധ്യമല്ല: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "റിപോര്‍ട്ട്" + +-#: ../src/applet/applet.c:523 ++# auto translated by TM merge from project: ibus, version: head, DocId: ibus10 ++#: ../src/applet/applet.c:625 ++#, fuzzy + msgid "Restart" +-msgstr "" ++msgstr "വീണ്ടും ആരംഭിക്കുക" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "അറിയിപ്പു് കാണിയ്ക്കുവാന്‍ സാധ്യമല്ല: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio ചാനലില്‍ നിന്നും ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല : '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ചാനലില്‍ എന്‍കോഡിങ് സജ്ജമാക്കുവാന്‍ സാധ്യമല്ല : '%s'" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ചാനലിനു് nonblocking മോഡ് ഓണ്‍ ചെയ്യുവാാന്‍ സാധ്യമല്ല: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -136,6 +141,17 @@ msgstr "" + "പുതിയ പ്രശ്നങ്ങള്‍ ABRT കണ്ടുപിടിയ്ക്കുമ്പോള്‍ ഉപയോക്താവിനെ " + "അറിയിയ്ക്കുന്നതിനുള്ള ആപ്ലെറ്റ്\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -156,19 +172,15 @@ msgstr "ചെറിയ രീതിയിലുള്ള റിപോര്‍ + msgid "Silent shortened reporting" + msgstr "നിശബ്ദമായ ചെറിയ റിപോര്‍ട്ടിങ്" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"സ്റ്റാക്ക് ട്രെയിസ് ലഭ്യമാക്കുന്നതിന് കോര്‍ഡമ്പ് ഫയല്‍ ആവശ്യമാണു്. ഇതിനു് " +-"അധികമായ സമയവും സ്ഥലവും ആവശ്യമാണു്. കോര്‍ഡമ്പില്‍ നിന്നും സ്റ്റാക്ക് ട്രെയിസ് " +-"ലഭ്യമാക്കുന്നതിനുള്ള സേവനം എബിആര്‍ടി ലഭ്യമാക്കുന്നു, പക്ഷേ ഇതിനായി നിങ്ങള്‍ " +-"കോര്‍ഡമ്പ് അപ്‌ലോഡ് ചെയ്യണം. ഈ ഐച്ഛികം പ്രവര്‍ത്തന രഹിതമാക്കിയാല്‍, ഒരു " +-"ചോദ്യങ്ങളുമില്ലാതെ എബിആര്‍ടി കോര്‍ഡമ്പ് അപ്‌ലോ‍ഡ് ചെയ്യുന്നു." + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -219,29 +231,24 @@ msgstr "" + "അറിയിപ്പ് എബിആര്‍ടി ഒരിക്കലും കാണിക്കില്ല. ലഘുവായി രേഖപ്പെടുത്തുന്നത് " + "സജ്ജമെങ്കില്‍ മാത്രം ഇതു് പ്രാഭല്യത്തിലാകുന്നു." + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "coredump അപ്‌ലോഡ് ചെയ്യുന്നതിന് മുമ്പ് ചോദിയ്ക്കുക" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "സെന്‍സിറ്റീവ് വിവരങ്ങള്‍ക്ക് സ്വകാര്യ ടിക്കറ്റ് ആവശ്യപ്പെടുക" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "പൂര്‍ണ്ണമല്ലാത്ത പ്രശ്നങ്ങള്‍ അറിയിയ്ക്കുക" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -252,6 +259,22 @@ msgstr "" + "റിപോര്‍ട്ടുകള്‍ ലഭ്യമാക്കുന്നതിനു്, എബിആര്‍ടി ഇവ രേഖപ്പെടുത്തുവാന്‍ " + "അനുവദിക്കുകയില്ല." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" +@@ -278,14 +301,14 @@ msgstr "സംബന്ധിച്ചു്" + msgid "Quit" + msgstr "പുറത്തു് കടക്കുക" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -297,11 +320,11 @@ msgstr "" + msgid "Problem directory" + msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "ക്രമീകരണ ഫയല്‍" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -315,24 +338,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "ക്ലയന്റ് യുഐഡി ആയി NUM ഉപയോഗിയ്ക്കുക" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog-ലേക്കു് പ്രവേശിയ്ക്കുക" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "ലോഗിലേക്കു് പ്രോഗ്രാമിന്റെ പേരുകള്‍ ചേര്‍ക്കുക" + +@@ -340,63 +364,53 @@ msgstr "ലോഗിലേക്കു് പ്രോഗ്രാമിന് + msgid "Unknown error" + msgstr "അപരിചിതമായ പിശക്" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' ശരിയായൊരു പ്രശ്ന ഡയറക്ടറിയല്ല" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' ശരിയായൊരു എലമെന്റ് നാമമല്ല is not a valid element name" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' എലമെന്റില്‍ മാറ്റം വരുവാന്‍ സാധ്യമല്ല" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' ശരിയായൊരു പ്രശ്ന ഡയറക്ടറിയല്ല" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "അധികാരമില്ല" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "മാറ്റം വരുത്തുന്നതിനായി പ്രശ്നം കാണിയ്ക്കുവാന്‍ സാധ്യമല്ല" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' എലമെന്റില്‍ മാറ്റം വരുവാന്‍ സാധ്യമല്ല" ++ ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "ഡയറക്ടറി ചൌണ്‍ ചെയ്യുന്നതില്‍ പരാജയപ്പെട്ടു. കൂടുതല്‍ വിവരങ്ങള്‍ക്കായി " + "സിസ്റ്റം ലോഗുകള്‍ പരിശോധിയ്ക്കുക." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' ശരിയായൊരു എലമെന്റ് നാമമല്ല is not a valid element name" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s'-ന്റെ വ്യാപ്തി ലഭ്യമല്ല" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "സ്ഥലം ലഭ്യമല്ല" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + "'%s' എലമെന്റ് വെട്ടി നീക്കുവാന്‍ സാധ്യമല്ല ('%s' ഡയറക്ടറിയില്‍ നിന്നും)" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -406,12 +420,12 @@ msgstr "" + "'%s' എന്ന നാമം നഷ്ടമായി, ഈ പേരില്‍ മറ്റൊരു സര്‍വീസും പ്രവര്‍ത്തനത്തിലില്ല " + "എന്നു് ദയവായി ഉറപ്പാക്കുക.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM നിമിഷങ്ങള്‍ നിഷ്ക്രിയമായശേഷം പുറത്തു് കടക്കുക" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ഈ പ്രോഗ്രാം റൂട്ടായി പ്രവര്‍ത്തിപ്പിയ്ക്കണം." + +@@ -438,18 +452,22 @@ msgstr "daemonize ചെയ്യേണ്ടതില്ല" + msgid "Log to syslog even with -d" + msgstr "-d ഉപയോഗിച്ചു് syslog-ലേക്കു് പ്രവേശിയ്ക്കുക" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR-ല്‍ EVENT പ്രവര്‍ത്തിപ്പിയ്ക്കുക" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "ഉപയോക്താവുമായി നേരിട്ടു് ഇടപെടുക" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format +@@ -494,93 +512,94 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "MiB-ല്‍ ഏറ്റവും കൂടിയ ക്യാഷ് വ്യാപ്തി. സ്വതവേയുള്ളതു്" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "ആധികാരികത ഉറപ്പാക്കല്‍ സംവിധാനം ഓഫ് ചെയ്യുന്നു" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat പിന്തുണയ്ക്കുള്ള ഉപയോക്തൃനാമം" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat പിന്തുണയ്ക്കുള്ള രഹസ്യവാക്ക്, നല്‍കിയിട്ടില്ലെങ്കില്‍, ഇതിനായി " + "ആവശ്യപ്പെടുന്നു" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + "uReport എസ്എസ്എല്‍ സര്‍ട്ടിഫിക്കേറ്റ് പാഥ് അല്ലെങ്കില്‍ സര്‍ട്ടിഫിക്കേറ്റ് " + "രീതി" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr " --password-നുള്ള --username നല്‍കേണ്ടതുണ്ടു്" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "--username അല്ലെങ്കില്‍ --certificate ഉപയോഗിയ്ക്കാം" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "--username അല്ലെങ്കില്‍ --anonymous ഉപയോഗിയ്ക്കാം" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "--anonymous അല്ലെങ്കില്‍ --certificate ഉപയോഗിയ്ക്കാം" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "ആര്‍ഗ്യുമെന്റുകളുടെ തെറ്റായ എണ്ണം" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "അപരിചിതമായ മൂല്ല്യം: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "രഹസ്യവാക്ക്:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "രഹസ്യവാക്കില്ലാതെ തുടരുവാന്‍ സാധ്യമല്ല\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "എച്ടിടിപി ആധികാരികതയുള്ള ഓട്ടോ റിപോര്‍ട്ടിങ്" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "എസ്എസ്എല്‍ ക്ലയന്റ് ആധികാരികതയുള്ള ഓട്ടോ റിപോര്‍ട്ടിങ്" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "അപരിചിതമായ ഓട്ടോ റിപോര്‍ട്ടിങ്" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -601,83 +620,83 @@ msgstr "" + " FILENAME - അപ്‌ലോഡ് ചെയ്ത് ആര്‍ക്കൈവ് ഫയല്‍ നാമം.\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "ഡയറക്ടറിയല്ല: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (സ്ലാഷില്‍ ആരംഭിയ്ക്കുന്നു)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (കുത്തില്‍ ആരംഭിയ്ക്കുന്നു)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (.. അടങ്ങുന്നു)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (സ്പെയിസ് അടങ്ങുന്നു)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (ടാബ് അടങ്ങുന്നു)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "ഡയറക്ടറിയെ '{0}'-ലേക്ക് മാറ്റുവാന്‍ സാധ്യമല്ല" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "അപരിചിതമായ ഫയല്‍ രീതി: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}'-ല്‍ പ്രവര്‍ത്തനത്തിലുള്ള ഡയറക്ടറി തയ്യാറാക്കുവാന്‍ സാധ്യമല്ല" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}'-നെ '{1}'-ലേക്ക് നീക്കുവാന്‍ സാധ്യമല്ല" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}'-നെ '{1}'-ലേക്ക് നീക്കുവാന്‍ സാധ്യമല്ല" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}'-ല്‍ ഉറപ്പാക്കുന്നതില്‍ പിശക്" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' തുറക്കുന്നു" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ഡയറക്ടറി തയ്യാറാക്കുവാന്‍ സാധ്യമല്ല" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' തുറക്കുവാന്‍ സാധ്യമല്ല" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' വിജയകരമായി നടപ്പിലാക്കി" + +@@ -701,20 +720,28 @@ msgstr "'%s' chown ചെയ്യുവാന്‍ സാധ്യമല്ല + msgid "Deleting problem directory failed: %s" + msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി വെട്ടിനീക്കുന്നതില്‍ പരാജയം: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" +-"abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള ഡേറ്റാ ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + "abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള പട്ടിക ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++"abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള ഡേറ്റാ ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -764,7 +791,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s-നുള്ള ബാക്ക്ട്രെയിസ് പാഴ്സിങ് പരാജയപ്പെട്ടു" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "ക്രാഷ് ത്രെഡ് ലഭ്യമായില്ല" + +@@ -879,7 +906,7 @@ msgid "Oops text extracted successfully" + msgstr "Oops വാചകം വിജയകരമായി ലഭ്യമാക്കി" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -887,6 +914,38 @@ msgstr "" + "ഹാര്‍ഡ്‌വെയര്‍ പിശകുകള്‍ ഉണ്ടായതായി കേര്‍ണല്‍ ലോഗ് സൂചിപ്പിയ്ക്കുന്നു.\n" + "അതുകൊണ്ടു് ഇതൊരു സോഫ്റ്റ്‌വെയര്‍ പ്രശ്നമല്ല.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -1008,7 +1067,36 @@ msgstr "debuginfo ഫയല്‍ ലഭ്യമല്ല: {0}" + msgid "All debuginfo files are available" + msgstr "എല്ലാ debuginfo ഫയലുകളും ലഭ്യമാണു്" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -1018,7 +1106,7 @@ msgstr "" + "ഇതു് ചെയ്യേണ്ടതില്ലെങ്കില്‍, ഒരു സ്റ്റാക്ക് ട്രെയിസ് ലോക്കലായി " + "തയ്യാറാക്കപ്പെടുന്നു. (ഇതൊരു പക്ഷേ വലിയ ഡേറ്റാ ഡൌണ്‍ലോഡ് ചെയ്തേക്കാം)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1262,7 +1350,8 @@ msgstr "എല്ലാ oops-നും DIR-ലുള്ള തകരാറിന + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation പോലെ തന്നെ, abrt.conf-ല്‍ DumpLocation " +@@ -1274,18 +1363,20 @@ msgstr "PROBLEM-ല്‍ ലഭ്യമാക്കിയ വിവരം സ + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി ലഭ്യമാക്കുക" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + "ത്രോട്ടില്‍ പ്രശ്നം ഡയറക്ടറി തയ്യാറാക്കുന്നതു് ഒരു സെക്കന്‍ഡില്‍ ഒന്നു്" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout-ലേക്കു് തെരയുന്ന സ്ട്രിങ് പ്രിന്റ് ചെയ്തു് പുറത്തു് കടക്കുക" + +@@ -1295,11 +1386,13 @@ msgstr "stdout-ലേക്കു് തെരയുന്ന സ്ട്രി + msgid "Failed to compile regex" + msgstr "regex കംപൈല്‍ ചെയ്യുന്നതില്‍ പരാജയപ്പെട്ടു" + +-# translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" +-"പ്രശ്നം പരിഷ്കരിയ്ക്കുവാന്‍ സാധ്യമല്ല: ഒന്നില്‍ കൂടുതല്‍ oops ലഭ്യമായി" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1318,6 +1411,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1341,11 +1435,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1359,16 +1455,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1376,18 +1475,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1406,14 +1508,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1422,12 +1527,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1437,58 +1588,62 @@ msgstr "" + "\n" + "FILE-ല്‍ നിന്നും Xorg ക്രാഷ് ലഭ്യമാക്കുക (അല്ലെങ്കില്‍ സാധാരണ ഇന്‍പുട്ട്)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "സാധാരണ ഔട്ട്പുട്ടിലേക്കു് ലഭ്യമായ ക്രാഷ് ഡേറ്റാ പ്രിന്റ് ചെയ്യുക" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "എല്ലാ ക്രാഷിനും DIR-ലുള്ള തകരാറിനുള്ള ഡയറക്ടറി തയ്യാറാക്കുക" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -2040,7 +2195,7 @@ msgid "Sleeping for %d seconds" + msgstr "%d നിമിഷത്തേക്കു് മയങ്ങുന്നു" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2049,7 +2204,7 @@ msgstr "" + "കേര്‍ണല്‍ കൈകാര്യം ചെയ്യുന്നവര്‍ക്കു് പരിഹരിയ്ക്കുവാന്‍ സാധ്യമല്ല." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2058,7 +2213,7 @@ msgstr "" + "ലഭ്യമല്ല. അതിനാല്‍, കേര്‍ണല്‍ കൈകാര്യം ചെയ്യുന്നവര്‍ക്കു് ഇതു് " + "പരിഹരിയ്ക്കുവാന്‍ സാധ്യമല്ല." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2067,24 +2222,24 @@ msgstr "" + "കേര്‍ണലില്‍ ഒരു പ്രശ്നമുണ്ടായിരിയ്ക്കുന്നു (ഫ്ലാഗുകള്‍:%s). കാരണം എന്താണു് " + "എന്നു് കണ്ടുപിടിയ്ക്കുവാന്‍ കേര്‍ണല്‍ പാലകന്‍മാര്‍ക്കു് സാധ്യമായിട്ടില്ല." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " ലൈസന്‍സ് പ്രശ്നങ്ങളുള്ള ഘടകങ്ങള്‍: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "ബഗ് ഐഡികള്‍" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "ബോധി സര്‍വര്‍ യുആര്‍എല്‍ നല്‍കു" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "ഒരു റിലീസ് വ്യക്തമാക്കുക" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2094,21 +2249,21 @@ msgstr "" + "\n" + "ബോധി സര്‍വറില്‍ പരിഷ്കരണങ്ങള്‍ക്കായി തെരയുക" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "പരിഷ്കരണങ്ങള്‍ക്കായി തെരയുന്നു" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "ഈ പാക്കേജിനു് പരിഷ്കരണങ്ങള്‍ ലഭ്യമല്ല" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "ലഭ്യമായ പരിഷ്കരണങ്ങളേക്കാള്‍ പുതിയതാണു് നിങ്ങളുടെ സിസ്റ്റത്തിലുള്ള പതിപ്പു്" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2138,71 +2293,72 @@ msgid "Delete files with found oopses" + msgstr "കണ്ടുപിടിച്ച ഒഒപിഎസുകളുള്ള ഫയലുകള്‍ വെട്ടി നീക്കുക" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ഒന്നില്‍ കൂടുതല്‍ പ്രശ്നമുള്ള ഡയറക്ടറി തിരിച്ചറിയുന്നു" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "പ്രശ്നങ്ങള്‍ ലഭ്യമാക്കുക [DIR-കളില്‍]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി DIR നീക്കം ചെയ്യുക" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR-ല്‍ പ്രശ്നമുള്ള ഡേറ്റാ നിരീക്ഷിച്ചു് രേഖപ്പെടുത്തുക" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR സംബന്ധിച്ചുള്ള വിവരം പ്രിന്റ് ചെയ്യുക" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "പുതിയ തകരാറുകളുടെ എണ്ണം പ്രിന്റ് ചെയ്യുക" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "അനവധി പ്രശ്നങ്ങള്‍ നടപ്പിലാക്കുക" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "കൂടുതല്‍ വിവരങ്ങള്‍ക്കായി 'abrt-cli COMMAND --help' കാണുക." + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "രേഖപ്പെടുത്താത്ത പ്രശ്നങ്ങള്‍ മാത്രം ലഭ്യമാക്കുക" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "വിശദമായ രേഖപ്പെടുത്തല്‍ കാണിയ്ക്കുക" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "നല്‍കിയിരിയ്ക്കുന്ന സമയത്തിനേക്കാള്‍ പുതിയ പ്രശ്നങ്ങള്‍ മാത്രം കാണിയ്ക്കുക" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "നല്‍കിയിരിയ്ക്കുന്ന സമയത്തിനേക്കാള്‍ പഴയ പ്രശ്നങ്ങള്‍ മാത്രം കാണിയ്ക്കുക" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2213,59 +2369,69 @@ msgstr "" + "ഉപയോക്താവായി 'abrt-auto-reporting enabled' നല്‍കി\n" + "ഇതു് പ്രവര്‍ത്തന സജ്ജമാക്കുക.\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "ഇതിലും വലുതായ വാചകം അബ്രിഡ്ജമായ കാണിയ്ക്കുന്നു" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "'%s' പോലുള്ള പ്രശ്നമുള്ള ഡയറക്ടറി ലഭ്യമല്ല" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "സന്ദേശമില്ലാതെ പ്രശ്നത്തിന്റെ എണ്ണം മാത്രം പ്രിന്റ് ചെയ്യുക" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "നല്‍കിയിരിയ്ക്കുന്ന ടൈംസ്റ്റാമ്പിനേക്കാള്‍ പുതുതായ പ്രശ്നങ്ങള്‍ മാത്രം " + "പ്രിന്റ് ചെയ്യുക" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "എബിആര്‍റ്റി %u പ്രശ്നങ്ങള്‍ കണ്ടുപിടിച്ചിരിയ്ക്കുന്നു. കൂടുതല്‍ " + "വിവരങ്ങള്‍ക്കായി പ്രവര്‍ത്തിപ്പിക്കേണ്ടതു്: abrt-cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' വെട്ടി നീക്കുന്നു" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "രേഖപ്പെടുത്തിയ ശേഷം PROBLEM_DIR നീക്കം ചെയ്യുക" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' വെട്ടി നീക്കുന്നു" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "പ്രവര്‍ത്തികള്‍: remove(rm), info(i), skip(s):" +@@ -2276,29 +2442,184 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "പ്രവര്‍ത്തികള്‍: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' രേഖപ്പെടുത്തുന്നു" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "അടുത്ത പ്രശ്നത്തിന് ENTER അമര്‍ത്തുക:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "--since ആര്‍ഗ്യുമെന്റില്ലാതെ, ലഭ്യമായ പ്രശ്നങ്ങളിലെല്ലാം ആവര്‍ത്തിയ്ക്കുന്നു." + "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "ടൈംസ്റ്റാബിനു് ശേഷം ലഭിച്ച പ്രശ്നങ്ങള്‍ മാത്രം തെരഞ്ഞെടുക്കുന്നു" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/mr.po b/po/mr.po +index 4061beb..badba91 100644 +--- a/po/mr.po ++++ b/po/mr.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -20,7 +20,7 @@ msgstr "" + "language/mr/)\n" + "Language: mr\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -30,102 +30,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ची मालकी प्राप्त करणे अशक्य" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' लिहण्याकरीता डिरेक्ट्रि उघडणे अशक्य" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "सूचना: %s बंद करणे अशक्य" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "रिपोर्ट" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "सूचना: %s दाखवणे अशक्य" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio वाहिनी: '%s' पासून वाचणे अशक्य" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio वाहिनी: %s वरील एंकोडिंग सेट करणे अशक्य" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio वाहिनी: %s करीता नॉनब्लॉकिंग मोड सुरू करणे अशक्य" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -135,6 +135,17 @@ msgstr "" + "\n" + "ABRT तर्फे नवीन अडचणी आढळल्यास वापरकर्त्याला सूचीत करणारे ॲप्लेट\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "डिरेक्ट्री चोरण्यापूर्वी विचारा" +@@ -156,12 +167,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"स्टॅक ट्रेस निर्माण करण्यासाठी कोरडम्प फाइल आवश्यक आहे ज्यास वेळ आणि जागा " +-"आवश्यक आहे. ABRT तुम्हाला सर्व्हिस पुरवते जे कोरडम्पपासून स्टॅक ट्रेस " +-"निर्माण करते परंतु तुम्हाला कोरडम्पला ह्या सर्व्हिसकरिता अपलोड करावे लागेल. " +-"ह्या पर्यायचा वापर न करता ABRT विना विचारता कोरडम्प अपलोड करेल." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -207,10 +216,6 @@ msgstr "" + "रिपोर्टिंग सुरू केल्यानंतरच प्रभाव पडतो." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "कोरडम्प अपलोड करण्यापूर्वी विचारा" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -218,15 +223,15 @@ msgstr "" + " हा पर्याय सुरू करून संवेदनशील डाटा आढळल्यास, ABRT नेहमी प्रतिबंधीत प्रवेशसह " + "बग तिकिट निर्माण करेल." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "संवेदनशील माहितीकरिता व्यक्तिगत तिकिटकरिता विनंती करा" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "अपूर्ण अडचणी सूचीत करा" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -236,6 +241,22 @@ msgstr "" + "मौल्यावन अडचणीचे अहवाल पुरवण्याकरिता, ABRT तुम्हाला ह्या अडचणी सादर करण्यास " + "परवानगी देणार नाही." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "बंद करा (_C)" +@@ -261,14 +282,14 @@ msgstr "विषयी" + msgid "Quit" + msgstr "बाहेर पडा" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -280,11 +301,11 @@ msgstr "" + msgid "Problem directory" + msgstr "प्रॉब्लेम डिरेक्ट्री" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "संरचना फाइल" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -298,24 +319,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM चा क्लाएंट uid म्हणून वापर करा" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog करीता लॉग" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "लॉगमध्ये कार्यक्रम नावे समाविष्ट करा" + +@@ -323,60 +345,50 @@ msgstr "लॉगमध्ये कार्यक्रम नावे सम + msgid "Unknown error" + msgstr "अपरिचीत त्रुटी" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' वैध अडचण डिरेक्ट्री नाही" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' वैध एलिमेंट नाव नाही" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' एलिमेंट संपादित करणे अशक्य" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' वैध अडचण डिरेक्ट्री नाही" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "ओळख पटली नाही" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "संपादनकरीता अडचणकरीता प्रवेश अशक्य" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "डिरेक्ट्रीला Chown करणे अपयशी. अधिक तपशीलकरीता प्रणाली लॉग तपासा." +- +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' वैध एलिमेंट नाव नाही" ++msgid "'%s' element can't be modified" ++msgstr "'%s' एलिमेंट संपादित करणे अशक्य" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." ++msgstr "डिरेक्ट्रीला Chown करणे अपयशी. अधिक तपशीलकरीता प्रणाली लॉग तपासा." ++ ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s'ची आकार प्राप्ति अशक्य" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "प्रॉबलेम जागा बाकी नाही" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "एलिमेंट '%s' ला प्रॉबलेम डिरेक्ट्रि '%s' पासून नष्ट करणे अशक्य" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -386,12 +398,12 @@ msgstr "" + "नाव '%s' हरवले आहे, कृपया नावाची मालकी असलेली सर्व्हिस सुरू नाही याची तपासणी " + "करा.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "निष्क्रिय झाल्यावर NUM सेकंदानंतर बाहेर पडा" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "हा प्रोग्राम रूट वापरकर्ता म्हणून चालवा." + +@@ -416,18 +428,22 @@ msgstr "डिमन स्वरूपी बनवू नका" + msgid "Log to syslog even with -d" + msgstr "syslog मध्ये -d पर्यायसह लॉग करा" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR वर EVENT चालवा" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "प्रत्यक्षरित्या वापरकर्त्याशी संपर्क करा" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -465,87 +481,88 @@ msgstr "कंकरंट वर्कर्सची संख्या. प + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB मधील कमाल कॅशे आकार. पूर्वनिर्धारित आहे " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "ओळख पटवणे बंद करते" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat Support वापकर्ता नाव" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat Support पासवर्ड, दिले नसल्यास, त्याकरिता विनंती दिली जाईल" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL प्रमाणपत्र मार्ग किंवा प्रमाणपत्र प्रकार" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "--password करिता --username देखील निर्देशीत करावे लागेल" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "एकतर --username किंवा --certificate यांचा वापर शक्य आहे" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "एकतर --username किंवा --anonymous यांचा वापर शक्य आहे" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "एकतर --anonymous किंवा --certificate यांचा वापर शक्य आहे" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "अवैध बाबींची संख्या" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "अपरिचीत पर्याय मूल्य: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "पासवर्ड:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "पासवर्डविना पुढे जाणे अशक्य\n" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP ऑथेंटिकेटेड स्व अहवाल" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL क्लाएंट ऑथेंटिकेटेड स्व अहवाल" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "निनावी स्व अहवाल" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -566,83 +583,83 @@ msgstr "" + " FILENAME - आर्काइव्ह फाइल नाव अपलोड केले\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "डिरेक्ट्री नाही: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "वगळत आहे: '{0}' (स्लॅशपासून सुरू होते)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "वगळत आहे: '{0}' (डॉटपासून सुरू होते)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "वगळत आहे: '{0}' (समाविष्टीत आहे ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "वगळत आहे: '{0}' (स्पेस समाविष्टीत आहे)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "वगळत आहे: '{0}' (टॅब समाविष्टीत आहे)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "'{0}' करिता डिरेक्ट्री बदलणे अशक्य" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "अपरिचीत फाइल प्रकार: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' मध्ये कार्यरत डिरेक्ट्री निर्माण करणे अशक्य" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' ला '{1}' करिता हलविणे अशक्य" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' चे '{1}' मध्ये प्रत करणे अशक्य" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' वरील तापसणी त्रुटी" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' खुले करत आहे" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' डिरेक्ट्रीचे निर्माण अशक्य" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' खुले करणे अशक्य" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' यशस्वीरित्या विश्लेषणीत केले" + +@@ -666,18 +683,26 @@ msgstr "'%s': %s chown करणे अशक्य" + msgid "Deleting problem directory failed: %s" + msgstr "अडचण डिरेक्ट्री: %s नष्ट करण्यास अपयशी" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus: %s पासून अडचण डाटा प्राप्त करणे अशक्य" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus: %s पासून अडचण सूची प्राप्त करणे अशक्य" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus: %s पासून अडचण डाटा प्राप्त करणे अशक्य" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -724,7 +749,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s करीता बॅकट्रेस वाचणे अपयशी" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "क्रॅश थ्रेड आढळले नाही" + +@@ -830,7 +855,7 @@ msgstr "ऊप्स संदेश: '{0}' प्राप्ति अशक + msgid "Oops text extracted successfully" + msgstr "ऊप्स मजकूर यशस्वीरित्या प्राप्त केले" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -838,6 +863,38 @@ msgstr "" + "कर्नल लॉग आढळलेल्या हार्डवेअर त्रुटी निर्देशीत.\n" + "हे संभाव्यतया सॉफ्टवेअर अडचण नाही.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -955,7 +1012,36 @@ msgstr "debuginfo फाइल: {0} आढळली नाही" + msgid "All debuginfo files are available" + msgstr "सर्व debuginfo फाइल्स् उपलब्ध आहे" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -965,7 +1051,7 @@ msgstr "" + "असल्यास, स्टॅक ट्रेस् स्थानीयरित्या निर्माण केले जाईल. (कदाचित प्रचंड डाटा " + "डाउनलोड होईल)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1201,7 +1287,8 @@ msgstr "प्रत्येक ऊप्सकरीता DIR मधील + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation प्रमाणेच आहे, DumpLocation ला abrt.conf मध्ये निर्देशीत केले " +@@ -1213,16 +1300,18 @@ msgstr " PROBLEM मध्ये प्राप्य माहिती सा + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "प्रॉब्लेम डिरेक्ट्री जग वाचनजोगी बनवा" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "प्रति १ सेकंदकरिता थ्रॉटल अडचण डिरेक्ट्रीचे निर्माण" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout करीता सर्च स्ट्रिंग्स्ची छपाई करा व बाहेर पडू नका" + +@@ -1232,9 +1321,13 @@ msgstr "stdout करीता सर्च स्ट्रिंग्स्च + msgid "Failed to compile regex" + msgstr "रेगेक्स कंपाइल करण्यास अपयशी" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "अडचण सुधारित करणे अशक्य: एकापेक्षा जास्त ऊप्स आढळले" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1253,6 +1346,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1276,11 +1370,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1294,16 +1390,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1311,18 +1410,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1341,14 +1443,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1357,12 +1462,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1372,59 +1523,63 @@ msgstr "" + "\n" + "FILE (किंवा स्टँडर्ड इंपुट) पासून Xorg क्रॅश प्राप्त करा" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "स्टँडर्ड आउटपुटवर क्रॅश डाटाची छपाई करा" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "प्रत्येक आढळलेल्या क्रॅशकरीता DIR मध्ये प्रॉबलेम डिरेक्ट्रि निर्माण करा" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1951,7 +2106,7 @@ msgstr "NSS शटडाउन करण्यास अपयशी." + msgid "Sleeping for %d seconds" + msgstr "%d सेकंदकरिता निष्क्रीय झाले" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1959,7 +2114,7 @@ msgstr "" + "खंडीत BIOS मुळे कर्नल अडचण आढळली. दुर्दैवाने, अशा अडचणींचे कर्नल " + "मैनटेनर्सतर्फे निवारण केले जात नाही." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1967,7 +2122,7 @@ msgstr "" + "कर्नल अडचण आढळली, परंतु तुमचे हार्डवेअर असमर्थीत आहे, म्हणून ह्या अडचणीचे " + "कर्नल मैनटेनर्सतर्फे निवारण शक्य नाही." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1976,24 +2131,24 @@ msgstr "" + "कर्नल अडचणी आढळली, परंतु कर्नलमध्ये दोष देखील आढळले (फ्लग्स्:%s). कर्नल " + "मैनटेनर्स् दोषीत अहवालांचे विश्लेषण करण्यास अशक्य." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " टैंटेड मॉड्युल्स: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "बग आयडिजची सूची" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "बोधि सर्व्हर url निर्देशीत करा" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "प्रकाशन निर्देशीत करा" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2003,20 +2158,20 @@ msgstr "" + "\n" + "बोधि सर्व्हरवर सुधारणांकरीता शोधा" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "सुधारणांकरीता शोधत आहे" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "ह्या संकुलकरीता सुधारणा आढळले नाही" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "संकुलाची स्थानीय आवृत्ती उपलब्ध सुधारणांपेक्षा नवीन आहे" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2043,66 +2198,67 @@ msgstr "आढळलेल्या ऊप्सेसची छपाई कर + msgid "Delete files with found oopses" + msgstr "आढळलेल्या ऊप्सेसपासून फाइल्स नष्ट करा" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' एकापेक्षा जास्त अडचण डिरेक्ट्री ओळखते" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "वापर: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "अडचणींची सूची दाखवा [DIRs मध्ये]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "प्रॉब्लेम डिरेक्ट्री DIR काढून टाका" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR मध्ये प्रॉब्लेम डाटाचे विश्लेषण करा व कळवा" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR विषयी माहितीची छपाई करा" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "नुकतेच क्रॅशच्या प्रमाणची छपाई करा" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "बहु अडणी विश्लेषीत करा" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "अधिक माहितीकरीता 'abrt-cli COMMAND --help' पहा" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "फक्त-न कळवलेल्या अडचणींची सूची दाखवा" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "तपशील अहवाल दाखवा" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "निर्देशीत टाइमस्टॅम्पपेक्षा नवीन अडचणींची सूची दाखवा" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "फक्त निर्देशीत टाइमस्टॅम्पपेक्षा जुण्या अडचणीच दाखवा" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2113,53 +2269,63 @@ msgstr "" + "root परवानगी सक्षम वापरकर्ता नुरूप, 'abrt-auto-reporting enabled' असे यास " + "गृहीत धरा\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "यापेक्षा मोठे मजकूर अब्रिज्ड दाखवले जाईल" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "या प्रकारची अडचण डिरेक्ट्री '%s' नाही" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "कोणत्याही संदेशविना फक्त अडचण प्रमाणाची छपाई करा" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "निर्देशीत टाइमस्टॅम्पपेक्षा नुकतेच अडचणींची छपाई करा" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRTला %u अडचणी आढळले. अधिक माहितीकरिता: abrt-cli list%s चालवा\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' नष्ट करणे" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [पर्याय] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "कळविल्यानंतर PROBLEM_DIR काढून टाका" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' नष्ट करणे" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "कृती: remove(rm), info(i), skip(s):" +@@ -2170,27 +2336,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "कृती: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' कळविणे" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "पुढील अडचणीकरिता ENTER दाबा:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "--since बाबविना, सर्व आढळलेल्या अडचणींची पुनराकृती करते." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "फक्त टाइमस्टॅम्पनंतर आढळलेल्या अडचणींनाच पसंत करते" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/nb.po b/po/nb.po +index 6ee7aba..30f520e 100644 +--- a/po/nb.po ++++ b/po/nb.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -20,7 +20,7 @@ msgstr "" + "abrt/language/nb/)\n" + "Language: nb\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -30,102 +30,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan ikke ta eierskap av «%s»" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Rapporter" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -135,6 +135,17 @@ msgstr "" + "\n" + "Panelprogram som varsler bruker når nye problemer oppdages av ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -156,7 +167,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -189,30 +202,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -238,14 +263,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -257,11 +282,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfigurasjonsfil" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -275,24 +300,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [alternativer]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Logg til syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Legg til programnavn i loggen" + +@@ -300,60 +326,50 @@ msgstr "Legg til programnavn i loggen" + msgid "Unknown error" + msgstr "Ukjent feil" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Ikke autorisert" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -361,12 +377,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Avslutt etter NUM sekunder uten aktivitet" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Programmet må kjøres som root" + +@@ -387,18 +403,22 @@ msgstr "Ikke kjør som tjeneste" + msgid "Log to syslog even with -d" + msgstr "Logg til systemlogg selv med -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -428,73 +448,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -506,68 +527,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -591,18 +612,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -643,7 +672,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Tolking av dump feilet for %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -732,12 +761,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -846,14 +907,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1068,7 +1158,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1078,16 +1169,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1096,8 +1189,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1117,6 +1214,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1140,11 +1238,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1158,16 +1258,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1175,18 +1278,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1205,14 +1311,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1221,70 +1330,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1784,63 +1943,63 @@ msgstr "Klarte ikke å stenge ned NSS." + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Oppgi en versjon" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Søker etter oppdateringer" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Ingen oppdateringer funnet for denne pakken" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1862,65 +2021,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Vis detaljert rapport" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1928,49 +2088,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1979,24 +2149,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/nds.po b/po/nds.po +index 12531c2..8f3c2e7 100644 +--- a/po/nds.po ++++ b/po/nds.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/nds/)\n" + "Language: nds\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -28,108 +28,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Berichten" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -151,7 +162,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -184,30 +197,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -233,14 +258,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -252,11 +277,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -270,24 +295,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -295,60 +321,50 @@ msgstr "" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -356,12 +372,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -382,18 +398,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -423,73 +443,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -501,68 +522,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -586,18 +607,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -638,7 +667,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -727,12 +756,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -841,14 +902,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1063,7 +1153,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1073,16 +1164,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1091,8 +1184,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1112,6 +1209,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1135,11 +1233,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1153,16 +1253,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1170,18 +1273,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1200,14 +1306,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1216,70 +1325,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1776,63 +1935,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1854,65 +2013,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1920,49 +2080,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1971,24 +2141,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/nl.po b/po/nl.po +index 820892b..5f486a9 100644 +--- a/po/nl.po ++++ b/po/nl.po +@@ -12,17 +12,17 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-03-19 12:01-0400\n" ++"PO-Revision-Date: 2015-10-16 10:28-0400\n" + "Last-Translator: Geert Warrink \n" + "Language-Team: Dutch (http://www.transifex.com/projects/p/fedora-abrt/" + "language/nl/)\n" + "Language: nl\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -32,34 +32,34 @@ msgstr "Probleemrapportage" + msgid "View and report application crashes" + msgstr "Bekijk en rapporteer crashes van toepassingen" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan '%s' niet claimen" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Kan map niet openen voor het schrijven van '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Kan notificatie niet sluiten: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Oops!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Rapport" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Opnieuw starten" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " +@@ -68,7 +68,7 @@ msgstr "" + "Sorry, het ziet er naar uit dat %s gecrasht is. Het probleem is automatisch " + "gerapporteerd." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -77,8 +77,8 @@ msgstr "" + "Sorry, het ziet er naar uit dat %s gecrasht is. Het probleem zal " + "gerapporteerd worden zodra het internet beschikbaar is." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " +@@ -87,7 +87,7 @@ msgstr "" + "Sorry, het ziet er naar uit dat %s gecrasht is. Neem contact op met de " + "ontwikkelaar als je het probleem wilt rapporteren." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " +@@ -96,7 +96,7 @@ msgstr "" + "Sorry, het ziet er naar uit dat %s gecrasht is. Stuur een rapport op als je " + "wilt helpen met het oplossen van het probleem." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +@@ -104,7 +104,7 @@ msgstr "" + "Sorry, het ziet er naar uit dat er een probleem optrad in een onderdeel. Het " + "probleem is automatisch gerapporteerd." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +@@ -112,7 +112,7 @@ msgstr "" + "Sorry, het ziet er naar uit dat er een probleem optrad in een onderdeel. Het " + "probleem zal gerapporteerd worden zodra het internet beschikbaar is." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +@@ -120,28 +120,28 @@ msgstr "" + "Sorry, het ziet er naar uit dat er een probleem is opgetreden. Stuur een " + "rapport op als je wilt helpen met het oplossen van het probleem." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Kan notificatie niet tonen: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Kan niet van gio kanaal lezen: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Kan codering op gio kanaal niet instellenl: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Kan niet-blokkerende modus niet instellen voor gio kanaal: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -152,6 +152,17 @@ msgstr "" + "Applet die de gebruiker waarschuwt als nieuwe problemen door ABRT " + "gedetecteerd zijn\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "Vraag voordat een map gestolen wordt" +@@ -173,13 +184,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"Het coredump bestand is nodig voor het aanmaken van een stack trace, wat een " +-"tijd en ruimte spenderende bewerking is. ABRT biedt een service welke de " +-"stack trace aanmaakt uit de coredump, maar je moet de coredump uploaden naar " +-"deze service. Als deze optie uitgezet is, zal ABRT de coredump uploaden " +-"zonder te vragen." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -227,10 +235,6 @@ msgstr "" + "aan gezet is." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Vraag voordat een coredump geüpload wordt " +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -238,15 +242,15 @@ msgstr "" + " Als deze optie aangezet is, zal ABRT altijd een bug ticket aanmaken met " + "beperkte toegang als mogelijk gevoelige data ontdekt is." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Vraag privé ticket aan voor gevoelige informatie" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Geef incomplete problemen aan" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -256,6 +260,22 @@ msgstr "" + "wordt of als een gebruiker uitlogt. Om waardevolle probleemrapporten aan te " + "bieden, zal ABRT je niet toestaan om deze problemen in te dienen." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Sluiten" +@@ -281,7 +301,7 @@ msgstr "Over" + msgid "Quit" + msgstr "Verlaten" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +@@ -291,7 +311,7 @@ msgstr "" + "\n" + "Bevraag pakketdatabase en sla pakket en onderdeel naam op" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -303,11 +323,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Probleemmap" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Configuratiebestand" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "Gebruik deze map als RPM root" + +@@ -323,24 +343,25 @@ msgstr "& [-v] -d MAP\n" + msgid "Root directory for running container commands" + msgstr "Root map voor het uitvoeren van container commando's" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [opties]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Gebruik NUM as cliënt uid" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Loggen naar syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Voeg programmanamen toe aan de log" + +@@ -348,62 +369,52 @@ msgstr "Voeg programmanamen toe aan de log" + msgid "Unknown error" + msgstr "Onbekende fout" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' is geen geldige probleemmap" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' is geen geldige element naam" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' element kan niet veranderd worden" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' is geen geldige probleemmap" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Niet geauthoriseerd" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Krijg geen toegang tot het probleem om het te veranderen" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' element kan niet veranderd worden" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Veranderen van mapeigenaar mislukte. Controleer systeemlogs voor meer " + "details. " + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "Krijg geen toegang tot het probleem om te lezen" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' is geen geldige element naam" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Kan grootte van '%s' niet verkrijgen" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Er is geen probleemruimte meer" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Kan het element '%s' niet verwijderen uit de probleemmap '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -413,12 +424,12 @@ msgstr "" + "De naam '%s' is verloren gegaan, controleer of er geen andere service draait " + "die eigenaar is van de naam.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Afsluiten na NUM seconden van inactiviteit" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Dit programma moet door root worden uitgevoerd" + +@@ -445,18 +456,22 @@ msgstr "Niet instellen als daemon" + msgid "Log to syslog even with -d" + msgstr "Loggen naar syslog zelfs met -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT MAP..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Voer EVENT uit op DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Communiceer rechtstreeks met de gebruiker" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -494,75 +509,76 @@ msgstr "Aantal gelijktijdige werkers. Standaard is " + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximale cachegrootte in MiB. Standaard is " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Zet de authenticatie uit" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat Support gebruikersnaam" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat Support wachtwoord, als deze niet opgegeven wordt, zal een prompt " + "uitgegeven worden" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL certificaatpaden of certificaattype" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "Je moet voor --password ook --username specificeren" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Je kunt --username of --certificate gebruiken" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Je kunt --username of --anonymous gebruiken" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Je kunt --anonymous of --certificate gebruiken" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Ongeldig aantal argumenten" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Onbekende optiewaarde: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Wachtwoord:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "Kan niet verdergaan zonder wachtwoord\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "Automatisch rapporteren met HTTP authenticatie" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "Automatisch rapporteren met SSL Cliënt authenticatie" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "Automatisch anoniem rapporteren" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -581,68 +597,68 @@ msgstr "" + " UPLOAD_MAP - Map waarin geüploade archieven opgeslagen worden\n" + " BESTANDSNAAM - Naam van geüploade archief\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Geen map: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Wordt overgeslagen: '{0}' (begint met een slash)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Wordt overgeslagen: '{0}' (begint met een punt)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Wordt overgeslagen: '{0}' (bevat ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Wordt overgeslagen: '{0}' (bevat een spatie)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Wordt overgeslagen: '{0}' (bevat een tab)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Kan de map niet veranderen naar '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Onbekend bestandstype: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Kan de werkmap niet veranderen naar '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Kan '{0}' niet verplaatsen naar '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Kan '{0}' niet kopiëren naar '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Verificatiefout bij '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' wordt uitgepakt" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Kan map '{0}' niet aanmaken" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Kan '{0}' niet uitpakken" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' is met succes verwerkt" + +@@ -666,21 +682,29 @@ msgstr "Kan niet chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Verwijderen probleemmap mislukt: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Kan geen probleemdata verkrijgen van abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Kan geen probleemlijst verkrijgen van abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Kan geen probleemdata verkrijgen van abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "Kan met abrt-dbus niet testen of het element bestaat: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -725,7 +749,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Backtrace ontleden mislukte voor %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Crash thread werd niet gevonden" + +@@ -832,7 +856,7 @@ msgstr "Kan de oops boodschap niet extraheren: '{0}'" + msgid "Oops text extracted successfully" + msgstr "Oops tekst met succes geextraheerd" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -840,6 +864,38 @@ msgstr "" + "De kernel log geeft aan dat hardwarefouten zijn ontdekt.\n" + "Dit is waarschijnlijk geen softwareprobleem.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -981,7 +1037,36 @@ msgstr "Ontbrekend debuginfo-bestand: {0}" + msgid "All debuginfo files are available" + msgstr "Alle debuginfo-bestanden zijn beschikbaar" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -991,7 +1076,7 @@ msgstr "" + "antwoord 'Nee' is , zal lokaal een stacktrace aangemaakt worden. (Dit kan " + "een grote hoeveelheid data gaan downloaden.)" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1224,7 +1309,8 @@ msgstr "Maak nieuwe probleem map aan in MAP voor elke gevonden oops" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Hetzelfde als -d DumpLocation, DumpLocation wordt gespecificeerd in abrt." +@@ -1236,16 +1322,18 @@ msgstr "Sla de geextraheerde informatie op in PROBLEEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Maak de probleemmap leesbaar voor iedereen" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Beperk het aanmaken van probleemmappen tot 1 per seconde" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Print zoekstring(s) naar stdout en sluit af" + +@@ -1254,9 +1342,13 @@ msgstr "Print zoekstring(s) naar stdout en sluit af" + msgid "Failed to compile regex" + msgstr "Reguliere expressie kon niet gecompileerd worden" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "Kan het probleem niet vernieuwen: meer dan een oops gevonden" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1275,6 +1367,7 @@ msgstr "Opslaan gedetecteerde probleemdata in abrt database mislukte" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "Kan de systemd-journal waarneming niet initialiseren" + +@@ -1311,11 +1404,13 @@ msgstr "Maak nieuwe probleemmap aan in MAP voor elke coredump" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "Begin met lezen van systemd-journal op de CURSOR positie" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "Begin met lezen van systemd-journal vanaf het einde" + +@@ -1329,17 +1424,20 @@ msgstr "Zelfde als -t INT, INT wordt gespecificeerd in plugins/CCpp.conf" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + "Volg systemd-journal vanaf de laatst bekeken positie (indien beschikbaar)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "Je moet -c CURSOR of -e specificeren" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "Kan systemd-journal niet openen" + +@@ -1347,18 +1445,21 @@ msgstr "Kan systemd-journal niet openen" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "Kan systemd-journal niet filteren naar alleen systemd-coredump data" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "Kan niet zoeken tot aan het end van het journaal" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "Instellen van systemd-journal cursor '%s' mislukte" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "Kan geen journaaldata lezen" + +@@ -1390,28 +1491,77 @@ msgstr "" + "De laatst bekeken positie wordt opgeslagen in " + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "Lees journaalbestanden van alle machines" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Lees alle journaalbestanden uit de map op PAD" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "Kan systemd-journal niet initialiseren in de map '%s'" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "Kan systemd-journal niet filteren naar alleen kernel data" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "Starten van waarneming vanaf cursor '%s' mislukte" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1421,46 +1571,50 @@ msgstr "" + "\n" + "Extraheer Xorg crash van FILE (of standaard input)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Print vond crashdata bij standaard output" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "Maak probleem map aan in MAP voor elke gevonden crash" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "Kan de positie van de journaalwaarneming niet opslaan" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "Kan de positie van de journaalwaarneming niet opslaan: open('%s')" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + "De positie van de journaalwaarneming wordt niet hersteld: bestand '%s' " + "bestaat niet" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + "Kan de positie van de journaalwaarneming niet herstellen van bestand '%s'" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + "Kan de positie van de journaalwaarneming niet herstellen: pad '%s' is geen " + "gewoon bestand" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" +@@ -1468,12 +1622,12 @@ msgstr "" + "Kan de positie van de journaalwaarneming niet herstellen: bestand '%s' " + "overschrijdt de %dB groottelimiet" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "Kan de positie van de journaalwaarneming niet herstellen: open('%s')" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" +@@ -1481,7 +1635,7 @@ msgstr "" + "bestand '%s' niet lezen" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -2022,7 +2176,7 @@ msgstr "Afsluiten van NSS mislukte." + msgid "Sleeping for %d seconds" + msgstr "In slaap voor %d seconden" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2030,7 +2184,7 @@ msgstr "" + "Er is een kernelprobleem opgetreden wegens een BIOS defect. Zulke problemen " + "kunnen helaas niet opgelost worden met kernelonderhoud." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2038,7 +2192,7 @@ msgstr "" + "Een kernelprobleem trad op, maar jouw hardware wordt niet ondersteund, " + "daarom kunnen kernelmaintainers dit probleem niet repareren." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2047,24 +2201,24 @@ msgstr "" + "Een kernelprobleem trad op, maar de kernel werd aangetast (flags:%s). " + "Kernelmaintainers kunnen geen diagnose stellen bij aangetaste rapporten." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Aangetaste modules: %s" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Lijst van bug ids" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Geef een bodhi-server-url op" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Geef een release op" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2074,20 +2228,20 @@ msgstr "" + "\n" + "Zoek naar updates op bodhi server" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Updates zoeken" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Geen updates voor dit pakket gevonden" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "De locale versie van het pakket is nieuwer dan de beschikbare updates" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2116,68 +2270,69 @@ msgstr "Print gevonden oopses" + msgid "Delete files with found oopses" + msgstr "Verwijder bestanden met gevonden oopses" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' identificeert meer dan een probleemmap" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Gebruik: abrt-cli [--version] COMMANDO [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Toon problemen [in MAPpen]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Verwijder probleemmap DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analyseer en rapporteer probleemdata in DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Print informatie over DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Print de telling van de recente crashes" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Verwerk meerdere problemen" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Zie 'abrt-cli COMMANDO --help' voor meer informatie" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& list [opties]" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Toon alleen niet-gerapporteerde problemen" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Toon gedetailleerd rapport" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Toon alleen de problemen die recenter zijn dan de gespecificeerde " + "tijdstempel" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Toon alleen de problemen die ouder zijn dan de gespecificeerde tijdstempel" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2189,51 +2344,61 @@ msgstr "" + "als een gebruiker met root rechten 'abrt-auto-reporting enabled' uit te " + "voeren.\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Tekst groter dan dit zal verkort getoond worden" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Geen probleemmap '%s' bekend" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& status" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Print alleen de probleem telling zonder een boodschap" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Print alleen de problemen recenter is dan opgegeven tijdstempel" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT heef %u probleem(problemen) ontdekt. Voor meer info voer je uit: abrt-" + "cli list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "& report [opties] MAP..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" +-msgstr "Verwijder PROBLEM_DIR na het rapporteren" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "'%s' wordt verwijderd" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "& report [opties] MAP..." ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "Verwijder PROBLEM_DIR na het rapporteren" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Acties: remove(rm), info(i), skip(s):" +@@ -2242,26 +2407,181 @@ msgstr "Acties: remove(rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Acties: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' wordt gerapporteerd" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Duw voor het volgende probleem op ENTER:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "Zonder het --since argument, wordt over alle gedetecteerde problemen " + "geïtereerd." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Selecteert alleen problemen die na het tijdstempel gedetecteerd zijn." + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/or.po b/po/or.po +index da975ec..7e64244 100644 +--- a/po/or.po ++++ b/po/or.po +@@ -11,7 +11,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -21,7 +21,7 @@ msgstr "" + "language/or/)\n" + "Language: or\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -31,102 +31,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ର ମାଲିକତ୍ତ୍ୱ ନେଇ ପାରିବେ ନାହିଁ" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' କୁ ଲେଖିବା ପାଇଁ ଡିରେକ୍ଟୋରୀ ଖୋଲି ପାରିବେ ନାହିଁ" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "ବିଜ୍ଞପ୍ତିକୁ ବନ୍ଦ କରିପାରିବେ ନାହିଁ: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "ରିପୋର୍ଟ" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "ବିଜ୍ଞପ୍ତି ଦର୍ଶାଇପାରିବେ ନାହିଁ: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio ଚ୍ୟାନେଲରୁ ପଢ଼ିପାରିବେ ନାହିଁ: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ଚ୍ୟାନେଲରେ ସାଙ୍କେତିକରଣକୁ ସେଟ କରିପାରିବେ ନାହିଁ: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ଚ୍ୟାନେଲ ପାଇଁ ଅଟକ ରଖିପାରୁନଥିବା ଧାରାକୁ ଅନ କରିପାରିବେ ନାହିଁ: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -137,6 +137,17 @@ msgstr "" + "ABRT ଦ୍ଵାରା ନୂତନ ସମସ୍ଯାଗୁଡ଼ିକ ଚିହ୍ନା ପଡ଼ିବା ସମୟରେ ଯେଉଁ ଚାଳକ ଆପଲେଟକୁ " + "ପରିବର୍ତ୍ତନ କରିଥାଏ\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -157,19 +168,15 @@ msgstr "ଖବର କରିବାକୁ ଛୋଟ କରାଯାଇଛି" + msgid "Silent shortened reporting" + msgstr "ନିରବରେ ଖବର କରିବାକୁ ଛୋଟ କରାଯାଇଛି" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"କୋରଡମ୍ପ ଫାଇଲଟି ଷ୍ଟାକ ଟ୍ରେସ ସୃଷ୍ଟି କରିବା ପାଇଁ ଆବଶ୍ୟକ ଯାହାକି ସମୟ ଏବଂ ସ୍ଥାନ " +-"ଆବଶ୍ୟକ କରିଥିବା ପ୍ରୟୋଗ। ABRT ଏକ ସର୍ଭିସ ପ୍ରଦାନ କରିଥାଏ ଯାହାକି କୋର ଡମ୍ପରୁ ଷ୍ଟାକ " +-"ଟ୍ରେସ ସୃଷ୍ଟି କରିଥାଏ କିନ୍ତୁ ଆପଣଙ୍କୁ ଏହି ସର୍ଭିସରେ କୋର ଡମ୍ପକୁ ଧାରଣ କରିବାକୁ ହେବ। " +-"ABRT କୁ ନିଷ୍କ୍ରିୟ କରିଥିବା ଏହି ବିକଳ୍ପ ସହିତ ତାହା ନପଚାରି କୋର ଡମ୍ପକୁ ଧାରଣ " +-"କରିଥାଏ।" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -219,29 +226,24 @@ msgstr "" + "ସମସ୍ୟାଗୁଡ଼ିକର ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକୁ ଦର୍ଶାଇବ ନାହିଁ। ସକ୍ଷିପ୍ତ ଖବରକାରୀ ସକ୍ରିୟ " + "ହୋଇଥିଲେ ହିଁ କାର୍ଯ୍ଯକାରୀ ହୋଇଥାଏ।" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "coredump ଧାରଣ କରିବା ପୂର୍ବରୁ ପଚାରନ୍ତୁ" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "ସମ୍ବେଦନଶୀଳ ସୂଚନା ପାଇଁ ବ୍ୟକ୍ତିଗତ ଟିକଟ ଅନୁରୋଧ କରନ୍ତୁୁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "ଅସମ୍ପୂର୍ଣ୍ଣ ସମସ୍ୟାଗୁଡ଼ିକୁ ସୂଚାନ୍ତୁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -251,6 +253,22 @@ msgstr "" + "ବ୍ୟବହାରକାରୀ ଲଗଆଉଟ ହେଉଛି। ମୂଲ୍ୟବାନ ସମସ୍ୟା ବିବରଣୀ ପ୍ରଦାନ କରିବା ପାଇଁ, ABRT " + "ଆପଣଙ୍କୁ ଏହି ସମସ୍ୟାଗୁଡ଼ିକୁ ଦାଖଲ କରିବା ପାଇଁ ଅନୁମତି ଦେବ ନାହିଁ।" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "ବନ୍ଦ କରନ୍ତୁ (_C)" +@@ -276,14 +294,14 @@ msgstr "ବିବରଣୀ" + msgid "Quit" + msgstr "ବିଦାୟ ନିଅନ୍ତୁ" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -295,11 +313,11 @@ msgstr "" + msgid "Problem directory" + msgstr "ସମସ୍ଯାବହୁଳ ଡିରେକ୍ଟୋରୀ" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "କନଫିଗରେସନ ଫାଇଲ" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -313,24 +331,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [ବିକଳ୍ପଗୁଡିକ]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM କୁ କ୍ଲାଏଣ୍ଟ uid ଭାବରେ ବ୍ୟବହାର କରନ୍ତୁ" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog ପାଇଁ ଲଗ" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "ଲଗରେ ପ୍ରଗ୍ରାମ ନାମଗୁଡ଼ିକୁ ଯୋଗ କରନ୍ତୁ" + +@@ -338,61 +357,51 @@ msgstr "ଲଗରେ ପ୍ରଗ୍ରାମ ନାମଗୁଡ଼ିକୁ ଯ + msgid "Unknown error" + msgstr "ଅଜଣା ତ୍ରୁଟି" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' ଟି ଗୋଟିଏ ବୈଧ ସମସ୍ୟା ଡ଼ିରେକ୍ଟୋରୀ ନୁହଁ" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' ଟି ଗୋଟିଏ ବୈଧ ଉପାଦାନ ନାମ ନୁହଁ" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' ଉପାଦାନକୁ ପରିବର୍ତ୍ତନ କରିପାରିବେ ନାହିଁ" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' ଟି ଗୋଟିଏ ବୈଧ ସମସ୍ୟା ଡ଼ିରେକ୍ଟୋରୀ ନୁହଁ" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "କ୍ଷମତା ସମ୍ପନ୍ନ ନୁହେଁ" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "ପରିବର୍ତ୍ତନ ପାଇଁ ସମସ୍ୟାକୁ ଅଭିଗମ୍ୟ କରିପାରିବେ ନାହିଁ" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' ଉପାଦାନକୁ ପରିବର୍ତ୍ତନ କରିପାରିବେ ନାହିଁ" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Chowning ଡିରେକ୍ଟୋରୀ ବିଫଳ ହୋଇଛି। ଅଧିକ ବିବରଣୀ ପାଇଁ ତନ୍ତ୍ର ଲଗ ଯାଞ୍ଚ କରନ୍ତୁ।" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' ଟି ଗୋଟିଏ ବୈଧ ଉପାଦାନ ନାମ ନୁହଁ" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' ର ଆକାର ପାଇବେ ନାହିଁ" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "କୌଣସି ସମସ୍ୟା ସ୍ଥାନ ନାହିଁ" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "ଉପାଦାନ '%s' କୁ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ '%s' ରୁ ଅପସାରଣ କରିପାରିବେ ନାହିଁ" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -402,12 +411,12 @@ msgstr "" + "'%s' ନାମଟି ହଜିଯାଇଛି, ସେହି ନାମରେ କୌଣସି ସର୍ଭିସ ଚାଲୁଛି କି ନାହିଁ ଦୟାକରି ଯାଞ୍ଚ " + "କରନ୍ତୁ।\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM ସେକଣ୍ଡ ନିଷ୍କ୍ରିୟ ହେବା ପରେ ପ୍ରସ୍ଥାନ କରନ୍ତୁ" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ଏହି ପ୍ରଗ୍ରାମକୁ ମୂଖ୍ଯ ଚାଳକ ଭାବରେ ଚଲାଇବା ଉଚିତ।" + +@@ -434,18 +443,22 @@ msgstr "daemonize କରନ୍ତୁ ନାହିଁ" + msgid "Log to syslog even with -d" + msgstr "-d ସହିତ ମଧ୍ଯ syslog ଘଟଣାକୁ ଲଗ କରନ୍ତୁ" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR ରେ EVENT କୁ ଚଲାନ୍ତୁ" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "ବ୍ୟବହାରକାରୀଙ୍କ ସହିତ ସିଧାସଳଖ ଭାବରେ ଯୋଗାଯୋଗ କରନ୍ତୁ" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -484,89 +497,90 @@ msgstr "ସହକାରୀ କର୍ମଚାରୀ ସଂଖ୍ୟା। ପୂ + msgid "Maximal cache size in MiB. Default is " + msgstr "ସର୍ବାଧିକ କ୍ୟାଶେ ଆକାର MiB ରେ। ପୂର୍ବନିର୍ଦ୍ଧାରିତଟି ହେଉଛି" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "ବୈଧିକରଣକୁ ଅଫ୍‌ କରନ୍ତୁ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat ସହାୟତା ବ୍ୟବହାରକାରୀ ନାମ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat ସହାୟତା ପ୍ରବେଶ ସଂକେତ, ଯଦି ଦିଆଯାଇ ନାହିଁ, ତେବେ ଏହା ପାଇଁ ଏକ ପ୍ରମ୍ପ୍‌ଟ୍ " + "ଦିଆଯିବ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL ପ୍ରମାଣପତ୍ର ପଥ କିମ୍ବା ପ୍ରମାଣପତ୍ର ପ୍ରକାର" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "ଆପଣଙ୍କୁ --password ପାଇଁ --username ମଧ୍ଯ ଉଲ୍ଲେଖ କରିବା ଆବଶ୍ୟକ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "ଆପଣ --username କିମ୍ବା --certificate ବ୍ୟବହାର କରିପାରିବେ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "ଆପଣ --username କିମ୍ବା --anonymous ବ୍ୟବହାର କରିପାରିବେ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "ଆପଣ --anonymous କିମ୍ବା --certificate ବ୍ୟବହାର କରିପାରିବେ" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "ଅବୈଧ ସଂଖ୍ୟକ ସ୍ୱତନ୍ତ୍ରଚର" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "ଅଜଣା ବିକଳ୍ପ ମୂଲ୍ୟ: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "ପ୍ରବେଶ ସଙ୍କେତ:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "ପ୍ରବେଶ ସଂକେତ ବିନା ଆଗକୁ ବଢ଼ିପାରିବେ ନାହିଁ \n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଖବର କରିବାକୁ ବୈଧିକୃତ କରିଛି" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL କ୍ଲାଏଣ୍ଟ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଖବର କରିବାକୁ ବୈଧିକୃତ କରିଛି" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "anonymous ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଖବର କରିବା" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -586,83 +600,83 @@ msgstr "" + " FILENAME - Uploaded archive file name\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "ଗୋଟିଏ ଡିରେକ୍ଟୋରୀ ନୁହଁ: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}' (ସ୍ଲାଶ ସହିତ ଆରମ୍ଭ ହୋଇଥାଏ)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}' (ଡଟ୍‌ ସହିତ ଆରମ୍ଭ ହୋଇଥାଏ)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}'(ଧାରଣ କରିଥାଏ ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}'(ଖାଲିସ୍ଥାନ ଧାରଣ କରିଥାଏ )" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}'(ଟ୍ୟାବ୍‌ ଧାରଣ କରିଥାଏ )" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "ଡିରୋକ୍ଟୋରୀକୁ '{0}' ଭାବରେ ପରିବର୍ତ୍ତନ କରିପାରିବେ ନାହିଁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "ଅଜଣା ଫାଇଲ ପ୍ରକାର: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' ରେ କାର୍ଯ୍ୟକାରୀ ଡିରେକ୍ଟୋରୀ ସୃଷ୍ଟି କରିପାରିବେ ନାହିଁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' କୁ '{1}' କୁ ଘୁଞ୍ଚାଇପାରିବେ ନାହିଁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' କୁ '{1}' କୁ ନକଲ କରିପାରିବେ ନାହିଁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' ରେ ଯାଞ୍ଚ ତୃଟି" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' କୁ ଖୋଲୁଅଛି" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ଡିରେକ୍ଟୋରୀ ସୃଷ୍ଟି କରିପାରିବେ ନାହିଁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' କୁ ଖୋଲିପାରିବେ ନାହିଁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' କୁ ସଫଳତାର ସହିତ କାର୍ଯ୍ୟକାରୀ ହୋଇଛି" + +@@ -686,18 +700,26 @@ msgstr "chown '%s' କରିପାରିବେ ନାହିଁ: %s" + msgid "Deleting problem directory failed: %s" + msgstr "ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ଅପସାରଣ ବିଫଳ ହୋଇଛି: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus ରୁ ସମସ୍ୟା ତଥ୍ୟ ପାଇପାରିବେ ନାହିଁ: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus ରୁ ସମସ୍ୟା ତାଲିକା ପାଇପାରିବେ ନାହିଁ: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus ରୁ ସମସ୍ୟା ତଥ୍ୟ ପାଇପାରିବେ ନାହିଁ: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -745,7 +767,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s ପାଇଁ ବ୍ୟାକଟ୍ରାସ ବିଶ୍ଳେଷଣ ବିଫଳ ହୋଇଛି" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "କ୍ରାସ ଥ୍ରେଡ଼ ମିଳୁ ନାହିଁ" + +@@ -853,7 +875,7 @@ msgstr "oops ସନ୍ଦେଶକୁ ବାହାର କରିପାରିବ + msgid "Oops text extracted successfully" + msgstr "Oops ପାଠ୍ୟ ସଫଳତାର ସହିତ ବାହାର କରାଯାଇଛି" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -861,6 +883,38 @@ msgstr "" + "ହାର୍ଡୱେର ତୃଟିଗୁଡ଼ିକ ଚିହ୍ନଟ ହୋଇଛି ବୋଲି କର୍ଣ୍ଣଲ ଲଗ ସୂଚାଇଥାଏ।\n" + "ଏହା ସମ୍ଭବତଃ ଏକ ସଫ୍ଟୱେର ସମସ୍ୟା ନୁହଁ।\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -978,7 +1032,36 @@ msgstr "ଅନୁପସ୍ଥିତ ତ୍ରୁଟିନିବାରଣ ଫା + msgid "All debuginfo files are available" + msgstr "ସମସ୍ତ ତ୍ରୁଟିନିବାରଣ ଫାଇଲଗୁଡ଼ିକ ଉପଲବ୍ଧ" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -988,7 +1071,7 @@ msgstr "" + "ଆପଣଙ୍କର ଉତ୍ତର 'ନାଁ' ତେବେ, ସ୍ଥାନୀୟ ଭାବରେ ଏକ ଷ୍ଟାକ ଟ୍ରେସ ସୃଷ୍ଟି ହେବ। (ଏହା " + "ହୁଏତଃ ବହୁ ପରିମାଣର ତଥ୍ୟ ଆହରଣ କରିପାରେ)।" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1229,7 +1312,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d ଡମ୍ପ ଅବସ୍ଥାନ ପରି ସମାନ, ଡମ୍ପ ଅବସ୍ଥାନକୁ abrt.conf ରେ ଉଲ୍ଲେଖ କରାଯାଇ ନାହିଁ" +@@ -1240,16 +1324,18 @@ msgstr "ବାହାର କରାଯାଇଥିବା ସୂଚନାକୁ ସ + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "ସମସ୍ୟା ଡିରେକ୍ଟୋରୀକୁ ବିଶ୍ୱ ପଠନଯୋଗ୍ୟ କରନ୍ତୁ" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନିର୍ମାଣକୁ ପ୍ରତି ସେକେଣ୍ଡରେ 1କୁ ତ୍ୱରିତ କରନ୍ତୁ" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout ରେ ସନ୍ଧାନ ବାକ୍ୟଖଣ୍ଡ(ଗୁଡ଼ିକୁ) ମୁଦ୍ରଣ କରନ୍ତୁ ଏବଂ ପ୍ରସ୍ଥାନ କରନ୍ତୁ" + +@@ -1259,9 +1345,13 @@ msgstr "stdout ରେ ସନ୍ଧାନ ବାକ୍ୟଖଣ୍ଡ(ଗୁଡ + msgid "Failed to compile regex" + msgstr "regex କୁ ସଙ୍କଳନ କରିବାରେ ବିଫଳ" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "ଏହି ସମସ୍ୟାକୁ ଅଦ୍ୟତନ କରିପାରିବେ ନାହିଁ: ଗୋଟିଏରୁ ଅଧିକ oops ମିଳିଛି" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1280,6 +1370,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1303,11 +1394,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1321,16 +1414,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1338,18 +1434,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1368,14 +1467,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1384,12 +1486,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1399,59 +1547,63 @@ msgstr "" + "\n" + "Xorg ନଷ୍ଟକୁ FILE (ଅଥବା ମାନକ ନିବେଶ) ରୁ ବାହାର କରନ୍ତୁ" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "ମାନକ ଫଳାଫଳ ଉପରେ ମୁଦ୍ରଣୀ ନଷ୍ଟ ତଥ୍ୟ ପାଇଛି" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "ମିଳିଥିବା ପ୍ରତ୍ୟେକ ନଷ୍ଟ ବିବରଣୀ ପାଇଁ DIR ରେ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନିର୍ମାଣ କରନ୍ତୁ" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1986,7 +2138,7 @@ msgstr "NSS କୁ ବନ୍ଦ କରିବାରେ ବିଫଳ।" + msgid "Sleeping for %d seconds" + msgstr "%d ସେକେଣ୍ଡ ପାଇଁ ସୁପ୍ତ ଅଛି" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1994,7 +2146,7 @@ msgstr "" + "ଖରାପ BIOS ହେତୁ କର୍ଣ୍ଣଲ ସମସ୍ୟା ଦେଖାଦେଇଛି। ଦୁର୍ଭାଗ୍ୟ ବଶତଃ, ଏପରି ସମସ୍ୟାଗୁଡ଼ିକୁ " + "କର୍ଣ୍ଣଲ ପରିଚାଳକମାନଙ୍କ ଦ୍ୱାରା ସମାଧାନ ହୋଇପାରିବ ନାହିଁ।" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2002,7 +2154,7 @@ msgstr "" + "ଏକ କର୍ଣ୍ଣଲ ସମସ୍ୟା ଦେଖାଦେଇଛି, କିନ୍ତୁ ଆପଣଙ୍କର ହାର୍ଡୱେର ସହାୟତା ପ୍ରାପ୍ତ ନୁହଁ, " + "ତେଣୁ କର୍ଣ୍ଣଲ ପରିଚାଳକ ମାନେ ଏହି ସମସ୍ୟାର ସମାଧାନ କରିବାରେ ଅସମର୍ଥ।" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2011,24 +2163,24 @@ msgstr "" + "ଏକ କର୍ଣ୍ଣଲ ସମସ୍ୟା ଘଟିଛି, କିନ୍ତୁ ଆପଣଙ୍କର କର୍ଣ୍ଣଲ ଖରାପ ହୋଇଯାଇଛି (ସୂଚକ:%s). " + "କର୍ଣ୍ଣଲ ପରିଚାଳକମାନେ ତ୍ରୁଟି ବିବରଣୀଗୁଡ଼ିକୁ ବିଶ୍ଳେଷଣ କରିବାରେ ଅସମର୍ଥ।" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " ଦୂଷିତ ମଡ୍ୟୁଲଗୁଡ଼ିକ: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "ତ୍ରୁଟି id ଗୁଡ଼ିକର ତାଲିକା" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "ଏକ ବୋଧି ସର୍ଭର url ଉଲ୍ଲେଖ କରନ୍ତୁ" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "ଏକ ପ୍ରକାଶନୀ ଉଲ୍ଲେଖ କରନ୍ତୁ" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2038,20 +2190,20 @@ msgstr "" + "\n" + "ବୋଧି ସର୍ଭର ଉପରେ ଅଦ୍ୟତନଗୁଡ଼ିକୁ ସନ୍ଧାନ କରନ୍ତୁ" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "ଅଦ୍ୟତନଗୁଡ଼ିକୁ ସନ୍ଧାନ କରୁଅଛି" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "ଏହି ପ୍ୟାକେଜ ପାଇଁ କୌଣସି ଅଦ୍ୟତନ ନାହିଁ" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "ପ୍ୟାକେଜର ସ୍ଥାନୀୟ ସଂସ୍କରଣ ଉପଲବ୍ଧ ଅଦ୍ୟତନଗୁଡ଼ିକ ଠାରୁ ନୂଆ ଅଟେ" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2079,68 +2231,69 @@ msgstr "ମୁଦ୍ରଣୀ oopses ପାଇଛି" + msgid "Delete files with found oopses" + msgstr "ମିଳିଥିବା oopses ସହିତ ଫାଇଲଗୁଡ଼ିକୁ ଅପସାରଣ କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ଗୋଟିଏରୁ ଅଧିକ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ଚିହ୍ନିଟ କରିଛି" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "ବ୍ୟବହାର ବିଧି: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "ତାଲିକା ସମସ୍ୟା [DIRs ରେ]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "ସମସ୍ଯା ଡିରେକ୍ଟୋରୀ DIRରୁ ଫାଇଲଗୁଡ଼ିକୁ ବାହାର କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR ରେ ସମସ୍ୟା ତଥ୍ୟକୁ ବିଶ୍ଳେଷଣ କରନ୍ତୁ ଏବଂ ଖବର କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR ବିଷୟରେ ସୂଚନାକୁ ମୁଦ୍ରଣ କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "ନିକଟରେ ହୋଇଥିବା ନଷ୍ଟର ସଂଖ୍ୟା ମୁଦ୍ରଣ କରନ୍ତୁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "ଏକାଧିକ ସମସ୍ୟାଗୁଡ଼ିକୁ କାର୍ଯ୍ୟକାରୀ କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "ଅଧିକ ସୂଚନା ପାଇଁ 'abrt-cli COMMAND --help' କୁ ଦେଖନ୍ତୁ" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "କେବଳ ଖବର କରାଯାଇନଥିବା ସମସ୍ୟାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରନ୍ତୁ" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "ବିସ୍ତୃତ ବିବରଣୀ ଦର୍ଶାନ୍ତୁ" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟସୀମାର ନିକଟବର୍ତ୍ତୀ ସମସ୍ୟାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରନ୍ତୁ" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟସୀମା ଠାରୁ ପୁରୁଣା ସମସ୍ୟାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରନ୍ତୁ" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2151,55 +2304,65 @@ msgstr "" + "କୁ ନ୍ୟସ୍ତ କରି\n" + "ଏହାକୁ ରୁଟ ଭାବରେ ସକ୍ରିୟ କରନ୍ତୁ\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "ଏହାଠାରୁ ବଡ଼ ପାଠ୍ୟକୁ ସଂକ୍ଷିପ୍ତରେ ଦର୍ଶାଯିବ" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "ଏପରି କୌଣସି ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନାହିଁ '%s'" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "କୌଣସି ସନ୍ଦେଶ ବିନା କେବଳ ସମସ୍ୟା ସଂଖ୍ୟା ମୁଦ୍ରଣ କରନ୍ତୁ" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟ ସୀମା ନିକଟବର୍ତ୍ତୀ ସମସ୍ୟାଗୁଡ଼ିକୁ ମୁଦ୍ରଣ କରନ୍ତୁ" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT %u ସମସ୍ୟା(ଗୁଡ଼ିକୁ) ଚିହ୍ନଟ କରିଛି। ଅଧିକ ସୂଚନା ପାଇଁ ଏହାକୁ ଚଲାନ୍ତୁ: abrt-" + "cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' କୁ ଅପସାରଣ କରୁଅଛି" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& ବିବରଣୀ [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "ଖବର କରିସାରିବା ପରେ PROBLEM_DIR କୁ ବାହାର କରନ୍ତୁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' କୁ ଅପସାରଣ କରୁଅଛି" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "କାର୍ଯ୍ୟ: (rm), info(i), skip(s) କୁ କାଢ଼ନ୍ତୁ:" +@@ -2210,28 +2373,183 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "କାର୍ଯ୍ୟ: (rm),report(e), info(i), skip(s) କୁ କାଢ଼ନ୍ତୁ:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' କୁ ଖବର କରା ସରିଛି" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "ପରବର୍ତ୍ତୀ ସମସ୍ୟା ପାଇଁ ENTER ଦବାନ୍ତୁ:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "--since ସ୍ୱତନ୍ତ୍ରଚର ବିନା, ସମସ୍ତ ଚିହ୍ନଟ ସମସ୍ୟାଗୁଡ଼ିକ ଉପରେ ବିଶ୍ଳେଷଣ କରନ୍ତୁ।" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "କେବଳ timestamp ପରେ ଥିବା ସମସ୍ୟାଗୁଡ଼ିକୁ ବାଛନ୍ତୁ" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/pa.po b/po/pa.po +index 4a9d600..15a960a 100644 +--- a/po/pa.po ++++ b/po/pa.po +@@ -13,7 +13,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -23,7 +23,7 @@ msgstr "" + "abrt/language/pa/)\n" + "Language: pa\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -33,102 +33,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ਦਾ ਮਾਲਕ ਨਹੀਂ ਬਣ ਸਕਦਾ" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' ਨੂੰ ਲਿਖਣ ਲਈ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਖੋਲ ਸਕਿਆ" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "ਸੂਚਨਾ ਬੰਦ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "ਰਿਪੋਰਟ" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "ਸੂਚਨਾ ਨਹੀਂ ਵੇਖਾ ਸਕਿਆ: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "'%s' ਤੋਂ ਪੜ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ਚੈਨਲ ਤੇ ਇੰਕੋਡਿੰਗ ਸੈੱਟ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ਚੈਨਲ ਲਈ ਨਾਨ-ਬਲਾਕਿੰਗ ਮੋਡ ਨਹੀਂ ਚਾਲੂ ਕਰ ਸਕਿਆ: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -138,6 +138,17 @@ msgstr "" + "\n" + "ਐਪਲਿਟ ਜੋ ਯੂਜ਼ਰ ਨੂੰ ABRT ਦੁਆਰਾ ਲੱਭੀ ਨਵੀਂ ਸਮੱਸਿਆ ਬਾਰੇ ਦੱਸਦਾ ਹੈ\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -156,18 +167,15 @@ msgstr "" + msgid "Silent shortened reporting" + msgstr "" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"ਸਟੈਕ ਪੈਦਾ ਕਰਨ ਲਈ ਕੋਰਡੰਪ ਫਾਈਲ ਜਰੂਰੀ ਹੈ ਜਿਹੜੀ ਕਿ ਸਮਾਂ ਅਤੇ ਜਗ੍ਹਾ ਲੈਣ ਵਾਲੀ " +-"ਕਾਰਵਾਈ ਹੈ। ABRT ਇੱਕ ਸੇਵਾ ਮੁਹੱਈਆ ਕਰਵਾਉਂਦਾ ਹੈ ਜਿਹੜੀ ਕੋਰਡੰਪ ਤੋਂ ਸਟੈਕ ਟਰੇਸ ਪੈਦਾ " +-"ਕਰਦੀ ਹੈ ਪਰ ਤੁਹਾਨੂੰ ਇਸ ਸੇਵਾ ਨੂੰ ਕੋਰਡੰਪ ਅੱਪਲੋਡ ਕਰਨਾ ਪੈਂਦਾ ਹੈ। ਇਸ ਚੋਣ ਨੂੰ ਅਯੋਗ " +-"ਕਰਨ ਨਾਲ ABRT ਕੋਰਡੰਪ ਨੂੰ ਬਿਨਾਂ ਪੁੱਛੇ ਹੀ ਅੱਪਲੋਡ ਕਰ ਦੇਵੇਗਾ।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -198,34 +206,45 @@ msgid "" + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "ਕੋਰਡੰਪ ਅੱਪਲੋਡ ਕਰਨ ਤੋਂ ਪਹਿਲਾਂ ਪੁੱਛੋ" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "ਸੰਵੇਦਨਸ਼ੀਲ ਜਾਣਕਾਰੀ ਲਈ ਨਿੱਜੀ ਟਿਕਟ ਦੀ ਬੇਨਤੀ ਕਰੋ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "ਅਧੂਰੀਆਂ ਸਮੱਸਿਆਵਾਂ ਲਈ ਸੂਚਿਤ ਕਰੋ" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" +@@ -252,14 +271,14 @@ msgstr "ਬਾਰੇ" + msgid "Quit" + msgstr "ਨਿੱਕਲੋ" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -271,11 +290,11 @@ msgstr "" + msgid "Problem directory" + msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "ਸੰਰਚਨਾ ਫਾਇਲ" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -289,24 +308,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [ਚੋਣਾਂ]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM ਨੂੰ ਕਲਾਂਈਟ uid ਤੌਰ ਤੇ ਵਰਤੋ" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog ਵਿੱਚ ਲਾਗ ਕਰੋ" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "ਸਮੱਸਿਆ ਨਾਂ ਲਾਗ ਵਿੱਚ ਜੋੜੋ" + +@@ -314,60 +334,50 @@ msgstr "ਸਮੱਸਿਆ ਨਾਂ ਲਾਗ ਵਿੱਚ ਜੋੜੋ" + msgid "Unknown error" + msgstr "ਅਣਜਾਣੀ ਗਲਤੀ" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' ਠੀਕ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' ਯੋਗ ਐਲੀਮੈਂਟ ਨਾਂ ਨਹੀਂ ਹੈ" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' ਐਲੀਮੈਂਟ ਸੋਧੇ ਨਹੀਂ ਜਾ ਸਕਦੇ" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' ਠੀਕ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "ਪਰਮਾਣਤ ਨਹੀਂ" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "ਸੁਧਾਰ ਲਈ ਸਮੱਸਿਆ ਨਹੀਂ ਵੇਖ ਸਕਦਾ" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "chowning ਡਾਇਰੈਕਟਰੀ ਅਸਫਲ ਹੋਈ। ਜਿਆਦਾ ਵੇਰਵਿਆਂ ਲਈ ਸਿਸਟਮ ਲਾੱਗ ਜਾਂਚੋ।" +- +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' ਯੋਗ ਐਲੀਮੈਂਟ ਨਾਂ ਨਹੀਂ ਹੈ" ++msgid "'%s' element can't be modified" ++msgstr "'%s' ਐਲੀਮੈਂਟ ਸੋਧੇ ਨਹੀਂ ਜਾ ਸਕਦੇ" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." ++msgstr "chowning ਡਾਇਰੈਕਟਰੀ ਅਸਫਲ ਹੋਈ। ਜਿਆਦਾ ਵੇਰਵਿਆਂ ਲਈ ਸਿਸਟਮ ਲਾੱਗ ਜਾਂਚੋ।" ++ ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' ਦਾ ਆਕਾਰ ਪ੍ਰਾਪਤ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "ਕੋਈ ਸਮੱਸਿਆ ਸਪੇਸ ਨਹੀਂ ਬਚੀ" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "ਐਲੀਮੈਂਟ '%s' ਨੂੰ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ '%s' ਤੋਂ ਹਟਾ ਨਹੀਂ ਸਕਦਾ" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -377,12 +387,12 @@ msgstr "" + "ਨਾਂ '%s' ਗੁੰਮ ਗਿਆ ਹੈ, ਕਿਰਪਾ ਕਰਕੇ ਜਾਂਚੋ ਕਿ ਇਸ ਨਾਂ ਵਾਲਾ ਹੋਰ ਜੰਤਰ ਤਾਂ ਨਹੀਂ ਚੱਲ " + "ਰਿਹਾ।\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM ਸਕਿੰਟਾਂ ਦੀ ਕਾਰਵਾਈ ਤੋਂ ਬਾਅਦ ਬੰਦ ਕਰੋ" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ਇਹ ਪਰੋਗਰਾਮ ਪਰਬੰਧਕ(root) ਦੇ ਤੌਰ ਤੇ ਚਲਾਉਣਾ ਜਰੂਰੀ ਹੈ।" + +@@ -408,18 +418,22 @@ msgstr "ਡੈਮਨਾਈਜ਼ ਨਾ ਕਰੋ" + msgid "Log to syslog even with -d" + msgstr "syslog ਵਿੱਚ ਭਾਵੇਂ -d ਚੋਣ ਨਾਲ ਲਾਗ ਕਰੋ" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "EVENT ਨੂੰ DIR ਉੱਪ ਚਲਾਓ" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "ਯੂਜ਼ਰ ਨੂੰ ਸਿੱਧਾ ਸੰਪਰਕ ਕਰੋ" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -461,75 +475,76 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "ਵੱਧ ਤੋਂ ਵੱਧ ਕੈਚੇ ਆਕਾਰ MiB ਵਿੱਚ। ਮੂਲ ਹੈ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "ਅਢੁਕਵੀਂ ਗਿਣਤੀ ਦੇ ਆਰਗੂਮੈਂਟ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "ਅਣਪਛਾਤਾ ਚੋਣ ਮੁੱਲ: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -541,68 +556,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -626,18 +641,26 @@ msgstr "chown '%s' ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" + msgid "Deleting problem directory failed: %s" + msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਹਟਾਉਣ ਵਿੱਚ ਫੇਲ ਹੋਇਆ: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus ਤੋਂ ਸਮੱਸਿਆ ਡਾਟਾ ਨਹੀਂ ਲੈ ਸਕਿਆ: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus ਤੋਂ ਸਮੱਸਿਆ ਸੂਚੀ ਨਹੀਂ ਲੈ ਸਕਿਆ: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus ਤੋਂ ਸਮੱਸਿਆ ਡਾਟਾ ਨਹੀਂ ਲੈ ਸਕਿਆ: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -684,7 +707,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s ਲਈ ਬੈਕਟਰੇਸ ਪਾਰਸਿੰਗ ਫੇਲ ਹੋਈ ਹੈ" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "ਕਰੈਸ਼ ਥਰੈੱਡ ਨਹੀਂ ਲੱਭਿਆ" + +@@ -791,7 +814,7 @@ msgid "Oops text extracted successfully" + msgstr "Oops ਸਫਲਤਾਪੂਰਵਕ ਨਿਖੇੜਿਆ ਗਿਆ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -799,6 +822,38 @@ msgstr "" + "ਕਰਨਲ ਲੌਗ ਸੰਕੇਤ ਕਰਦਾ ਹੈ ਕਿ ਹਾਰਡਵੇਅਰ ਗਲਤੀਆਂ ਖੋਜੀਆਂ ਗਈਆਂ।\n" + "ਇਹ ਸਾਫਟਵੇਅਰ ਸਮੱਸਿਆ ਉੱਕਾ ਹੀ ਨਹੀਂ ਹੋ ਸਕਦੀ।\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -916,7 +971,36 @@ msgstr "ਗੈਰ-ਮੌਜੂਦ debuginfo ਫਾਇਲ: {0}" + msgid "All debuginfo files are available" + msgstr "ਸਭ debuginfo ਫਾਇਲਾਂ ਉਪਲੱਬਧ ਹਨ" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -926,7 +1010,7 @@ msgstr "" + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1157,7 +1241,8 @@ msgstr "ਹਰੇਕ oops ਲਈ ਨਵੀਂ ਸਮੱਸਿਆ ਡਾਇਰੈ + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation ਵਾਂਗ, DumpLocation ਨੂੰ abrt.conf ਵਿੱਚ ਨਿਰਧਾਰਤ ਕੀਤਾ ਹੈ" + +@@ -1167,16 +1252,18 @@ msgstr "ਅਲੱਗ ਕੀਤੀ ਹੋਈ ਜਾਣਕਾਰੀ PROBLEM ਵਿ + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਨੂੰ ਪੜ੍ਹਨਯੋਗ ਬਣਾਓ" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "1 ਪ੍ਰਤੀ ਸੈਕਿੰਡ ਨਾਲ ਥਰੌਟਲ ਮੁਸ਼ਕਿਲ ਡਾਇਰੈਕਟਰੀ ਬਣਾਉਣਾ " + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "ਖੋਜ ਸਤਰਾਂ ਨੂੰ stdout ਤੇ ਪ੍ਰਿੰਟ ਕਰੋ ਅਤੇ ਬਾਹਰ ਜਾਓ" + +@@ -1185,9 +1272,13 @@ msgstr "ਖੋਜ ਸਤਰਾਂ ਨੂੰ stdout ਤੇ ਪ੍ਰਿੰਟ ਕ + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "ਮੁਸ਼ਕਿਲ ਨੂੰ ਅੱਪਡੇਟ ਨਹੀਂ ਕਰ ਸਕਦਾ: ਇੱਕ ਤੋਂ ਜਿਆਦਾ oops ਲੱਭੀਆਂ" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1206,6 +1297,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1229,11 +1321,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1247,16 +1341,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1264,18 +1361,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1294,14 +1394,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1310,12 +1413,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1325,58 +1474,62 @@ msgstr "" + "\n" + "Xorg ਕਰੈਸ਼ ਨੂੰ FILE (ਜਾਂ ਸਟੈਂਡਰਡ ਇੰਪੁੱਟ) ਤੋਂ ਲਵੋ" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "ਮਿਲੇ ਕਰੈਸ਼ ਡਾਟੇ ਨੂੰ ਸਟੈਂਡਰਡ ਆਊਟਪੁੱਟ ਤੇ ਪ੍ਰਿੰਟ ਕਰੋ" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "ਹਰੇਕ ਕਰੈਸ਼ ਲਈ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ DIR ਵਿੱਚ ਬਣਾਓ" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1903,7 +2056,7 @@ msgid "Sleeping for %d seconds" + msgstr "%d ਸੈਕਿੰਡਾਂ ਲਈ ਸੌਂ ਰਿਹਾ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1912,7 +2065,7 @@ msgstr "" + "ਮੁਸ਼ਕਲਾਂ ਕਰਨਲ ਪਰਬੰਧਕਾਂ ਦੁਆਰਾ ਠੀਕ ਹੋਣ ਯੋਗ ਨਹੀਂ ਹਨ।" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1920,7 +2073,7 @@ msgstr "" + "ਇੱਕ ਕਰਨਲ ਮੁਸ਼ਕਲ ਵਾਪਰੀ ਹੈ, ਪਰ ਤੁਹਾਡਾ ਹਾਰਡਵੇਅਰ ਅਸਮਰਥਿਤ ਹੈ, ਇਸ ਲਈ ਕਰਨਲ ਪਰਬੰਧਕ ਇਸ " + "ਮੁਸ਼ਕਲ ਨੂੰ ਠੀਕ ਕਰਨ ਤੋਂ ਅਸਮਰੱਥ ਹਨ।" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1929,24 +2082,24 @@ msgstr "" + "ਇੱਕ ਕਰਨਲ ਸਮੱਸਿਆ ਆਈ ਹੈ, ਪਰ ਤੁਹਾਡਾ ਕਰਨਲ ਖਰਾਬ (flags:%s) ਹੋ ਗਿਆ ਹੈ। ਕਰਨਲ ਪਰਬੰਧਕ " + "ਖਰਾਬੀ ਬਾਰੇ ਪੜਤਾਲ ਕਰਨ ਤੋਂ ਅਸਮਰਥ ਹਨ।" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "ਟੈਂਟਡ ਮੋਡੀਊਲ: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "ਬੱਗ ids ਦੀ ਸੂਚੀ" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "ਇੱਕ ਬੋਧੀ ਸਰਵਰ url ਦਿਓ" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "ਇੱਕ ਰੀਲੀਜ਼ ਦਿਓ" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1956,20 +2109,20 @@ msgstr "" + "\n" + "ਬੋਧੀ ਸਰਵਰ ਤੇ ਅੱਪਡੇਟਾਂ ਲਈ ਖੋਜੋ" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "ਅੱਪਡੇਟਾਂ ਲਈ ਖੋਜ ਰਿਹਾ ਹੈ" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "ਇਸ ਪੈਕੇਜ ਲਈ ਕੋਈ ਅੱਪਡੇਟ ਨਹੀਂ ਲੱਭਿਆ" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "ਪੈਕੇਜ ਦਾ ਲੋਕਲ ਵਰਜਨ ਉਪਲੱਬਧ ਅੱਪਡੇਟਾਂ ਤੋਂ ਨਵਾਂ ਹੈ" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1995,69 +2148,70 @@ msgstr "ਲੱਭੀਆਂ ਹੋਈਆਂ oopses ਨੂੰ ਛਾਪੋ" + msgid "Delete files with found oopses" + msgstr "ਲੱਭੀਆਂ ਹੋਈਆਂ oopses ਵਾਲੀਆਂ ਫਾਈਲਾਂ ਮਿਟਾਓ" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ਇੱਕ ਤੋਂ ਜਿਆਦਾ ਮੁਸ਼ਕਿਲ ਡਾਇਰੈਕਟਰੀਆਂ ਪਛਾਣਦਾ ਹੈ" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "ਵਰਤੋਂ: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ DIR ਹਟਾਓ" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR ਵਿੱਚ ਸਮੱਸਿਆ ਡਾਟੇ ਦੀ ਜਾਂਚ ਕਰੋ ਅਤੇ ਰਿਪੋਰਟ ਕਰੋ" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR ਬਾਰੇ ਜਾਣਕਾਰੀ ਪ੍ਰਿੰਟ ਕਰੋ" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "ਹਾਲੀਆ ਹੋਏ ਕਰੈਸ਼ਾਂ ਦੀ ਗਿਣਤੀ ਛਾਪੋ" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "ਵਧੇਰੇ ਜਾਣਕਾਰੀ ਲਈ 'abrt-cli COMMAND --help' ਵੇਖੋ" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "ਸਿਰਫ ਨਾ ਸੂਚਿਤ ਕੀਤੀਆਂ ਮੁਸ਼ਕਲਾਂ ਹੀ ਸੂਚੀਬੱਧ ਕਰੋ" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "ਵਿਸਥਾਰ ਰਿਪੋਰਟ ਵੇਖਾਓ" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "ਸਿਰਫ਼ ਦਰਸਾਈ ਗਈ ਸਮਾਂ-ਮੋਹਰ ਨਾਲੋਂ ਜਿਆਦਾ ਸੱਜਰੀਆਂ ਸਮੱਸਿਆਵਾਂ ਨੂੰ ਸੂਚੀਬੱਧ ਕਰੋ" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "ਸਿਰਫ਼ ਦਰਸਾਈ ਗਈ ਸਮਾਂ-ਮੋਹਰ ਨਾਲੋਂ ਜਿਆਦਾ ਪੁਰਾਣੀਆਂ ਸਮੱਸਿਆਵਾਂ ਨੂੰ ਸੂਚੀਬੱਧ ਕਰੋ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2068,51 +2222,61 @@ msgstr "" + "reporting enabled' ਨੂੰ\n" + "ਰੂਟ ਹੱਕ ਵਾਲੇ ਯੂਜਰ ਵਜੋਂ ਜਾਰੀ ਕਰ ਕੇ ਯੋਗ ਕਰਨ ਲਈ ਵਿਚਾਰੋ\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "ਇਸ ਤੋਂ ਵੱਡਾ ਪਾਠ ਸੰਖੇਪਿਤ ਕਰ ਦਿੱਤਾ ਜਾਵੇਗਾ" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "ਕੋਈ '%s' ਮੁਸ਼ਕਿਲ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "ਬਿਨਾਂ ਕਿਸੇ ਸੁਨੇਹੇ ਦੇ ਸਿਰਫ਼ ਮੁਸ਼ਕਿਲਾਂ ਦੀ ਗਿਣਤੀ ਛਾਪੋ" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "ਸਿਰਫ਼ ਸਮਾਂ-ਮੋਹਰ ਤੋਂ ਵੀ ਹਾਲੀਆ ਹੋਈਆਂ ਮੁਸ਼ਕਿਲਾਂ ਹੀ ਛਾਪੋ" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT ਨੇ %u ਸਮੱਸਿਆ(ਸਮੱਸਿਆਵਾਂ) ਲੱਭੀਆਂ ਹਨ। ਜਿਆਦਾ ਜਾਣਕਾਰੀ ਲਈ ਚਲਾਓ: abrt-cli " + "list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2121,24 +2285,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/pl.po b/po/pl.po +index cf77ca9..e68bfe1 100644 +--- a/po/pl.po ++++ b/po/pl.po +@@ -10,18 +10,18 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-03-17 03:32-0400\n" ++"PO-Revision-Date: 2015-08-28 12:31-0400\n" + "Last-Translator: Piotr Drąg \n" + "Language-Team: Polish (http://www.transifex.com/projects/p/fedora-abrt/" + "language/pl/)\n" + "Language: pl\n" + "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " + "|| n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -31,41 +31,41 @@ msgstr "Zgłaszanie problemów" + msgid "View and report application crashes" + msgstr "Wyświetlanie i zgłaszanie awarii aplikacji" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" +-msgstr "Nie można zmienić właściciela \"%s\"" ++msgstr "Nie można zmienić właściciela „%s”" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" +-msgstr "Nie można otworzyć katalogu do zapisania \"%s\"" ++msgstr "Nie można otworzyć katalogu do zapisania „%s”" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nie można zamknąć powiadomienia: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Ups." + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Zgłoś" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Uruchom ponownie" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "Program %s uległ awarii. Problem został automatycznie zgłoszony." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -74,8 +74,8 @@ msgstr "" + "Program %s uległ awarii. Problem zostanie zgłoszony po uzyskaniu dostępu do " + "Internetu." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " +@@ -84,7 +84,7 @@ msgstr "" + "Program %s uległ awarii. Proszę skontaktować się z programistami programu, " + "aby zgłosić problem." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " +@@ -93,13 +93,13 @@ msgstr "" + "Program %s uległ awarii. Prosimy o wysłanie zgłoszenia, aby pomóc w " + "naprawieniu problemu." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "Wystąpił problem w składniku. Został on automatycznie zgłoszony." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +@@ -107,7 +107,7 @@ msgstr "" + "Wystąpił problem w składniku. Zostanie on zgłoszony po uzyskaniu dostępu do " + "Internetu." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +@@ -115,38 +115,49 @@ msgstr "" + "Wystąpił problem. Prosimy o wysłanie zgłoszenia, aby pomóc w jego " + "naprawieniu." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Nie można wyświetlić powiadomienia: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" +-msgstr "Nie można odczytać z kanału GIO: \"%s\"" ++msgstr "Nie można odczytać z kanału GIO: „%s”" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Nie można ustawić kodowania na kanale GIO: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Nie można włączyć trybu nieblokowania dla kanału GIO: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" +-"& [-v] [KATALOG]...\n" ++"& [-v] [KATALOG]…\n" + "\n" + "Aplet powiadamiający użytkownika o nowych problemach wykrytych przez program " + "ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "Pytanie przed przechwytywaniem katalogu" +@@ -168,13 +179,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"Plik zrzutu core jest niezbędny do utworzenia wyjątku stosu, co jest " +-"działaniem czaso- i pracochłonnym. Program ABRT dostarcza usługę, która może " +-"tworzyć wyjątki stosu z plików zrzutu core, ale trzeba do tego wysłać zrzut " +-"do usługi. Jeśli ta opcja jest wyłączona, to program ABRT będzie wysyłał " +-"zrzuty core bez pytania." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -222,10 +230,6 @@ msgstr "" + "włączone jest Skrócone zgłaszanie." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Pytanie przed wysłaniem zrzutu core" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -233,15 +237,15 @@ msgstr "" + "Jeśli ta opcja jest włączona, to program ABRT będzie tworzył zgłoszenie " + "błędu z ograniczonym dostępem zawsze, kiedy wykryte zostaną prywatne dane." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Żądanie prywatnych zgłoszeń dla prywatnych informacji" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Powiadamianie o niepełnych problemach" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -251,6 +255,22 @@ msgstr "" + "jest wylogowywany. Aby dostarczać wartościowe zgłoszenia błędów, program " + "ABRT nie będzie umożliwiał wysłania takich problemów." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "Za_mknij" +@@ -276,7 +296,7 @@ msgstr "O programie" + msgid "Quit" + msgstr "Zakończ" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +@@ -286,7 +306,7 @@ msgstr "" + "\n" + "Odpytuje bazę danych pakietów i zapisuje nazwę pakietu i składnika" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -298,11 +318,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Katalog problemu" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Plik konfiguracji" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "Używa tego katalogu jako katalogu głównego pakietu RPM" + +@@ -318,24 +338,25 @@ msgstr "& [-v] -d KATALOG\n" + msgid "Root directory for running container commands" + msgstr "Katalog główny do wykonywania poleceń kontenera" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [opcje]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Używa NUMERU jako UID klienta" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Przekazuje komunikaty do dziennika systemowego" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Dodaje nazwy programów do dziennika" + +@@ -343,77 +364,67 @@ msgstr "Dodaje nazwy programów do dziennika" + msgid "Unknown error" + msgstr "Nieznany błąd" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "\"%s\" nie jest prawidłowym katalogiem problemu" ++msgid "'%s' is not a valid element name" ++msgstr "„%s” nie jest prawidłową nazwą elementu" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "Nie można modyfikować elementu \"%s\"" ++msgid "'%s' is not a valid problem directory" ++msgstr "„%s” nie jest prawidłowym katalogiem problemu" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Brak upoważnienia" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Nie można uzyskać dostępu do problemu, aby go zmodyfikować" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "Nie można modyfikować elementu „%s”" ++ ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Zmiana właściciela katalogu się nie powiodła. W dziennikach systemu można " + "znaleźć więcej informacji." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "Nie można uzyskać dostępu do problemu, aby go odczytać" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "\"%s\" nie jest prawidłową nazwą elementu" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" +-msgstr "Nie można uzyskać rozmiaru \"%s\"" ++msgstr "Nie można uzyskać rozmiaru „%s”" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Brak miejsca na problemy" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "Nie można usunąć elementu \"%s\" z katalogu problemów \"%s\"" +- +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" ++msgstr "Nie można usunąć elementu „%s” z katalogu problemów „%s”" + +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" + msgstr "" +-"Nazwa \"%s\" została utracona. Proszę sprawdzić, czy inna usługa będąca " ++"Nazwa „%s” została utracona. Proszę sprawdzić, czy inna usługa będąca " + "właścicielem nazwy jest uruchomiona.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Kończy działanie po LICZBIE sekund nieaktywności" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Ten program musi być uruchamiany jako root." + +@@ -433,29 +444,33 @@ msgstr "" + + #: ../src/daemon/abrtd.c:457 + msgid "Do not daemonize" +-msgstr "Bez tworzenia demona" ++msgstr "Bez tworzenia usługi" + + #: ../src/daemon/abrtd.c:458 + msgid "Log to syslog even with -d" + msgstr "" + "Przekazuje komunikaty do dziennika systemowego, nawet jeśli podano opcję -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event ZDARZENIE KATALOG..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Wykonuje ZDARZENIE w KATALOGU" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Komunikuje się bezpośrednio z użytkownikiem" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "Brak wolnych wątków i pełny bufor. Pomijanie archiwum \"%s\"" ++msgstr "Brak wolnych wątków i pełny bufor. Pomijanie archiwum „%s”" + + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" +@@ -490,88 +505,89 @@ msgstr "Liczba jednocześnie działających wątków. Domyślnie wynosi" + msgid "Maximal cache size in MiB. Default is " + msgstr "Maksymalny rozmiar pamięci podręcznej w MiB. Domyślnie wynosi" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Wyłącza uwierzytelnianie" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Nazwa użytkownika Red Hat Support" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Hasło Red Hat Support, jeśli nie podano, to użytkownik zostanie o nie " + "zapytany" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Ścieżki lub typ certyfikatu SSL uReport" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "Należy także podać --username dla opcji --password" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Można użyć tylko --username lub --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Można użyć tylko --username lub --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Można użyć tylko --anonymous lub --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Nieprawidłowa liczba parametrów" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "Nieznana wartość opcji: \"%s\"\n" ++msgstr "Nieznana wartość opcji: „%s”\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Hasło:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "Nie można kontynuować bez hasła\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "Automatyczne zgłaszanie uwierzytelnione przez HTTP" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "Automatyczne zgłaszanie uwierzytelnione przez klienta SSL" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "anonimowe automatyczne zgłaszanie" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -586,76 +602,76 @@ msgstr "" + "\n" + " -v - Więcej informacji\n" + " -d - Usuwa wysłane archiwum\n" +-" KATALOG_SZPULI_ABRT - Katalog, do którego rozpakowywane są prawidłowo " ++" KATALOG_SZPULI_ABRT — Katalog, do którego rozpakowywane są prawidłowo " + "wysłane archiwa\n" +-" KATALOG_WYSYŁANIA - Katalog, w którym przechowywane są wysłane " ++" KATALOG_WYSYŁANIA — Katalog, w którym przechowywane są wysłane " + "archiwa\n" +-" NAZWA_PLIKU - Nazwa pliku wysłanego archiwum\n" ++" NAZWA_PLIKU — Nazwa pliku wysłanego archiwum\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" +-msgstr "Nie jest katalogiem: \"{0}\"" ++msgstr "Nie jest katalogiem: „{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "Pomijanie: \"{0}\" (rozpoczyna się od ukośnika)" ++msgstr "Pomijanie: „{0}” (rozpoczyna się od ukośnika)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "Pomijanie: \"{0}\" (rozpoczyna się od kropki)" ++msgstr "Pomijanie: „{0}” (rozpoczyna się od kropki)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "Pomijanie: \"{0}\" (zawiera ..)" ++msgstr "Pomijanie: „{0}” (zawiera ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" +-msgstr "Pomijanie: \"{0}\" (zawiera spację)" ++msgstr "Pomijanie: „{0}” (zawiera spację)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "Pomijanie: \"{0}\" (zawiera tabulację)" ++msgstr "Pomijanie: „{0}” (zawiera tabulację)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" +-msgstr "Nie można zmienić katalogu na \"{0}\"" ++msgstr "Nie można zmienić katalogu na „{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" +-msgstr "Nieznany typ pliku: \"{0}\"" ++msgstr "Nieznany typ pliku: „{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" +-msgstr "Nie można utworzyć katalogu roboczego w \"{0}\"" ++msgstr "Nie można utworzyć katalogu roboczego w „{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" +-msgstr "Nie można przenieść \"{0}\" do \"{1}\"" ++msgstr "Nie można przenieść „{0}” do „{1}”" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "Nie można skopiować \"{0}\" do \"{1}\"" ++msgstr "Nie można skopiować „{0}” do „{1}”" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" +-msgstr "Błąd sprawdzania w \"{0}\"" ++msgstr "Błąd sprawdzania w „{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" +-msgstr "Rozpakowywanie \"{0}\"" ++msgstr "Rozpakowywanie „{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" +-msgstr "Nie można utworzyć katalogu \"{0}\"" ++msgstr "Nie można utworzyć katalogu „{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" +-msgstr "Nie można rozpakować \"{0}\"" ++msgstr "Nie można rozpakować „{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" +-msgstr "Pomyślnie przetworzono \"{0}\"" ++msgstr "Pomyślnie przetworzono „{0}”" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -670,33 +686,41 @@ msgstr "Nie można połączyć z systemową magistralą D-Bus: %s" + #: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" +-msgstr "Nie można zmienić właściciela \"%s\": %s" ++msgstr "Nie można zmienić właściciela „%s”: %s" + + #: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Usunięcie katalogu problemu się nie powiodło: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Nie można uzyskać danych problemu z abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Nie można uzyskać listy problemów z abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Nie można uzyskać danych problemu z abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "Nie można sprawdzić przez abrt-dbus, czy element istnieje: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +-msgstr "Nie można utworzyć pliku tymczasowego \"%s\"" ++msgstr "Nie można utworzyć pliku tymczasowego „%s”" + + #: ../src/lib/ignored_problems.c:250 + #, c-format +@@ -704,15 +728,15 @@ msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" + msgstr "" +-"Nie można zapisać do \"%s\". Problem \"%s\" nie zostanie usunięty z " +-"zignorowanych problemów \"%s\"" ++"Nie można zapisać do „%s”. Problem „%s” nie zostanie usunięty z " ++"zignorowanych problemów „%s”" + + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +-"Nie można zmienić nazwy \"%s\" na \"%s\". Usunięcie problemu \"%s\" się nie " ++"Nie można zmienić nazwy „%s” na „%s”. Usunięcie problemu „%s” się nie " + "powiodło" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 +@@ -735,9 +759,9 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +-msgstr "Przetworzenie wyjątku nie powiodło się dla %s" ++msgstr "Przetworzenie wyjątku się nie powiodło dla %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Nie odnaleziono wątku awarii" + +@@ -754,7 +778,7 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "Analizowanie zrzutu core \"%s\"" ++msgstr "Analizowanie zrzutu core „%s”" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format +@@ -806,7 +830,7 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format + msgid "Module '%s' was loaded - won't report this crash" +-msgstr "Nie wczytano modułu \"%s\" - ta awaria nie zostanie zgłoszona" ++msgstr "Nie wczytano modułu „%s” — ta awaria nie zostanie zgłoszona" + + #: ../src/plugins/abrt-action-analyze-python.c:36 + msgid "" +@@ -838,13 +862,13 @@ msgstr "Nie można przetworzyć {0}:\n" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +-msgstr "Nie można wypakować komunikatu oops: \"{0}\"" ++msgstr "Nie można wypakować komunikatu oops: „{0}”" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Pomyślnie wypakowano tekst awarii oops" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -852,6 +876,38 @@ msgstr "" + "Dziennik jądra wskazuje na wykrycie błędów sprzętowych.\n" + "Prawdopodobnie nie jest to problem oprogramowania.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -939,8 +995,8 @@ msgid "" + msgstr "" + "Użycie: %s [-vy] [--ids=PLIK_IDENTYFIKATORÓW_BUDOWANIA] [--pkgmgr=(yum|dnf)]\n" + " [--tmpdir=KATALOG_TYMCZASOWY] [--cache=KATALOG_PAMIĘCI_PODRĘCZNEJ[:" +-"KATALOG_DEBUGINFO1:KATALOG_DEBUGINFO2...]] [--size_mb=ROZMIAR]\n" +-" [-e, --exact=ŚCIEŻKA[:ŚCIEŻKA]...]\n" ++"KATALOG_DEBUGINFO1:KATALOG_DEBUGINFO2…]] [--size_mb=ROZMIAR]\n" ++" [-e, --exact=ŚCIEŻKA[:ŚCIEŻKA]…]\n" + "\n" + "Instaluje pakiety debuginfo dla wszystkich identyfikatorów budowania\n" + "wymienionych w PLIKU_IDENTYFIKATORÓW_BUDOWANIA w " +@@ -952,13 +1008,13 @@ msgstr "" + "Odczytuje konfigurację z pliku /etc/abrt/plugins/CCpp.conf\n" + "\n" + " -v Więcej komunikatów\n" +-" -y Nieinteraktywnie, przyjmuje \"Tak\" na wszystkie pytania\n" ++" -y Nieinteraktywnie, przyjmuje „Tak” na wszystkie pytania\n" + " --ids Domyślnie: identyfikatory_budowania\n" + " --tmpdir Domyślnie: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" + "LOSOWY_PRZYROSTEK\n" + " --cache Domyślnie: /var/cache/abrt-di\n" + " --size_mb Domyślnie: 4096\n" +-" --pkgmgr Domyślnie: \"PackageManager\" z pliku CCpp.conf lub \"dnf\"\n" ++" --pkgmgr Domyślnie: „PackageManager” z pliku CCpp.conf lub „dnf”\n" + " -e,--exact Pobiera tylko podane pliki\n" + " --repo Wzorzec do użycia podczas wyszukiwania repozytoriów.\n" + " Domyślnie: *debug*\n" +@@ -982,7 +1038,7 @@ msgstr "{0} plików debuginfo nie jest zainstalowanych" + msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" + msgstr "" + "Nieprawidłowa konfiguracja dodatku CCpp, nieobsługiwany menedżer pakietów: " +-"\"%s\"" ++"„%s”" + + #: ../src/plugins/abrt-action-install-debuginfo.in:249 + msgid "Missing requested file: {0}" +@@ -996,17 +1052,46 @@ msgstr "Brak pliku debuginfo: {0}" + msgid "All debuginfo files are available" + msgstr "Wszystkie pliki debuginfo są dostępne" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + "Wysłać zrzut core (może on zawierać prywatne dane)? Jeśli wybrana zostanie " +-"odpowiedź \"nie\", to wyjątek stosu zostanie utworzony lokalnie (może to " ++"odpowiedź „nie”, to wyjątek stosu zostanie utworzony lokalnie (może to " + "spowodować pobranie dużej ilości danych)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1022,8 +1107,7 @@ msgid "" + "SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" +-"& [-v] [-d ROZMIAR:KATALOG]... [-f ROZMIAR:KATALOG]... [-p KATALOG] [PLIK]..." +-"\n" ++"& [-v] [-d ROZMIAR:KATALOG]… [-f ROZMIAR:KATALOG]… [-p KATALOG] [PLIK]…\n" + "\n" + "Usuwa katalogi (-d) lub pliki (-f) problemów w KATALOGACH, dopóki nie są " + "mniejsze niż ROZMIAR.\n" +@@ -1044,12 +1128,12 @@ msgstr "Zachowuje ten katalog" + #: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "Nie można uruchomić \"%s\", komunikat błędu: \"%s\"" ++msgstr "Nie można uruchomić „%s”, komunikat błędu: „%s”" + + #: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "Nie jest liczbą w \"%s\"" ++msgstr "Nie jest liczbą w „%s”" + + #: ../src/plugins/abrt-action-ureport:99 + #, c-format +@@ -1205,7 +1289,7 @@ msgid "" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" + msgstr "" +-"& [-vs] [-F POTOK]... PLIKI PROGRAM [PARAMETRY]\n" ++"& [-vs] [-F POTOK]… PLIKI PROGRAM [PARAMETRY]\n" + "\n" + "Obserwuje PLIK dziennika, wykonuje PROGRAM, kiedy plik się powiększy lub " + "zostanie zastąpiony" +@@ -1241,7 +1325,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "To samo, co -d DumpLocation, DumpLocation jest określone w pliku abrt.conf" +@@ -1252,16 +1337,18 @@ msgstr "Zapisuje wydobytą informację w PROBLEMIE" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Ustawia katalog problemu jako do odczytu dla każdego" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Przełącza tworzenie katalogów problemów na jeden na sekundę" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Wyświetla wyszukiwane ciągi w standardowym wyjściu i kończy działanie" + +@@ -1270,10 +1357,13 @@ msgstr "Wyświetla wyszukiwane ciągi w standardowym wyjściu i kończy działan + msgid "Failed to compile regex" + msgstr "Skompilowanie wyrażenia regularnego się nie powiodło" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" +-"Nie można zaktualizować problemu: znaleziono więcej niż jedną awarię oops" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1296,6 +1386,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "Zainicjowanie obserwacji systemd-journal się nie powiodło" + +@@ -1332,11 +1423,13 @@ msgstr "Tworzy nowy katalog problemu w KATALOGU dla każdego zrzutu core" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "Rozpoczyna odczytywanie systemd-journal z położenia KURSORA" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "Rozpoczyna odczytywanie systemd-journal od końca" + +@@ -1350,6 +1443,7 @@ msgstr "To samo, co -t INT, INT jest określone w pliku plugins/CCpp.conf" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + "Podąża za systemd-journal od ostatnio widzianego położenia (jeśli jest " +@@ -1357,11 +1451,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "Należy podać -c KURSOR lub -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "Nie można otworzyć systemd-journal" + +@@ -1369,18 +1465,21 @@ msgstr "Nie można otworzyć systemd-journal" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "Nie można filtrować tylko danych systemd-coredump z systemd-journal" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "Nie można przejść do końca dziennika" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" +-msgstr "Ustawienie kursora systemd-journal \"%s\" się nie powiodło" ++msgstr "Ustawienie kursora systemd-journal „%s” się nie powiodło" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "Nie można odczytać danych dziennika." + +@@ -1412,28 +1511,77 @@ msgstr "" + "Ostatnio widziane położenie jest zapisywane w " + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "Odczytuje pliki dziennika ze wszystkich komputerów" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Odczytuje wszystkie pliki dziennika z katalogu w ŚCIEŻCE" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "Nie można zainicjować systemd-journal w katalogu „%s”" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "Nie można filtrować tylko danych jądra z systemd-journal" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" +-msgstr "Rozpoczęcie obserwacji od kursora \"%s\" się nie powiodło" ++msgstr "Rozpoczęcie obserwacji od kursora „%s” się nie powiodło" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1443,70 +1591,74 @@ msgstr "" + "\n" + "Wydobywa awarię Xorg z PLIKU (lub standardowego wejścia)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Wyświetla odnalezione dane awarii w standardowym wyjściu" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Tworzy nowy katalog problemu w KATALOGU dla każdej odnalezionej awarii" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "Nie można zapisać położenia obserwacji dziennika" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "Nie można zapisać położenia obserwacji dziennika: open('%s')" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" +-"Położenie obserwacji dziennika nie zostanie przywrócone: plik \"%s\" nie " ++"Położenie obserwacji dziennika nie zostanie przywrócone: plik „%s” nie " + "istnieje" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" +-msgstr "Nie można przywrócić położenia obserwacji dziennika z pliku \"%s\"" ++msgstr "Nie można przywrócić położenia obserwacji dziennika z pliku „%s”" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" +-"Nie można przywrócić położenia obserwacji dziennika: ścieżka \"%s\" nie jest " ++"Nie można przywrócić położenia obserwacji dziennika: ścieżka „%s” nie jest " + "zwykłym plikiem" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" +-"Nie można przywrócić położenia obserwacji dziennika: plik \"%s\" przekracza " ++"Nie można przywrócić położenia obserwacji dziennika: plik „%s” przekracza " + "ograniczenie rozmiaru do %d B" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "Nie można przywrócić położenia obserwacji dziennika: open('%s')" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + "Nie można przywrócić położenia obserwacji dziennika: nie można odczytać " +-"całego pliku \"%s\"" ++"całego pliku „%s”" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" +-msgstr "Przeniesienie dziennika do kursora z pliku \"%s\" się nie powiodło" ++msgstr "Przeniesienie dziennika do kursora z pliku „%s” się nie powiodło" + + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" +@@ -1529,7 +1681,7 @@ msgstr "Nie można utworzyć tymczasowego pliku w" + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" +-msgstr "Nie można wykonać \"%s\"" ++msgstr "Nie można wykonać „%s”" + + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 +@@ -1537,7 +1689,9 @@ msgstr "Nie można wykonać \"%s\"" + #: ../src/plugins/abrt-retrace-client.c:842 + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "Wysłanie nagłówka HTTP o długości %d nie powiodło się: błąd NSS %d" ++msgstr "" ++"Wysłanie nagłówka HTTP o długości %d się nie powiodło: błąd biblioteki NSS " ++"%d" + + #: ../src/plugins/abrt-retrace-client.c:223 + #: ../src/plugins/abrt-retrace-client.c:412 +@@ -1567,8 +1721,8 @@ msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" + msgstr "" +-"Serwer ponownego śledzenia nie może przetworzyć pakietu \"%s.%s\".\n" +-"Czy jest on częścią oficjalnych repozytoriów \"%s\"?" ++"Serwer ponownego śledzenia nie może przetworzyć pakietu „%s.%s”.\n" ++"Czy jest on częścią oficjalnych repozytoriów „%s”?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1586,7 +1740,7 @@ msgstr "Serwer odrzucił żądanie." + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format + msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "\"%s\" musi być zwykłym plikiem, aby użyć serwera ponownego śledzenia." ++msgstr "„%s” musi być zwykłym plikiem, aby użyć serwera ponownego śledzenia." + + #: ../src/plugins/abrt-retrace-client.c:520 + #, c-format +@@ -1604,7 +1758,7 @@ msgstr "Serwer nie obsługuje pakietów tar skompresowanych za pomocą xz." + #: ../src/plugins/abrt-retrace-client.c:577 + #, c-format + msgid "The release '%s' is not supported by the Retrace server." +-msgstr "Wydanie \"%s\" nie jest obsługiwane przez serwer ponownego śledzenia." ++msgstr "Wydanie „%s” nie jest obsługiwane przez serwer ponownego śledzenia." + + #: ../src/plugins/abrt-retrace-client.c:581 + msgid "The server is not able to handle your request." +@@ -1648,12 +1802,12 @@ msgstr "Wysyłanie %d%%\n" + + #: ../src/plugins/abrt-retrace-client.c:721 + msgid "Failed to read from a pipe" +-msgstr "Odczytanie z potoku nie powiodło się" ++msgstr "Odczytanie z potoku się nie powiodło" + + #: ../src/plugins/abrt-retrace-client.c:734 + #, c-format + msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "Wysłanie danych nie powiodło się: błąd NSS %d (%s): %s" ++msgstr "Wysłanie danych się nie powiodło: błąd biblioteki NSS %d (%s): %s" + + #: ../src/plugins/abrt-retrace-client.c:745 + msgid "Upload successful" +@@ -1710,14 +1864,16 @@ msgstr "Stan zadania: %s\n" + #: ../src/plugins/abrt-retrace-client.c:1053 + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d." +-msgstr "Wysłanie nagłówka HTTP o długości %d nie powiodło się: błąd NSS %d." ++msgstr "" ++"Wysłanie nagłówka HTTP o długości %d się nie powiodło: błąd biblioteki NSS " ++"%d." + + #: ../src/plugins/abrt-retrace-client.c:1170 + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." + msgstr "" +-"Ponowne śledzenie nie powiodło się. Proszę spróbować ponownie później, a " ++"Ponowne śledzenie się nie powiodło. Proszę spróbować ponownie później, a " + "jeśli problem się utrzymuje, to proszę go zgłosić." + + #: ../src/plugins/abrt-retrace-client.c:1217 +@@ -1873,7 +2029,7 @@ msgid "" + "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(warning)</a>" + msgstr "" +-"Wpisanie \"insecure\" umożliwia użycie połączenia niezabezpieczonego <a " ++"Wpisanie „insecure” umożliwia użycie połączenia niezabezpieczonego <a " + "href=\"https://fedorahosted.org/abrt/wiki/" + "AbrtRetraceServerInsecureConnection\" >(ostrzeżenie)</a>" + +@@ -1891,7 +2047,7 @@ msgid "" + "executable's name. The result is saved as 'xsession_errors' element." + msgstr "" + "Skanuje plik ~/.xsession-errors i zapisuje te wiersze, które zawierają nazwę " +-"pliku wykonywalnego. Wynik jest zapisywany jako element \"xsession_errors\"." ++"pliku wykonywalnego. Wynik jest zapisywany jako element „xsession_errors”." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1900,7 +2056,7 @@ msgstr "Wystąpił błąd po stronie serwera." + #: ../src/plugins/https-utils.c:65 + #, c-format + msgid "A server-side error occurred on '%s'" +-msgstr "Wystąpił błąd po stronie serwera w \"%s\"" ++msgstr "Wystąpił błąd po stronie serwera w „%s”" + + #: ../src/plugins/https-utils.c:74 + msgid "An error occurred while connecting to the server" +@@ -1909,24 +2065,23 @@ msgstr "Wystąpił problem podczas łączenia z serwerem" + #: ../src/plugins/https-utils.c:77 + #, c-format + msgid "An error occurred while connecting to '%s'" +-msgstr "Wystąpił problem podczas łączenia z \"%s\"" ++msgstr "Wystąpił problem podczas łączenia z „%s”" + + #: ../src/plugins/https-utils.c:97 + #, c-format + msgid "Issuer certificate is invalid: '%s'." +-msgstr "Certyfikat wystawcy jest nieprawidłowy: \"%s\"." ++msgstr "Certyfikat wystawcy jest nieprawidłowy: „%s”." + + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "Certyfikat jest podpisany przez niezaufanego wystawcę: \"%s\"." ++msgstr "Certyfikat jest podpisany przez niezaufanego wystawcę: „%s”." + + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." + msgstr "" +-"Nazwa tematu certyfikatu \"%s\" nie pasuje do docelowej nazwy komputera " +-"\"%s\"." ++"Nazwa tematu certyfikatu „%s” nie pasuje do docelowej nazwy komputera „%s”." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1935,40 +2090,40 @@ msgstr "Zdalny certyfikat wygasł." + #: ../src/plugins/https-utils.c:110 + #, c-format + msgid "Certificate issuer is not recognized: '%s'." +-msgstr "Nie rozpoznano wystawcy certyfikatu: \"%s\"." ++msgstr "Nie rozpoznano wystawcy certyfikatu: „%s”." + + #: ../src/plugins/https-utils.c:113 + #, c-format + msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "Otrzymano błędny certyfikat. Temat \"%s\", wydawca \"%s\"." ++msgstr "Otrzymano błędny certyfikat. Temat „%s”, wydawca „%s”." + + #: ../src/plugins/https-utils.c:149 + #, c-format + msgid "Failed to get slot 'PEM Token #0': %d." +-msgstr "Uzyskanie gniazda \"PEM Token #0\" nie powiodło się: %d." ++msgstr "Uzyskanie gniazda „PEM Token #0” się nie powiodło: %d." + + #: ../src/plugins/https-utils.c:182 + #, c-format + msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "Nie można rozwiązać nazwy komputera \"%s\". Błąd biblioteki NSS %d." ++msgstr "Nie można rozwiązać nazwy komputera „%s”. Błąd biblioteki NSS %d." + + #. Host exists, but has neither IPv4 nor IPv6?? + #: ../src/plugins/https-utils.c:203 + #, c-format + msgid "Can't resolve host name '%s'." +-msgstr "Nie można rozwiązać nazwy komputera \"%s\"." ++msgstr "Nie można rozwiązać nazwy komputera „%s”." + + #: ../src/plugins/https-utils.c:210 + msgid "Failed to set socket blocking mode." +-msgstr "Ustawienie trybu blokowania gniazda nie powiodło się." ++msgstr "Ustawienie trybu blokowania gniazda się nie powiodło." + + #: ../src/plugins/https-utils.c:213 + msgid "Failed to wrap TCP socket by SSL." +-msgstr "Opakowanie gniazda TCP za pomocą SSL nie powiodło się." ++msgstr "Opakowanie gniazda TCP za pomocą SSL się nie powiodło." + + #: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." +-msgstr "Włączenie powitania klienta do gniazda SSL nie powiodło się." ++msgstr "Włączenie powitania klienta do gniazda SSL się nie powiodło." + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/https-utils.c:220 +@@ -1982,24 +2137,24 @@ msgstr "Włączenie TLS się nie powiodło." + + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." +-msgstr "Ustawienie adresu URL w gnieździe SSL nie powiodło się." ++msgstr "Ustawienie adresu URL w gnieździe SSL się nie powiodło." + + #: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" +-msgstr "Nie można połączyć z \"%s\"" ++msgstr "Nie można połączyć z „%s”" + + #: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." +-msgstr "Ustawienia haka certyfikatu nie powiodło się." ++msgstr "Ustawienia haka certyfikatu się nie powiodło." + + #: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." +-msgstr "Ustawienie wywołania zwrotnego powitania nie powiodło się." ++msgstr "Ustawienie wywołania zwrotnego powitania się nie powiodło." + + #: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." +-msgstr "Przywrócenie powitania nie powiodło się." ++msgstr "Przywrócenie powitania się nie powiodło." + + #: ../src/plugins/https-utils.c:258 + #, c-format +@@ -2008,17 +2163,17 @@ msgstr "Ukończenie powitania SSL się nie powiodło: błąd biblioteki NSS %d." + + #: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." +-msgstr "Zamknięcie gniazda SSL nie powiodło się." ++msgstr "Zamknięcie gniazda SSL się nie powiodło." + + #: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" +-msgstr "Błędnie sformatowany nagłówek odpowiedzi HTTP: \"%s\"" ++msgstr "Błędnie sformatowany nagłówek odpowiedzi HTTP: „%s”" + + #: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." +-msgstr "Pobieranie danych nie powiodło się: błąd NSS %d." ++msgstr "Pobieranie danych się nie powiodło: błąd biblioteki NSS %d." + + #: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." +@@ -2026,22 +2181,22 @@ msgstr "Błędnie sformatowana, urwana odpowiedź." + + #: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." +-msgstr "Zainicjowanie biblioteki NSS nie powiodło się." ++msgstr "Zainicjowanie biblioteki NSS się nie powiodło." + + #: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." +-msgstr "Zainicjowanie modułu zabezpieczeń nie powiodło się." ++msgstr "Zainicjowanie modułu zabezpieczeń się nie powiodło." + + #: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." +-msgstr "Zamknięcie biblioteki NSS nie powiodło się." ++msgstr "Zamknięcie biblioteki NSS się nie powiodło." + + #: ../src/plugins/oops-utils.c:73 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Usypianie na %d sekund" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2049,7 +2204,7 @@ msgstr "" + "Wystąpił problem jądra z powodu uszkodzonego BIOS-u. Tego rodzaju problemy " + "nie mogą zostać naprawione przez opiekunów jądra." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2057,7 +2212,7 @@ msgstr "" + "Wystąpił problem jądra, ale sprzęt jest nieobsługiwany, więc opiekunowie " + "jądra nie mogą go naprawić." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2066,48 +2221,48 @@ msgstr "" + "Wystąpił problem jądra, ale obecne jądro jest zanieczyszczone (flagi: %s). " + "Opiekunowie jądra nie są w stanie diagnozować zanieczyszczonych raportów." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Zanieczyszczone moduły: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Lista identyfikatorów błędów" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Podaje adres URL serwera Bodhi" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Podaje wydanie" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" +-"& [-v] [-r[WYDANIE]] (-b IDENTYFIKATOR1[,IDENTYFIKATOR2,...] | NAZWA-" +-"PAKIETU) [NAZWA-PAKIETU]... \n" ++"& [-v] [-r[WYDANIE]] (-b IDENTYFIKATOR1[,IDENTYFIKATOR2,…] | NAZWA-PAKIETU) " ++"[NAZWA-PAKIETU]… \n" + "\n" + "Wyszukuje aktualizacje na serwerze Bodhi" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Wyszukiwanie aktualizacji" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Nie odnaleziono aktualizacji dla tego pakietu" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Lokalna wersja pakietu jest nowsza niż dostępne aktualizacje" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2122,7 +2277,7 @@ msgid "" + "\n" + "Scans files for split oops message. Can print and/or delete them." + msgstr "" +-"& [-v] [-od] PLIK...\n" ++"& [-v] [-od] PLIK…\n" + "\n" + "Skanuje pliki w poszukiwaniu rozdzielonych komunikatów awarii. Może je " + "wyświetlić i/lub usunąć." +@@ -2135,66 +2290,66 @@ msgstr "Wyświetla odnalezione awarie" + msgid "Delete files with found oopses" + msgstr "Usuwa pliki z odnalezionymi awariami" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" +-msgstr "\"%s\" określa więcej niż jeden katalog problemu" ++msgstr "„%s” określa więcej niż jeden katalog problemu" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Użycie: abrt-cli [--version] POLECENIE [KATALOG]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Wyświetla listę problemów [w KATALOGACH]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Usuwa KATALOG problemu" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analizuje i zgłasza dane problemu w KATALOGU" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Wyświetla informacje o KATALOGU" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Wyświetla liczbę ostatnich awarii" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Przetwarza wiele problemów" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "" +-"Wydanie polecenia \"abrt-cli POLECENIE --help\" wyświetli więcej informacji" ++msgstr "Polecenie „abrt-cli POLECENIE --help” wyświetli więcej informacji" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& list [opcje]" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Wyświetla listę niezgłoszonych problemów" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Wyświetla szczegółowe zgłoszenie" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "Wyświetla tylko problemy nowsze niż podany czas" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "Wyświetla tylko problemy starsze niż podany czas" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2203,52 +2358,62 @@ msgid "" + msgstr "" + "Funkcja automatycznego zgłaszania jest wyłączona. Proszę rozważyć włączenie " + "jej przez wydanie polecenia\n" +-"\"abrt-auto-reporting enabled\" jako użytkownik z uprawnieniami roota\n" ++"„abrt-auto-reporting enabled” jako użytkownik z uprawnieniami roota\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." +-msgstr "& info [opcje] KATALOG..." ++msgstr "& info [opcje] KATALOG…" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Tekst większy niż to będzie wyświetlany skrócony" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" +-msgstr "Katalog problemu \"%s\" nie istnieje" ++msgstr "Katalog problemu „%s” nie istnieje" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& status" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Wyświetla tylko liczbę awarii, bez żadnego komunikatu" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Wyświetla tylko problemy nowsze niż podany czas" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "Program ABRT wykrył %u problemy. Więcej informacji po wykonaniu polecenia: " + "abrt-cli list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "& report [opcje] KATALOG..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" +-msgstr "Usuwa KATALOG_PROBLEMU po zgłoszeniu" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "Usuwanie \"%s\"" ++msgstr "Usuwanie „%s”" ++ ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "& report [opcje] KATALOG…" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "Usuwa KATALOG_PROBLEMU po zgłoszeniu" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +@@ -2258,24 +2423,179 @@ msgstr "Działania: usuń (rm), informacje (i), pomiń (s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Działania: usuń (rm), zgłoś (e), informacje (i), pomiń (s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" +-msgstr "Zgłaszanie \"%s\"" ++msgstr "Zgłaszanie „%s”" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Aby przejść do następnego problemu, proszę nacisnąć klawisz Enter:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Bez parametru --since przejdzie przez wszystkie wykryte problemy." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Wybiera tylko problemy wykryte po podanym czasie" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +@@ -2334,7 +2654,7 @@ msgid "" + "'gconf_subtree' element." + msgstr "" + "Wykonuje polecenie gconftool-2 --recursive-list /apps/plik-wykonywalny i " +-"zapisuje wynik jako element \"gconf_subtree\"." ++"zapisuje wynik jako element „gconf_subtree”." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +diff --git a/po/pt.po b/po/pt.po +index 9ce2415..91c18d3 100644 +--- a/po/pt.po ++++ b/po/pt.po +@@ -12,126 +12,133 @@ + # Pedro Marques Daniel , 2013 + # Ricardo Pinto , 2012 + # Rui Gouveia , 2011, 2012 ++# Manuela Silva , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-10-06 07:45-0400\n" +-"Last-Translator: Jakub Filak \n" ++"PO-Revision-Date: 2015-08-17 08:03-0400\n" ++"Last-Translator: Manuela Silva \n" + "Language-Team: Portuguese (http://www.transifex.com/projects/p/fedora-abrt/" + "language/pt/)\n" + "Language: pt\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "Comunicação de Problema" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "Ver e reportar craches da aplicação" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Não é possível tomar posse de '%s'" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Não é possível abrir a diretoria para gravar '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Não é possível fechar a notificação: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" +-msgstr "" ++msgstr "Ups!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Relatório" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" +-msgstr "" ++msgstr "Reiniciar" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" ++"Nós pedimos desculpa, ocorreu um problema num componente. O problema foi " ++"reportado automaticamente." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" ++"Nós pedimos desculpa, ocorreu um problema num componente. O problema será " ++"reportado assim que a Internet estiver disponível." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" ++"Nós pedimos desculpa, ocorreu um problema num componente. Se desejar ajudar " ++"a resolver o problema, por favor, envie um relatório." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Não é possível mostrar a notificação: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Não é possível ler do canal 'gio': '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Não é posssível definir a codificação no canal 'gio': %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Não é possível ligar o modo 'não bloquear' para o canal 'gio': %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -142,13 +149,24 @@ msgstr "" + "Objecto que notifica o utilizador quando novos problemas são detectados pelo " + "ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "Enviar automaticamente uReport" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +@@ -163,7 +181,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -196,30 +216,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" +@@ -228,7 +260,7 @@ msgstr "_Fechar" + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/system-config-abrt.c:88 + msgid "_Defaults" +-msgstr "_Predefiniçoes" ++msgstr "_Predefinições" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/system-config-abrt.c:116 +@@ -249,14 +281,14 @@ msgstr "Sobre" + msgid "Quit" + msgstr "Sair" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -266,13 +298,13 @@ msgstr "" + #: ../src/plugins/abrt-action-generate-backtrace.c:55 + #: ../src/plugins/abrt-action-generate-core-backtrace.c:52 + msgid "Problem directory" +-msgstr "Directório de problemas" ++msgstr "Diretoria de Problemas" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" +-msgstr "Ficheiro de configuração" ++msgstr "Ficheiro de Configuração" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -286,101 +318,93 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [opções]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Utilizar NUM como uid do cliente" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Registar no syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" +-msgstr "Adicionar nomes de programa aos registos" ++msgstr "Adicionar nomes de programa ao registo" + + #: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Erro desconhecido" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' não é um directório de problema válido" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' não é um nome de elemento válido" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' elemento não pode ser modificado" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' não é um diretoria de problemas válida" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Não Autorizado" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Não é possível aceder ao problema para modificação" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' não é um nome de elemento válido" ++msgid "'%s' element can't be modified" ++msgstr "'%s' elemento não pode ser modificado" ++ ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Não é possível obter o tamanho do '%s'" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "Não é possível apagar o elemento '%s' da diretoria de problemas '%s'" +- +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" + msgstr "" ++"Não é possível eliminar o elemento '%s' da diretoria de problemas '%s'" + +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" + msgstr "" +-"O nome '%s' foi perdido, por favor verifique se outro serviço com o mesmo " +-"nome não está a correr.\n" ++"O nome '%s' foi perdido, por favor, verifique se outro serviço com o mesmo " ++"nome não está em execução.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" +-msgstr "Sair depois de NUM segundos de inactividade" ++msgstr "Sair depois de NUM segundos de inatividade" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa tem que ser executado como root." + +@@ -406,20 +430,24 @@ msgstr "Não enviar para segundo plano" + + #: ../src/daemon/abrtd.c:458 + msgid "Log to syslog even with -d" +-msgstr "Registar para o syslog mesmo com o -d" ++msgstr "Registar para o syslog, mesmo com o -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" +-msgstr "Executa EVENT no DIR" ++msgstr "Executar EVENT no DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -439,6 +467,7 @@ msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/daemon/abrt-upload-watch.c:281 ++#, fuzzy + msgid "Daemize" + msgstr "Daemize" + +@@ -451,73 +480,74 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "Desativa a autenticação" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" +-msgstr "" ++msgstr "Senha:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Não é possível continuar sem a senha\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -529,75 +559,75 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "Não é uma diretoria: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "Não é possível alterar a diretoria para '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "Tipo de ficheiro desconhecido: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" +-msgstr "Gerando o backtrace" ++msgstr "A gerar backtrace" + + #: ../src/lib/problem_api_dbus.c:42 + #, c-format +@@ -605,27 +635,35 @@ msgid "Can't connect to system DBus: %s" + msgstr "Não é possível ligar ao DBus do sistema: %s" + + #: ../src/lib/problem_api_dbus.c:68 +-#, c-format ++#, fuzzy, c-format + msgid "Can't chown '%s': %s" + msgstr "Não é possível fazer chown '%s': %s" + + #: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" +-msgstr "Falha ao apagar o directório de problema: %s" ++msgstr "Falha ao apagar a diretoria de problemas: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Não é possível obter dados do problema a partir do abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "Não é possível obter a lista do problema a partir do abrt-dbus: %s" ++msgstr "Não é possível obter a lista de problemas de abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Não é possível obter os dados do problema de abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -649,6 +687,7 @@ msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 ++#, fuzzy + msgid "" + "& [options] -d DIR\n" + "\n" +@@ -666,11 +705,11 @@ msgstr "" + #. * and component only. This is not supposed to happen often. + #. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 +-#, c-format ++#, fuzzy, c-format + msgid "Backtrace parsing failed for %s" + msgstr "Processamento da traçagem falhou para %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -682,7 +721,7 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcula e grava o UUID de coredump no directório de problemas DIR" ++"Calcula e guarda o UUID de coredump na diretoria de problemas DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -735,9 +774,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n" ++msgstr "" ++"& [-v] -d DIR\n" + "\n" +-"Calcula e grava o UUID e DUPHASH de dumps do python" ++"Calcula e guarda o UUID e DUPHASH de dumps de crache do python" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -745,7 +785,7 @@ msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" +-msgstr "Ficheiro {0} não existe" ++msgstr "O ficheiro {0} não existe" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" +@@ -754,7 +794,8 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "Can't process {0}:\n" + "{1}" +-msgstr "" ++msgstr "Não é possível processar {0}:\n" ++"{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -764,13 +805,46 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 ++#, fuzzy + msgid "" + "& [options] -d DIR\n" + "\n" +@@ -778,21 +852,21 @@ msgid "" + msgstr "" + "& [opções] -d DIR\n" + "\n" +-"Analisa coredump no directório DIR com problema, gera e grava traçagem." ++"Analisa coredump na diretoria de problemas DIR, gera e guarda traçagem." + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +-msgstr "Directórios adicionais de debuginfo" ++msgstr "Diretorias adicionais da informação de depuração" + + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" +-msgstr "Matar o gdb se este for executado por mais de NUM segundos" ++msgstr "Terminar o gdb se este for executado mais de NUM segundos" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. + #. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 +-#, c-format ++#, fuzzy, c-format + msgid "Backtrace is generated and saved, %u bytes" + msgstr "Traçagem foi gerada e gravada, %u bytes" + +@@ -854,9 +928,10 @@ msgstr "" + + #: ../src/plugins/abrt-action-install-debuginfo.in:175 + msgid "Can't open {0}: {1}" +-msgstr "Incapaz de abrir {0}: {1}" ++msgstr "Não é possível abrir {0}: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:212 ++#, fuzzy + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" + msgstr "" + "O coredump referencia {0} ficheiros debuginfo, {1} deles não estão " +@@ -877,20 +952,49 @@ msgstr "" + + #: ../src/plugins/abrt-action-install-debuginfo.in:254 + msgid "Missing debuginfo file: {0}" +-msgstr "Ficheiro debuginfo em falta: {0}" ++msgstr "Ficheiro da informação de depuração em falta: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:257 + msgid "All debuginfo files are available" +-msgstr "Todos os ficheiros debuginfo se encontram disponíveis" ++msgstr "Estão disponíveis todos os ficheiros da informação de depuração" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -906,21 +1010,21 @@ msgid "" + msgstr "" + "& [-v] [-d TAMANHO:DIR]... [-f TAMANHO:DIR]... [-p DIR] [FICHEIRO]...\n" + "\n" +-"Remove directórios com problemas (-d) ou ficheiros (-f) em DIRs até que " +-"estes sejam menores que TAMANHO.\n" +-"FICHEIROs são preservados (nunca apagados)." ++"Elimina diretorias de problemas (-d) ou ficheiros (-f) em DIRs até que estes " ++"sejam menores que TAMANHO.\n" ++"Os FICHEIROS são preservados (nunca eliminados)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +-msgstr "Remover todos os directórios com problemas" ++msgstr "Eliminar todos as diretorias de problemas" + + #: ../src/plugins/abrt-action-trim-files.c:237 + msgid "Delete files inside this directory" +-msgstr "Remover ficheiros dentro deste directório" ++msgstr "Eliminar os ficheiros dentro desta diretoria" + + #: ../src/plugins/abrt-action-trim-files.c:238 + msgid "Preserve this directory" +-msgstr "Preservar este directório" ++msgstr "Preservar esta diretoria" + + #: ../src/plugins/abrt-action-ureport:59 + #, c-format +@@ -1084,12 +1188,13 @@ msgid "" + msgstr "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" +-"Verifique o ficheiro de log FILE, corra PROG quando este aumentar ou for " +-"subtituido" ++"Verifique o ficheiro de registo FILE, executar PROG quando este aumentar ou " ++"for substituído" + + #: ../src/plugins/abrt-watch-log.c:154 ++#, fuzzy + msgid "Don't run PROG if STRs aren't found" +-msgstr "Não corra o PROG se STRs não forem encontradas" ++msgstr "Não executar PROG se não forem encontradas STRs" + + #: ../src/plugins/abrt-dump-oops.c:77 + msgid "" +@@ -1100,6 +1205,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:98 + #: ../src/plugins/abrt-dump-journal-oops.c:220 ++#, fuzzy + msgid "Print found oopses on standard output" + msgstr "Apresentar oopses encontrados na saída standard" + +@@ -1114,7 +1220,9 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 ++#, fuzzy + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Igual a -d DumpLocation, DumpLocation está especificado em abrt.conf" + +@@ -1124,16 +1232,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" +-msgstr "Tornar o directório com problema visível a todos" ++msgstr "Tornar a diretoria de problemas legível para todos" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 ++#, fuzzy + msgid "Print search string(s) to stdout and exit" + msgstr "Imprimir a(s) string(s) para o stdout e sair" + +@@ -1142,8 +1253,12 @@ msgstr "Imprimir a(s) string(s) para o stdout e sair" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1163,6 +1278,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1186,11 +1302,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1204,16 +1322,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1221,18 +1342,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1251,14 +1375,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1267,12 +1394,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1280,65 +1453,70 @@ msgid "" + msgstr "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +-"Extrair o Xorg crash do ficheiro FILE (ou entrada padrão)" ++"Extrair o crache Xorg do FICHEIRO (ou entrada padrão)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" +-msgstr "Imprimir os dados do crash para o output padrão" ++msgstr "A impressão encontrou dados de crache na saída padrão" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:70 ++#, fuzzy + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +@@ -1359,7 +1537,7 @@ msgstr "Não é possível criar o ficheiro temporário em" + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" +-msgstr "Incapaz de executar '%s'" ++msgstr "Não é possível executar '%s'" + + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 +@@ -1367,7 +1545,7 @@ msgstr "Incapaz de executar '%s'" + #: ../src/plugins/abrt-retrace-client.c:842 + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "Falha ao enviar cabeçalho HTTP de tamanho %d: erro NSS %d" ++msgstr "Falha ao enviar o cabeçalho HTTP com o tamanho %d: erro NSS %d" + + #: ../src/plugins/abrt-retrace-client.c:223 + #: ../src/plugins/abrt-retrace-client.c:412 +@@ -1389,7 +1567,7 @@ msgstr "Resposta HTTP inesperada do servidor: %d\n" + #: ../src/plugins/abrt-retrace-client.c:992 + #: ../src/plugins/abrt-retrace-client.c:1062 + msgid "Invalid response from server: missing HTTP message body." +-msgstr "Resposta inválida do servidor: falta o corpo da mensagem HTTP." ++msgstr "Resposta inválida do servidor: corpo da mensagem HTTP em falta." + + #: ../src/plugins/abrt-retrace-client.c:424 + #, c-format +@@ -1400,7 +1578,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +-msgstr "A questionar definições do servidor" ++msgstr "A consultar as configurações do servidor" + + #: ../src/plugins/abrt-retrace-client.c:452 + msgid "The server is fully occupied. Try again later." +@@ -1424,11 +1602,12 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:540 ++#, fuzzy + msgid "The server does not support xz-compressed tarballs." + msgstr "O servidor não suporta ficheiro comprimidos no formato xz-" + + #: ../src/plugins/abrt-retrace-client.c:577 +-#, c-format ++#, fuzzy, c-format + msgid "The release '%s' is not supported by the Retrace server." + msgstr "A versão '%s' não é suportada pelo servidor de traçagem." + +@@ -1471,6 +1650,7 @@ msgid "Uploading %d%%\n" + msgstr "A enviar %d%%\n" + + #: ../src/plugins/abrt-retrace-client.c:721 ++#, fuzzy + msgid "Failed to read from a pipe" + msgstr "Falha ao ler de um pipe" + +@@ -1496,12 +1676,12 @@ msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." + msgstr "" +-"O arquivo contém ficheiros nefastos (tais como apontadores simbólicos) e " +-"portanto não pode ser processado." ++"O arquivo contém ficheiros maliciosos (tais como hiperligações simbólicas) e " ++"por isso não pode ser processado." + + #: ../src/plugins/abrt-retrace-client.c:782 + msgid "Invalid response from server: missing X-Task-Id." +-msgstr "Resposta inválida do servidor: falta X-Task-Id." ++msgstr "Resposta inválida do servidor: X-Task-Id em falta." + + #: ../src/plugins/abrt-retrace-client.c:788 + msgid "Invalid response from server: missing X-Task-Password." +@@ -1546,7 +1726,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1217 + msgid "log to syslog" +-msgstr "Registar no syslog" ++msgstr "registar no registo do sistema" + + #: ../src/plugins/abrt-retrace-client.c:1219 + msgid "allow insecure connection to retrace server" +@@ -1586,7 +1766,7 @@ msgstr "ler dados de coredump" + + #: ../src/plugins/abrt-retrace-client.c:1235 + msgid "Delay for polling operations" +-msgstr "Atraso para operações de sondagem" ++msgstr "Atraso para as operações de sondagem" + + #: ../src/plugins/abrt-retrace-client.c:1237 + msgid "(debug) do not delete temporary archive created from dump dir in " +@@ -1598,7 +1778,7 @@ msgstr "Para estado, backtrace e operações de log" + + #: ../src/plugins/abrt-retrace-client.c:1241 + msgid "id of your task on server" +-msgstr "id da tarefa no servidor" ++msgstr "id. da tarefa no servidor" + + #: ../src/plugins/abrt-retrace-client.c:1243 + msgid "password of your task on server" +@@ -1620,14 +1800,14 @@ msgstr "É necessário um directório com problema ou um coredump." + #: ../src/plugins/abrt-retrace-client.c:1320 + #: ../src/plugins/abrt-retrace-client.c:1328 + msgid "Task id is needed." +-msgstr "ID da tarefa é necessário." ++msgstr "É necessária a id. da tarefa." + + #: ../src/plugins/abrt-retrace-client.c:1306 + #: ../src/plugins/abrt-retrace-client.c:1314 + #: ../src/plugins/abrt-retrace-client.c:1322 + #: ../src/plugins/abrt-retrace-client.c:1330 + msgid "Task password is needed." +-msgstr "Senha da tarefa é necessária." ++msgstr "É necessária a senha da tarefa." + + #: ../src/plugins/abrt-retrace-client.c:1334 + #, c-format +@@ -1636,13 +1816,13 @@ msgstr "Operação desconhecida: %s." + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 + msgid "Local GNU Debugger" +-msgstr "Depurador GNU local" ++msgstr "Depurador Local GNU" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" + msgstr "" +-"Descarregar pacotes debuginfo e gerar traçagem inversa localmente utilizando " +-"GDB" ++"Transferir pacotes da informação de depuração e gerar \"backtrace\" " ++"localmente, utilizando GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" +@@ -1687,7 +1867,7 @@ msgstr "Inseguro" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:6 + msgid "Whether or not to use insecure connection" +-msgstr "Usar ou não uma ligação insegura" ++msgstr "Utilizar ou não uma ligação insegura" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + msgid "" +@@ -1705,7 +1885,7 @@ msgstr "Recolher .xsession-errors" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:2 + msgid "Save relevant lines from ~/.xsession-errors file" +-msgstr "Gravar linhas relevantes do ficheiro ~/.xsession-errors" ++msgstr "Guardar linhas relevantes do ficheiro ~/.xsession-errors" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:3 + msgid "" +@@ -1861,19 +2041,19 @@ msgstr "Falha ao desligar NSS." + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1883,24 +2063,24 @@ msgstr "" + "Os programadores do kernel não conseguem diagnosticar relatórios " + "contaminados." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Lista de ids de bug(s)" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Especifique um url do servidor bodhi" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Especifique a versão" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1910,22 +2090,22 @@ msgstr "" + "\n" + "Procurar actualizações no servidor bodhi" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "A procurar actualizações" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Não foram encontradas actualizações para este pacote" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "A versão local deste pacote é mais recente do que a disponível nas " + "actualizações" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1947,65 +2127,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Utilização: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Remover directório de problema DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analisar e reportar problema em DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Apresentar informações sobre DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Ver 'abrt-cli COMMAND --help' para mais informação" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Mostrar relatório detalhado" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2013,49 +2194,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [opções] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2064,24 +2255,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/pt_BR.po b/po/pt_BR.po +index a1840a1..a34f711 100644 +--- a/po/pt_BR.po ++++ b/po/pt_BR.po +@@ -26,7 +26,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -36,7 +36,7 @@ msgstr "" + "fedora-abrt/language/pt_BR/)\n" + "Language: pt-BR\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -46,34 +46,34 @@ msgstr "Relato de Problemas" + msgid "View and report application crashes" + msgstr "Visualizar e relatar travamentos de aplicações" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Não foi possível obter propriedade de '%s'" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Não é possível abrir o diretório para escrita '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Não é possível fechar a notificação: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Oops!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Relatar" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Reiniciar" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " +@@ -81,7 +81,7 @@ msgid "" + msgstr "" + "Lamentamos, parece que %s travou. O problema foi relatado automaticamente." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -90,8 +90,8 @@ msgstr "" + "Lamentamos, parece que %s travou. O problema será relatado quando a internet " + "estiver disponível." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " +@@ -100,7 +100,7 @@ msgstr "" + "Lamentamos, parece que %s travou. Por favor, entre em contato com o " + "desenvolvedor se você quiser relatar o problema." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " +@@ -109,7 +109,7 @@ msgstr "" + "Lamentamos, parece que %s travou. Se você quiser ajudar a resolver esse " + "problema, por favor, envie um relatório." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +@@ -117,7 +117,7 @@ msgstr "" + "Lamentamos, parece que um problema ocorreu num componente. O problema foi " + "relatado automaticamente." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +@@ -125,7 +125,7 @@ msgstr "" + "Lamentamos, parece que um problema ocorreu num componente. O problema será " + "relatado quando a internet estiver disponível." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +@@ -133,28 +133,28 @@ msgstr "" + "Lamentamos, parece que um problema ocorreu num componente. Se você quiser " + "ajudar a resolver esse problema, por favor, envie um relatório." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Não é possível mostrar a notificação: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Não é possivel ler a partir do canal gio: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Não é possível definir codificação no canal gio: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Não é possível ligar o modo de não bloqueamento para o canal gio: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -165,6 +165,17 @@ msgstr "" + "O mini aplicativo que notifica o usuário quando novos problemas foram " + "detectados pelo ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "Pergunte antes de alterar o diretório" +@@ -186,13 +197,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"O arquivo coredump é necessário para a geração de rastreamento de pilha que " +-"é o tempo e o espaço consumindo da operação. O ABRT oferece um serviço que " +-"gera o rastreamento de pilha do coredump mas é necessário fazer o upload do " +-"coredump a este serviço. Com esta opção desabilitada o ABRT fará o upload do " +-"coredump automaticamente." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -237,10 +245,6 @@ msgstr "" + "relatados. Terá efeito somente se o relatório resumido estiver habilitado." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Pergunte antes de fazer upload do coredump" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -248,15 +252,15 @@ msgstr "" + "Com esta opção habilitada o ABRT sempre criará um bug ticket com acesso " + "restrito se detectar danos minuciosos." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Solicite um ticket confidencial para informações minuciosas" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Notificar problemas incompletos" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -266,6 +270,22 @@ msgstr "" + "desligado ou usuário estiver ausente. A fim de fornecer relatórios completos " + "do problema, o ABRT não reportará automaticamente estes relatórios." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Fechar" +@@ -291,14 +311,14 @@ msgstr "Sobre" + msgid "Quit" + msgstr "Sair" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -310,11 +330,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Diretório do problema" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Arquivo de Configuração" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -328,24 +348,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Utilize o NUM como uid de cliente" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Log para o syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Adicionar os nomes dos programas ao log" + +@@ -353,62 +374,52 @@ msgstr "Adicionar os nomes dos programas ao log" + msgid "Unknown error" + msgstr "Erro desconhecido" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' não é um diretório de problema válido" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' não é um nome válido de elemento" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "O '%s' não pode ser modificado" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' não é um diretório de problema válido" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Não Autorizado" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Não é possível acessar o problema para modificação" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "O '%s' não pode ser modificado" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Erro ao mudar o dono do diretório. Verifique os logs do sistema para mais " + "detalhes." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "Não é possível acessar o problema para leitura" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' não é um nome válido de elemento" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Não foi possível obter o tamanho de '%s'" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Nenhum problema de espaço." + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Não é possível remover o elemento '%s' do diretório de problema '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -418,12 +429,12 @@ msgstr "" + "O nome '%s' foi perdido, por favor verifique se outro serviço que possui o " + "nome não está em execução.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Sai após os segundos NUM de inatividade" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa deve estar sendo executado como root." + +@@ -450,18 +461,22 @@ msgstr "Não criar um daemon" + msgid "Log to syslog even with -d" + msgstr "Registrar no syslog mesmo com o -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Executar o EVENT no DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Comunicar diretamente com o usuário" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -498,89 +513,90 @@ msgstr "Número de processos simultâneas. O padrão é" + msgid "Maximal cache size in MiB. Default is " + msgstr "Tamanho máximo de cache em MiB. O padrão é" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Desliga a Autenticação" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Nome do usuário do Red Hat Support" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Senha do Red Hat Support, caso não seja fornecida, será enviada uma " + "solicitação " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Caminhos de certiifcado ou tipo de certificado do uReport SSL" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "Você também precisa especificar --username para --password" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Você pode utilizar --username ou --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Você pode usar --username ou --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Você pode usar --anonymous ou --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Número inválido e sem argumentos" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valor da opção desconhecida: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Senha:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "Não foi possível continuar sem uma senha\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "Reportagem automática de HTTP autenticado" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "Reportagem automática de SSL Client autenticado" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "Reportagem automática anônima" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -600,83 +616,83 @@ msgstr "" + " FILENAME - Uploaded archive file name\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Não é um diretório: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Pulando: '{0}' (começa com a barra)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Pulando: '{0}' (começa com o ponto)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Pulando: '{0}' (contém ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Pulando: '{0}' (contém espaço)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Pulando: '{0}' (contém aba)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Não foi possível modificar o diretóri para '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Tipo de arquivo desconhecido: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Não foi possível criar o diretório em funcionamento no '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Não foi possível mover '{0}' para '{1}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Não foi possível copiar '{0}' para '{1}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Erro de verificação no '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Desempacotando '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Não foi possível criar o diretório '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Não foi possível desempacotar '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' processado com sucesso" + +@@ -700,18 +716,26 @@ msgstr "Não é possível realizar o chown'%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Remoção do diretório problema falhou: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Não foi possível obter dados de problemas do abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Não foi possível obter lista de problemas a partir do abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Não foi possível obter dados de problemas do abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -760,7 +784,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Análise do backtrace falhou por %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Falha de segmentação não encontrado" + +@@ -864,7 +888,7 @@ msgstr "Não é possível extrair a mensagem de oops: '{0}'" + msgid "Oops text extracted successfully" + msgstr "Oops texto extraído com sucesso." + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -872,6 +896,38 @@ msgstr "" + "O log do kernel indica que foram detectados erros de hardware.\n" + "É provável que não seja um problema de software.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -990,7 +1046,36 @@ msgstr "Faltando arquivo debuginfo: {0}" + msgid "All debuginfo files are available" + msgstr "Todos os arquivos debuginfo estão disponíveis." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -1000,7 +1085,7 @@ msgstr "" + "'Não', um rastreamento em pilha será gerado localmente. (Pode baixar uma " + "grande quantidade de dados)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1242,7 +1327,8 @@ msgstr "Crie novo diretório de problema no DIR para todos os oops encontrados" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Mesmo que -d DumpLocation, DumpLocation está especificado no abrt.conf" +@@ -1253,17 +1339,19 @@ msgstr "Salve as informações extraídas em PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Tornar o diretório de problema mundial legível" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + "Regulador de falhas com problemas de criação de diretório em 1 segundo" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Imprima a(s) faixa(s) de busca no stdout e saia" + +@@ -1273,11 +1361,13 @@ msgstr "Imprima a(s) faixa(s) de busca no stdout e saia" + msgid "Failed to compile regex" + msgstr "Falha ao compilar o regex" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" +-"Não é possível atualizar informações sobre o problema: há mais de um oops " +-"encontrados" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1296,6 +1386,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1319,11 +1410,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1337,16 +1430,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1354,18 +1450,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1384,14 +1483,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1400,12 +1502,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1415,59 +1563,63 @@ msgstr "" + "\n" + "Extraia o travamento do Xorg doFILE (ou entrada padrão)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Imprima dados de travamento encontrados na saída do padrão" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Criar diretório de problema no DIR para todos os travamentos encontrados" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -2004,7 +2156,7 @@ msgstr "Falha ao desligar NSS" + msgid "Sleeping for %d seconds" + msgstr "Dormindo por %d segundos" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2012,7 +2164,7 @@ msgstr "" + "Ocorreu um problema no kernel por causa da BIOS quebrada. Infelizmente, " + "esses problemas não são solucionáveis ​​por mantenedores do kernel." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2020,7 +2172,7 @@ msgstr "" + "Ocorreu um problema de kernel, mas seu hardware não é suportado, portanto " + "mantenedores do kernel são incapazes de corrigir esse problema." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2030,24 +2182,24 @@ msgstr "" + "Mantenedores do kernel não são capazes de diagnosticar relatórios " + "adulterados." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Módulos danificados: %s" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Lista de ids de bug" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Especificar a url do servidor bodhi" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Especificar um lançamento" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2057,20 +2209,20 @@ msgstr "" + "\n" + "Buscar atualizações no servidor bodhi." + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Buscando atualizações" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Nenhuma atualização para este pacote encontrado" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Versão local dos pacotes é mais nova do que atualizações disponíveis." + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2097,66 +2249,67 @@ msgstr "Imprimir oopses encontrados" + msgid "Delete files with found oopses" + msgstr "Excluir arquivos com oopses encontrados" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "%s' identifica mais de um diretório problemático" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Uso: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Listar problemas [em Diretórios]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Remover DIR de diretório de problema" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analisar e reportar dados do problema no DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Imprimir informações sobre o DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Mostrar a contagem das quebras recentes" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Processar problemas múltiplos" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Ver 'abrt-cli COMMAND --help' para mais informações." + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Listar apenas problemas não reportados" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Exibir relatório detalhado" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "Lista somente os problemas mais recentes do timestamp especificado" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "Lista somente os problemas mais velhos do timestamp especificado" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2167,56 +2320,66 @@ msgstr "" + "\n" + "'abrt-auto-reporting habilitado' como um usuário com privilégios de root\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Um texto maior do que este será mostrado resumidamente" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Não há o diretório defeituoso '%s'" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Mostrar apenas a contagem de problema sem mensagem" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Mostrar apenas problemas mais recentes que a marca de tempo especificada" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT detectou %u problema(s). Para mais informações execute: abrt-cli " + "list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Removendo '%s'" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& relatório [opções] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Remover PROBLEM_DIR após relatar" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "Removendo '%s'" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Ações: remover (rm), info(i), skip(s):" +@@ -2227,27 +2390,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Acões: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Reportando '%s'" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Para o próximo problema, pressione ENTER:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Sem o argumento --since, itera em todos os problemas detectados." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Seleciona somente problemas detectados após o timestamp" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ru.po b/po/ru.po +index adba018..e5bde0b 100644 +--- a/po/ru.po ++++ b/po/ru.po +@@ -4,15 +4,15 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-04-06 04:10-0400\n" +-"Last-Translator: Igor Gorbounov \n" ++"PO-Revision-Date: 2015-07-20 08:46-0400\n" ++"Last-Translator: yuliya \n" + "Language-Team: Russian\n" + "Language: ru\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +@@ -25,37 +25,37 @@ msgid "View and report application crashes" + msgstr "Просмотреть сбои приложения и создать отчет" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Не удается стать владельцем «%s»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Не удалось открыть каталог для записи «%s»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Не удалось закрыть уведомление: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Ой!" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Сообщить" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Перезапуск" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " +@@ -64,7 +64,7 @@ msgstr "" + "Похоже, что, к сожалению, произошел сбой %s. Отчет об этой ошибке " + "автоматически отправлен." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -73,8 +73,8 @@ msgstr "" + "Похоже, что, к сожалению, произошел сбой %s. Отчет об этой ошибке будет " + "отправлен, когда будет доступ к Интернету." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " +@@ -83,7 +83,7 @@ msgstr "" + "Похоже, что, к сожалению, произошел сбой %s. Свяжитесь с разработчиком, если " + "вы хотите сообщить о проблеме." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " +@@ -92,7 +92,7 @@ msgstr "" + "Похоже, что, к сожалению, произошел сбой %s. Если вы хотите помочь решить " + "проблему, отправьте отчет." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +@@ -100,7 +100,7 @@ msgstr "" + "Похоже, что, к сожалению, произошел сбой компонента. Автоматически отправлен " + "отчет об этой проблеме." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +@@ -108,7 +108,7 @@ msgstr "" + "Похоже, что, к сожалению, произошел сбой компонента. Отчет об этой проблеме " + "будет отправлен, когда будет доступ к Интернету." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +@@ -117,32 +117,32 @@ msgstr "" + "проблемы, отправьте отчет." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Не удалось показать уведомление: %s" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Не удалось выполнить чтение из канала gio: «%s»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Не удалось изменить шифрование в канале gio: %s" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Не удалось включить неблокирующий режим для канала gio: %s" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -151,10 +151,21 @@ msgstr "& [-v] [DIR]...\n" + "\n" + "Модуль оповещения о неполадках, обнаруженных ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "Спрашивать перед перехватом каталога" ++msgstr "Подтверждать перемещение каталога" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 +@@ -171,18 +182,15 @@ msgstr "Сокращенный отчет" + msgid "Silent shortened reporting" + msgstr "Сокращенный отчет без подтверждения" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"Файл дампа памяти нужен для создания трассировки стека. На эту операцию " +-"требуется достаточно много времени и места. ABRT предоставляет службу " +-"создания трассировки стека из предварительно загруженного дампа памяти. Если " +-"этот параметр выключен, ABRT будет отправлять дамп без подтверждения." + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -205,7 +213,7 @@ msgid "" + "uReports are sent automatically immediately after problem detection." + msgstr "" + "uReport содержит краткое и полностью анонимное описание проблемы. ABRT " +-"использует отчеты uReport для быстрого обнаружения дубликатов. В стандартной " ++"использует отчеты uReport для быстрого поиска дубликатов. В стандартной " + "конфигурации uReport отправляется в начале процесса формирования отчетности. " + "Если этот параметр включен, отчеты uReport отправляются автоматически сразу " + "после обнаружения проблемы." +@@ -218,9 +226,8 @@ msgid "" + "You can always use the default problem browser to make complete report." + msgstr "" + "Если этот параметр включен, процесс создания отчета, запущенный нажатием " +-"кнопки «Отчет» во всплывающем сообщении о сбое, будет прерван после " +-"отправления отчета uReport. Для создания полного отчета можно " +-"воспользоваться стандартным средством просмотра проблем." ++"кнопки «Отчет» во всплывающем сообщении о сбое, ограничится отправкой отчета " ++"uReport. Полный отчет можно создать в окне просмотра обнаруженных ошибок." + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 +@@ -228,44 +235,54 @@ msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "" +-"Если этот параметр включен, ABRT не будет показывать уведомления о " +-"сообщенных проблемах. Действует, только если включен сокращенный формат " +-"отчетов." ++"Если этот параметр включен, ABRT не будет показывать уведомления об отправке " ++"отчетов. Действует, если включен сокращенный формат." + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Спрашивать перед выгрузкой дампа памяти" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" +-"Если этот параметр включен, ABRT будет создавать отчет об ошибке с " +-"ограниченным доступом, если обнаружена вероятность попадания в отчет " +-"конфиденциальных данных." ++"Если этот параметр включен, ABRT будет создавать отчет с ограниченным " ++"доступом, если обнаружена вероятность попадания в отчет конфиденциальных " ++"данных." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" +-msgstr "Запросить доступ к закрытому билету с конфиденциальными данными" ++msgstr "Ограничение доступа к отчету" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" +-msgstr "Уведомлять о неполных данных по проблеме" ++msgstr "Уведомлять о неполных данных" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" +-"Обнаружены неполные данные об ошибках вследствие выключения компьютера или " +-"выхода пользователя из системы. С целью обеспечения содержательности отчетов " +-"ABRT не отправит отчет об этих ошибках." ++"Если обнаружены неполные данные об ошибках (вследствие выключения компьютера " ++"или выхода пользователя из системы), то в целях обеспечения информативности " ++"ABRT не позволит отправлять неполные отчеты." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/system-config-abrt.c:79 +@@ -281,12 +298,12 @@ msgstr "По _умолчанию" + #: ../src/configuration-gui/system-config-abrt.c:116 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" +-msgstr "Конфигурация отчетов о сбоях" ++msgstr "Конфигурация отчетов об ошибках" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +-msgstr "О System Config ABRT" ++msgstr "О программе system-config-abrt" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/main.c:105 +@@ -298,7 +315,7 @@ msgstr "О программе" + msgid "Quit" + msgstr "Выход" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +@@ -306,10 +323,10 @@ msgid "" + msgstr "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +-"Запросить в базе данных и сохранить название пакета и компонента" ++"Сделать запрос к базе данных и сохранить название пакета и компонента" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -322,11 +339,11 @@ msgid "Problem directory" + msgstr "Каталог с данными сбоя" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Файл конфигурации" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "Использовать этот каталог в качестве корневого для RPM" + +@@ -343,27 +360,28 @@ msgid "Root directory for running container commands" + msgstr "Корневой каталог для выполнения команд для контейнера" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [параметры]" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Использовать NUM как uid клиента" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Запись в журнал" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Добавить названия программ в журнал" + +@@ -373,69 +391,58 @@ msgid "Unknown error" + msgstr "Неизвестная ошибка" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "«%s» не является правильным каталогом для данных о сбое" ++msgid "'%s' is not a valid element name" ++msgstr "Недопустимое имя элемента: «%s»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "Элемент «%s» не может быть изменен" ++msgid "'%s' is not a valid problem directory" ++msgstr "Недопустимый каталог с данными сбоя: «%s»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Не разрешено" + ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Ошибка доступа к проблеме с целью ее изменения" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "Элемент «%s» не может быть изменен" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "Не удалось изменить владельца каталога. Проверьте журналы." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "Не удается получить доступ к данным сбоя для чтения" +- + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "Недопустимое имя элемента: «%s»" +- +-# translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Не удалось определить размер «%s»." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Недостаточно места" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Ошибка удаления элемента «%s» из каталога «%s»" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -446,13 +453,13 @@ msgstr "" + "использующая это имя.\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Выйти после NUM секунд бездействия" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + "Эта программа должна запускаться от имени привелигированного пользователя." +@@ -482,21 +489,24 @@ msgstr "Не выполнять как службу" + msgid "Log to syslog even with -d" + msgstr "Запись в журнал даже с -d" + +-# translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Запуск EVENT в DIR" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Взаимодействие с пользователем напрямую" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format +@@ -519,8 +529,8 @@ msgstr "" + "& [-vs] [-w НОМЕР] [-c МиБ] [КАТАЛОГ]\n" + "\n" + "\n" +-"Следит за указанным каналогом и распаковывает поступающие\n" +-"архивы в место, определенное в выражении DumpLocation в abrt.conf\n" ++"Следит за указанным каталогом и распаковывает поступающие\n" ++"архивы в место, определенное значением DumpLocation в abrt.conf\n" + "\n" + "Если КАТАЛОГ не определен, будет выбрано значение \n" + "WatchCrashdumpArchiveDir из abrt.conf" +@@ -541,91 +551,92 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "Максимальный размер кэша в МиБ. По умолчанию:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Отключает аутентификацию" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Имя пользователя в системе поддержки Red Hat" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Пароль доступа к системе поддержки Red Hat. Если не указан, будет предложено " + "его ввести вручную" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Путь к SSL-сертификату uReport или тип сертификата" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" +-msgstr "Если задан пароль, необходимо определить --username" ++msgstr "Если пароль задан, необходимо определить --username" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Укажите --username или --certificate " + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Укажите --username или --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Укажите --anonymous или --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Недопустимое число аргументов" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "Неизвестное значение параметра: «%s»\n" ++msgstr "Неизвестное значение: «%s»\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Пароль:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "Для продолжения необходимо ввести пароль.\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "Автоматический отчет для HTTP-подключений" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "Автоматический отчет для SSL-подключений" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "Автоматический отчет для анонимных подключений" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -645,83 +656,83 @@ msgstr "" + " ФАЙЛ - имя файла отправляемого архива\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Не является каталогом: «{0}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Пропускается: «{0}» (начинается с косой черты)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Пропускается: «{0}» (начинается с точки)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Пропускается: «{0}» (содержит ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Пропускается: «{0}» (содержит пробел)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Пропускается: «{0}» (содержит знак табуляции)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Не удалось изменить каталог на «{0}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Неизвестный тип файла: «{0}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Не удалось создать рабочий каталог в «{0}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Не удалось переместить «{0}» в «{1}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Не удалось скопировать «{0}» в «{1}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Ошибка проверки «{0}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Распаковка «{0}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Не удалось создать каталог «{0}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Не удалось распаковать «{0}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' обработан успешно" + +@@ -749,23 +760,31 @@ msgstr "Не удается сменить владельца «%s»: %s" + msgid "Deleting problem directory failed: %s" + msgstr "Не удалось удалить каталог с данными о сбоях: %s" + +-# translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Не удается получить данные об ошибке от abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Не удается получить список ошибок от abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Не удается получить данные об ошибке от abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "Не удается проверить, существует ли элемент, через abrt-dbus: %s" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/lib/ignored_problems.c:233 +@@ -780,8 +799,8 @@ msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" + msgstr "" +-"Ошибка записи в «%s». Не удалось удалить проблему «%s» из списка " +-"игнорируемых проблем «%s»." ++"Ошибка записи в «%s». Не удалось удалить «%s» из списка игнорируемых проблем " ++"«%s»." + + # translation auto-copied from project abrt, version rhel7, document abrt + #. Something nefarious happened +@@ -817,7 +836,7 @@ msgid "Backtrace parsing failed for %s" + msgstr "Ошибка разбора протокола сбоя %s" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Поток сбоя не найден" + +@@ -939,7 +958,7 @@ msgid "Oops text extracted successfully" + msgstr "Текст ошибки ядра извлечен успешно" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -947,6 +966,38 @@ msgstr "" + "kernel.log сообщает об ошибках оборудования.\n" + "Это, скорее всего, не проблема программного обеспечения.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" +@@ -1105,8 +1156,37 @@ msgstr "Отсутствует файл debuginfo: {0}" + msgid "All debuginfo files are available" + msgstr "Все отладочные пакеты доступны" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -1117,7 +1197,7 @@ msgstr "" + "значительного объема данных." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1243,7 +1323,7 @@ msgstr "Сигнал, вызванный изменением размеров + #: ../src/plugins/abrt-gdb-exploitable:562 + #: ../src/plugins/abrt-gdb-exploitable:591 + msgid "Signal sent by alarm(N) expiration" +-msgstr "Сигнал по истечении " ++msgstr "Сигнал по завершении alarm(N) " + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-gdb-exploitable:583 +@@ -1396,7 +1476,8 @@ msgstr "Создавать каталог в DIR для каждого сбоя + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "То же, что и \"-d DumpLocation\", \"DumpLocation\" задается в abrt.conf" + +@@ -1408,18 +1489,20 @@ msgstr "Сохранить извлеченную информацию в PROBLE + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Открыть доступ чтения к каталогу сбоев" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Повторить создание каталога через 1 секунду" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Вывести строку (строки) поиска в stdout и выйти" + +@@ -1429,10 +1512,13 @@ msgstr "Вывести строку (строки) поиска в stdout и в + msgid "Failed to compile regex" + msgstr "Не удалось скомпилировать регулярное выражение" + +-# translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "Не удалось обновить проблему: найдено несколько ошибок" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1451,6 +1537,7 @@ msgstr "Не удалось сохранить данные по обнаруж + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "Не удалось инициализировать отслеживание systemd-journal" + +@@ -1485,11 +1572,13 @@ msgstr "Создавать новый каталог для сбоя в DIR дл + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "Начать чтение журнала systemd с позиции курсора" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "Начать чтение журнала systemd с конца" + +@@ -1503,16 +1592,19 @@ msgstr "То же, что и -t INT, INT указывается в plugins/CCpp. + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "Следить за журналом systemd с последней позиции просмотра (если есть)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "Необходимо указать либо -c CURSOR, либо -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "Не удается открыть журнал systemd" + +@@ -1520,18 +1612,21 @@ msgstr "Не удается открыть журнал systemd" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "Не удается отобрать из журнала systemd только данные systemd-coredump" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "Не удается перейти в конец журнала " + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "Не удалось установить курсор журнала systemd «%s»" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "Не удается чтение данных журнала." + +@@ -1562,29 +1657,78 @@ msgstr "" + "Последняя позиция просмотра сохраняется в " + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "Читать файлы журнала со всех машин" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Читать все файлы журнала из каталога в PATH" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "Не удается инициализация systemd-journal в каталоге «%s»" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "Не удается отобрать из журнала systemd-journal только данные ядра" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "Не удалось начать наблюдение с курсора «%s»" + ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1595,45 +1739,49 @@ msgstr "" + "Извлекать данные о сбое Xorg из FILE (или стандартного ввода)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Вывести найденные данные о сбое в стандартный вывод" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "Создавать каталог в DIR для каждого сбоя" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "Не удается сохранить точку отслеживания журнала" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "Не удается сохранить точку отслеживания журнала: открывание(«%s»)" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + "Не восстанавливается точка отслеживания журнала: файл «%s» не существует" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "Не удается восстановить точку отслеживания журнала из файла «%s»" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + "Не удается восстановить точку отслеживания журнала: путь «%s» не является " + "обычным файлом" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" +@@ -1641,12 +1789,12 @@ msgstr "" + "Не удается восстановить точку отслеживания журнала: файл «%s» превышает " + "предельный размер %dБ" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "Не удается восстановить точку отслеживания журнала: открывание(«%s»)" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" +@@ -1654,7 +1802,7 @@ msgstr "" + "весь файл «%s»" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "Не удалось переместить журнал в позицию курсора из файла «%s»" +@@ -2051,7 +2199,7 @@ msgid "" + "private data, if any." + msgstr "" + "Отправляет дамп памяти на сервер для генерации протокола сбоя. Достоинства: " +-"не требуется загружать debuginfo. База данных на остлеживающем сервер более " ++"не требуется загружать debuginfo. База данных на отслеживающем сервере более " + "подробная, поэтому сервер может создавать более точные отчёты. Недостатки: " + "отправляемый дамп содержит все данные сбойной программы, в том числе и " + "личные." +@@ -2284,7 +2432,7 @@ msgid "Sleeping for %d seconds" + msgstr "Переход в режим ожидания на %d сек." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2293,7 +2441,7 @@ msgstr "" + "проблемы не решаются на уровне ядра." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2302,7 +2450,7 @@ msgstr "" + "проблема не может быть решена на уровне ядра." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2313,28 +2461,28 @@ msgstr "" + "диагностировать проблему в таких ядрах." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Поврежденные модули: %s." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Список идентификторов ошибок" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Указать адрес bodhi-сервера" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Указать версию" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2345,23 +2493,23 @@ msgstr "" + "Искать обновления на bodhi-сервере" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Поиск обновлений" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Нет обновлений этого пакета" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Локальная версия пакета новее обнаруженных обновлений" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2392,79 +2540,79 @@ msgid "Delete files with found oopses" + msgstr "Удалить файлы с найденными сбоями" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "«%s» обнаружил несколько проблемных каталогов" + +-# translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Формат: abrt-cli [--version] КОМАНДА [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Показать ошибки [в DIR]" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Удалить каталог DIR" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Анализировать и предоставить отчет по ошибкам в DIR" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Вывод информации о DIR" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Вывод числа недавних сбоев" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Обработка нескольких проблем" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + "Для получения дополнительной информации выполните «abrt-cli КОМАНДА --help»" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& list [параметры]" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Показать ошибки, о которых еще не сообщалось" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Показать подробный отчёт" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "Дать список сбоев, обнаруженных после указанного момента времени" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "Дать список сбоев, обнаруженных до указанного момента времени" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2475,60 +2623,70 @@ msgstr "" + "Чтобы их включить, в режиме root выполните: abrt-auto-reporting enabled\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [параметры] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Текст, длина которого превышает указанную, будет усечен" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Нет такого каталога: «%s»." + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& status" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Вывод только числа сбоев" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Вывод сбоев, обнаруженных после указанного момента времени" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT обнаружил %u сбой (сбоев). Для получения дополнительной информации " + "выполните: abrt-cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Удаление «%s»" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [параметры] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Удалить PROBLEM_DIR после отправки отчета" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "Удаление «%s»" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Действия: удалить (rm), информация (i), пропустить (s):" +@@ -2539,29 +2697,184 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Действия: удалить (rm), сообщить (e), информация (i), пропустить (s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Отчет по «%s»..." + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Для перехода к следующей проблеме нажмите ENTER:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "Если аргумент --since не указан, обнаруженные ошибки будут обрабатываться " + "последовательно" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Выбор сбоев, обнаруженных после заданного момента времени" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/sk.po b/po/sk.po +index 3bf4b52..63f33da 100644 +--- a/po/sk.po ++++ b/po/sk.po +@@ -9,126 +9,141 @@ + # Michal Hriň , 2011 + # Milan Ondrašovič , 2013 + # Richard Marko , 2012 ++# Dusan Kazik , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-10-06 07:45-0400\n" +-"Last-Translator: Jakub Filak \n" ++"PO-Revision-Date: 2015-10-21 12:10-0400\n" ++"Last-Translator: Dusan Kazik \n" + "Language-Team: Slovak (http://www.transifex.com/projects/p/fedora-abrt/" + "language/sk/)\n" + "Language: sk\n" + "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "Nahlásenie problému" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "Zobrazuje a nahlasuje zlyhania aplikácií" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Nedá sa prevziať vlastníctvo '%s'" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Nedá sa otvoriť adresár na zapísanie „%s“" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nedá sa zavrieť oznámenie: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" +-msgstr "" ++msgstr "Ale nie!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Nahlásiť" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" +-msgstr "" ++msgstr "Reštartovať" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" ++"Ospravedlňujeme sa, ale zdá sa, že aplikácia %s nečakane skončila. Problém " ++"bol automaticky nahlásený." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" ++"Ospravedlňujeme sa, ale zdá sa, že aplikácia %s nečakane skončila. Keď bude " ++"dostupné pripojenie na internet, bude problém nahlásený." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" ++"Ospravedlňujeme sa, ale zdá sa, že aplikácia %s nečakane skončila. Ak chcete " ++"nahlásiť problém, prosím, kontaktujte vývojára." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" ++"Ospravedlňujeme sa, ale zdá sa, že aplikácia %s nečakane skončila. Ak by ste " ++"chceli pomôcť vyriešiť problém, prosím, odošlite hlásenie." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" ++"Ospravedlňujeme sa, ale zdá sa, že sa vyskytol problém so súčasťou. Problém " ++"bol automaticky nahlásený." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" ++"Ospravedlňujeme sa, ale zdá sa, že sa vyskytol problém so súčasťou. Keď bude " ++"dostupné pripojenie na internet, bude problém nahlásený." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" ++"Ospravedlňujeme sa, ale zdá sa, že sa vyskytol problém. Ak by ste chceli " ++"pomôcť tento problém vyriešiť, prosím, odošlite hlásenie." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Nedá sa zobraziť oznámenie: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Nedá sa čítať z kanálu gio: „%s“" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Nedá sa nastaviť kódovanie na kanáli gio: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Nedá sa zapnúť neblokovaný režim pre kanál gio: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -138,28 +153,41 @@ msgstr "" + "\n" + "Aplet, ktorý upozorní používateľa na novo zistené problémy službou ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "Opýtať sa pred odcudzením adresára" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "Automaticky odoslať hlásenie uReport" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "Skrátenie nahlasovanie" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "Tiché skrátené nahlasovanie" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -192,33 +220,45 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "Požiadať o súkromný tiket pre citlivé informácie" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "Oznámiť nedokončené problémy" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" +-msgstr "" ++msgstr "_Zavrieť" + + #: ../src/configuration-gui/system-config-abrt.c:88 + msgid "_Defaults" +@@ -227,7 +267,7 @@ msgstr "_Predvolené" + #: ../src/configuration-gui/system-config-abrt.c:116 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" +-msgstr "Problém s hlásením konfigurácie" ++msgstr "Konfigurácia nahlásenia problému" + + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +@@ -241,14 +281,14 @@ msgstr "O programe" + msgid "Quit" + msgstr "Ukončiť" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -260,11 +300,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Adresár s informáciami o probléme" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfiguračný súbor" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -278,24 +318,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [voľby]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Použiť NUM ako identifikátor používateľa pre klienta" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Zalogovať do syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Pridať názvy programu do log-u" + +@@ -303,62 +344,52 @@ msgstr "Pridať názvy programu do log-u" + msgid "Unknown error" + msgstr "Neznáma chyba" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' nie je platným adresárom problému" ++msgid "'%s' is not a valid element name" ++msgstr "„%s“ nie je platným názvom prvku" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "Prvok „%s“ sa nedá zmeniť" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' nie je platným adresárom problému" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Nepovolený" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Nedá sa pristúpiť k problému a zmeniť ho" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "Prvok „%s“ sa nedá zmeniť" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Vykonávanie chown na adresár zlyhalo. Pre viac podrobností skontrolujte " + "systémové záznamy." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "„%s“ nie je platným názvom prvku" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Nedá sa získať veľkosť „%s“" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Nezostalo miesto pre problémy" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Nedá sa odstrániť prvok „%s“ z adresára problému „%s“" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -368,12 +399,12 @@ msgstr "" + "Názov '%s' bol stratený. Prosím, skontrolujte, či iná služba vlastniaca " + "tento názov nie je spustená.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Ukončit po NUM sekundách neaktivity" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Tento program musí byť spustený s oprávneniami administrátora." + +@@ -399,18 +430,22 @@ msgstr "Nespúšťať ako démona" + msgid "Log to syslog even with -d" + msgstr "Zalogovať do syslog ešte s -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event ADR. UDALOSTÍ..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Spustiť EVENT v adresári DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Komunikovať priamo s používateľom" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -438,75 +473,76 @@ msgstr "" + + #: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " +-msgstr "" ++msgstr "Maximálna veľkosť vyrovnávacej pamäte v MiB. Predvolená je " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "Vypne overovanie totožnosti" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Používateľské meno podpory spoločnosti Red Hat" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" +-msgstr "" ++msgstr "Neplatný počet argumentov" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "" ++msgstr "Neznáma hodnota pre voľbu: „%s“\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" +-msgstr "" ++msgstr "Heslo:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Nedá sa pokračovať bez hesla\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" +-msgstr "" ++msgstr "anonymné automatické nahlasovanie" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -518,68 +554,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "Nie je adresár: „{0}“" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "Vynecháva sa: „{0}“ (začína lomítkom)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "Vynecháva sa: „{0}“ (začína bodkou)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "Vynecháva sa: „{0}“ (obsahuje ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "Vynecháva sa: „{0}“ (obsahuje medzeru)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "Vynecháva sa: „{0}“ (obsahuje tabulátor)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "Nedá sa zmeniť adresár na „{0}“" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -603,18 +639,26 @@ msgstr "Nedá sa vykonať chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Zlyhalo odstránenie adresára s problémom: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Nedajú sa získať údaje o probléme zo zbernice abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Nedá sa získať zoznam problémov zo zbernice abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Nedajú sa získať údaje o probléme zo zbernice abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -661,7 +705,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Parsovanie backtrace zlyhalo pre %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Vlákno s pádom sa nenašlo" + +@@ -751,7 +795,8 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "Can't process {0}:\n" + "{1}" +-msgstr "" ++msgstr "Nedá sa spracovať {0}:\n" ++"{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -761,12 +806,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -811,7 +888,7 @@ msgstr "Generuje sa záznam volaní jadra (core_backtrace)" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 + msgid "Error: GDB did not return any data" +-msgstr "" ++msgstr "Chyba: Odlaďovač GDB nevrátil žiadne údaje" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format +@@ -870,7 +947,7 @@ msgstr "" + + #: ../src/plugins/abrt-action-install-debuginfo.in:249 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "Chýba požadovaný súbor: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:254 + msgid "Missing debuginfo file: {0}" +@@ -880,7 +957,36 @@ msgstr "Chýbajúci debuginfo balíček: {0}" + msgid "All debuginfo files are available" + msgstr "Všetky debuginfo balíčky sú dostupné." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -890,7 +996,7 @@ msgstr "" + "stacktrace bude vygenerovaný lokálne. (Môže byť nutné stiahnuť veľké " + "množstvo dát)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -927,25 +1033,27 @@ msgstr "Ponechať daný adresár" + #: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "Nie je možné spustiť „%s“. Chybová hláška bola: „%s“" + + #: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "Nie je číslo v súbore „%s“" + + #: ../src/plugins/abrt-action-ureport:99 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "Použitie: %s [-v]" + + #: ../src/plugins/abrt-action-ureport:120 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" ++"Nie je možné získať aktuálny pracovný adresár, pretože bol pravdepodobne " ++"odstránený" + + #: ../src/plugins/abrt-action-ureport:148 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "Pre tento problém už bolo vyplnené hlásenie o chybe:" + + #: ../src/plugins/abrt-action-ureport:158 + msgid "uReport was already sent, not sending it again" +@@ -979,7 +1087,7 @@ msgstr "" + #: ../src/plugins/abrt-gdb-exploitable:550 + #: ../src/plugins/abrt-gdb-exploitable:575 + msgid "Signal sent by keyboard" +-msgstr "" ++msgstr "Signál bol odoslaný klávesnicou" + + #: ../src/plugins/abrt-gdb-exploitable:554 + #: ../src/plugins/abrt-gdb-exploitable:579 +@@ -1022,7 +1130,7 @@ msgstr "" + + #: ../src/plugins/abrt-gdb-exploitable:633 + msgid "Arithmetic exception" +-msgstr "" ++msgstr "Aritmetická výnimka" + + #: ../src/plugins/abrt-gdb-exploitable:637 + msgid "Division by zero" +@@ -1030,7 +1138,7 @@ msgstr "Delenie nulou" + + #: ../src/plugins/abrt-gdb-exploitable:641 + msgid "Illegal instruction (jump to a random address?)" +-msgstr "" ++msgstr "Nepovolená inštrukcia (skok na náhodnú adresu?)" + + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" +@@ -1038,11 +1146,11 @@ msgstr "" + + #: ../src/plugins/abrt-gdb-exploitable:652 + msgid "Stack overflow" +-msgstr "" ++msgstr "Pretečenie zásobníka" + + #: ../src/plugins/abrt-gdb-exploitable:656 + msgid "Write to an invalid address" +-msgstr "" ++msgstr "Zápis do neplatnej adresy" + + #: ../src/plugins/abrt-gdb-exploitable:660 + msgid "Subroutine return to an invalid address (corrupted stack?)" +@@ -1051,7 +1159,7 @@ msgstr "" + #: ../src/plugins/abrt-gdb-exploitable:666 + #: ../src/plugins/abrt-gdb-exploitable:670 + msgid "Jump to an invalid address" +-msgstr "" ++msgstr "Skok na neplatnú adresu" + + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" +@@ -1064,7 +1172,7 @@ msgstr "" + + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +-msgstr "" ++msgstr "Pravdepodobný dôvod predčasného skončenia:" + + #: ../src/plugins/abrt-gdb-exploitable:707 + msgid "Exploitable rating (0-9 scale): " +@@ -1072,7 +1180,7 @@ msgstr "" + + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " +-msgstr "" ++msgstr "Aktuálna inštrukcia:" + + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" +@@ -1116,7 +1224,8 @@ msgstr "Vytvoriť nový adresár s problémom v DIR pre každý nájdený oops" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Rovnaké ako -d DumpLocation, DumpLocation je nastavené v abrt.conf" + +@@ -1126,26 +1235,32 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Nastaviť pracovný adresár prístupný pre všetkých" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Vypísať vyhľadávací/ie reťazec/ce na stdout a skončiť" + + #: ../src/plugins/abrt-dump-oops.c:127 + #: ../src/plugins/abrt-dump-journal-oops.c:128 + msgid "Failed to compile regex" ++msgstr "Zlyhalo skompilovanie regexu" ++ ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1165,6 +1280,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1188,11 +1304,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1206,16 +1324,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1223,18 +1344,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1253,14 +1377,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1269,12 +1396,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1284,58 +1457,62 @@ msgstr "" + "\n" + "Extrahovať Xorg pád z FILE(súbor) (alebo zo štandardného vstupu)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Vypísať nájdené údaje o páde na štandardný výstup" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "Vytvoriť adresár s problémom v DIR pre každý nájdený pád" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1863,19 +2040,19 @@ msgstr "Nepodarilo sa ukončiť NSS." + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1885,24 +2062,24 @@ msgstr "" + "označené ako 'tainted' (príkaz: %s). Vývojári jadra nie sú schopný " + "diagnostikovať takto označený problém." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Nefunkčné moduly: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Zoznam identifikátorov chýb" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Určte url servera bodhi" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Určte vydanie" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1912,20 +2089,20 @@ msgstr "" + "\n" + "Vyhľadávať aktualizácie na bodhi serveri" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Hľadajú sa aktualizácie" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Nenašli sa aktualizácie pre tento balík" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Lokálna verzia balíka je novšia ako v dostupných aktualizáciách" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1949,65 +2126,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Použitie: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Zmazať adresár DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analyzovať a ohlásiť problém z adresára DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Vypísať informácie o adresári DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Vypísať počet nedávnych pádov" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Pre viac informácií viď 'abrt-cli PRÍKAZ --help'" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Zobraziť detailnú správu" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2015,52 +2193,62 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Vypísať iba počet problémov bez akejkoľvek správy" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Vypísať jedine problémy, ktoré nastali neskôr ako uvedená časová hranica" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT zistil %u problém(y/ov). Pre viac informácií spustite: abrt-cli " + "list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2069,24 +2257,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/sq.po b/po/sq.po +index 971f150..aeb05e4 100644 +--- a/po/sq.po ++++ b/po/sq.po +@@ -1,195 +1,138 @@ +-# SOME DESCRIPTIVE TITLE. +-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# +-# Translators: ++# Silva Arapi , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-06 13:44+0200\n" +-"PO-Revision-Date: 2014-10-06 11:45+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Albanian (http://www.transifex.com/projects/p/fedora-abrt/language/sq/)\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2015-10-31 11:16-0400\n" ++"Last-Translator: Silva Arapi \n" ++"Language-Team: Albanian\n" + "Language: sq\n" +-"Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.8.2\n" ++"Plural-Forms: nplurals=2; plural=(n != 1)\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +-msgid "Automatic Bug Reporting Tool" +-msgstr "" ++msgid "Problem Reporting" ++msgstr "Raportimi i Problemeve" + + #: ../src/applet/abrt-applet.desktop.in.h:2 +-msgid "ABRT notification applet" +-msgstr "" +- +-#: ../src/applet/applet.c:129 +-msgid "" +-"The report which will be sent does not contain any security sensitive data. " +-"Therefore it is not necessary to bother you next time and require any " +-"further action by you. \n" +-msgstr "" +- +-#: ../src/applet/applet.c:135 +-msgid "Do you want to enable automatically submitted crash reports?" +-msgstr "" ++msgid "View and report application crashes" ++msgstr "Shikoni dhe raportoni përplasjet e aplikacioneve" + +-#: ../src/applet/applet.c:140 +-msgid "Do you want to enable automatically submitted anonymous crash reports?" ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 ++#, c-format ++msgid "Can't take ownership of '%s'" + msgstr "" + +-#. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:241 ++#: ../src/applet/applet.c:268 + #, c-format +-msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" ++msgid "Can't open directory for writing '%s'" ++msgstr "Nuk mund të hapet direktoria për të shkruar '%s'" + +-#: ../src/applet/applet.c:265 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format +-msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" ++msgid "Can't close notification: %s" ++msgstr "Nuk mund të mbyllen njoftimet: %s" + +-#: ../src/applet/applet.c:384 +-msgid "A problem has been detected" ++#: ../src/applet/applet.c:598 ++msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:386 +-#, c-format +-msgid "A problem in the %s package has been detected" ++#: ../src/applet/applet.c:616 ++msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:396 +-#, c-format +-msgid "%s and the diagnostic data has been submitted" ++#: ../src/applet/applet.c:625 ++msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:556 ../src/plugins/abrt-retrace-client.c:131 +-#: ../src/plugins/abrt-retrace-client.c:168 ++#: ../src/applet/applet.c:694 + #, c-format +-msgid "Can't execute '%s'" ++msgid "" ++"We're sorry, it looks like %s crashed. The problem has been automatically " ++"reported." + msgstr "" + +-#: ../src/applet/applet.c:641 ../src/applet/applet.c:713 ++#: ../src/applet/applet.c:699 + #, c-format +-msgid "Can't close notification: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:675 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" +-"\n" +-"Do you want to continue?" ++"We’re sorry, it looks like %s crashed. The problem will be reported when the " ++"internet is available." + msgstr "" + +-#: ../src/applet/applet.c:753 ../src/applet/applet.c:755 +-msgid "Warning" +-msgstr "" +- +-#: ../src/applet/applet.c:803 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 ++#, c-format + msgid "" +-"Notification area applet that notifies users about issues detected by ABRT" ++"We're sorry, it looks like %s crashed. Please contact the developer if you " ++"want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:819 +-msgid "translator-credits" +-msgstr "" +- +-#: ../src/applet/applet.c:827 +-msgid "_Quit" +-msgstr "" +- +-#: ../src/applet/applet.c:829 +-msgid "Hide" +-msgstr "" +- +-#: ../src/applet/applet.c:831 +-msgid "_About" +-msgstr "" +- +-#: ../src/applet/applet.c:899 +-msgid "Problem detected" +-msgstr "" +- +-#: ../src/applet/applet.c:949 +-msgid "Ignore forever" +-msgstr "" +- +-#. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:960 ../src/applet/applet.c:975 +-msgid "Open" +-msgstr "" +- +-#: ../src/applet/applet.c:965 +-msgid "The Problem has already been Reported" +-msgstr "" +- +-#: ../src/applet/applet.c:965 +-msgid "A Known Problem has Occurred" +-msgstr "" +- +-#. Problem has not yet been 'autoreported' and can be +-#. * 'autoreported' on user request. +-#: ../src/applet/applet.c:984 ../src/applet/applet.c:1019 +-msgid "Report" ++#: ../src/applet/applet.c:713 ++#, c-format ++msgid "" ++"We're sorry, it looks like %s crashed. If you'd like to help resolve the " ++"issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:989 +-msgid "A Problem has Occurred" ++#: ../src/applet/applet.c:732 ++msgid "" ++"We're sorry, it looks like a problem occurred in a component. The problem " ++"has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:1015 +-msgid "A Problem has been Reported" ++#: ../src/applet/applet.c:736 ++msgid "" ++"We're sorry, it looks like a problem occurred in a component. The problem " ++"will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:1023 +-msgid "A New Problem has Occurred" ++#: ../src/applet/applet.c:741 ++msgid "" ++"We're sorry, it looks like a problem occurred. If you'd like to help resolve " ++"the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:1033 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1067 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1151 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1155 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1189 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1198 +-#, c-format +-msgid "Can't open directory for writing '%s'" ++#: ../src/applet/applet.c:1186 ++msgid "" ++"& [-v] [DIR]...\n" ++"\n" ++"Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/applet/applet.c:1481 +-#, c-format ++#: ../src/configuration-gui/abrt-config-widget.c:483 + msgid "" +-"Failed to open connection to session manager: '%s', notification may " +-"reappear on the next login" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." + msgstr "" + +-#: ../src/applet/applet.c:1622 +-msgid "" +-"& [-v] [DIR]...\n" +-"\n" +-"Applet which notifies user when new problems are detected by ABRT\n" ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 +@@ -211,10 +154,11 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +172,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -247,30 +191,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -296,16 +252,17 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:388 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" +-"& [-v] [-c CONFFILE] -d DIR\n" ++"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:400 ++#: ../src/daemon/abrt-action-save-package-data.c:406 ++#: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 ++#: ../src/plugins/abrt-action-analyze-c.c:141 + #: ../src/plugins/abrt-action-analyze-oops.c:48 + #: ../src/plugins/abrt-action-analyze-xorg.c:84 + #: ../src/plugins/abrt-action-analyze-python.c:47 +@@ -314,123 +271,143 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:401 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:781 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 ++#: ../src/daemon/abrt-action-save-package-data.c:408 ++msgid "Use this directory as RPM root" ++msgstr "" ++ ++#: ../src/daemon/abrt-action-save-container-data.c:199 ++msgid "& [-v] -d DIR\n" ++"\n" ++"Save container metadata" ++msgstr "" ++ ++#: ../src/daemon/abrt-action-save-container-data.c:211 ++msgid "Root directory for running container commands" ++msgstr "" ++ ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:96 +-#: ../src/plugins/abrt-dump-journal-oops.c:302 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 ++#: ../src/plugins/abrt-dump-journal-core.c:477 ++#: ../src/plugins/abrt-dump-journal-oops.c:219 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 +-msgid "Can't access the problem for modification" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 ++#: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:499 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +-#: ../src/daemon/abrtd.c:451 ++#: ../src/daemon/abrtd.c:389 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" provide valuable problem reports, ABRT will not allow you to submit this " +-"problem. If you have time and want to help the developers in their effort to" +-" sort out this problem, please contact them directly." ++"detected while computer is shutting down or user is logging out. In order to " ++"provide valuable problem reports, ABRT will not allow you to submit this " ++"problem. If you have time and want to help the developers in their effort to " ++"sort out this problem, please contact them directly." + msgstr "" + +-#: ../src/daemon/abrtd.c:497 ++#: ../src/daemon/abrtd.c:457 + msgid "Do not daemonize" + msgstr "" + +-#: ../src/daemon/abrtd.c:498 ++#: ../src/daemon/abrtd.c:458 + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -460,20 +437,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:234 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:235 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:236 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:252 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:258 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:264 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:270 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-auto-reporting.c:336 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:339 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:380 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:382 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:384 ++msgid "anonymous auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -485,68 +516,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -570,16 +601,30 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -606,19 +651,21 @@ msgid "" + "and identifies crash function in problem directory DIR" + msgstr "" + ++#. + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. ++#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-c.c:67 ++#: ../src/plugins/abrt-action-analyze-c.c:130 + msgid "" + "& [-v] -d DIR\n" + "\n" +@@ -691,8 +738,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -704,12 +750,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -727,6 +805,7 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. ++#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -761,60 +840,99 @@ msgstr "" + msgid "Exiting on user command" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:88 ++#: ../src/plugins/abrt-action-install-debuginfo.in:89 + #, c-format + msgid "" +-"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" + "to CACHEDIR, using TMPDIR as temporary staging area.\n" + "Old files in CACHEDIR are deleted until it is smaller than SIZE.\n" + "\n" ++"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" ++"\n" + " -v Be verbose\n" + " -y Noninteractive, assume 'Yes' to all questions\n" + " --ids Default: build_ids\n" +-" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n" ++" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX\n" + " --cache Default: /var/cache/abrt-di\n" + " --size_mb Default: 4096\n" ++" --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" + " -e,--exact Download only specified files\n" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:169 ++#: ../src/plugins/abrt-action-install-debuginfo.in:175 + msgid "Can't open {0}: {1}" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:206 ++#: ../src/plugins/abrt-action-install-debuginfo.in:212 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:209 ++#: ../src/plugins/abrt-action-install-debuginfo.in:215 + msgid "{0} of debuginfo files are not installed" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:223 ++#: ../src/plugins/abrt-action-install-debuginfo.in:234 ++#, c-format ++msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:249 + msgid "Missing requested file: {0}" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:228 ++#: ../src/plugins/abrt-action-install-debuginfo.in:254 + msgid "Missing debuginfo file: {0}" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:231 ++#: ../src/plugins/abrt-action-install-debuginfo.in:257 + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -824,7 +942,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -840,38 +959,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:40 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:51 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:80 ++#: ../src/plugins/abrt-action-ureport:99 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:100 ++#: ../src/plugins/abrt-action-ureport:120 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:128 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:138 ++#: ../src/plugins/abrt-action-ureport:158 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:159 ++#: ../src/plugins/abrt-action-ureport:179 + msgid "Adding you to CC List of the existing bugzilla bug" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:164 ++#: ../src/plugins/abrt-action-ureport:193 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +@@ -1005,116 +1124,168 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:76 ++#: ../src/plugins/abrt-dump-oops.c:77 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:97 +-#: ../src/plugins/abrt-dump-journal-oops.c:303 ++#: ../src/plugins/abrt-dump-oops.c:98 ++#: ../src/plugins/abrt-dump-journal-oops.c:220 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#: ../src/plugins/abrt-dump-oops.c:101 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#. ++#: ../src/plugins/abrt-dump-oops.c:102 ++#: ../src/plugins/abrt-dump-journal-oops.c:224 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:102 +-#: ../src/plugins/abrt-dump-journal-oops.c:308 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:103 ++#: ../src/plugins/abrt-dump-journal-core.c:479 ++#: ../src/plugins/abrt-dump-journal-oops.c:225 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:103 ++#: ../src/plugins/abrt-dump-oops.c:104 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:104 +-#: ../src/plugins/abrt-dump-journal-oops.c:309 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:105 ++#: ../src/plugins/abrt-dump-journal-oops.c:226 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:105 +-#: ../src/plugins/abrt-dump-journal-oops.c:310 ++#: ../src/plugins/abrt-dump-oops.c:106 ++#: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:106 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:126 +-#: ../src/plugins/abrt-dump-journal-oops.c:214 ++#: ../src/plugins/abrt-dump-oops.c:127 ++#: ../src/plugins/abrt-dump-journal-oops.c:128 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:185 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:43 +-msgid "Cannot read journal data." ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + +-#. Only notice because this is expected +-#: ../src/plugins/abrt-dump-journal-oops.c:125 +-#, c-format +-msgid "Not restoring journal watch's position: file '%s' does not exist" ++#: ../src/plugins/abrt-dump-journal-core.c:341 ++#: ../src/plugins/abrt-dump-journal-core.c:377 ++msgid "Failed to obtain all required information from journald" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:129 ++#. We don't want to update the counter here. ++#: ../src/plugins/abrt-dump-journal-core.c:401 + #, c-format +-msgid "Cannot restore journal watch's position form file '%s'" ++msgid "Not saving repeating crash after %ds (limit is %ds)" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:135 +-#, c-format +-msgid "Cannot restore journal watch's position: path '%s' is not regular file" ++#: ../src/plugins/abrt-dump-journal-core.c:407 ++msgid "Failed to save detect problem data in abrt database" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:141 +-#, c-format ++#: ../src/plugins/abrt-dump-journal-core.c:427 ++#: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 ++msgid "Failed to initialize systemd-journal watch" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:447 + msgid "" +-"Cannot restore journal watch's position: file '%s' exceeds %dB size limit" ++"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" ++"\n" ++"Extract coredumps from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in " + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:149 +-#, c-format +-msgid "Cannot restore journal watch's position: open('%s')" ++#: ../src/plugins/abrt-dump-journal-core.c:478 ++msgid "Create new problem directory in DIR for every coredump" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:158 +-#, c-format +-msgid "Cannot restore journal watch's position: cannot read entire file '%s'" ++#: ../src/plugins/abrt-dump-journal-core.c:480 ++#: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 ++msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + +-#. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-dump-journal-oops.c:170 +-#, c-format +-msgid "Failed to move the journal to a cursor from file '%s'" ++#: ../src/plugins/abrt-dump-journal-core.c:481 ++#: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 ++msgid "Start reading systemd-journal from the end" + msgstr "" + +-#. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-dump-journal-oops.c:185 +-msgid "Cannot save journal watch's position" ++#: ../src/plugins/abrt-dump-journal-core.c:482 ++msgid "Throttle problem directory creation to 1 per INT second" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:483 ++msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:484 ++#: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 ++msgid "Follow systemd-journal from the last seen position (if available)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:495 ++#: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 ++msgid "You need to specify either -c CURSOR or -e" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:541 ++#: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 ++msgid "Cannot open systemd-journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:544 ++msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:195 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 ++msgid "Cannot seek to the end of journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format +-msgid "Cannot save journal watch's position: open('%s')" ++msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:251 +-msgid "Failed to initialize systemd-journal watch" ++#: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 ++msgid "Cannot read journal data." + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:272 ++#: ../src/plugins/abrt-dump-journal-oops.c:186 + msgid "" + "& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" + "\n" +@@ -1128,59 +1299,144 @@ msgid "" + "The last seen position is saved in " + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:311 +-msgid "Start reading systemd-journal from the CURSOR position" ++#: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 ++msgid "Read journal files from all machines" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:312 +-msgid "Start reading systemd-journal from the end" ++#: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 ++msgid "Read all journal files from directory at PATH" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:313 +-msgid "Follow systemd-journal from the last seen position (if available)" ++#: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 ++#, c-format ++msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:327 +-msgid "You need to specify either -c CURSOR or -e" ++#: ../src/plugins/abrt-dump-journal-oops.c:288 ++msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:356 +-msgid "Cannot open systemd-journal" ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 ++#, c-format ++msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:359 +-msgid "Cannot filter systemd-journal to kernel data only" ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:362 +-msgid "Cannot seek to the end of journal" ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:369 +-#, c-format +-msgid "Failed to start watch from cursor '%s'" ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:378 +-#, c-format +-msgid "Failed to set systemd-journal cursor '%s'" ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ ++#. abrt_journal_set_cursor() prints error message in verbose mode ++#: ../src/plugins/abrt-journal.c:274 ++msgid "Cannot save journal watch's position" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:284 ++#, c-format ++msgid "Cannot save journal watch's position: open('%s')" ++msgstr "" ++ ++#. Only notice because this is expected ++#: ../src/plugins/abrt-journal.c:302 ++#, c-format ++msgid "Not restoring journal watch's position: file '%s' does not exist" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:304 ++#, c-format ++msgid "Cannot restore journal watch's position form file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:311 ++#, c-format ++msgid "Cannot restore journal watch's position: path '%s' is not regular file" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:317 ++#, c-format ++msgid "" ++"Cannot restore journal watch's position: file '%s' exceeds %dB size limit" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:325 ++#, c-format ++msgid "Cannot restore journal watch's position: open('%s')" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:334 ++#, c-format ++msgid "Cannot restore journal watch's position: cannot read entire file '%s'" ++msgstr "" ++ ++#. abrt_journal_set_cursor() prints error message in verbose mode ++#: ../src/plugins/abrt-journal.c:346 ++#, c-format ++msgid "Failed to move the journal to a cursor from file '%s'" ++msgstr "" ++ + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " +@@ -1189,12 +1445,19 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: ++#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 + msgid "Can't create temporary file in " + msgstr "" + ++#: ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/plugins/abrt-retrace-client.c:168 ++#, c-format ++msgid "Can't execute '%s'" ++msgstr "" ++ + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 + #: ../src/plugins/abrt-retrace-client.c:677 +@@ -1211,8 +1474,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1011 + #: ../src/plugins/abrt-retrace-client.c:1070 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1281,8 +1543,8 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:628 + #, c-format + msgid "" +-"The size of your archive is %s, but the retrace server only accepts archives" +-" smaller or equal to %s." ++"The size of your archive is %s, but the retrace server only accepts archives " ++"smaller or equal to %s." + msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:640 +@@ -1343,8 +1605,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:808 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1354,8 +1615,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:878 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1471,8 +1731,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1481,11 +1741,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1506,9 +1766,9 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1596,133 +1856,140 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +-#: ../src/plugins/oops-utils.c:71 ++#: ../src/plugins/oops-utils.c:73 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:205 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:210 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:225 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:233 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1740,114 +2007,126 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:127 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:66 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1856,24 +2135,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +@@ -1886,8 +2320,8 @@ msgid "" + "user doesn't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1944,8 +2378,8 @@ msgstr "" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:3 + msgid "" +-"Checks if there are .vimrc and .gvimrc in your home directory and saves them" +-" as user_vimrc and user_gvimrc, respectively." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/sr.po b/po/sr.po +index 12a7cf7..93e82f6 100644 +--- a/po/sr.po ++++ b/po/sr.po +@@ -4,155 +4,185 @@ + # + # Translators: + # Jiří Moskovčák , 2011 ++# Momcilo Medic , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-10-06 07:45-0400\n" +-"Last-Translator: Jakub Filak \n" ++"PO-Revision-Date: 2015-09-17 07:58-0400\n" ++"Last-Translator: Momcilo Medic \n" + "Language-Team: Serbian (http://www.transifex.com/projects/p/fedora-abrt/" + "language/sr/)\n" + "Language: sr\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "Пријављивање проблема" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "Види и пријави програмски пад" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" +-msgstr "" ++msgstr "Не могу да преузмем власништво над '%s'" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" +-msgstr "" ++msgstr "Не могу да отворим директоријум за упис '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" +-msgstr "" ++msgstr "Не могу да затворим обавештење: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" +-msgstr "" ++msgstr "Упс!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Пријава" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" +-msgstr "" ++msgstr "Покрени поново" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" ++"Нажалост, изгледа да се %s срушио. Овај проблем је аутоматски пријављен." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" ++"Нажалост, изгледа да се %s срушио. Овај проблем ће бити аутоматски пријављен " ++"чим интернет буде доступан." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" ++"Нажалост, изгледа да се %s срушио. Молим да контактирате програмера ако " ++"желите пријавити проблем." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" ++"Нажалост, изгледа да се %s срушио. Ако желите да помогнете у решавању овог " ++"проблема, молим да пошаљете извештај." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" ++"Нажалост, изгледа да се догодио проблем у компоненти. Овај проблем је " ++"аутоматски пријављен." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" ++"Нажалост, изгледа да се догодио проблем у компоненти. Овај проблем ће бити " ++"пријављен аутоматски чим интернет буде доступан." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" ++"Нажалост, изгледа да се догодио проблем. Ако желите да помогнете у решавању " ++"овог проблема, молим да пошаљете извештај." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" +-msgstr "" ++msgstr "Не могу да прикажем обавештење: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" +-msgstr "" ++msgstr "Не могу да читам са gio канала: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" +-msgstr "" ++msgstr "Не могу да поставим кодирање на gio каналу: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" ++msgstr "Не могу да укључим неблокирајући режим за gio каналу: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"Програмчић који обавештава корисника када ABRT открије нове проблеме\n" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "Питати пре крађе директоријума" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "Аутоматски пошаљи uReport" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "Скраћено пријављивање" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "Тихо скраћено пријављивање" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -162,6 +192,10 @@ msgid "" + "directory. With this option disabled ABRT will move the problem directory " + "without asking." + msgstr "" ++"ABRT чува податке о проблему у директоријумима. Кад год је ABRT-у неопходан " ++"директоријум за упис, директоријум ће бити премештен са системске локације у " ++"ваш лични директоријум. Када је ова опција онемогућена ABRT ће преместити " ++"директоријум проблема без питања." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -170,6 +204,10 @@ msgid "" + "uReport is sent at beginning of reporting process. With this option enabled " + "uReports are sent automatically immediately after problem detection." + msgstr "" ++"uReport је кратки и потпуно анонимни опис проблема. ABRT користи uReport-ове " ++"за брзо глобално откривање дупликата. У подразумеваној конфигурацији uReport " ++"се шаље на почету процеса пријављивања. Када је ова опција омогућена uReport " ++"се шаљу аутоматски одмах након откривања проблема." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +@@ -177,71 +215,98 @@ msgid "" + "in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" ++"Када је ова опција омогућена поступак пријављивања започет кликом на Пријави " ++"дугме у балону обавештења о проблему, ће бити прекинут након што је uReport " ++"послат. Можете увек употребити подразумевани прегледач проблема да направите " ++"комплетну пријаву." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "" ++"Када је ова опција омогућена ABRT никад не приказује обавештења о " ++"пријављеним проблемима. Има ефекта само када је омогућено скраћено " ++"пријављивање." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" ++"Када је ова опција омогућена ABRT увек прави карту програмске грешке са " ++"ограниченим приступом ако су откривени могући осетљиви подаци." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "Захтевати приватну карту за осетљиве информације" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "Обавести о непотпуним проблемима" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" ++"Непотпуни проблеми су откривени када се рачунар искључује или се корисник " ++"одјављује. Да би се пружили корисни извештаји о проблемима, ABRT вам неће " ++"дозволити да пошаљете ове проблеме." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" + + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" +-msgstr "" ++msgstr "_Затвори" + + #: ../src/configuration-gui/system-config-abrt.c:88 + msgid "_Defaults" +-msgstr "" ++msgstr "_Подразумеване вредности" + + #: ../src/configuration-gui/system-config-abrt.c:116 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" +-msgstr "" ++msgstr "Подешавање пријављивања проблема" + + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +-msgstr "" ++msgstr "О програму за системско подешавање ABRT-а" + + #: ../src/configuration-gui/main.c:105 + msgid "About" +-msgstr "" ++msgstr "О програму" + + #: ../src/configuration-gui/main.c:106 + msgid "Quit" +-msgstr "" ++msgstr "Излаз" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" ++"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" ++"\n" ++"Пошаљи упит бази података пакета и сними име пакета и компоненте" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -251,120 +316,117 @@ msgstr "" + #: ../src/plugins/abrt-action-generate-backtrace.c:55 + #: ../src/plugins/abrt-action-generate-core-backtrace.c:52 + msgid "Problem directory" +-msgstr "" ++msgstr "Директоријум проблема" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" +-msgstr "" ++msgstr "Датотека подешавања" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" +-msgstr "" ++msgstr "Користи овај директоријум као RPM корен" + + #: ../src/daemon/abrt-action-save-container-data.c:199 + msgid "& [-v] -d DIR\n" + "\n" + "Save container metadata" +-msgstr "" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"Сачувај метаподатке контејнера" + + #: ../src/daemon/abrt-action-save-container-data.c:211 + msgid "Root directory for running container commands" +-msgstr "" ++msgstr "Корени директоријум за извршавање контејнер команди" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" +-msgstr "" ++msgstr "& [опције]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" +-msgstr "" ++msgstr "Користи NUM као uid клијента" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" +-msgstr "" ++msgstr "Записник у syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" +-msgstr "" ++msgstr "Додај имена програма у записник" + + #: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" +-msgstr "" ++msgstr "Непозната грешка" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' није исправно име елемента" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' није исправан директоријум проблема" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "" ++msgstr "Неовлашћен" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" ++msgid "'%s' element can't be modified" ++msgstr "'%s' елемент не може бити измењен" ++ ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" ++"Промена власништва директоријума неуспешна. Проверите системске записе за " ++"више детаља." + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" +-msgstr "" ++msgstr "Не могу да добијем величину '%s'" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" +-msgstr "" ++msgstr "Није остало места за проблеме" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "" ++msgstr "Не могу да обришем елемент '%s' из директоријума проблема '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" + msgstr "" ++"Име '%s' је изгубљено, молим проверите да ли други сервис са власништвом над " ++"именом није покренут.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" +-msgstr "" ++msgstr "Изађи након NUM секунди неактивности" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." +-msgstr "" ++msgstr "Овај програм мора бити извршен под root налогом." + + #: ../src/daemon/abrtd.c:389 + msgid "" +@@ -374,31 +436,40 @@ msgid "" + "problem. If you have time and want to help the developers in their effort to " + "sort out this problem, please contact them directly." + msgstr "" ++"Подаци о проблему су непотпуни. Ово се обично дешава када се открије проблем " ++"док се рачунар искључује или се корисник одјављује. Да би се пружили корисни " ++"извештаји о проблемима, ABRT вам неће дозволити да пошаљете овај проблем. " ++"Ако имате времена и желите да помогнете програмерима у њиховом настојању да " ++"реше овај проблем, молим да их контактирате директно." + + #: ../src/daemon/abrtd.c:457 + msgid "Do not daemonize" +-msgstr "" ++msgstr "Немој покренути као сервис" + + #: ../src/daemon/abrtd.c:458 + msgid "Log to syslog even with -d" +-msgstr "" ++msgstr "Записуј у syslog чак и са -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" +-msgstr "" ++msgstr "Изврши EVENT над DIR-ом" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" ++msgstr "Пренеси директно са кориснику" ++ ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" + msgstr "" + + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "" ++msgstr "Нема слободних радника и бафер је пун. Прескачем архиву '%s'" + + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" +@@ -411,86 +482,96 @@ msgid "" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"Прати UPLOAD_DIRECTORY и отпакује архиве које пристижу у DumpLocation\n" ++"назначену у abrt.conf\n" ++"\n" ++"Ако UPLOAD_DIRECTORY није задат, користи вредност\n" ++"WatchCrashdumpArchiveDir опције из abrt.conf" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +-msgstr "" ++msgstr "Као сервис" + + #: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " +-msgstr "" ++msgstr "Број упоредних радника. Подразумевано је " + + #: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " +-msgstr "" ++msgstr "Максимална величина кеша у MiB. Подразумевано је " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " +-msgstr "" ++msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "Искључује аутентификацију" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Red Hat Support корисничко име" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" ++"Red Hat Support лозинка, ако није задата, онда ће бити издат упит за њу" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" +-msgstr "" ++msgstr "uReport SSL путање сертификата или врста сертификата" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" +-msgstr "" ++msgstr "Такође је потребно да назначите --username за --password" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" +-msgstr "" ++msgstr "Можете користити или --username или --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" +-msgstr "" ++msgstr "Можете користити или --username или --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" +-msgstr "" ++msgstr "Можете користити или --anonymous или --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" +-msgstr "" ++msgstr "Неисправан број аргумената" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "" ++msgstr "Непозната вредност опције: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" +-msgstr "" ++msgstr "Лозинка:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Не могу наставити без лозинке\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" +-msgstr "" ++msgstr "HTTP аутентификовано аутоматско пријављивање" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" +-msgstr "" ++msgstr "SSL Client аутентификовано аутоматско пријављивање" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" +-msgstr "" ++msgstr "анонимно аутоматско пријављивање" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -501,112 +582,127 @@ msgid "" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" + msgstr "" ++"Употреба: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Брбљивост\n" ++" -d - Обриши послату архиву\n" ++" ABRT_SPOOL_DIR - Директоријум где се отпакују исправне послате архиве\n" ++" UPLOAD_DIR - Директоријум где се чувају послате архиве\n" ++" FILENAME - Име датотеке послате архиве\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "Није директоријум: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "Прескачем: '{0}' (почиње косом цртом)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "Прескачем: '{0}' (почиње тачком)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "Прескачем: '{0}' (садржи ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "Прескачем: '{0}' (садржи размак)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "Прескачем: '{0}' (садржи таб)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "Не могу променити директоријум на '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "Непозната врста датотеке: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "Не могу да направим радни директоријум у '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "Не могу преместити '{0}' на '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "Не могу копирати '{0}' на '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "Грешка при провери '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "Отпакујем '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "Не могу да направим '{0}' директоријум" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "Не могу да отпакујем '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' успешно обрађено" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" +-msgstr "" ++msgstr "Стварам стабло позивања" + + #: ../src/lib/problem_api_dbus.c:42 + #, c-format + msgid "Can't connect to system DBus: %s" +-msgstr "" ++msgstr "Не могу да се повежем на системски DBus: %s" + + #: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" +-msgstr "" ++msgstr "Не могу да chown-ујем '%s': %s" + + #: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" +-msgstr "" ++msgstr "Грешка при брисању директоријума проблема: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "" ++msgstr "Не могу преузети списак проблема од abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Не могу да преузмем податке о проблему од abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "Не могу испробати да ли елемент постоји преко abrt-dbus: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +-msgstr "" ++msgstr "Не могу направити привремену датотеку '%s'" + + #: ../src/lib/ignored_problems.c:250 + #, c-format +@@ -614,12 +710,14 @@ msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" + msgstr "" ++"Не могу да упишем у '%s'. Проблем '%s' неће бити уклоњен из занемарених " ++"проблема '%s'" + + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "" ++msgstr "Не могу да преименујем '%s' у '%s'. Грешка при уклањању проблема '%s'" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" +@@ -628,6 +726,11 @@ msgid "" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" + msgstr "" ++"& [опције] -d DIR\n" ++"\n" ++"Анализира C/C++ стабло позивања, ствара збир понављања, оцену стабла " ++"позивања\n" ++"и идентификује срушену функцију у директоријуму проблема DIR" + + #. + #. * The parser failed. Compute the duphash from the executable +@@ -637,11 +740,11 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +-msgstr "" ++msgstr "Неуспешна обрада стабла позивања за %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" +-msgstr "" ++msgstr "Срушена нит није пронађена" + + #: ../src/plugins/abrt-action-analyze-c.c:130 + msgid "" +@@ -649,25 +752,28 @@ msgid "" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Израчунава и чува UUID coredump-а у директоријуму проблема DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "Анализирам coredump '%s'" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "Недостаје id изградње: %s" + + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "Употреба: %s [-v] [-o OUTFILE] -c COREFILE" + + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "COREFILE није назначен" + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" +@@ -675,6 +781,9 @@ msgid "" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" + msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Израчунава и чува UUID и DUPHASH за директоријум oops проблема DIR" + + #: ../src/plugins/abrt-action-analyze-oops.c:79 + msgid "" +@@ -683,6 +792,11 @@ msgid "" + "your computer. ABRT will not allow you to create a report in a bug tracking " + "system but you can contact kernel maintainers via e-mail." + msgstr "" ++"Стабло развоја не садржи довољно смислених оквира функције да би било " ++"пријављено. Ово је непријатно али не указује обавезно на проблем са вашим " ++"рачунаром. ABRT вам неће дозволити да направите извештај у систему праћења " ++"програмских грешака али можете контактирати програмере језгра преко " ++"електронске поште." + + #: ../src/plugins/abrt-action-analyze-xorg.c:73 + msgid "" +@@ -690,11 +804,14 @@ msgid "" + "\n" + "Calculates and saves UUID and DUPHASH for xorg problem directory DIR" + msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Израчунава и чува UUID и DUPHASH за директоријум xorg проблема DIR" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format + msgid "Module '%s' was loaded - won't report this crash" +-msgstr "" ++msgstr "Модул '%s' је био учитан - нећу пријавити овај крах" + + #: ../src/plugins/abrt-action-analyze-python.c:36 + msgid "" +@@ -702,37 +819,75 @@ msgid "" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Израчунава и чува UUID и DUPHASH за python crash dump-ове" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" ++msgstr "Употреба: {0} [-v[v]] [--core=VMCORE]" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" +-msgstr "" ++msgstr "Датотека {0} не постоји" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" +-msgstr "" ++msgstr "Извлачим oops текст из језгра" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "Can't process {0}:\n" + "{1}" +-msgstr "" ++msgstr "Не могу да обрадим {0}:\n" ++"{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +-msgstr "" ++msgstr "Не могу да извучем oops поруку: '{0}'" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" +-msgstr "" ++msgstr "Oops текст успешно извучен" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" ++"Запис језгра указује на пронађене хардверске грешке.\n" ++"Ово највероватније није програмски проблем.\n" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" +@@ -740,14 +895,18 @@ msgid "" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" + msgstr "" ++"& [опције] -d DIR\n" ++"\n" ++"Анализира coredump у директоријуму проблема DIR, ствара и чува стабло " ++"развоја" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +-msgstr "" ++msgstr "Додатни debuginfo директоријуми" + + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" +-msgstr "" ++msgstr "Убиј gdb ако се извршава дуже од NUM секунди" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +@@ -755,7 +914,7 @@ msgstr "" + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +-msgstr "" ++msgstr "Стабло развоја је направљено и сачувано, %u бајтова" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 + msgid "" +@@ -763,28 +922,32 @@ msgid "" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" + msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"Ствара стабло развоја coredump нивоа из core dump-а и одговарајуће бинарне " ++"датотеке" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +-msgstr "" ++msgstr "Немој правити збир отисака" + + #. Let user know what's going on + #: ../src/plugins/abrt-action-generate-core-backtrace.c:64 + msgid "Generating core_backtrace" +-msgstr "" ++msgstr "Правим core_backtrace" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 + msgid "Error: GDB did not return any data" +-msgstr "" ++msgstr "Грешка: GDB није вратио никакве податке" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format + msgid "Error: %s" +-msgstr "" ++msgstr "Грешка: %s" + + #: ../src/plugins/abrt-action-install-debuginfo.in:51 + msgid "Exiting on user command" +-msgstr "" ++msgstr "Излазим по команди корисника" + + #: ../src/plugins/abrt-action-install-debuginfo.in:89 + #, c-format +@@ -812,48 +975,104 @@ msgid "" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" + msgstr "" ++"Употреба: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Инсталира debuginfos за све build-id-ове наведене у BUILD_IDS_FILE\n" ++"у CACHEDIR, користећи TMPDIR као привремени простор за постављање.\n" ++"Старе датотеке у CACHEDIR се бришу све док не постање мањи од SIZE.\n" ++"\n" ++"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" ++"\n" ++" -v Буди брбљив\n" ++" -y Без интеракције, претпостави 'Да' за сва питања\n" ++" --ids Подразумевано: build_ids\n" ++" --tmpdir Подразумевано: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX\n" ++" --cache Подразумевано: /var/cache/abrt-di\n" ++" --size_mb Подразумевано: 4096\n" ++" --pkgmgr Подразумевано: PackageManager из CCpp.conf или 'dnf'\n" ++" -e,--exact Преузми само назначене датотеке\n" ++" --repo Шаблон који се користи када се траже ризнице.\n" ++" Подразумевано: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:175 + msgid "Can't open {0}: {1}" +-msgstr "" ++msgstr "Не могу да отворим {0}: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:212 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "" ++msgstr "Coredump помиње {0} debuginfo датотека, {1} од њих није инсталирано" + + #: ../src/plugins/abrt-action-install-debuginfo.in:215 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} debuginfo датотека није инсталирано" + + #: ../src/plugins/abrt-action-install-debuginfo.in:234 + #, c-format + msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" +-msgstr "" ++msgstr "Неисправно подешавање CCpp додатка, неподржан управник пакетима: '%s'" + + #: ../src/plugins/abrt-action-install-debuginfo.in:249 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "Недостаје захтевана датотека: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:254 + msgid "Missing debuginfo file: {0}" +-msgstr "" ++msgstr "Недостаје debuginfo датотека: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:257 + msgid "All debuginfo files are available" ++msgstr "Све debuginfo датотеке су доступне" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" ++"Да ли је у реду послати coredump? (Може садржати осетљиве податке). Ако је " ++"ваш одговор 'Не', траг стека ће бити створен локално. (Можда ће преузети " ++"огромну количину података)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." + msgstr "" ++"Да ли желите створити траг стека локално? (Можда ће преузети огромну " ++"количину података али извештај не може наставити без трага стека)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" +@@ -863,172 +1082,180 @@ msgid "" + "SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"Брише проблематичне директоријуме (-d) или датотеке (-f) у DIR-екторијумима " ++"све док не буду мањи од SIZE.\n" ++"FILE-ови су очувани (никад обрисани)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +-msgstr "" ++msgstr "Обриши све директоријуме проблема" + + #: ../src/plugins/abrt-action-trim-files.c:237 + msgid "Delete files inside this directory" +-msgstr "" ++msgstr "Обриши датотеке унутар овог директоријума" + + #: ../src/plugins/abrt-action-trim-files.c:238 + msgid "Preserve this directory" +-msgstr "" ++msgstr "Очувај овај директоријум" + + #: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "Не могу да покренем '%s', порука о грешки је: '%s'" + + #: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "Није број у датотеци '%s'" + + #: ../src/plugins/abrt-action-ureport:99 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "Употреба: %s [-v]" + + #: ../src/plugins/abrt-action-ureport:120 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" ++"Не могу да добијем тренутни радни директоријум јер је вероватно обрисан" + + #: ../src/plugins/abrt-action-ureport:148 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "Већ је пријављена програмска грешка у вези са овим проблемом:" + + #: ../src/plugins/abrt-action-ureport:158 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport је већ послат, не шаљем га поново" + + #: ../src/plugins/abrt-action-ureport:179 + msgid "Adding you to CC List of the existing bugzilla bug" +-msgstr "" ++msgstr "Додајем те на CC списак тренутне програмске грешке на bugzilla-и" + + #: ../src/plugins/abrt-action-ureport:193 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "reporter-ureport неуспешан са излазним кодом %d" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +-msgstr "" ++msgstr "Сигнал послат од стране кода из корисничког простора" + + #: ../src/plugins/abrt-gdb-exploitable:533 + msgid "Signal sent by timer/IO/async event" +-msgstr "" ++msgstr "Сигнал послат од стране timer/IO/async догађаја" + + #: ../src/plugins/abrt-gdb-exploitable:541 + msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" ++msgstr "Сигнал има siginfo.si_code = SI_USER" + + #: ../src/plugins/abrt-gdb-exploitable:544 + msgid "Signal due to write to closed pipe" +-msgstr "" ++msgstr "Сигнал приспео за упис на затворен канал" + + #: ../src/plugins/abrt-gdb-exploitable:550 + #: ../src/plugins/abrt-gdb-exploitable:575 + msgid "Signal sent by keyboard" +-msgstr "" ++msgstr "Сигнал послат од стране тастатуре" + + #: ../src/plugins/abrt-gdb-exploitable:554 + #: ../src/plugins/abrt-gdb-exploitable:579 + msgid "Job control signal sent by kernel" +-msgstr "" ++msgstr "Сигнал контроле послова послат од кернела" + + #: ../src/plugins/abrt-gdb-exploitable:558 + #: ../src/plugins/abrt-gdb-exploitable:587 + msgid "Signal sent by window resize" +-msgstr "" ++msgstr "Сигнал послат променом величине прозора" + + #: ../src/plugins/abrt-gdb-exploitable:562 + #: ../src/plugins/abrt-gdb-exploitable:591 + msgid "Signal sent by alarm(N) expiration" +-msgstr "" ++msgstr "Сигнал послат истицањем аларма(N)" + + #: ../src/plugins/abrt-gdb-exploitable:583 + msgid "Signal due to write to broken pipe" +-msgstr "" ++msgstr "Сигнал приспео за упис на покварен канал" + + #: ../src/plugins/abrt-gdb-exploitable:607 + msgid "ABRT signal (abort() was called?)" +-msgstr "" ++msgstr "ABRT сигнал (abort() је позван?)" + + #: ../src/plugins/abrt-gdb-exploitable:616 + msgid "XCPU signal (over CPU time limit)" +-msgstr "" ++msgstr "XCPU сигнал (преко CPU временског ограничења)" + + #: ../src/plugins/abrt-gdb-exploitable:620 + msgid "XFSZ signal (over file size limit)" +-msgstr "" ++msgstr "XFSZ сигнал (преко ограничења величине датотеке)" + + #: ../src/plugins/abrt-gdb-exploitable:624 + msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" ++msgstr "TRAP сигнал (може бити програмска грешка у октлањачу грешака/трагачу)" + + #: ../src/plugins/abrt-gdb-exploitable:628 + msgid "SYS signal (unknown syscall was called?)" +-msgstr "" ++msgstr "SYS сигнал (непознат системски позив је позван?)" + + #: ../src/plugins/abrt-gdb-exploitable:633 + msgid "Arithmetic exception" +-msgstr "" ++msgstr "Аритметичка грешка" + + #: ../src/plugins/abrt-gdb-exploitable:637 + msgid "Division by zero" +-msgstr "" ++msgstr "Дељење нулом" + + #: ../src/plugins/abrt-gdb-exploitable:641 + msgid "Illegal instruction (jump to a random address?)" +-msgstr "" ++msgstr "Неправилна инструкција (скок на насумичну адресу?)" + + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" +-msgstr "" ++msgstr "Сигнал који није узрокован отказивањем" + + #: ../src/plugins/abrt-gdb-exploitable:652 + msgid "Stack overflow" +-msgstr "" ++msgstr "Преливање стека" + + #: ../src/plugins/abrt-gdb-exploitable:656 + msgid "Write to an invalid address" +-msgstr "" ++msgstr "Упис на неисправну адресу" + + #: ../src/plugins/abrt-gdb-exploitable:660 + msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "" ++msgstr "Подрутина се вратила на неисправну адресу (оштећен стек?)" + + #: ../src/plugins/abrt-gdb-exploitable:666 + #: ../src/plugins/abrt-gdb-exploitable:670 + msgid "Jump to an invalid address" +-msgstr "" ++msgstr "Скок на неисправну адресу" + + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" + msgstr "" ++"Приступ након завршетка мапиране датотеке, неисправна адреса, приступ ван " ++"поравнања, итд" + + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" ++msgstr "Не могу да примим сигнал не и урадим анализу злоупотребе\n" + + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +-msgstr "" ++msgstr "Вероватни узрок отказивања:" + + #: ../src/plugins/abrt-gdb-exploitable:707 + msgid "Exploitable rating (0-9 scale): " +-msgstr "" ++msgstr "Рејтинг злоупотребе (скала 0-9):" + + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " +-msgstr "" ++msgstr "Тренутна инструкција:" + + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" +-msgstr "" ++msgstr "Анализа злоупотребе није ништа пронашла\n" + + #: ../src/plugins/abrt-watch-log.c:142 + msgid "" +@@ -1036,10 +1263,13 @@ msgid "" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" + msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"Прати датотеку записа FILE, изврши PROG када порасте или буде замењена" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +-msgstr "" ++msgstr "Немој покренути PROG ако STR-ови нису пронађени" + + #: ../src/plugins/abrt-dump-oops.c:77 + msgid "" +@@ -1047,11 +1277,14 @@ msgid "" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" ++"& [-vusoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Извуци oops из FILE (или стандардног улаза)" + + #: ../src/plugins/abrt-dump-oops.c:98 + #: ../src/plugins/abrt-dump-journal-oops.c:220 + msgid "Print found oopses on standard output" +-msgstr "" ++msgstr "Испиши пронађене oops-еве на стандардни излаз" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +@@ -1059,62 +1292,70 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:102 + #: ../src/plugins/abrt-dump-journal-oops.c:224 + msgid "Create new problem directory in DIR for every oops found" +-msgstr "" ++msgstr "Направи нови директоријум проблема у DIR за сваки пронађени oops" + + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" +-msgstr "" ++msgstr "Исто као -d DumpLocation, DumpLocation је назначена у abrt.conf" + + #: ../src/plugins/abrt-dump-oops.c:104 + msgid "Save the extracted information in PROBLEM" +-msgstr "" ++msgstr "Сачувај извучене информације у PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" +-msgstr "" ++msgstr "Учини директоријум проблема читљивим за свет" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" +-msgstr "" ++msgstr "Успори стварање директоријума проблема на један по секунди" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" +-msgstr "" ++msgstr "Испиши текст(ове) претраге на стандардни излаз и изађи" + + #: ../src/plugins/abrt-dump-oops.c:127 + #: ../src/plugins/abrt-dump-journal-oops.c:128 + msgid "Failed to compile regex" ++msgstr "Неуспешна изградња регуларног израза" ++ ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 + msgid "Failed to obtain all required information from journald" +-msgstr "" ++msgstr "Неуспешно преузимање свих неопходних информација од journald-а" + + #. We don't want to update the counter here. + #: ../src/plugins/abrt-dump-journal-core.c:401 + #, c-format + msgid "Not saving repeating crash after %ds (limit is %ds)" +-msgstr "" ++msgstr "Не чувам поновне крахове након %ds (граница је %ds)" + + #: ../src/plugins/abrt-dump-journal-core.c:407 + msgid "Failed to save detect problem data in abrt database" +-msgstr "" ++msgstr "Неуспешно чување података откривеног проблема у abrt бази података" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" +-msgstr "" ++msgstr "Неуспешна иницијализација systemd-journal надзора" + + #: ../src/plugins/abrt-dump-journal-core.c:447 + msgid "" +@@ -1129,62 +1370,80 @@ msgid "" + "\n" + "The last seen position is saved in " + msgstr "" ++"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" ++"\n" ++"Извуци coredump-ове из systemd-journal\n" ++"\n" ++"опције -c и -e су у конфликту јер обе назначавају прву прочитану поруку.\n" ++"\n" ++"-e је корисно само за -f зато што праћење дневника почиње читањем \n" ++"целог дневника ако последња прегледана позиција није доступна.\n" ++"\n" ++"Последња прегледана позиција је сачувана у " + + #: ../src/plugins/abrt-dump-journal-core.c:478 + msgid "Create new problem directory in DIR for every coredump" +-msgstr "" ++msgstr "Направи нови директоријум проблема у DIR за сваки coredump" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" +-msgstr "" ++msgstr "Почни читање systemd-journal од позиције CURSOR" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" +-msgstr "" ++msgstr "Почни читање systemd-journal од краја" + + #: ../src/plugins/abrt-dump-journal-core.c:482 + msgid "Throttle problem directory creation to 1 per INT second" +-msgstr "" ++msgstr "Успори стварање директоријума проблема на један по INT секунди" + + #: ../src/plugins/abrt-dump-journal-core.c:483 + msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" +-msgstr "" ++msgstr "Исто као -t INT, INT је назначен у plugins/CCpp.conf" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" +-msgstr "" ++msgstr "Прати systemd-journal од последње виђене позиције (ако је доступна)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" +-msgstr "" ++msgstr "Потребно је да назначите или -c CURSOR или -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" +-msgstr "" ++msgstr "Не могу да отворим systemd-journal" + + #: ../src/plugins/abrt-dump-journal-core.c:544 + msgid "Cannot filter systemd-journal to systemd-coredump data only" +-msgstr "" ++msgstr "Не могу да филтрирам systemd-journal на само systemd-coredump податке" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" +-msgstr "" ++msgstr "Не могу да пређем на крај дневника" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" +-msgstr "" ++msgstr "Неуспешно постављање systemd-journal курсора '%s'" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." +-msgstr "" ++msgstr "Не могу да прочитам податке дневника." + + #: ../src/plugins/abrt-dump-journal-oops.c:186 + msgid "" +@@ -1199,97 +1458,171 @@ msgid "" + "\n" + "The last seen position is saved in " + msgstr "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Извуци oops из systemd-journal\n" ++"\n" ++"опције -c и -e су у конфликту јер обе назначавају прву прочитану поруку.\n" ++"\n" ++"-e је корисно само за -f зато што праћење дневника почиње читањем \n" ++"целог дневника ако последња прегледана позиција није доступна.\n" ++"\n" ++"Последња прегледана позиција је сачувана у " + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" +-msgstr "" ++msgstr "Прочитај датотеке дневника са свих машина" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Прочитај све датотеке дневника из директоријума на PATH" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "Не могу да иницијализујем systemd-journal у директоријуму '%s'" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" +-msgstr "" ++msgstr "Не могу да филтрирам systemd-journal на само податке о језгру" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" ++msgstr "Неуспешно започињање прегледа од курсора '%s'" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Извуци Xorg крах из FILE (или стандардног улаза)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" +-msgstr "" ++msgstr "Испиши пронађене податке о краху на стандардни излаз" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" ++msgstr "Направи директоријум проблема у DIR за сваки пронађени крах" ++ ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" +-msgstr "" ++msgstr "Не могу да снимим позицију прегледача дневника" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" +-msgstr "" ++msgstr "Не могу да снимим позицију прегледача дневника: open('%s')" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" +-msgstr "" ++msgstr "Не враћам позицију прегледања дневника: датотека '%s' не постоји" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" +-msgstr "" ++msgstr "Не могу да вратим позицију прегледања дневника из датотеке '%s'" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" ++"Не могу да вратим позицију прегледања дневника: путања '%s' није редовна " ++"датотека" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" ++"Не могу да вратим позицију прегледања дневника: датотека '%s' превазилази " ++"%dB ограничење величине" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" +-msgstr "" ++msgstr "Не могу да вратим позицију прегледања дневника: open('%s')" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" ++"Не могу да вратим позицију прегледања дневника: не могу прочитати целу " ++"датотеку '%s'" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" +-msgstr "" ++msgstr "Неуспешно померање дневника на курсор из датотеке '%s'" + + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." + msgstr "" ++"Сервер за поновни траг не може бити употревљен, зато што је крах превелик. " ++"Покушајте локално поновно трагање." + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +@@ -1298,13 +1631,13 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 + msgid "Can't create temporary file in " +-msgstr "" ++msgstr "Не могу направити привремену датотеку у " + + #: ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" +-msgstr "" ++msgstr "Не могу извршити '%s'" + + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 +@@ -1312,7 +1645,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:842 + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "" ++msgstr "Неуспешно слање HTTP заглавља дужине %d: NSS грешка %d" + + #: ../src/plugins/abrt-retrace-client.c:223 + #: ../src/plugins/abrt-retrace-client.c:412 +@@ -1324,7 +1657,8 @@ msgstr "" + #, c-format + msgid "Unexpected HTTP response from server: %d\n" + "%s" +-msgstr "" ++msgstr "Неочекивани HTTP одговор од сервера: %d\n" ++"%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:755 +@@ -1333,7 +1667,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:992 + #: ../src/plugins/abrt-retrace-client.c:1062 + msgid "Invalid response from server: missing HTTP message body." +-msgstr "" ++msgstr "Неисправан одговор од сервера: недостаје HTTP тело поруке." + + #: ../src/plugins/abrt-retrace-client.c:424 + #, c-format +@@ -1341,24 +1675,27 @@ msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" + msgstr "" ++"Сервер поновног трага не успева да обради пакет '%s.%s.'\n" ++"Да ли је то део званичних '%s' ризница?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +-msgstr "" ++msgstr "Захтевам поставке сервера" + + #: ../src/plugins/abrt-retrace-client.c:452 + msgid "The server is fully occupied. Try again later." +-msgstr "" ++msgstr "Сервер је потпуно заузет. Покушајте поново касније." + + #: ../src/plugins/abrt-retrace-client.c:453 + msgid "The server denied your request." +-msgstr "" ++msgstr "Сервер је одбио ваш захтев." + + #: ../src/plugins/abrt-retrace-client.c:484 + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format + msgid "'%s' must be a regular file in order to use Retrace server." + msgstr "" ++"'%s' мора бити редовна датотека да бисте користили сервер за поновни траг." + + #: ../src/plugins/abrt-retrace-client.c:520 + #, c-format +@@ -1366,27 +1703,29 @@ msgid "" + "The size of your crash is %s, but the retrace server only accepts crashes " + "smaller or equal to %s." + msgstr "" ++"Величина вашег краха је %s, али сервер за поновни траг прихвата само крахове " ++"мање или једнаке са %s." + + #: ../src/plugins/abrt-retrace-client.c:540 + msgid "The server does not support xz-compressed tarballs." +-msgstr "" ++msgstr "Сервер не подржава xz-компресоване tarball-ове." + + #: ../src/plugins/abrt-retrace-client.c:577 + #, c-format + msgid "The release '%s' is not supported by the Retrace server." +-msgstr "" ++msgstr "Издање '%s' није подржано од стране сервера за поновни траг." + + #: ../src/plugins/abrt-retrace-client.c:581 + msgid "The server is not able to handle your request." +-msgstr "" ++msgstr "Сервер не може да обради ваш захтев." + + #: ../src/plugins/abrt-retrace-client.c:600 + msgid "Unknown package sent to Retrace server." +-msgstr "" ++msgstr "Непознат пакет послат серверу за поновни траг." + + #: ../src/plugins/abrt-retrace-client.c:609 + msgid "Preparing an archive to upload" +-msgstr "" ++msgstr "Припремање архиве за слање" + + #: ../src/plugins/abrt-retrace-client.c:628 + #, c-format +@@ -1394,187 +1733,204 @@ msgid "" + "The size of your archive is %s, but the retrace server only accepts archives " + "smaller or equal to %s." + msgstr "" ++"Величина ваше архиве је %s, али сервер за поновни траг прихвата само архиве " ++"мање или једнаке са %s." + + #: ../src/plugins/abrt-retrace-client.c:640 + #, c-format + msgid "You are going to upload %s. Continue?" +-msgstr "" ++msgstr "Послаћете %s. Наставити?" + + #: ../src/plugins/abrt-retrace-client.c:649 + msgid "Cancelled by user" +-msgstr "" ++msgstr "Отказано од стране корисника" + + #: ../src/plugins/abrt-retrace-client.c:683 + #, c-format + msgid "Uploading %s\n" +-msgstr "" ++msgstr "Шаљем %s\n" + + #: ../src/plugins/abrt-retrace-client.c:709 + #, c-format + msgid "Uploading %d%%\n" +-msgstr "" ++msgstr "Шаљем %d%%\n" + + #: ../src/plugins/abrt-retrace-client.c:721 + msgid "Failed to read from a pipe" +-msgstr "" ++msgstr "Неуспешно читање са тунела" + + #: ../src/plugins/abrt-retrace-client.c:734 + #, c-format + msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "" ++msgstr "Неуспешно слање података: NSS грешка %d (%s): %s" + + #: ../src/plugins/abrt-retrace-client.c:745 + msgid "Upload successful" +-msgstr "" ++msgstr "Успешно слање" + + #: ../src/plugins/abrt-retrace-client.c:767 + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." + msgstr "" ++"Ваш директоријум проблема је оштећен и не може бити обрађен од стране " ++"сервера за поновни траг." + + #: ../src/plugins/abrt-retrace-client.c:769 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." + msgstr "" ++"Архива садржи злонамерне датотеке (као што су симболички линкови) те не може " ++"бити обрађена." + + #: ../src/plugins/abrt-retrace-client.c:782 + msgid "Invalid response from server: missing X-Task-Id." +-msgstr "" ++msgstr "Неисправан одговор од сервера: недостаје X-Task-Id." + + #: ../src/plugins/abrt-retrace-client.c:788 + msgid "Invalid response from server: missing X-Task-Password." +-msgstr "" ++msgstr "Неисправан одговор од сервера: недостаје X-Task-Password." + + #: ../src/plugins/abrt-retrace-client.c:795 + msgid "Retrace job started" +-msgstr "" ++msgstr "Започет посао поновног трага" + + #: ../src/plugins/abrt-retrace-client.c:808 + #, c-format + msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "" ++msgstr "Id задатка: %s\n" ++"Лозинка задатка: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:866 + msgid "Invalid response from server: missing X-Task-Status." +-msgstr "" ++msgstr "Неисправан одговор од сервера: недостаје X-Task-Status." + + #: ../src/plugins/abrt-retrace-client.c:878 + #, c-format + msgid "Task Status: %s\n" + "%s\n" +-msgstr "" ++msgstr "Стање задатка: %s\n" ++"%s\n" + + #: ../src/plugins/abrt-retrace-client.c:909 + #: ../src/plugins/abrt-retrace-client.c:983 + #: ../src/plugins/abrt-retrace-client.c:1053 + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d." +-msgstr "" ++msgstr "Неуспешно слање HTTP заглавља дужине %d: NSS грешка %d." + + #: ../src/plugins/abrt-retrace-client.c:1170 + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." + msgstr "" ++"Неуспешан поновни траг. Покушајте поново касније и ако и даље постоји " ++"проблем молим да га пријавите." + + #: ../src/plugins/abrt-retrace-client.c:1217 + msgid "log to syslog" +-msgstr "" ++msgstr "записник у syslog" + + #: ../src/plugins/abrt-retrace-client.c:1219 + msgid "allow insecure connection to retrace server" +-msgstr "" ++msgstr "дозволи несигурне везе до сервера поновног трага" + + #: ../src/plugins/abrt-retrace-client.c:1221 + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" + msgstr "" ++"немој проверавати да ли је сервер поновног трага способан да обради дати " ++"пакет пре но што се пошаље архива" + + #: ../src/plugins/abrt-retrace-client.c:1224 + msgid "retrace server URL" +-msgstr "" ++msgstr "URL сервера поновног трага" + + #: ../src/plugins/abrt-retrace-client.c:1226 + msgid "retrace server port" +-msgstr "" ++msgstr "порт сервера поновног трага" + + #: ../src/plugins/abrt-retrace-client.c:1228 + msgid "(debug) show received HTTP headers" +-msgstr "" ++msgstr "(откривање програмских грешака) прикажи примљена HTTP заглавља" + + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For create and batch operations" +-msgstr "" ++msgstr "За стварање и обједињене операције" + + #: ../src/plugins/abrt-retrace-client.c:1231 + msgid "read data from ABRT problem directory" +-msgstr "" ++msgstr "читај податке из ABRT директоријума проблема" + + #: ../src/plugins/abrt-retrace-client.c:1233 + msgid "read data from coredump" +-msgstr "" ++msgstr "читај податке из coredump-а" + + #: ../src/plugins/abrt-retrace-client.c:1235 + msgid "Delay for polling operations" +-msgstr "" ++msgstr "Пауза за операције упита" + + #: ../src/plugins/abrt-retrace-client.c:1237 + msgid "(debug) do not delete temporary archive created from dump dir in " + msgstr "" ++"(отклањање програмских грешака) немој брисати привремене архиве створене из " ++"директоријума излаза у " + + #: ../src/plugins/abrt-retrace-client.c:1239 + msgid "For status, backtrace, and log operations" +-msgstr "" ++msgstr "За стање, стабло позивања и запис операција" + + #: ../src/plugins/abrt-retrace-client.c:1241 + msgid "id of your task on server" +-msgstr "" ++msgstr "id вашег задатка на серверу" + + #: ../src/plugins/abrt-retrace-client.c:1243 + msgid "password of your task on server" +-msgstr "" ++msgstr "лозинка вашег задатка на серверу" + + #: ../src/plugins/abrt-retrace-client.c:1247 + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" + msgstr "" ++"abrt-retrace-client [опције]\n" ++"Операције: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1292 + #: ../src/plugins/abrt-retrace-client.c:1298 + msgid "Either problem directory or coredump is needed." +-msgstr "" ++msgstr "Потребан је или директоријум проблема или coredump." + + #: ../src/plugins/abrt-retrace-client.c:1304 + #: ../src/plugins/abrt-retrace-client.c:1312 + #: ../src/plugins/abrt-retrace-client.c:1320 + #: ../src/plugins/abrt-retrace-client.c:1328 + msgid "Task id is needed." +-msgstr "" ++msgstr "Id задатка је неопходан." + + #: ../src/plugins/abrt-retrace-client.c:1306 + #: ../src/plugins/abrt-retrace-client.c:1314 + #: ../src/plugins/abrt-retrace-client.c:1322 + #: ../src/plugins/abrt-retrace-client.c:1330 + msgid "Task password is needed." +-msgstr "" ++msgstr "Лозинка задатка је неопходна." + + #: ../src/plugins/abrt-retrace-client.c:1334 + #, c-format + msgid "Unknown operation: %s." +-msgstr "" ++msgstr "Непозната операција: %s." + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 + msgid "Local GNU Debugger" +-msgstr "" ++msgstr "Локални GNU програм за отклањање програмских грешака" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" + msgstr "" ++"Преузми debuginfo пакете и створи стабло позивања локално користећи GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" +@@ -1582,10 +1938,13 @@ msgid "" + "and take up disk space. However, unlike RetraceServer, doesn't send coredump " + "to remote machines." + msgstr "" ++"Потребно је преузети debuginfo пакете, што може захтевати значајан период " ++"времена, и заузимати простор на диску. Међутим, за разлику од RetraceServer-" ++"а, не шаље coredump на удаљене машине." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +-msgstr "" ++msgstr "Пошаљи coredump на удаљени сервер за поновни траг на анализу" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +@@ -1595,22 +1954,27 @@ msgid "" + "you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" ++"Шаље coredump на сервер, који ствара стабло позивања и враћа га. Предности: " ++"нема потребе за преузимањем debuginfo-а. База података debuginfo-а сервера " ++"за поновни траг је комплетнија. Сервер за поновни траг може створити боља " ++"стабла позивања. Мане: coredump који шаљете садржи све податке о срушеном " ++"програму, укључујући и ваше приватне податке, ако их има." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + msgid "Retrace server URL" +-msgstr "" ++msgstr "URL сервера поновног трага" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:4 + msgid "Address of the retrace server" +-msgstr "" ++msgstr "Адреса сервера поновног трага" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:5 + msgid "Insecure" +-msgstr "" ++msgstr "Несигурно" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:6 + msgid "Whether or not to use insecure connection" +-msgstr "" ++msgstr "Да ли да користи несигурну везу или не" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + msgid "" +@@ -1618,227 +1982,244 @@ msgid "" + "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(warning)</a>" + msgstr "" ++"Напиши \"insecure\" да дозволите несигурну везу <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +-msgstr "" ++msgstr "Скупи .xsession-errors" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:2 + msgid "Save relevant lines from ~/.xsession-errors file" +-msgstr "" ++msgstr "Сачувај значајне линије из ~/.xsession-errors датотеке" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:3 + msgid "" + "Scans through ~/.xsession-errors file and saves those lines which contain " + "executable's name. The result is saved as 'xsession_errors' element." + msgstr "" ++"Скенира кроз ~/.xsession-errors датотеку и снима оне линије које садрже име " ++"извршне датотеке. Резултат је сачуван као 'xsession_errors' елемент." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +-msgstr "" ++msgstr "Догодила се грешка са серверске стране." + + #: ../src/plugins/https-utils.c:65 + #, c-format + msgid "A server-side error occurred on '%s'" +-msgstr "" ++msgstr "На серверској страни се догодила грешка на '%s'" + + #: ../src/plugins/https-utils.c:74 + msgid "An error occurred while connecting to the server" +-msgstr "" ++msgstr "Догодила се грешка при повезивању на сервер" + + #: ../src/plugins/https-utils.c:77 + #, c-format + msgid "An error occurred while connecting to '%s'" +-msgstr "" ++msgstr "Грешка се догодила при повезивању на '%s'" + + #: ../src/plugins/https-utils.c:97 + #, c-format + msgid "Issuer certificate is invalid: '%s'." +-msgstr "" ++msgstr "Издавач сертификата није исправан: '%s'." + + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "" ++msgstr "Сертификат је потписан од издавача који није поуздан: '%s'." + + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." + msgstr "" ++"Име наслова сертификата '%s' се не подудара са циљним именом домаћина '%s'." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +-msgstr "" ++msgstr "Удаљени сертификат је истекао." + + #: ../src/plugins/https-utils.c:110 + #, c-format + msgid "Certificate issuer is not recognized: '%s'." +-msgstr "" ++msgstr "Издавач сертификата није препознат: '%s'." + + #: ../src/plugins/https-utils.c:113 + #, c-format + msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "" ++msgstr "Примљен лош сертификат. Наслов '%s', издавач '%s'." + + #: ../src/plugins/https-utils.c:149 + #, c-format + msgid "Failed to get slot 'PEM Token #0': %d." +-msgstr "" ++msgstr "Грешка при примању слота 'PEM Token #0': %d." + + #: ../src/plugins/https-utils.c:182 + #, c-format + msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "" ++msgstr "Не могу да разрешим име домаћина '%s'. NSS грешка %d." + + #. Host exists, but has neither IPv4 nor IPv6?? + #: ../src/plugins/https-utils.c:203 + #, c-format + msgid "Can't resolve host name '%s'." +-msgstr "" ++msgstr "Не могу да разрешим име домаћина '%s'." + + #: ../src/plugins/https-utils.c:210 + msgid "Failed to set socket blocking mode." +-msgstr "" ++msgstr "Неуспешно постављање блокирајућег режима." + + #: ../src/plugins/https-utils.c:213 + msgid "Failed to wrap TCP socket by SSL." +-msgstr "" ++msgstr "Неуспешно умотавање TCP прикључка SSL-ом." + + #: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." +-msgstr "" ++msgstr "Неуспешно омогућавање клијентског руковања са SSL прикључком." + + #: ../src/plugins/https-utils.c:220 + msgid "Failed to enable SSL3." +-msgstr "" ++msgstr "Неуспешно омогућавање SSL3." + + #: ../src/plugins/https-utils.c:222 + msgid "Failed to enable TLS." +-msgstr "" ++msgstr "Неуспешно омогућавање TLS-а." + + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." +-msgstr "" ++msgstr "Неуспешно постављање URL-а на SSL прикључак." + + #: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" +-msgstr "" ++msgstr "Не могу да се повежем на '%s'" + + #: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." +-msgstr "" ++msgstr "Неуспешно постављање прикључка сертификата." + + #: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." +-msgstr "" ++msgstr "Неуспешно постављање руковања повратног позива." + + #: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." +-msgstr "" ++msgstr "Неуспешно поновно постављање руковања." + + #: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." +-msgstr "" ++msgstr "Неуспешно завршавање SSL руковања: NSS грешка %d." + + #: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." +-msgstr "" ++msgstr "Неуспешно затварање SSL прикључка." + + #: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" +-msgstr "" ++msgstr "Лоше HTTP заглавље одговора : '%s'" + + #: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." +-msgstr "" ++msgstr "Примање података неуспешно: NSS грешка %d." + + #: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." +-msgstr "" ++msgstr "Лош збирни одговор." + + #: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." +-msgstr "" ++msgstr "Неуспешна иницијализација NSS-а." + + #: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." +-msgstr "" ++msgstr "Неуспешна иницијализација сигурносног модула." + + #: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." +-msgstr "" ++msgstr "Неуспешно искључивање NSS-а." + + #: ../src/plugins/oops-utils.c:73 + #, c-format + msgid "Sleeping for %d seconds" +-msgstr "" ++msgstr "Спавање %d секунди" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" ++"Догодио се проблем са кернелом због неисправног BIOS-а. Нажалост, такви " ++"проблеми не могу бити поправљени од стране кернел програмера." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" ++"Догодио се проблем са кернелом, али ваш хардвер није подржан, стога кернел " ++"програмери не могу да поправе овај проблем." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" ++"Догодио се проблем са кернелом, али ваш кернел је укаљан (flags:%s). Кернел " ++"програмери не могу да установе дијагнозу укаљаних извештаја." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." +-msgstr "" ++msgstr "Укаљани модули: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" +-msgstr "" ++msgstr "Списак идентификатора програмских грешака" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" +-msgstr "" ++msgstr "Назначите URL bodhi сервера" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" +-msgstr "" ++msgstr "Назначите издање" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"Потражите ажурирања на bodhi серверу" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" +-msgstr "" ++msgstr "Тражим ажурирања" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" +-msgstr "" ++msgstr "Нису пронађена ажурирања за овај пакет" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" +-msgstr "" ++msgstr "Локална верзија пакета је новија него доступна ажурирања" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" + " %s. Do you want to continue with reporting the bug?" + msgstr "" ++"Постоји ажурирање које би могло решити ваш проблем. Можете га инсталирати " ++"извршавањем: %s. Да ли желите наставити са пријавом програмске грешке?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" +@@ -1846,148 +2227,323 @@ msgid "" + "\n" + "Scans files for split oops message. Can print and/or delete them." + msgstr "" ++"& [-v] [-od] ДАТОТЕКА...\n" ++"\n" ++"Претражује датотеке за раздељеном oops поруком. Може је исписати и/или " ++"обрисати." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +-msgstr "" ++msgstr "Исписује пронађене oops-еве" + + #: ../src/hooks/abrt-merge-pstoreoops.c:98 + msgid "Delete files with found oopses" +-msgstr "" ++msgstr "Обриши датотеке са пронађеним oops-евима" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" +-msgstr "" ++msgstr "'%s' показује на више од једног директоријума проблема" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "Листај проблеме [у DIR-овима]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" +-msgstr "" ++msgstr "Уклони директоријум проблема DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" +-msgstr "" ++msgstr "Анализирај и пријави податке проблема у DIR-у" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" +-msgstr "" ++msgstr "Прикажи информације о DIR-у" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" +-msgstr "" ++msgstr "Прикажи број недавних крахова" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" +-msgstr "" ++msgstr "Обради више проблема" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "" ++msgstr "Погледајте 'abrt-cli КОМАНДА --help' за више информација" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& list [опције]" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" +-msgstr "" ++msgstr "Прикажи само проблеме који нису пријављени" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" +-msgstr "" ++msgstr "Прикажи детаљан извештај" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" +-msgstr "" ++msgstr "Прикажи само проблеме млађе од наведеног момента у времену" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" +-msgstr "" ++msgstr "Прикажи само проблеме старије од наведеног момента у времену" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " + "issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" ++"Могућност аутоматског пријављивања је онемогућена. Молим да размотрите " ++"омогућавање исте извршавањем\n" ++"'abrt-auto-reporting enabled' као корисник са root привилегијама\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." +-msgstr "" ++msgstr "& info [опције] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" +-msgstr "" ++msgstr "Текст већи од овога ће бити приказан сажето" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" +-msgstr "" ++msgstr "Не постоји директоријум проблема '%s'" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& status" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" +-msgstr "" ++msgstr "Прикажи само број проблема без икакве поруке" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" +-msgstr "" ++msgstr "Прикажи само проблеме млађе од наведеног момента у времену" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" ++"ABRT је открио %u проблем(а). За више информација извршите: abrt-cli " ++"list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "Уклањам '%s'" ++ ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "& report [опције] DIR..." ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "Уклони PROBLEM_DIR након пријављивања" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "Акције: уклони(rm), инфо(i), прескочи(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "Акције: уклони(rm), извештај(e), инфо(i), прескочи(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "Пријављујем '%s'" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "За следећи проблем притисните ЕНТЕР:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "Без --since аргумента, пролази кроз све откривене проблеме." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" ++msgstr "Означава само проблеме откривене након момента у времену" ++ ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" + msgstr "" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 +@@ -1995,6 +2551,8 @@ msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" + msgstr "" ++"Пошаљи coredump на удаљени сервер за поновни траг на анализу или изврши " ++"локалну анализу ако удаљена анализа није успешна" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -2006,72 +2564,89 @@ msgid "" + "you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" ++"Шаље coredump на сервер, који ствара стабло позивања и враћа га. Ако " ++"корисник не жели да пошаље свој coredump нигде овај догађај ће извршити " ++"локалну анализу. Локална анализа се извршава и у случају да удаљена анализа " ++"није успешна. Предности: нема потребе за преузимањем debuginfo-а. База " ++"података debuginfo-а сервера за поновни траг је комплетнија. Сервер за " ++"поновни траг може створити боља стабла позивања. Мане: coredump који шаљете " ++"садржи све податке о срушеном програму, укључујући и ваше приватне податке, " ++"ако их има." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +-msgstr "" ++msgstr "Анализирај VM језгро" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" ++"Инсталирај кернел debuginfo пакете, створи запис кернела и oops поруку" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." + msgstr "" ++"Потребно је инсталирати кернел debuginfo пакете, што може захтевати значајан " ++"период времена, и заузимати простор на диску." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +-msgstr "" ++msgstr "Сакупи GConf подешавања" + + #: ../src/plugins/collect_GConf.xml.in.h:2 + msgid "Save configuration from application's GConf directory" +-msgstr "" ++msgstr "Сачувај подешавања из GConf директоријума програма" + + #: ../src/plugins/collect_GConf.xml.in.h:3 + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." + msgstr "" ++"Извршава gconftool-2 --recursive-list /apps/executable и чува га као " ++"'gconf_subtree' елеменат." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +-msgstr "" ++msgstr "Сакупља датотеке за подешавање vim-а на системском нивоу" + + #: ../src/plugins/collect_vimrc_system.xml.in.h:2 + msgid "Save /etc/vimrc and /etc/gvimrc" +-msgstr "" ++msgstr "Сачувај /etc/vimrc и /etc/gvimrc" + + #: ../src/plugins/collect_vimrc_system.xml.in.h:3 + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." + msgstr "" ++"Проверава да ли постоје vimrc и gvimrc датотеке у /etc и чува их као " ++"system_vimrc и system_gvimrc, респективно." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +-msgstr "" ++msgstr "Скупља ваше vim датотеке за подешавање" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:2 + msgid "Save .vimrc and .gvimrc from your home directory" +-msgstr "" ++msgstr "Чува .vimrc и .gvimrc из вашег личног директоријума" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:3 + msgid "" + "Checks if there are .vimrc and .gvimrc in your home directory and saves them " + "as user_vimrc and user_gvimrc, respectively." + msgstr "" ++"Проверава да ли постоје vimrc и gvimrc датотеке у вашем личном директоријуму " ++"и чува их као user_vimrc и user_gvimrc, респективно." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +-msgstr "" ++msgstr "Након извештаја" + + #: ../src/plugins/post_report.xml.in.h:2 + msgid "Executed after the reporting is finished" +-msgstr "" ++msgstr "Извршава се након што је пријављивање завршено" + + #: ../src/plugins/post_report.xml.in.h:3 + msgid "Used for updating of the databases" +-msgstr "" ++msgstr "Користи се за освежавање база података" +diff --git a/po/sr@latin.po b/po/sr@latin.po +index 962be2c..43f6459 100644 +--- a/po/sr@latin.po ++++ b/po/sr@latin.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -19,7 +19,7 @@ msgstr "" + "Language: sr@latin\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -29,108 +29,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Prijava" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -152,7 +163,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -185,30 +198,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -234,14 +259,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -253,11 +278,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -271,24 +296,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -296,60 +322,50 @@ msgstr "" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -357,12 +373,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -383,18 +399,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -424,73 +444,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -502,68 +523,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -587,18 +608,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -639,7 +668,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -728,12 +757,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -842,14 +903,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1064,7 +1154,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1074,16 +1165,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1092,8 +1185,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1113,6 +1210,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1136,11 +1234,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1154,16 +1254,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1171,18 +1274,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1201,14 +1307,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1217,70 +1326,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1777,63 +1936,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1855,65 +2014,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1921,49 +2081,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1972,24 +2142,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/sv.po b/po/sv.po +index 156d987..e3af612 100644 +--- a/po/sv.po ++++ b/po/sv.po +@@ -31,16 +31,16 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-03-26 04:08-0400\n" ++"PO-Revision-Date: 2015-08-01 11:41-0400\n" + "Last-Translator: Göran Uddeborg \n" + "Language-Team: Swedish \n" + "Language: sv\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -50,34 +50,34 @@ msgstr "Problemrapportering" + msgid "View and report application crashes" + msgstr "Visa och rapportera programkrascher" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan inte ta över ägandet av ”%s”" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Kan inte öppna katalog för att skriva '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Kan inte stänga notifikation: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Ojdå!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Rapport" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Starta om" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " +@@ -86,7 +86,7 @@ msgstr "" + "Vi är ledsna, men det verkar som att %s kraschade. Problemet har " + "rapporterats automatiskt." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -95,8 +95,8 @@ msgstr "" + "Vi är ledsna, men det verkar som att %s kraschade. Problemet kommer " + "rapporteras när internet kan nås." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " +@@ -105,7 +105,7 @@ msgstr "" + "Vi är ledsna, men det verkar som att %s kraschade. Kontakta utvecklaren om " + "du vill rapportera saken." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " +@@ -114,7 +114,7 @@ msgstr "" + "Vi är ledsna, men det verkar som att %s kraschade. Om du vill hjälpa till " + "att lösa problement, skicka då en rapport." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +@@ -122,7 +122,7 @@ msgstr "" + "Vi är ledsna, men det verkar som att ett problem uppstod i en komponent. " + "Problemet har rapporterats automatiskt." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +@@ -130,7 +130,7 @@ msgstr "" + "Vi är ledsna, men det verkar som att ett problem uppstod i en komponent. " + "Problemet kommer rapporteras när internet kan nås." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +@@ -138,28 +138,28 @@ msgstr "" + "Vi är ledsna, men det verkar som att ett problem uppstod. OM du vill hjälpa " + "till att lösa problemet, skicka då en rapport." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Kan inte visa notifiering: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Kan inte läsa från gio-kanal: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Kan inte sätta kodning på gio-kanal: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Kan inte slå på ej blockerande läge för gio-kanal: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -169,6 +169,17 @@ msgstr "" + "\n" + "Miniprogram som meddelar användare när nya problem upptäcks av ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "Fråga före en katalog stjäls" +@@ -190,13 +201,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"Filen med minnesdumpen behövs för att skapa stackspår vilket är en åtgärd " +-"som kostar tid och utrymme. ABRT tillhandahåller en tjänst som genererar " +-"stackspåret från en minnesdump men du måste skicka minnesdumpen till denna " +-"tjänst. Med detta alternativ avaktiverat kommer ABRT skicka minnesdumpen " +-"utan att fråga." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -243,10 +251,6 @@ msgstr "" + "är aktiverat." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Fråga före minnesutskrifter skickas" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -254,15 +258,15 @@ msgstr "" + " Med denna flagga aktiverad skapar ABRT alltid felrapporter med begränsad " + "åtkomst om eventuellt känsliga data detekteras." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Begär privat rapport för känslig information" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Notifiera om ofullständiga problem" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -272,6 +276,22 @@ msgstr "" + "loggar ut. För att kunna skapa användbara problemrapporter kommer ABRT inte " + "tillåta dig att skicka dessa problem." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Stäng" +@@ -297,7 +317,7 @@ msgstr "Om" + msgid "Quit" + msgstr "Avsluta" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +@@ -307,7 +327,7 @@ msgstr "" + "\n" + "Fråga paketdatabasen och spara paket- och komponentnamn" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -319,11 +339,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Problemkatalog" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfigurationsfil" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "Använd denna katalog som RPM-rot" + +@@ -339,24 +359,25 @@ msgstr "& [-v] -d KAT\n" + msgid "Root directory for running container commands" + msgstr "Rotkatalogen för att köra behållarkommandon" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [flaggor]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Använd NUM som klient-uid" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Logga till syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Lägg till programnamn till loggen" + +@@ -364,62 +385,52 @@ msgstr "Lägg till programnamn till loggen" + msgid "Unknown error" + msgstr "Okänt fel" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "”%s” är inte en giltig problemkatalog" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' är inte ett giltigt elementnamn" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "Elementet '%s' kan inte modifieras" ++msgid "'%s' is not a valid problem directory" ++msgstr "”%s” är inte en giltig problemkatalog" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Inte auktoriserad" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Kan inte komma åt problemet för modifikation" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "Elementet '%s' kan inte modifieras" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Chownoperationen på katalogen misslyckades. Kolla systemloggarna för fler " + "detaljer." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "Kan inte komma åt problemet för läsning" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' är inte ett giltigt elementnamn" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Det går inte att få storleken på '%s'" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Inget utrymme kvar" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Kan inte radera elementet '%s' från problemkatalogen '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -429,12 +440,12 @@ msgstr "" + "Namnet ”%s” har förlorats, kontrollera om andra tjänster som äger namnet " + "inte kör.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Avsluta efter ANT sekunders inaktivitet" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Detta program måste köra som root." + +@@ -460,18 +471,22 @@ msgstr "Bli inte demon" + msgid "Log to syslog even with -d" + msgstr "Logga till syslog även med -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event HÄNDELSEKAT…" ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Kör HÄNDELSE på KAT" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Kommunicera direkt med användaren" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -509,88 +524,89 @@ msgstr "Antal samtidiga arbetare. Standard är " + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximal cachestorlek i MiB. Standard är " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Slår av autenticering" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat Support-användarnamn" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat Support-lösenord, om det inte ges kommer en fråga efter det att " + "ställas" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL-certifikatsökvägar eller certifikattyp" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "Du behöver även ange --username för --password" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Du kan använda antingen --username eller --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Du kan använda antingen --username eller --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Du kan använda antingen --anonymous eller --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Fel antal argument" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Okänt parametervärde: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Lösenord:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "Kan inte fortsätta utan lösenord\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP-autenticerad automatrapportering" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL-klientautenticerad automatrapportering" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "anonym automatrapportering" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -609,68 +625,68 @@ msgstr "" + " SKICKA_KAT - Katalog där skickade arkiv lagras\n" + " FILNAMN - Skickat arkivs filnamn\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Inte en katalog: ”{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Hoppar över: ”{0}” (börjar med ett snedstreck)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Hoppar över: ”{0}” (börjar med en punkt)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Hoppar över: ”{0}” (innehåller ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Hoppar över: ”{0}” (innehåller blanktecken)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Hoppar över: ”{0}” (innehåller tabulator)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Kan inte byta katalog till ”{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Okänd filtyp: ”{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Kan inte skapa en arbetskatalog i ”{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Kan inte flytta ”{0}” till ”{1}”" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Kan inte kopiera ”{0}” till ”{1}”" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Verifieringsfel på ”{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Packar upp ”{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Kan inte skapa katalogen ”{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Kan inte packa upp ”{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "”{0}” behandlad" + +@@ -694,21 +710,29 @@ msgstr "Kan inte ändra ägare av ”%s”: %s" + msgid "Deleting problem directory failed: %s" + msgstr "Misslyckades att radera en problemkatalog: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Kan inte hämta problemdata från abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Kan inte hämta problemlistan från abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Kan inte hämta problemdata från abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "Kan inte testa huruvida elementet finns via abrt-dbus: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -755,7 +779,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Stackspårstolkning misslyckades för %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Kraschtråden kan inte finnas" + +@@ -862,7 +886,7 @@ msgstr "Kan inte extrahera oops-meddelandet: ”{0}”" + msgid "Oops text extracted successfully" + msgstr "Oops-texten extraherad" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -870,6 +894,38 @@ msgstr "" + "Kärnloggen indikerar att hårdvarufel inträffat.\n" + "Detta är troligen inte ett mjukvaruproblem.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -1011,7 +1067,36 @@ msgstr "Saknad felsökningsfil: {0}" + msgid "All debuginfo files are available" + msgstr "Alla felsökningsinformationsfiler är tillgängliga" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -1021,7 +1106,7 @@ msgstr "" + "svarar 'Nej' kommer en stackspårning att skapas lokalt. (Det kan komma att " + "ladda ner en stor mängd data)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1249,7 +1334,8 @@ msgstr "Skapa ny problemkatalog i KAT för varje oops som hittas" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Samma som -d DumpPlats, DumpPlats anges i abrt.conf" + +@@ -1259,16 +1345,18 @@ msgstr "Spara den extraherade information i PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Gör problemkatalogen läsbar för alla" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Begränsa skapandet av problemkataloger till 1 per sekund" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Skriv söksträngar till standard ut och avsluta" + +@@ -1277,9 +1365,13 @@ msgstr "Skriv söksträngar till standard ut och avsluta" + msgid "Failed to compile regex" + msgstr "Misslyckades att kompilera reguljäruttryck" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "Kan inte uppdatera problemet: hittade mer än en oops" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1298,6 +1390,7 @@ msgstr "Misslyckades att spara data för felupptäckt i abrt-databasen" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "Misslyckades att initiera läsning av systemd-journal" + +@@ -1333,11 +1426,13 @@ msgstr "Skapa en ny problemkatalog i KAT för varje minnesdump" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "Börja att läsa systemd-journal från MARKÖR-positionen" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "Börja att läsa systemd-journal från slutet" + +@@ -1351,17 +1446,20 @@ msgstr "Samma som -t INT, INT anges i plugins/CCpp.conf" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + "Följ systemd-journal från den senast observerade positionen (om tillgänglig)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "De behöver ange antingen -c MARKÖR eller -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "Kan inte öppna systemd-journal" + +@@ -1369,18 +1467,21 @@ msgstr "Kan inte öppna systemd-journal" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "Kan inte filtrera systemd-journal till endast systemd-coredump-data" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "Kan inte söka till slutet på journalen" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "Misslyckades att sätta markören för systemd-journal ”%s”" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "Kan inte läsa journaldata." + +@@ -1413,28 +1514,77 @@ msgstr "" + "Den senast observerade positionen sparas i " + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "Läs journalfiler från alla maskiner" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Läs alla journalfiler från katalogen vid SÖKVÄG" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "Kan inte initiera systemd-journal i katalogen ”%s”" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "Kan inte filtrera ut endast kärndata från systemd-journal" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "Misslyckades att starta läsning från markören ”%s”" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1444,43 +1594,47 @@ msgstr "" + "\n" + "Extrahera en Xorg-krasch från FIL (eller standard in)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Skriv funna kraschdata på standard ut" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "Skapa problemkatalog i KAT för varje krasch som hittas" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "Kan inte spara journalläsningens position" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "Kan inte spara journalläsningens position: open(”%s”)" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "Återställer inte journalläsningens position: filen ”%s” finns inte" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "Kan inte återställa journalläsningens position från filen ”%s”" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + "Kan inte återställa journalläsningens position: sökvägen ”%s” är inte en " + "normal fil" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" +@@ -1488,12 +1642,12 @@ msgstr "" + "Kan inte återställa journalläsningens position: filen ”%s” överskrider " + "storleksgränsen %d B" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "Kan inte återställa journalläsningens position: open(”%s”)" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" +@@ -1501,7 +1655,7 @@ msgstr "" + "”%s”" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "Misslyckades att flytta journalen till en markör från filen ”%s”" +@@ -2035,7 +2189,7 @@ msgstr "Misslyckades att stänga ner NSS." + msgid "Sleeping for %d seconds" + msgstr "Sover i %d sekunder" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2043,7 +2197,7 @@ msgstr "" + "Ett kärnproblem inträffade på grund av trasigt BIOS. Tyvärr går sådana " + "problem inte att rätta utav kärnutvecklare." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2051,7 +2205,7 @@ msgstr "" + "Ett kärnproblem har inträffat, men din hårdvara stödjs inte, därför kan inte " + "kärnutvecklare fixa detta problem." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2060,24 +2214,24 @@ msgstr "" + "Ett problem i kärnan inträffade, men din kärna har fläckats (flaggor:%s). " + "De som underhåller kärnan kan inte diagnostisera fläckade rapporter." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " Fläckande moduler: %s" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Lista över fel-id:n" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Ange en bodhi-server-url" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Ange en utgåva" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2087,21 +2241,21 @@ msgstr "" + "\n" + "Sök efter uppdateringar på bodhi-servern" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Söker efter uppdateringar" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Inga uppdateringar av detta paket hittades" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "Den lokala versionen av paketet är nyare än de tillgängliga uppdateringarna" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2129,65 +2283,66 @@ msgstr "Visa hittade oopsmeddelanden" + msgid "Delete files with found oopses" + msgstr "Radera filer med hittade oopsmeddelanden" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "”%s” identifierar mer än en problemkatalog" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Användning: abrt-cli [--version] KOMMANDO [KAT]…" ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Lista problem [i KAT]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Ta bort problemkatalogen KAT" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analysera och rapportera problemdata i KAT" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Skriv ut information om KAT" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Visa antalet nyliga krascher" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Bearbeta flera problem" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Se ”abrt-cli KOMMANDO --help” för mer information" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& list [flaggor]" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Lista endast orapporterade problem" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Visa detaljerad rapport" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "Visa bara problem nyare än angiven tidsstämpel" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "Visa bara problem äldre än angiven tidsstämpel" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2199,51 +2354,60 @@ msgstr "" + "att köra ”abrt-auto-reporting enabled” som en användare med root-" + "rättigheter\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [flaggor] KAT…" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Text längre än detta kommer visas förkortad" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Problemkatalogen finns inte ”%s”" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& status" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Visa bara antalet problem utan några meddelanden" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Visa bara problem nyare än angiven tidsstämpel" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT har upptäckt '%u' problem. För mer information, kör: abrt-cli list%s\n" +-"\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "& rapport [flaggor] KAT…" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" +-msgstr "Ta bort PROBLEMKAT efter att ha rapporterat" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "Tar bort ”%s”" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "& rapport [flaggor] KAT…" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "Ta bort PROBLEMKAT efter att ha rapporterat" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Åtgärder: remove(rm), info(i), skip(s):" +@@ -2252,24 +2416,179 @@ msgstr "Åtgärder: remove(rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Åtgärder: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Rapporterar ”%s”" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "För nästa problem tryck RETUR:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Utan argumentet --since, itererar över alla upptäckta problem." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Väljer endast problem upptäckta efter tidsstämpeln" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ta.po b/po/ta.po +index a74a517..cef4f2a 100644 +--- a/po/ta.po ++++ b/po/ta.po +@@ -15,7 +15,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -25,7 +25,7 @@ msgstr "" + "language/ta/)\n" + "Language: ta\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -35,102 +35,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' இன் உரிமையை கைக்கொள்ள முடியவில்லை" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' ஐ எழுத கோப்பகத்தைத் திறக்க முடியவில்லை" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "அறிவிப்பை மூட முடியவில்லை: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "அறிக்கையிடு" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "அறிவிப்பைக் காண்பிக்க முடியவில்லை: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio சேனலில் இருந்து வாசிக்க முடியவில்லை: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio சேனலில் குறியீடாக்கத்தை அமைக்க முடியவில்லை: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio சேனலுக்கு தடுக்காத பயன்முறையை இயக்க முடியவில்லை: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -140,6 +140,17 @@ msgstr "" + "\n" + "ABRT புதிய சிக்கல்களைக் கண்டறியும் போது அதைப் பற்றி அறிவிக்கும் பயன்பாடு\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "கோப்பகத்தை எடுத்துக்கொள்ளும் முன்பு கேட்கவும்" +@@ -161,13 +172,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"அதிக நேரமும் இடமும் தேவைப்படுகின்ற, ஸ்டேக் ட்ரேஸை உருவாக்கும் செயலைச் செய்ய " +-"coredump கோப்பு அவசியமாகும். கோர்டம்ப்பிலிருந்து ஸ்டேக் ட்ரேஸை உருவாக்க ABRT " +-"ஒரு சேவையை வழங்குகிறது, ஆனால் நீங்கள் இந்தச் சேவைக்கு கோர்டம்ப்பைப் பதிவேற்ற " +-"வேண்டும். இந்த விருப்பம் முடக்கப்பட்டிருந்தால், ABRT கேட்காமலே கோர்டம்ப்பைப் " +-"பதிவேற்றும்." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -216,10 +224,6 @@ msgstr "" + "செயல்படும்." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "கோர்டம்ப்பைப் பதிவேற்றும் முன் கேட்கவும்" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -228,15 +232,15 @@ msgstr "" + "கண்டறியப்பட்டால், ABRT பயன்பாடு எப்போதும் கட்டுப்படுத்தப்பட்ட அணுகலுடனான வழு " + "டிக்கட்டை உருவாக்கும்." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "முக்கியமான தகவலுக்கு தனிப்பட்ட டிக்கட்டைக் கோரவும்" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "நிறைவடையாத சிக்கல்கள் குறித்து அறிவி" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -247,6 +251,22 @@ msgstr "" + "வழங்குவதற்காக ABRT பயன்பாடு இந்தச் சிக்கல்களைச் சமர்ப்பிக்க உங்களை " + "அனுமதிக்காது." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "மூடு (_C)" +@@ -272,14 +292,14 @@ msgstr "அறிமுகம்" + msgid "Quit" + msgstr "வெளியேறு" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -291,11 +311,11 @@ msgstr "" + msgid "Problem directory" + msgstr "சிக்கல் கோப்பகம்" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "அமைவாக்கக் கோப்பு" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -309,24 +329,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM ஐ கிளையன்ட் uid ஆகப் பயன்படுத்தவும்" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog க்கு பதியவும்" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "நிரல் பெயர்களை பதிவில் சேர்க்கவும்" + +@@ -334,62 +355,52 @@ msgstr "நிரல் பெயர்களை பதிவில் சேர + msgid "Unknown error" + msgstr "தெரியாத பிழை" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' ஒரு சரியான சிக்கல் கோப்பகமல்ல" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' என்பது ஒரு செல்லுபடியான கூறு பெயரல்ல" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' கூறில் மாற்றம் செய்ய முடியாது" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' ஒரு சரியான சிக்கல் கோப்பகமல்ல" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "அங்கீகாரம் இல்லை" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "மாற்றம் செய்ய சிக்கலை அணுக முடியவில்லை" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' கூறில் மாற்றம் செய்ய முடியாது" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "கோப்பகத்தை Chown செய்தல் தோல்வியடைந்தது. மேலும் விவரங்களுக்கு கணினி " + "பதிவுகளைப் பார்க்கவும்." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' என்பது ஒரு செல்லுபடியான கூறு பெயரல்ல" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' இன் அளவைப் பெற முடியவில்லை" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "சிக்கல் இடம் மீதம் இல்லை" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "சிக்கல் கோப்பகம் '%s' இலிருந்து கூறு '%s' ஐ நீக்க முடியவில்லை" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -399,12 +410,12 @@ msgstr "" + "'%s' என்ற பெயர் போய்விட்டது, இதே பெயரைக் கொண்ட மற்ற சேவைகள் எதுவும் " + "இயங்காமல் உள்ளதா எனப் பார்க்கவும்.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM விநாடிகளுக்கு செயலில்லாமல் இருந்த பிறகு வெளியேறவும்" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "இந்த நிரலை மூலப் பயனராகவே இயக்க வேண்டும்." + +@@ -431,18 +442,22 @@ msgstr "டெமனைஸ் செய்ய வேண்டாம்" + msgid "Log to syslog even with -d" + msgstr "-d உடனும் syslog இல் பதிவு செய்யவும்" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR இல் EVENT ஐ இயக்கு" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "நேரடியாக பயனரிடம் தொடர்புகொள்ளவும்" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -482,89 +497,90 @@ msgstr "ஒத்த சமய ஒர்க்கர்களின் எண் + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB இல் அதிகபட்ச தேக்கக அளவு. முன்னிருப்பு:" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "அங்கீகரிப்பை முடக்கும்" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat ஆதரவு பயனர் பெயர்" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat ஆதரவு கடவுச்சொல், கொடுக்கப்படாவிட்டால், அதைக் கேட்கும் இடைமுகம் " + "காட்டப்படும்" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL சான்றிதழ் பாதைகள் அல்லது சான்றிதழ் வகை" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "--password க்கு --username ஐயும் வழங்க வேண்டும்" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "--username அல்லது --certificate இரண்டில் ஒன்றைப் பயன்படுத்தலாம்" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "--username அல்லது --anonymous இரண்டில் ஒன்றைப் பயன்படுத்தலாம்" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "--anonymous அல்லது --certificate இரண்டில் ஒன்றைப் பயன்படுத்தலாம்" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "செல்லுபடியாகாத மதிப்புருக்களின் எண்ணிக்கை" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "தெரியாத விருப்ப மதிப்பு: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "கடவுச்சொல்:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "கடவுச்சொல் இல்லாமல் தொடர முடியாது\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP அங்கீகரித்த தானியக்க அறிக்கையிடல்" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL கிளையன் அங்கீகரித்த தானியக்க அறிக்கையிடல்" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "பெயரிலா தானியக்க அறிக்கையிடல்" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -585,83 +601,83 @@ msgstr "" + " FILENAME - பதிவேற்றப்பட்ட காப்பகங்கக் கோப்புப் பெயர்\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "ஒரு கோப்பகமல்ல: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "இதைத் தவிர்க்கிறது: '{0}' (சாய்வுக் கோட்டில் தொடங்குகிறது)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "இதைத் தவிர்க்கிறது: '{0}' (புள்ளியில் தொடங்குகிறது)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "இதைத் தவிர்க்கிறது: '{0}' (.. ஐக் கொண்டுள்ளது)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "இதைத் தவிர்க்கிறது: '{0}' (இடைவெளியைக் கொண்டுள்ளது)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "இதைத் தவிர்க்கிறது: '{0}' (தத்தலைக் கொண்டுள்ளது)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "கோப்பகத்தை '{0}' க்கு மாற்றியமைக்க முடியாது" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "தெரியாத கோப்பு வகை: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' இல் பணிக் கோப்பகத்தை உருவாக்க முடியவில்லை" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' ஐ '{1}' க்கு நகர்த்த முடியவில்லை" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' ஐ '{1}' இல் நகலெடுக்க முடியவில்லை" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' இல் சரிபார்ப்புப் பிழை" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' ஐப் பிரித்தெடுக்கிறது" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' கோப்பகத்தை உருவாக்க முடியவில்லை" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' ஐப் பிரித்தெடுக்க முடியவில்லை" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' வெற்றிகரமாக செயலாக்கப்பட்டது" + +@@ -685,18 +701,26 @@ msgstr "'%s' ஐ chown செய்ய முடியவில்லை: %s" + msgid "Deleting problem directory failed: %s" + msgstr "சிக்கல் கோப்பகத்தை நீக்குவது தோல்வியடைந்தது: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus இலிருந்து சிக்கல் தொடர்பான தரவைப் பெற முடியவில்லை: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus இலிருந்து சிக்கல் பட்டியலைப் பெற முடியவில்லை: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus இலிருந்து சிக்கல் தொடர்பான தரவைப் பெற முடியவில்லை: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -746,7 +770,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s க்கு பின் தடமறிதல் பாகுபடுத்துதல் தோல்வியடைந்தது" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "செயலிழப்பு இழை காணப்படவில்லை" + +@@ -854,7 +878,7 @@ msgstr "oops செய்தியை பிரித்தெடுக்க + msgid "Oops text extracted successfully" + msgstr "Oops உரை வெற்றிகரமாக பிரித்தெடுக்கப்பட்டது" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -862,6 +886,38 @@ msgstr "" + "கெர்னல் பதிவு வன்பொருள் பிழைகள் கண்டறியப்பட்டதாகக் குறிக்கிறது.\n" + "அநேகமாக இது மென்பொருள் தொடர்பான பிரச்சனையாக இருக்காது.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -980,7 +1036,36 @@ msgstr "விடுப்பட்ட வழுநீக்கல் தகவ + msgid "All debuginfo files are available" + msgstr "வழுநீக்கல் தகவல் கோப்புகள் அனைத்தும் உள்ளன" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -990,7 +1075,7 @@ msgstr "" + "'இல்லை' என்பது உங்கள் பதிலாக இருந்தால், கணினியில் ஒரு ஸ்டேக் டிரேஸ் " + "உருவாக்கப்படும். (அது மிகப் பெரிய அளவிலான தரவைப் பதிவிறக்கலாம்)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1236,7 +1321,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation போன்றது DumpLocation ஆனது abrt.conf இல் " +@@ -1248,16 +1334,18 @@ msgstr "பிரித்தெடுத்த தகவலை PROBLEM இல + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "சிக்கல் கோப்பகத்தை அனைவரும் வாசிக்கும்படி அமை" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "ஒரு வினாடிக்கு த்ராட்டில் சிக்கல் கோப்பக உருவாக்கம் 1" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "தேடல் சரங்களை stdout இல் அச்சிட்டு வெளியேறு" + +@@ -1267,11 +1355,13 @@ msgstr "தேடல் சரங்களை stdout இல் அச்சி + msgid "Failed to compile regex" + msgstr "சுருங்குறித் தொடரை கம்பைல் செய்வதில் தோல்வியடைந்தது" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" +-"சிக்கலைப் புதுப்பிக்க முடியவில்லை: ஒன்றுக்கும் அதிகமான oops " +-"கண்டறியப்பட்டுள்ளது" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1290,6 +1380,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1313,11 +1404,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1331,16 +1424,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1348,18 +1444,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1378,14 +1477,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1394,12 +1496,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1409,60 +1557,64 @@ msgstr "" + "\n" + "FILE இல் (அல்லது தரநிலை உள்ளீட்டில்) இருந்து Xorg ஐப் பிரித்தெடு" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "கண்டறிந்த செயலிழப்பு தரவை தரநிலையான வெளியீட்டில் அச்சிடு" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "கண்டறியப்படும் ஒவ்வொரு செயலிழப்புக்கும் DIR இல் ஒரு சிக்கல் கோப்பகத்தை " + "உருவாக்கு" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -2003,7 +2155,7 @@ msgstr "NSS ஐ பணிநிறுத்த முடியவில்லை + msgid "Sleeping for %d seconds" + msgstr "%d வினாடிகளுக்கு தூங்குகிறது" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2011,7 +2163,7 @@ msgstr "" + "பழுதடைந்த BIOS ஆல் ஒரு கெர்னல் சிக்கல் ஏற்பட்டது. துரதிருஷ்டவசமாக இத்தகைய " + "சிக்கல்கள் கெர்னல் பராமரிப்பாளர்களால் தீர்க்கப்படுவதில்லை." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2019,7 +2171,7 @@ msgstr "" + "ஒரு கெர்னல் சிக்கல் ஏற்பட்டது, ஆனால் உங்கள் வன்பொருளுக்கு ஆதரவில்லை, " + "ஆகவேகெர்னல் பரிமாரிப்பாளர்களால் இந்த சிக்கலைத் தீர்க்க முடியாது." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2029,24 +2181,24 @@ msgstr "" + "(கொடிகள்:%s). கெர்னல் பராமரிப்பு தொகுதிகளால் சிதைவடைந்தவை பற்றிய அறிக்கைகளை " + "உருவாக்க முடியவில்லை." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " பாதிக்கப்பட்ட தொகுதிக்கூறுகள்: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "வழு ஐடிகளின் பட்டியல்" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "ஒரு போதி சேவையக url ஐக் குறிப்பிடவும்" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "ஒரு வெளியீட்டைக் குறிப்பிடவும்" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2056,21 +2208,21 @@ msgstr "" + "\n" + "போதி சேவையகத்தில் புதுப்பிப்புகள் உள்ளதா எனத் தேடு" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "புதுப்பிப்புகள் உள்ளதா எனத் தேடுகிறது" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "இந்தத் தொகுப்புக்கு புதுப்பிப்பு எதுவும் இல்லை" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "கிடைக்கக்கூடிய புதுப்பிப்புகளைக் காட்டிலும், தற்போதுள்ள பதிப்பு புதியது" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2098,66 +2250,67 @@ msgstr "கண்டறியப்பட்ட oopses ஐ அச்சிடு + msgid "Delete files with found oopses" + msgstr "கண்டறியப்பட்ட oopses கொண்டுள்ள கோப்புகளை அழி" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ஒன்றுக்கு மேற்பட்ட சிக்கல் கோப்பகங்களைக் கண்டறிகிறது" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "பயன்பாடு: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "[in DIRs] சிக்கல்களையும் பட்டியலிடு" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "DIR என்ற சிக்கல் கோப்பகத்தை நீக்கவும்" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR இல் உள்ள சிக்கல் தரவை ஆராய்ந்து அறிவிக்கவும்" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR பற்றி தகவலை அச்சிடவும்" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "சமீபத்திய செயலிழப்புகளின் எண்ணிக்கையை அச்சிடு" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "பல சிக்கல்களைச் செயலாக்கவும்" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "'abrt-cli COMMAND --help' க்கான மேலும் தகவலுக்கு பார்க்கவும்" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "அறிக்கையிடாத சிக்கல்களை மட்டும் பட்டியலிடு" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "விவரமான அறிக்கையை காட்டவும்" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "குறிப்பிட்ட நேரமுத்திரைக்கும் பிறகான சிக்கல்களை மட்டும் பட்டியலிடு" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "குறிப்பிட்ட நேரமுத்திரைக்கும் முந்தைய சிக்கல்களை மட்டும் பட்டியலிடு" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2167,55 +2320,65 @@ msgstr "" + "Autoreporting அம்சம் முடக்கப்பட்டுள்ளது. ரூட் அனுமதி உள்ள பயனராக \n" + "'abrt-auto-reporting enabled' கட்டளையை இயக்கி அதை செயல்படுத்தவும்\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "இதை விட பெரிய உரை அப்ரிட்ஜ் செய்யப்பட்டு காண்பிக்கப்படும்" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "இப்படி ஒரு சிக்கல் கோப்பகம் இல்லை '%s'" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "எந்த செய்தியும் இன்றி சிக்கல் எண்ணிக்கையை மட்டும் அச்சிடு" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "குறிப்பிடப்பட்ட நேர முத்திரைக்கு சமீபமான சிக்கல்களை மட்டும் அச்சிடு" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT %u சிக்கல்களைக் கண்டறிந்துள்ளது. மேலும் தகவலுக்கு இந்தக் கட்டளையை " + "இயக்கவும்: abrt-cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' ஐ அழிக்கிறது" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& அறிக்கையிடவும் [விருப்பங்கள்] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "அறிக்கையிட்ட பிறகு PROBLEM_DIR ஐ அகற்றவும்" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' ஐ அழிக்கிறது" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "செயல்கள்: நீக்குதல்(rm), தகவல்(i), தவிர்த்தல்(s):" +@@ -2226,30 +2389,185 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "செயல்கள்: நீக்குதல்(rm), அறிக்கையிடுதல்(e), தகவல்(i), தவிர்த்தல்(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' ஐ அறிக்கையிடுகிறது" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "அடுத்த சிக்கலுக்கு ENTER ஐ அழுத்தவும்:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "--since மதிப்புரு இல்லாவிட்டால், கண்டறியப்பட்ட அனைத்து சிக்கல்களிலும் " + "மீண்டும் மீண்டும் செயல்படுத்தப்படும்." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + "நேரமுத்திரைக்குப் பிறகு கண்டறியப்பட்ட சிக்கல்களை மட்டும் தேர்ந்தெடுக்கவும்" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/te.po b/po/te.po +index 9b1eef8..a68f9bb 100644 +--- a/po/te.po ++++ b/po/te.po +@@ -16,7 +16,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -26,7 +26,7 @@ msgstr "" + "language/te/)\n" + "Language: te\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -36,102 +36,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' పై అజమాయిషీ తీసుకోలేదు" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' వ్రాయుట కొరకు డైరెక్టరీ తెరువలేదు" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "ప్రకటనను మూయలేదు: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "నివేదించు" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "ప్రకటనను చూపలేదు: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio చానల్‌నుండి చదువలేదు: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio చానల్ నందు యెన్కోడింగ్ అమర్చలేదు: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio చానల్ కొరకు నాన్‌బ్లాకింగ్ రీతిని ఆన్ చేయలేదు: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -141,6 +141,17 @@ msgstr "" + "\n" + "ABRT చేత కొత్త సమస్యలు గుర్తించబడినప్పుడు వినియోగదారికి తెలుపు ఆప్లెట్\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "సంచయాన్ని దొంగిలించుటకు ముందుగా అడుగుము" +@@ -162,12 +173,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"స్టాక్ ట్రేస్ పుట్టించుటకు కోర్‌డంప్ ఫైలు తప్పనిసరి ఇది సమయం మరియు జాగా " +-"ఖర్చుచేసే కార్యక్రమం. స్టాక్ ట్రేస్ నుండి కోర్‌డంప్‌ను పుట్టించే సేవను ABRT " +-"అందిస్తుంది అయితే మీరు కోర్‌డంప్‌ను దాని సేవకు ఎక్కించాలి. ఈ ఐచ్చికం " +-"ఆచేతించినచో ABRT కోర్‌డంప్‌ను అడగకుండానే అప్‌లోడ్ చేయును." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -213,10 +222,6 @@ msgstr "" + "చూపదు. షార్టెన్డ్ నివేదీకరణ చేతనమైతేనే దీని ప్రభావంవుంటుంది." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "కోర్‌డంప్‌ను అప్‌లోడ్ చేయుటకు ముందుగా అడుగుము" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -224,15 +229,15 @@ msgstr "" + "ఈ ఐచ్చికం చేతనించివున్నప్పుడు, సెన్సిటివ్ అవ్వగల డేటా ఏదైనా గుర్తించబడితే " + "ABRT ఎప్పుడూ బగ్ టికెట్‌ను పరిమిత ఏక్సెస్‌తో సృష్టించును." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "సున్నితమైన సమాచారం కొరకు వ్యక్తిగత టికెట్‌ను అభ్యర్ధించును" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "అసంపూర్ణ సమస్యలను ప్రకటించుము" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -242,6 +247,22 @@ msgstr "" + "అసంపూర్ణ సమస్యలను గుర్తించబడెను. సమస్య యొక్క విలువైన నివేదికలను అందించుటకు, " + "ABRT మిమ్ములను ఈ సమస్యలను దాఖలుచేయడానికి అనుమతించదు." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "మూసివేయి (_C)" +@@ -267,14 +288,14 @@ msgstr "గురించి" + msgid "Quit" + msgstr "నిష్క్రమించు" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -286,11 +307,11 @@ msgstr "" + msgid "Problem directory" + msgstr "సమస్య డైరెక్టరీ" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "ఆకృతీకరణ ఫైలు" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -304,24 +325,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [ఐచ్చికాలు]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM క్లైంట్ uid వలె వుపయోగించు" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "సిస్‌లాగ్‌కు లాగ్" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "లాగ్‌నకు ప్రోగ్రామ్ పేరులను జతచేయి" + +@@ -329,62 +351,52 @@ msgstr "లాగ్‌నకు ప్రోగ్రామ్ పేరుల + msgid "Unknown error" + msgstr "తెలియని దోషం" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' సరైన సమస్యా డైరెక్టరీ కాదు" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' చెల్లునటువంటి మూలకం పేరు కాదు" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' మూలకం సవరించలేదు" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' సరైన సమస్యా డైరెక్టరీ కాదు" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "ధృవీకరించబడలేదు" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "సవరణ కొరకు సమస్యను యాక్సెస్ చేయలేము" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' మూలకం సవరించలేదు" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "సంచయం chown చేయుట విఫలమైంది. మరిన్ని వివరాల కొరకు వ్యవస్థ లాగ్‌లను " + "పరిశీలించండి." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' చెల్లునటువంటి మూలకం పేరు కాదు" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' యొక్క పరిమాణం పొందలేదు" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "ఏ సమస్య ఖాళీ విడువలేదు" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "మూలకం '%s'ను సమస్య డైరెక్టరీ '%s' నుండి తొలగించలేదు" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -392,12 +404,12 @@ msgid "" + "is not running.\n" + msgstr "పేరు '%s' పోయంది, వేరే సేవ యీ పేరు పొంది నడువకుండా చూడండి.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM క్షణాల క్రియాహీనత తరువాత నిష్క్రమించు" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ఈ ప్రోగ్రామ్ root గా నడువవలెను." + +@@ -423,18 +435,22 @@ msgstr "డెమొనైజ్ చేయవద్దు" + msgid "Log to syslog even with -d" + msgstr "సిస్‌లాగ్‌కు -d తో లాగ్ అవ్వుము" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "EVENT ను DIR పై నడుపుము" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "వాడుకరిని నేరుగా సంప్రదించు" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -473,87 +489,88 @@ msgstr "ఏకకాలంలో పనిచేయు వారి సంఖ్ + msgid "Maximal cache size in MiB. Default is " + msgstr "గరిష్ట క్యాచీ పరిమాణం MiB నందు. అప్రమేయం" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "ధృవీకరణను ఆఫ్ చేయును" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat తోడ్పాటు వాడుకరి పేరు" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat తోడ్పాటు సంకేతపదం, ఇవ్వకపోతే, దానికొరకు ప్రామ్ట్ జారీ అగును" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL ధృవీకరణపత్రం పాత్స్ లేదా ధృవీకరణపత్రం రకం" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "మీరు --username మరియు --password తెలపాలి" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "మీరు --username లేదా --certificate ఉపయోగించవచ్చు" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "మీరు --username లేదా --anonymous ఉపయోగించవచ్చు" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "మీరు --anonymous లేదా --certificate ఉపయోగించవచ్చు" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "చెల్లని ఆర్గుమెంట్ల సంఖ్య" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "తెలియని ఐచ్చికం విలువ: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "సంకేతపదం:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "సంకేతపదం లేకుండా కొనసాగించలేము\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP ధృవీకృత స్వయంచాలన నివేదీకరణ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL క్లైంట్ ధృవీకృత స్వయంచాలన నివేదీకరణ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "పేరులేకుండా స్వయంచాలన నివేదీకరణ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -573,83 +590,83 @@ msgstr "" + " FILENAME - Uploaded archive file name\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "సంచయం కాదు: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "దాటవేస్తోంది: '{0}' (స్లాష్‌తో ప్రారంభమగును)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "దాటవేస్తోంది: '{0}' (డాట్‌తో ప్రారంభమగును)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "దాటవేస్తోంది: '{0}' (.. కలిగివుంది)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "దాటవేస్తోంది: '{0}' (ఖాళీ కలిగివుంది)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "దాటవేస్తోంది: '{0}' (టాబ్ కలిగివుంది)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "సంచయంను '{0}' కు మార్చలేదు" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "తెలియని ఫైల్ రకం: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' నందు పనిచేయుచున్న సంచయం సృష్టించలేదు" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' ను '{1}' కు కదల్చలేదు" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' ను '{1}' కు నకలుతీయలేదు" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' పై నిర్ధారణ దోషం" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' విడమర్చుతోంది" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' సంచయం సృష్టించలేదు" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' విడమర్చలేదు" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' విజయవంతంగా ప్రోసెసైంది" + +@@ -673,18 +690,26 @@ msgstr "chown '%s' కాలేదు: %s" + msgid "Deleting problem directory failed: %s" + msgstr "సమస్యా డైరెక్టరీను తొలగించుట విఫలమైంది: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus నుండి సమస్యా దత్తాంశమును పొందలేదు: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus నుండి సమస్య జాబితాను పొందలేదు: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus నుండి సమస్యా దత్తాంశమును పొందలేదు: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -732,7 +757,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s కొరకు బాక్‌ట్రేస్ పార్శింగ్ విఫలమైంది" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "క్రాష్ త్రెడ్ కనబడలేదు" + +@@ -838,7 +863,7 @@ msgstr "oops సందేశం బహిర్గతపరచలేదు: '{0} + msgid "Oops text extracted successfully" + msgstr "Oops పాఠం విజయవంతంగా బహిర్గతపరచెను" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -846,6 +871,38 @@ msgstr "" + "హార్డువేర్ దోషాలు గుర్తించబడెనని కెర్నల్ లాగ్ సూచిస్తోంది.\n" + "ఇది సాఫ్టువేర్ సమస్యకాదు.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -963,7 +1020,36 @@ msgstr "డీబగ్‌యిన్ఫో ఫైల్ తప్పిపో + msgid "All debuginfo files are available" + msgstr "అన్ని డీబగ్‌యిన్ఫో ఫైళ్ళు అందుబాటులో వున్నాయి" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -973,7 +1059,7 @@ msgstr "" + "సమాధానం 'వద్దు' అయితే గనుక, స్టాక్ ట్రేస్ స్థానికంగా జనియింపబడును. (అది " + "పెద్ద మొత్తంలో దత్తాంశమును డౌనులోడు చేయవచ్చు)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1211,7 +1297,8 @@ msgstr "కనుగొనబడిన ప్రతి oopsకు కొత్ + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation వలె, DumpLocation అనునది abrt.conf నందు తెలుపబడెను" + +@@ -1221,16 +1308,18 @@ msgstr "వెలికితీసిన సమాచారం PROBLEM నం + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "సమస్యాత్మక డైరెక్టరీను అందరూ చదువదగినదిగా చేయి" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "డైరెక్టరీ సృష్టించుటలో సమస్యను ఒక్కో క్షణానికి 1 కి బిగించు." + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout కు శోధన స్ట్రింగ్స్ ముద్రించి నిష్క్రమించు" + +@@ -1240,9 +1329,13 @@ msgstr "stdout కు శోధన స్ట్రింగ్స్ ముద + msgid "Failed to compile regex" + msgstr "regex కంపైల్ చేయుటకు విఫలమైంది" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "సమస్యను నవీకరించలేము: ఒకటి కన్నా ఎక్కువ oops కనబడెను" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1261,6 +1354,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1284,11 +1378,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1302,16 +1398,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1319,18 +1418,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1349,14 +1451,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1365,12 +1470,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1380,58 +1531,62 @@ msgstr "" + "\n" + "Xorg క్రాష్ ఫైలు నుండి (లేదా ప్రామాణిక యిన్పుట్) నుండి వెలికితీయి" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "కనుగొనిన క్రాష్ దత్తాంశం ప్రామాణిక అవుట్పుట్‌పై ముద్రించు" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "కనుగొనిన ప్రతి క్రాష్‌నకు DIR నందు సమస్య డైరెక్టరీ సృష్టించుము" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1966,7 +2121,7 @@ msgstr "NSS మూసివేతకు విఫలమైంది." + msgid "Sleeping for %d seconds" + msgstr "%d క్షణాలు స్లీపింగ్" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1974,7 +2129,7 @@ msgstr "" + "పాడైన BIOS కారణంగా కెర్నల్ సమస్య తలెత్తెను. దురదృష్టవశాత్తు, అటువంటి సమస్యలు " + "కెర్నల్ నిర్వాహకుల చే పరిష్కరించబడవు." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1982,7 +2137,7 @@ msgstr "" + "కెర్నల్ సమస్య తలెత్తెను, అయితే మీ హార్డువేర్ తోడ్పాటులేదు, కనుక కెర్నల్ " + "నిర్వాహకులు ఈ సమస్యను పరిష్కరించలేరు." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1991,24 +2146,24 @@ msgstr "" + "కెర్నల్ సమస్య యెదురైంది, అయితే మీ కెర్నల్ కల్మషమైంది (flags:%s). కల్మషమైన " + "నివేదికలను కెర్నల్ నిర్వాహకులు విశ్లేషించలేక పోయినారు." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "టైన్టెట్ మాడ్యూళ్ళు: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "బగ్ ఐడిల జాబితా" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "బోదీ సేవిక url తెలుపుము" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "విడుదల తెలుపుము" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2018,20 +2173,20 @@ msgstr "" + "\n" + "బోదీ సేవికపై నవీకరణల కొరకు వెతుకుము" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "నవీకరణల కొరకు వెతుకుచున్నది" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "ఈ ప్యాకేజీ కొరకు యే నవీకరణలు కనుగొనబడలేదు" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "అందుబాటులోని నవీకరణల కన్నా స్థానికంగా వున్న ప్యాకేజీ వర్షన్ కొత్తది" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2059,66 +2214,67 @@ msgstr "కనుగొన్న oopses ముద్రించు" + msgid "Delete files with found oopses" + msgstr "కనుగొన్న oopses తో ఫైళ్ళు తొలగించు" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ఒకటి కన్నా ఎక్కువ సమస్య డైరెక్టరీలు గుర్తించెను" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "వా‍డుక: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "సమస్యల జాబితా [DIRల నందు]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "సమస్య డైరెక్టరీ DIR తీసివేయి" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "సమస్య డాటాను DIR నందు విశ్లేషించు మరియు నివేదించు" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR గురించి సమాచారం ముద్రించు" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "ఇటీవలి క్రాష్‌ల లెక్కను ముద్రించు" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "పలు సమస్యలను ప్రోసెస్‌చేయి" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "అదనపు సమాచారం కొరకు 'abrt-cli COMMAND --help' చూడండి" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "నివేదించని సమస్యలు మాత్రమే జాబితాచేయి" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "విశదీకృత నివేదిక చూపుము" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "తెలిపిన టైమ్‌స్టాంప్ కన్నా యిటీవలి సమస్యలు మాత్రమే జాబితాచేయి" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "తెలిపిన టైమ్‌స్టాంప్ కన్నా పాత సమస్యలు మాత్రమే జాబితాచేయి" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2128,55 +2284,65 @@ msgstr "" + "స్వయంచాలక నివేదీకరణ విశేషణం అచేతనం చేయబడెను. root అనుమతులగల వాడుకరితో\n" + "'abrt-auto-reporting enabled' జారీచేసి దానిని చేతనం చేయుము.\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "దీనికన్నా పెద్దదైన పాఠం సంక్షిప్తంగా చూపబడును" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "అటువంటి సమస్యా డైరెక్టరీ '%s' లేదు" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "ఏ సందేశం లేకుండా సమస్య లెక్కను మాత్రమే ముద్రించు" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "తెలిపిన టైమ్‌స్టాంప్ కన్నా కొత్తవైన సమస్యలను మాత్రమే ముద్రించు" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT %u సమస్య(లు) గుర్తించెను. మరింత సమాచారం కోసం యిది నడుపండి: abrt-cli " + "list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' తొలగిస్తోంది" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "నివేదించిన తరువాత PROBLEM_DIR తీసివేయి" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' తొలగిస్తోంది" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "చర్యలు: remove(rm), info(i), skip(s):" +@@ -2187,28 +2353,183 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "చర్యలు: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' నివేదిస్తోంది" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "తరువాతి సమస్య కొరకు ENTER వత్తండి:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "--since ఎగ్రిమెంట్ లేకుండా, మొత్తం గుర్తించిన సమస్యలనందు ఆవృతంచెందును." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "టైమ్‌స్టాంప్ తరువాత గుర్తించిన సమస్యలను మాత్రమే ఎంపికచేయును" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/tg.po b/po/tg.po +index aa4cbf0..28494e3 100644 +--- a/po/tg.po ++++ b/po/tg.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/tg/)\n" + "Language: tg\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -27,108 +27,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Гузориш" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -150,7 +161,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -183,30 +196,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -232,14 +257,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -251,11 +276,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Файли танзимотӣ" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -269,24 +294,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [имконот]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Номҳои барномаҳоро ба журнал илова кунед" + +@@ -294,60 +320,50 @@ msgstr "Номҳои барномаҳоро ба журнал илова кун + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -355,12 +371,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -381,18 +397,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -422,73 +442,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -500,68 +521,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -585,18 +606,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -637,7 +666,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -726,12 +755,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -840,14 +901,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1062,7 +1152,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1072,16 +1163,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1090,8 +1183,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1111,6 +1208,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1134,11 +1232,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1152,16 +1252,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1169,18 +1272,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1199,14 +1305,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1215,70 +1324,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1775,63 +1934,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1853,65 +2012,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1919,49 +2079,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1970,24 +2140,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/th.po b/po/th.po +index 1eac660..077c9ba 100644 +--- a/po/th.po ++++ b/po/th.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/th/)\n" + "Language: th\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -28,102 +28,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "ไม่สามารถเป็นเจ้าของ '%s'" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "ไม่สามารถเปิดไดเรกทอรีสำหรับการเขียน '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "ไม่สามารถปิดการแจ้งเตือน: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "รายงาน" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "ไม่สามารถแสดงการแจ้งเตือน: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "ไม่สามารถอ่านจาก gio channel: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "ไม่สามารถตั้งการเข้ารหัสบน gio channel: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "ไม่สามารถเปิด nonblocking mode ให้ gio channel: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -133,6 +133,17 @@ msgstr "" + "\n" + "Applet ซึ่งเตือนผู้ใช้เมื่อพบปัญหาใหม่ถูกตรวจพบโดย ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "ถามก่อนขโมยข้อมูลในไดเรกทอรี" +@@ -154,12 +165,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"แฟ้ม coredump เป็นสิ่งที่จำเป็นสำหรับการสร้าง stack trace " +-"ซึ่งเป็นเวลาและการดำเนินการการใช้พื้นที่ ABRT จะใหบริการโดยการสร้าง stack " +-"trace จาก coredump แต่คุณต้องอัปโหลด coredump บนบริการนี้ก่อน " +-"ด้วยทางเลือกนี้ การปิดใช้งาน ABRT จะอัปโหลด coredump โดยไม่ถามก่อน" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -204,10 +213,6 @@ msgstr "" + "มีผลก็ต่อเมื่อการรายงานสั้นถูกเปิดใช้งาน" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "ถามก่อนอัปโหลด coredump" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -216,15 +221,15 @@ msgstr "" + "ที่เปิดใช้งานแล้วจะสร้างตั๋วปัญหาด้วยการเข้าถึงที่จำกัดเสมด " + "หากพบข้อมูลสำคัญที่เป็นไปได้" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "ขอตั๋วส่วนตัวสำหรับข้อมูลสำคัญ" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "เตือนปัญหาที่ยังไม่สมบูรณ์" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -233,6 +238,22 @@ msgstr "" + "ปัญหาที่ไม่สมบูรณ์จะถูกพบขณะปิดเครื่องหรือออกจากระบบ " + "ในการจัดทำรายงานปัญหาที่มีค่า ABRT จะไม่อนุญาตให้คุณส่งรายงานปัญหาเหล่านี้" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_ปิด" +@@ -258,14 +279,14 @@ msgstr "เกี่ยวกับ" + msgid "Quit" + msgstr "ออก" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -277,11 +298,11 @@ msgstr "" + msgid "Problem directory" + msgstr "ไดเรกทอรีปัญหา" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "แฟ้มค่ากำหนด" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -295,24 +316,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "ใช้ NUM เป็น client uid" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "บันทึกไปที่ปูมระบบ" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "เพิ่มชื่อโปรแกรมที่ต้องการบันทึก" + +@@ -320,61 +342,51 @@ msgstr "เพิ่มชื่อโปรแกรมที่ต้องก + msgid "Unknown error" + msgstr "ข้อผิดพลาดที่ไม่รู้จัก" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' ไม่ใช่ไดเรกทอรีปัญหาที่ถูกต้อง" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' ไม่ใช่ชื่อ element ที่ถูกต้อง" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "element '%s' แก้ไม่ได้" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' ไม่ใช่ไดเรกทอรีปัญหาที่ถูกต้อง" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "ไม่มีตัวตน" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "ไม่สามารถเข้าถึงปัญหาเพื่อแก้ไข" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "element '%s' แก้ไม่ได้" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "การ Chowning directory ล้มเหลว กรุณาตรวจสอบปูมระบบสำหรับข้อมูลเพิ่มเติม" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' ไม่ใช่ชื่อ element ที่ถูกต้อง" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "ไม่สามารถรับขนาด '%s'" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "ไม่มีพื้นที่ว่างเหลือสำหรับปัญหา" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "ไม่สามารถลบ element '%s' จากไดเรกทอรีปัญหา '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -383,12 +395,12 @@ msgid "" + msgstr "" + "ชื่อ '%s' หายไปแล้ว กรุณาตรวจสอบ หากบริการอื่นที่เป็นเจ้าของชื่อไม่ทำงาน\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "ออกหลังจากไม่ใช้งาน NUM วินาที" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "โปรแกรมนี้ต้องเรียกใช้ในฐานะผู้ดูแลระบบ" + +@@ -414,18 +426,22 @@ msgstr "อย่าทำงานแบบภูติ" + msgid "Log to syslog even with -d" + msgstr "บันทึกไปที่ปูมระบบแม้แต่ -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "เรียกใช้ EVENT บน DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "สื่อสารกับผู้ใช้โดยตรง" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -463,73 +479,74 @@ msgstr "จำนวนคนงานที่ทำงานพร้อมก + msgid "Maximal cache size in MiB. Default is " + msgstr "จำนวนสูงสุดของจำนวนเมกะไบต์ของแคช ค่าเริ่มต้นคือ" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "จำนวนอาร์กิวเมนต์ไม่ถูกต้อง" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "ไม่รู้ค่าของตัวเลือก: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -541,68 +558,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -626,18 +643,26 @@ msgstr "ไม่สามารถทำการ chown '%s': '%s'" + msgid "Deleting problem directory failed: %s" + msgstr "การลบไดเรกทอรีปัญหาล้มเหลว: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "ไม่สามารถรับข้อมูลปัญหาจาก abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "ไม่สามารถรับรายการปัญหาจาก abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "ไม่สามารถรับข้อมูลปัญหาจาก abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -684,7 +709,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "การวิเคราะห์ Backtrace ล้มเหลวสำหรับ %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "ไม่พบ Crash thread" + +@@ -786,13 +811,45 @@ msgstr "ไม่สามารถแยกข้อความ oops: '{0}'" + msgid "Oops text extracted successfully" + msgstr "แยกข้อความ Oops สำเร็จ" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "ปูมของเคอร์เนลบ่งชี้ว่าพบปัญหาฮาร์ดแวร์\n" + "นี่อาจจะไม่ใช่ปัญหาซอฟต์แวร์\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -908,7 +965,36 @@ msgstr "แฟ้ม debuginfo หายไป: {0}" + msgid "All debuginfo files are available" + msgstr "แฟ้ม debuginfo ทั้งหมดมีให้ใช้งาน" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -917,7 +1003,7 @@ msgstr "" + "ตกลงจะอัปโหลด core dump หรือไม่? (อาจมีข้อมูลสำคัญ) หากคุณตอบ 'ไม่' stack " + "trace จะถูกสร้างอยู่ในเครื่อง (อาจจะต้องดาวน์โหลดข้อมูลขนาดใหญ่หลวง)" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1144,7 +1230,8 @@ msgstr "สร้างไดเรกทอรีปัญหาใหม่ใ + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "เหมือนกับ -d DumpLocation DumpLocation ถูกระบุใน abrt.conf" + +@@ -1154,16 +1241,18 @@ msgstr "บันทึกข้อมูลที่แยกแล้วใน + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "ทำให้อ่านโลกของไดเรกทอรีปัญหาได้" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Print ค้นหา string(s) เพื่อ stdout แล้ว exit" + +@@ -1172,9 +1261,13 @@ msgstr "Print ค้นหา string(s) เพื่อ stdout แล้ว exit + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "ไม่สามารถปรับปรุงปัญหาได้: พบ oops มากกว่าหนึ่ง" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1193,6 +1286,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1216,11 +1310,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1234,16 +1330,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1251,18 +1350,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1281,14 +1383,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1297,12 +1402,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1312,58 +1463,62 @@ msgstr "" + "\n" + "แยก Xorg crash จาก FILE (หรือการป้อนมาตรฐาน)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Print พบ crash data บนการป้อนมาตรฐาน" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "สร้างไดเรกทอรีปัญหาใน DIR สำหรับทุก crash ที่พบ" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1860,7 +2015,7 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "หลับเป็นเวลา %d วินาที" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1868,7 +2023,7 @@ msgstr "" + "เกิดปัญหากับเคอร์เนลเพราะ BIOS เสียหาย น่าเสียดายจัง " + "ปัญหาบางประการไม่สามารถซ่อมได้โดยผู้เชี่ยวชาญด้านเคอร์เนล" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1876,7 +2031,7 @@ msgstr "" + "เกิดปัญหากับเคอร์เนล แต่ฮาร์ดแวร์ของคุณไม่ถูกรองรับ ดังนั้น " + "ผู้เชี่ยวชาญด้านเคอร์เนลจะแก้ปัญหานี้ไม่ได้" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1885,44 +2040,44 @@ msgstr "" + "เกิดปัญหากับเคอร์เนล แต่เคอร์เนลของคุณเสีย (flags:%s) ดังนั้น " + "ผู้เชี่ยวชาญด้านเคอร์เนลจะวิเคราะห์การรายงานส่วนที่เสียหายไม่ได้" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "โมดูลที่เสีย: %s" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1944,65 +2099,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2010,49 +2166,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2061,24 +2227,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/tr.po b/po/tr.po +index 78e7041..5557193 100644 +--- a/po/tr.po ++++ b/po/tr.po +@@ -14,7 +14,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -24,7 +24,7 @@ msgstr "" + "language/tr/)\n" + "Language: tr\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -34,41 +34,41 @@ msgstr "Sorun Raporlama" + msgid "View and report application crashes" + msgstr "Uygulama çökmelerini görüntüle ve raporla" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' sahipliği alınamıyor" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s''i yazmak için dizin açılamıyor" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Bildirim kapatılamadı: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Tüh!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Rapor" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Yeniden Başlat" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "Üzgünüz, %s çökmüş gibi gözüküyor. Sorun otomatik olarak raporlandı." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -77,8 +77,8 @@ msgstr "" + "Üzgünüz, %s çökmüş gibi gözüküyor. Sorun İnternet bağlantısı olduğunda " + "raporlanacak." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " +@@ -87,7 +87,7 @@ msgstr "" + "Üzgünüz, %s çökmüş gibi gözüküyor. Eğer bu durumu raporlamak istiyorsanız " + "lütfen geliştirici ile iletişime geçin." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " +@@ -96,7 +96,7 @@ msgstr "" + "Üzgünüz, %s çökmüş gibi gözüküyor. Sorunun çözümüne yardımcı olmak " + "istiyorsanız lütfen bir rapor gönderin." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +@@ -104,7 +104,7 @@ msgstr "" + "Üzgünüz, bileşende bir problem meydana gelmiş gibi gözüküyor. Sorun otomatik " + "olarak raporlandı." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +@@ -112,7 +112,7 @@ msgstr "" + "Üzgünüz, bileşende bir problem meydana gelmiş gibi gözüküyor. Sorun, " + "İnternet bağlantısı olduğunda raporlanacak." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +@@ -120,34 +120,45 @@ msgstr "" + "Üzgünüz, bir sorun olmuş gibi gözüküyor. Eğer sorunun çözümüne yardımcı " + "olmak isterseniz lütfen bir rapor gönderin." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Bildirim gösterilemiyor: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -169,7 +180,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -202,30 +215,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -251,14 +276,14 @@ msgstr "Hakkında" + msgid "Quit" + msgstr "Çıkış" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -270,11 +295,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Dİzin problemi" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Yapılandırma dosyası" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -288,24 +313,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [seçenekler]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Sistem günlüğüne kaydet" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Program adlarını günlüğe ekle" + +@@ -313,60 +339,50 @@ msgstr "Program adlarını günlüğe ekle" + msgid "Unknown error" + msgstr "Bilinmeyen hata" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -374,12 +390,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -400,18 +416,22 @@ msgstr "Daemonize etme" + msgid "Log to syslog even with -d" + msgstr "Syslogları -d parametresi ile kullanın" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -441,73 +461,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -519,68 +540,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -604,18 +625,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -656,7 +685,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s için geri izleme ayrıştırması başarısız oldu" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -745,12 +774,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -859,14 +920,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1081,7 +1171,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1091,16 +1182,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1109,8 +1202,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1130,6 +1227,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1153,11 +1251,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1171,16 +1271,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1188,18 +1291,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1218,14 +1324,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1234,70 +1343,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1808,63 +1967,63 @@ msgstr "NSS in kapatılması başarısız" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1886,65 +2045,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Detaylı raporu göster" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1952,49 +2112,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2003,24 +2173,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/uk.po b/po/uk.po +index c025538..b00aa7b 100644 +--- a/po/uk.po ++++ b/po/uk.po +@@ -14,7 +14,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -24,7 +24,7 @@ msgstr "" + "Language: uk\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -34,34 +34,34 @@ msgstr "Звітування щодо проблем" + msgid "View and report application crashes" + msgstr "Перегляд і звітування щодо аварійних завершень програм" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Не вдалося визначити права доступу до «%s»" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Не вдалося відкрити каталог для запису, «%s»" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Не вдалося закрити сповіщення: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Оце тобі!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Повідомити" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Перезапустити" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " +@@ -70,7 +70,7 @@ msgstr "" + "Вибачте, здається, програма %s завершила роботу у аварійному режимі. Звіт " + "щодо проблеми створено у автоматичному режимі." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -80,8 +80,8 @@ msgstr "" + "щодо проблеми буде створено у автоматичному режимі, щойно стане доступним " + "інтернет-з’єднання." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " +@@ -90,7 +90,7 @@ msgstr "" + "Вибачте, здається, програма %s завершила роботу у аварійному режимі. Будь " + "ласка, зв’яжіться із розробником, якщо ви хочете створити звіт щодо вади." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " +@@ -100,7 +100,7 @@ msgstr "" + "хочете допомогти у розв’язанні цієї проблеми, будь ласка, надішліть звіт " + "щодо вади." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +@@ -108,7 +108,7 @@ msgstr "" + "Вибачте, здається, у компоненті сталася помилка. Звіт щодо проблеми створено " + "у автоматичному режимі." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +@@ -116,7 +116,7 @@ msgstr "" + "Вибачте, здається, у компоненті сталася помилка. Звіт щодо проблеми буде " + "створено, щойно буде отримано доступ до інтернет-з’єднання." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +@@ -124,28 +124,28 @@ msgstr "" + "Вибачте, здається, у компоненті сталася помилка. Якщо ви хочете допомогти у " + "розв’язанні цієї проблеми, будь ласка, надішліть звіт щодо вади." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Не вдалося показати сповіщення: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Не вдалося виконати читання з каналу gio: «%s»" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Не вдалося встановити кодування на каналі gio: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Не вдалося увімкнути режим без блокування для каналу gio: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -155,6 +155,17 @@ msgstr "" + "\n" + "Аплет для сповіщення користувача про виявлені ABRT проблеми\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "Питати перед перехопленням каталогу" +@@ -176,13 +187,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"Файл дампу ядра (coredump) потрібен для створення даних трасування стека, " +-"тривалої і ресурсомісткої дії. У ABRT передбачено службу створення " +-"трасування стека на основі дампу ядра, але для роботи з нею слід вивантажити " +-"дамп ядра на сервер служби. Якщо не буде позначено цей пункт, ABRT " +-"вивантажуватиме дамп ядра без додаткових підтверджень." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -228,10 +236,6 @@ msgstr "" + "звітованих проблем. Працюватиме, лише якщо увімкнено скорочене звітування." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Питати перед вивантаженням дампу ядра" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -240,15 +244,15 @@ msgstr "" + "вади з обмеженим доступом, якщо існуватиме можливість потрапляння до звіту " + "конфіденційних даних." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Обмежувати доступ до звітів з конфіденційними даними" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Сповіщати про неповні дані щодо проблеми" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -258,6 +262,22 @@ msgstr "" + "виходу користувача з системи. З метою забезпечення змістовності звітів щодо " + "вад ABRT не дозволить вам надіслати повідомлення щодо таких проблем." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "З_акрити" +@@ -283,7 +303,7 @@ msgstr "Відомості" + msgid "Quit" + msgstr "Вийти" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +@@ -293,7 +313,7 @@ msgstr "" + "\n" + "Отримати дані з бази даних пакунків і зберегти назву пакунка і компонента" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -305,11 +325,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Проблемний каталог" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Файл налаштувань" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "Використовувати цей каталог як кореневий для RPM" + +@@ -325,24 +345,25 @@ msgstr "& [-v] -d КАТАЛОГ\n" + msgid "Root directory for running container commands" + msgstr "Кореневий каталог для запуску команд контейнера" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [параметри]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Використовувати вказане число як uid клієнта" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Записувати до журналу syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Додати назви програм до журналу" + +@@ -350,62 +371,52 @@ msgstr "Додати назви програм до журналу" + msgid "Unknown error" + msgstr "Невідома помилка" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "«%s» не є коректним каталогом проблеми" ++msgid "'%s' is not a valid element name" ++msgstr "«%s» не є коректною назвою елемента" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "Не вдалося змінити елемент «%s»" ++msgid "'%s' is not a valid problem directory" ++msgstr "«%s» не є коректним каталогом проблеми" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Не уповноважено" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Не вдалося отримати доступ до проблеми для внесення змін" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "Не вдалося змінити елемент «%s»" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Спроба змінити власника каталогу зазнала невдачі. Докладніші дані можна " + "знайти у журналах системи." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "Не вдалося отримати доступ до проблеми для читання" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "«%s» не є коректною назвою елемента" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Не вдалося визначити розмір «%s»" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Не залишилося вільного місця для записів щодо проблем" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Не вдалося вилучити елемент «%s» з каталогу проблеми «%s»" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -415,12 +426,12 @@ msgstr "" + "Назву «%s» було втрачено, будь ласка, перевірте, чи не запущено іншу службу " + "з цією назвою.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Завершувати роботу після вказаної кількості секунд бездіяльності" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Цю програму слід запускати від імені адміністратора (root)." + +@@ -447,18 +458,22 @@ msgstr "Не запускати фонової служби" + msgid "Log to syslog even with -d" + msgstr "Записувати до журналу syslog навіть з параметром -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event ПОДІЯ КАТАЛОГ..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Виконати ДІЮ над даними каталогу КАТАЛОГ" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Обмінюватися даними безпосередньо з користувачем" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -496,88 +511,89 @@ msgstr "Кількість паралельних потоків обробки. + msgid "Maximal cache size in MiB. Default is " + msgstr "Максимальний розмір кешу у МіБ. Типовим є" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Вимикає розпізнавання" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Ім’я користувача у системі Red Hat Support" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Пароль у системі Red Hat Support. Якщо не вказано, програма надішле запит " + "щодо його введення." + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Шляхи до сертифікатів SSL uReport або тип сертифікатів" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "Вам також слід вказати --username, якщо використовується --password" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Ви можете скористатися --username або --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Ви можете скористатися --username або --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Ви можете скористатися --anonymous або --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Некоректна кількість параметрів" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Невідоме значення параметра: «%s»\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Пароль:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "Неможливо продовжувати без пароля\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "Автозвітування з розпізнаванням HTTP" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "Автозвітування з розпізнаванням клієнта SSL" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "анонімне автозвітування" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -597,68 +613,68 @@ msgstr "" + " КАТАЛОГ_ВИВАНТАЖЕННЯ - каталог, у якому зберігаються вивантажені архіви\n" + " НАЗВА_ФАЙЛА - назва файла вивантаженого архіву\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Не є каталогом: «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Пропускаємо: «{0}» (починається з похилої риски)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Пропускаємо: «{0}» (починається з крапки)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Пропускаємо: «{0}» (містить ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Пропускаємо: «{0}» (містить пробіл)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Пропускаємо: «{0}» (містить символ табуляції)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Не вдалося змінити каталог на «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Невідомий тип файла: «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Не вдалося створити робочий каталог у «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Не вдалося пересунути «{0}» до «{1}»" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Не вдалося скопіювати «{0}» до «{1}»" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Помилка під час перевірки «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Розпаковуємо «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Не вдалося створити каталог «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Не вдалося розпакувати «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "«{0}» успішно оброблено" + +@@ -682,21 +698,29 @@ msgstr "Не вдалося змінити власника «%s»: %s" + msgid "Deleting problem directory failed: %s" + msgstr "Спроба вилучення каталогу проблеми зазнала невдачі: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Не вдалося отримати дані проблеми з abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Не вдалося отримати список проблем з abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Не вдалося отримати дані проблеми з abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "Не вдалося перевірити, чи існує елемент, за допомогою abrt-dbus: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -743,7 +767,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Не вдалося обробити дані зворотного трасування для %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Не знайдено аварійного потоку обробки даних" + +@@ -852,7 +876,7 @@ msgstr "Не вдалося видобути повідомлення щодо + msgid "Oops text extracted successfully" + msgstr "Текст повідомлення щодо помилки успішно видобуто" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -861,6 +885,38 @@ msgstr "" + "обладнанням.\n" + "Ймовірно, цю проблему не пов’язано з програмним забезпеченням.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -1006,7 +1062,36 @@ msgstr "Не вистачає файла діагностичних даних: + msgid "All debuginfo files are available" + msgstr "Доступні всі файли діагностичних даних" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -1017,7 +1102,7 @@ msgstr "" + "призвести до значного навантаження не мережу і використання значного об’єму " + "пам’яті на диску.)" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1257,7 +1342,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Зберегти як -d DumpLocation, DumpLocation вказано у abrt.conf" + +@@ -1267,16 +1353,18 @@ msgstr "Зберегти отримані дані у каталозі ПРОБ + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Зробити каталог даних проблеми доступним для всіх користувачів" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Встановлення інтервалу створення каталогу проблеми у 1 секунду" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Вивести рядки пошуку до стандартного виведення і завершити роботу" + +@@ -1285,11 +1373,13 @@ msgstr "Вивести рядки пошуку до стандартного в + msgid "Failed to compile regex" + msgstr "Не вдалося скомпілювати формальний вираз" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" +-"Не вдалося оновити дані проблеми, оскільки знайдено декілька повідомлень про " +-"помилки." + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1310,6 +1400,7 @@ msgstr "Не вдалося зберегти дані виявленої про + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "Не вдалося ініціалізувати спостереження systemd-journal" + +@@ -1345,11 +1436,13 @@ msgstr "Створювати новий каталог проблеми для + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "Почати читання systemd-journal з позиції КУРСОР" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "Почати читання systemd-journal з кінця" + +@@ -1365,17 +1458,20 @@ msgstr "Те саме, що і -t INT, INT визначається у plugins/C + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + "Стежити за systemd-journal з останньої позиції спостереження (якщо така є)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "Слід вказати або -c КУРСОР або -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "Не вдалося відкрити systemd-journal" + +@@ -1384,18 +1480,21 @@ msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + "Не вдалося відфільтрувати у systemd-journal лише дані systemd-coredump" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "Не вдалося пересунути курсор до кінця журналу" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "Не вдалося встановити позицію курсора systemd-journal «%s»" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "Не вдалося прочитати дані журналу." + +@@ -1426,28 +1525,77 @@ msgstr "" + "Остання позиція спостереження зберігається у " + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "Прочитати файли журналу з усіх машин" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Прочитати усі файли журналу з каталогу у PATH" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "Не вдалося ініціалізувати systemd-journal у каталозі «%s»" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "Не вдалося відфільтрувати у systemd-journal лише дані ядра" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "Не вдалося розпочати спостереження з позиції курсора «%s»" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1458,45 +1606,49 @@ msgstr "" + "Видобути дані аварії Xorg з файла ФАЙЛ (або стандартного джерела вхідних " + "даних)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Вивести знайдені дані щодо аварії до стандартного виводу" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Створювати каталог проблеми для кожного знайденого повідомлення про аварійне " + "завершення роботи" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "Не вдалося зберегти позицію спостереження журналу" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "Не вдалося зберегти позицію спостереження журналу: open('%s')" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "Не відновлюємо позицію спостереження журналу: файла «%s» не існує" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "Не вдалося відновити позицію спостереження з файла «%s»" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + "Не вдалося відновити позицію спостереження журналу: шлях «%s» не є адресою " + "звичайного файла" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" +@@ -1504,12 +1656,12 @@ msgstr "" + "Не вдалося відновити позицію спостереження журналу: файл «%s» перевищує за " + "розміром обмеження у %d байтів" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "Не вдалося відновити позицію спостереження журналу: open('%s')" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" +@@ -1517,7 +1669,7 @@ msgstr "" + "увесь файл «%s»" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "Не вдалося пересунути журнал до розташування курсора з файла «%s»" +@@ -2069,7 +2221,7 @@ msgstr "Не вдалося завершити роботу NSS." + msgid "Sleeping for %d seconds" + msgstr "Очікуємо %d секунд" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2077,7 +2229,7 @@ msgstr "" + "Проблеми з ядром виникли через помилки у BIOS. На жаль, супровідники ядра " + "системи не зможуть усунути такі проблеми." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2085,7 +2237,7 @@ msgstr "" + "Виникли проблеми з ядром, підтримки обладнання у системі не передбачено, " + "тому супровідники ядра не зможуть усунути цю проблему." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2095,24 +2247,24 @@ msgstr "" + "(прапорці:%s). Супровідники коду ядра не зможуть проаналізувати звіти щодо " + "ядра з небажаними модулями." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " Модулі сумнівної якості: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Список ідентифікаторів вад" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Вкажіть адресу сервера bodhi" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Вкажіть випуск" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2122,20 +2274,20 @@ msgstr "" + "\n" + "Виконати пошук оновлень на сервері bodhi" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Пошук оновлень" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Для цього пакунка оновлень не знайдено" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Локальна версія пакунка є новішою за доступні оновлення" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2164,68 +2316,69 @@ msgstr "Вивести знайдені повідомлення про поми + msgid "Delete files with found oopses" + msgstr "Вилучити файли зі знайденими даними щодо помилок ядра" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "«%s» визначає декілька каталогів проблем" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Користування: abrt-cli [--version] КОМАНДА [КАТАЛОГ]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Показати список проблем [у вказаних каталогах]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Вилучити каталог даних проблеми КАТАЛОГ" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Проаналізувати і створити звіт за даними з вказаного каталогу" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Показати дані щодо каталогу КАТАЛОГ" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Вивести кількість нещодавніх аварійних завершень роботи" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Обробка декількох проблем" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + "Щоб дізнатися більше, скористайтеся командою «abrt-cli КОМАНДА --help»" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& list [параметри]" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Показати список лише проблем, щодо яких не складено звітів" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Показати докладний звіт" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Вивести список лише тих проблем, які сталися після вказаної часової позначки" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Вивести список лише тих проблем, які сталися до вказаної часової позначки" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2237,53 +2390,63 @@ msgstr "" + "«abrt-auto-reporting enabled», відданої від імені користувача з правами " + "доступу root\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [параметри] КАТАЛОГ..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + "Текст з розмірами, що перевищують вказані, буде обрізано під час показу" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Каталогу проблеми «%s» не існує" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& status" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Вивести лише кількість проблеми без жодних повідомлень" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Вивести дані щодо проблем, які сталися після вказаної часової позначки" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT виявлено записи проблем (%u). Докладніші дані може бути отримано за " + "допомогою такої команди: abrt-cli list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "& report [параметри] КАТАЛОГ..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" +-msgstr "Вилучити КАТАЛОГ_ПРОБЛЕМИ після створення звіту" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "Вилучаємо «%s»" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "& report [параметри] КАТАЛОГ..." ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "Вилучити КАТАЛОГ_ПРОБЛЕМИ після створення звіту" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Дії: вилучити(rm), інформація(i), пропустити(s):" +@@ -2292,25 +2455,180 @@ msgstr "Дії: вилучити(rm), інформація(i), пропусти + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Дії: вилучити(rm), звітувати(e), інформація(i), пропустити(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Звітуємо щодо «%s»" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Для переходу до наступної проблеми натисніть ENTER:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "Без аргументу --since, циклічний перехід між усіма виявленими проблемами." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Вибирає лише проблеми, виявлені після вказаної часової позначки" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ur.po b/po/ur.po +index 5ff9b8d..9eae788 100644 +--- a/po/ur.po ++++ b/po/ur.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/ur/)\n" + "Language: ur\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -28,108 +28,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -151,7 +162,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -184,30 +197,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -233,14 +258,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -252,11 +277,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -270,24 +295,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -295,60 +321,50 @@ msgstr "" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -356,12 +372,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -382,18 +398,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -423,73 +443,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -501,68 +522,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -586,18 +607,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -638,7 +667,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -727,12 +756,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -841,14 +902,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1063,7 +1153,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1073,16 +1164,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1091,8 +1184,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1112,6 +1209,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1135,11 +1233,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1153,16 +1253,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1170,18 +1273,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1200,14 +1306,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1216,70 +1325,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1776,63 +1935,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1854,65 +2013,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1920,49 +2080,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1971,24 +2141,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/vi.po b/po/vi.po +index 1eba27c..a4a6fac 100644 +--- a/po/vi.po ++++ b/po/vi.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/vi/)\n" + "Language: vi\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -28,108 +28,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Báo cáo" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -151,7 +162,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -184,30 +197,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -233,14 +258,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -252,11 +277,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -270,24 +295,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -295,62 +321,52 @@ msgstr "" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Đổi quyền chủ nhân thư mục không thành. Kiểm tra bản ghi hệ thống để biết " + "thêm chi tiết." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Không thể có được kích thước của '%s'" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -358,12 +374,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -384,18 +400,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -425,73 +445,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -503,68 +524,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -588,18 +609,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -640,7 +669,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -729,12 +758,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -843,14 +904,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1065,7 +1155,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1075,16 +1166,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1093,8 +1186,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1114,6 +1211,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1137,11 +1235,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1155,16 +1255,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1172,18 +1275,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1202,14 +1308,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1218,70 +1327,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1778,63 +1937,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1856,65 +2015,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Hiển thị báo cáo chi tiết" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1922,49 +2082,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1973,24 +2143,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/zh_CN.po b/po/zh_CN.po +index 9a528f6..0fad725 100644 +--- a/po/zh_CN.po ++++ b/po/zh_CN.po +@@ -27,7 +27,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -37,7 +37,7 @@ msgstr "" + "abrt/language/zh_CN/)\n" + "Language: zh-CN\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -47,102 +47,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "无法获取 '%s' 的所有权" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "无法打开目录以写入 '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "无法关闭通知:%s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "报告" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "无法显示通知:%s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "无法读取 gio 频道:'%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "无法在 gio 频道中设定编码:%s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "无法为 gio 频道设定非阻断模式:%s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -151,6 +151,17 @@ msgstr "& [-v] [DIR]...\n" + "\n" + "ABRT 探测到问题后,小程序会通知用户\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "占用目录前询问" +@@ -172,10 +183,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"核心转储对于执行费时费空间的栈回溯是一个必需的操作。ABRT 提供从核心转储生成栈回溯的远程服务但是您必须上传核心转储到该服务器。当禁用此选项后 " +-"ABRT 将自动上传核心转储而不再询问。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -210,30 +221,42 @@ msgid "" + msgstr "当启用该选项后 ABRT 不再提示汇报问题。仅在缩略报告启用的情况下生效。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "在上传核心转储前询问" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "当启用这个选项后一旦检测到敏感数据 ABRT 将创建访问受限的错误报告。" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "为敏感信息请求隐私条目保护" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "通知不完整的问题" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "不完整的问题通常在电脑关机或用户登出时产生。为了提供有效的错误报告,ABRT 将不允许您提交此类问题。" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "关闭(_C)" +@@ -259,14 +282,14 @@ msgstr "关于" + msgid "Quit" + msgstr "退出" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -278,11 +301,11 @@ msgstr "" + msgid "Problem directory" + msgstr "问题目录" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "配置文件" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -296,24 +319,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "使用 NUM 作为客户端 UID" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "记录至 syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "在日志中添加程序名" + +@@ -321,60 +345,50 @@ msgstr "在日志中添加程序名" + msgid "Unknown error" + msgstr "未知错误" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' 不是有效的问题目录" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' 不是一个有效的元素名" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "无法修改 '%s' 元素" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' 不是有效的问题目录" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "未授权" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "无法访问该问题进行修改" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "变更目录属主失败。请检查系统日志以了解更多。" +- +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' 不是一个有效的元素名" ++msgid "'%s' element can't be modified" ++msgstr "无法修改 '%s' 元素" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." ++msgstr "变更目录属主失败。请检查系统日志以了解更多。" ++ ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "无法获取 '%s' 的大小" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "没有留出问题空间" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "无法从问题目录 '%s' 中删除元素 '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -382,12 +396,12 @@ msgid "" + "is not running.\n" + msgstr "名称 '%s' 已丢失,请检查其它拥有该名称的服务是否未运行。\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "闲置 NUM 秒后退出" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "此程序必须以 root 权限运行。" + +@@ -410,18 +424,22 @@ msgstr "不要在后台运行" + msgid "Log to syslog even with -d" + msgstr "即使加入 -d 选项也记录至 syslog" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR......" ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "在 DIR 中运行 EVENT " + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "直接联系用户" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -459,87 +477,88 @@ msgstr "并行工作者数量。 默认为" + msgid "Maximal cache size in MiB. Default is " + msgstr "以 MiB 计最大缓存尺寸。默认为" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "关闭认证" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat 支持用户名" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat 支持密码,如果不输入密码则会有提示。" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL 证书路径或者证书类型" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "您还需要为 --password 指定 --username" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "您可以使用 --username 或者 --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "您可以使用 --username 或者 --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "您可以使用 --anonymous 或者 --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "无效参数数值" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "未知选项值:'%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "密码:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "需要密码才可继续\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP 认证的自动报告" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL 客户端认证的自动报告" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "匿名自动报告" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -559,83 +578,83 @@ msgstr "" + " FILENAME - 已上传归档文件吗\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "不是一个目录:'{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "跳过:'{0}'(以斜杠开始)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "跳过:'{0}'(以点开始)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "跳过:'{0}'(包含..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "跳过:'{0}'(包含空格)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "跳过:'{0}'(包含 tab)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "无法该为目录 '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "未知文件类型:'{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "无法在 '{0}' 在这创建工作目录" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "无法从 '{0}' 迁移到 '{1}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "无法从 '{0}' 迁复制 '{1}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' 中的验证错误" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "正在解压缩 '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "无法创建 '{0}' 目录" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "无法解压缩 '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "成功处理 '{0}'" + +@@ -659,18 +678,26 @@ msgstr "无法变更 '%s' 的属主:%s" + msgid "Deleting problem directory failed: %s" + msgstr "删除问题目录失败:%s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "无法从 abrt-dbus 中获取问题数据:%s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "无法从 abrt-dbus 中获取问题列表:%s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "无法从 abrt-dbus 中获取问题数据:%s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -715,7 +742,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr " %s 回溯解析失败" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "崩溃线程" + +@@ -817,13 +844,45 @@ msgstr "无法提取异常信息: '{0}'" + msgid "Oops text extracted successfully" + msgstr "成功提取异常文字信息" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "内核日志表明已探测到硬件错误。\n" + "这很可能不是普通的软件问题。\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -936,14 +995,43 @@ msgstr "缺少 debuginfo 文件:{0}" + msgid "All debuginfo files are available" + msgstr "所有调试信息文件均可用。" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "可以上传核心转储了吗(可能包含敏感数据)?如果您的回答为“否”,则会在本地生成一个栈跟踪(可能会下载大量数据)。" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1173,7 +1261,8 @@ msgstr "在 DIR 中为每个发现的 oops 生成新问题目录" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "与 -d DumpLocation 相同,是在 abrt.conf 中指定 DumpLocation。" + +@@ -1183,16 +1272,18 @@ msgstr "保存提取信息到PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "使问题目录可读" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "每 1 秒创建一个控流问题目录" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "输出搜索字符串至标准输出并退出" + +@@ -1202,9 +1293,13 @@ msgstr "输出搜索字符串至标准输出并退出" + msgid "Failed to compile regex" + msgstr "编译正则表达式失败" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "无法更新问题:发现超过一个异常" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1223,6 +1318,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1246,11 +1342,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1264,16 +1362,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1281,18 +1382,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1311,14 +1415,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1327,12 +1434,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1341,58 +1494,62 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "从文件 FILE (或标准输入)提取 Xorg 崩溃信息" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "在标准输出上输出找到的崩溃数据" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "在 DIR 中为每个发现的崩溃生成新的问题目录" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1902,43 +2059,43 @@ msgstr "关闭 NSS 失败。" + msgid "Sleeping for %d seconds" + msgstr "休眠 %d 秒" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "由于 BIOS 出错出现内核问题。遗憾的是内核维护者尚未解决这个问题。" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "出现内核问题,但您的硬件不支持,因此内核维护者无法修复这个问题。" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "发生了内核问题,但您的内核已被污染(标志:%s)。内核维护器无法诊断被污染的报告。" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "受污染的模块:%s。" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Bug 错误 ID 列表" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "指定一个 Bodhi 服务器地址" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "指定一个发行版本号" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1948,20 +2105,20 @@ msgstr "" + "\n" + "在 Bodhi 服务器上搜索更新" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "正在搜索更新" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "未找到该软件包的可用更新" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "该软件包的本地版本比可用更新的版本要高" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1985,66 +2142,67 @@ msgstr "打印已找到的内核错误" + msgid "Delete files with found oopses" + msgstr "删除已找到的内核错误文件" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' 标识出多于一个问题目录" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "用法:abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "列出所有问题,可指定[目录]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "删除问题目录 DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "分析并报告 DIR 中的问题数据" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "输出有关 DIR 的信息" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "显示最近的崩溃计数" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "处理多个问题" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "详情请查看 'abrt-cli COMMAND --help'" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "只列出未报告的问题" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "显示详细报告" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "仅列出比指定时间更晚的问题" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "仅列出比指定时间戳更早的问题" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2054,53 +2212,63 @@ msgstr "" + "已禁用自动报告功能。请考虑启用它,方法是\n" + "作为有 root 特权的用户使用命令 'abrt-auto-reporting enabled'\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "大于此处的文字在显示时会被削减" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "没有问题目录 '%s'" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "仅显示问题计数。" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "仅显示比指定时间更晚的问题。" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT 已检测到 '%u' 个问题。预了解详细信息请执行:abrt-cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "正在删除 '%s'" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "报告后删除 PROBLEM_DIR" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "正在删除 '%s'" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "动作:remove(rm), info(i), skip(s):" +@@ -2111,27 +2279,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "动作:remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "正在报告 '%s'" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "下一个问题请按 ENTER:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "没有 --since 参数,则重复所有探测到的问题。" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "只选择时间戳之后探测到的问题" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/zh_TW.po b/po/zh_TW.po +index f3c4ca5..8c51262 100644 +--- a/po/zh_TW.po ++++ b/po/zh_TW.po +@@ -8,21 +8,22 @@ + # Jiří Moskovčák , 2011 + # Terry Chuang , 2011-2013 + # Chester Cheng , 2015. #zanata ++# Ding-Yi Chen , 2016. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-03-21 07:48-0400\n" +-"Last-Translator: Cheng-Chia Tseng \n" ++"PO-Revision-Date: 2016-02-01 06:25-0500\n" ++"Last-Translator: Ding-Yi Chen \n" + "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/fedora-" + "abrt/language/zh_TW/)\n" + "Language: zh-TW\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -32,102 +33,102 @@ msgstr "問題回報" + msgid "View and report application crashes" + msgstr "檢視與回報應用程式崩潰" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "無法掌握「%s」的擁有權" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "無法開啟目錄以寫入「%s」" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "無法關閉通知:%s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "噢喔!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "回報" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "重新啟動" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "我們很抱歉,%s 似乎當掉了。此問題已經自動回報。" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "我們很抱歉,%s 似乎當掉了。此問題會在網際網路可用時回報。" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "我們很抱歉,%s 似乎當掉了。如果您想要回報該議題,請聯絡開發者。" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "我們很抱歉,%s 似乎當掉了。若您想要協助解決這個議題,請傳送回報。" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "我們很抱歉,似乎有個組件遭遇問題。此問題已經自動回報。" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "我們很抱歉,似乎有個組件遭遇問題。此問題會在網際網路可用時回報。" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "我們很抱歉,似乎遭遇某個問題。若您想要協助解決這個議題,請傳送回報。" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "無法顯示通知:%s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "無法從 gio 通道讀取:「%s」" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "無法設定 gio 通道上的編碼:%s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "無法為 gio 通道啟動不阻擋模式:%s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -136,6 +137,17 @@ msgstr "& [-v] [DIR]...\n" + "\n" + "新問題被 ABRT 偵測到時通知使用者的面板程式\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "在佔用目錄前詢問" +@@ -157,10 +169,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"需要有核心傾印檔案才能生成堆疊追蹤資訊,而這個動作既費時又費空間。ABRT " +-"提供以核心傾印生成堆疊追蹤資訊的服務,但您必須將核心傾印檔上傳到此服務中。停用此選項後,ABRT 不須詢問就會上傳核心傾印檔案。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -196,30 +208,42 @@ msgid "" + msgstr " 啟用此選項後,ABRT 永遠不會顯示問題回報通知。僅在啟用簡短回報時生效。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "在上傳核心傾印前詢問意願" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr " 若啟用此選項,當 ABRT 偵測到敏感資訊時總會以限制存取方式建立臭蟲回報。" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "內含敏感訊息故申請隱私請票" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "通知不完整的問題" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "資料不完整的問題通常在電腦關機動作之時,或是使用者正在登出時被偵測到。為了提供有價值的問題回報,ABRT 不會允許您提交此類問題報告。" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "關閉(_C)" +@@ -245,7 +269,7 @@ msgstr "關於" + msgid "Quit" + msgstr "退出" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +@@ -254,7 +278,7 @@ msgstr "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "查詢軟體包資料庫,並儲存軟體包與組件名稱" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -266,11 +290,11 @@ msgstr "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + msgid "Problem directory" + msgstr "問題目錄" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "組態檔" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "使用此目錄作為 RPM 根基" + +@@ -286,24 +310,25 @@ msgstr "& [-v] -d DIR\n" + msgid "Root directory for running container commands" + msgstr "執行容器指令的根基目錄" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [選項]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "使用 NUM 作為客戶端 UID" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "紀錄至 syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "加入程式名稱至紀錄檔" + +@@ -311,60 +336,50 @@ msgstr "加入程式名稱至紀錄檔" + msgid "Unknown error" + msgstr "未知錯誤" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "「%s」不是有效的問題目錄" ++msgid "'%s' is not a valid element name" ++msgstr "「%s」不是有效的元素名稱" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "無法修改「%s」元素" ++msgid "'%s' is not a valid problem directory" ++msgstr "「%s」不是有效的問題目錄" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "未授權" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "無法存取問題以修改" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "無法修改「%s」元素" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "目錄擁有者變更失敗。請檢查紀錄檔瞭解更多細節。" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "無法存取問題以閱讀" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "「%s」不是有效的元素名稱" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "無法取得「%s」的大小" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "無剩餘問題空間" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "無法從問題目錄「%2$s」刪除「%1$s」元素" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -372,12 +387,12 @@ msgid "" + "is not running.\n" + msgstr "「%s」名稱已遺失,請確認其他擁有該名稱的服務並未執行中。\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "在停止使用 NUM 秒後離開" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "此程式必須以 root 身份執行。" + +@@ -400,18 +415,22 @@ msgstr "不要在幕後運行" + msgid "Log to syslog even with -d" + msgstr "即使加上 -d 參數也紀錄至 syslog" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "於 DIR 執行 EVENT" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "直接與使用者溝通" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -449,87 +468,88 @@ msgstr "同時工作序數量。預設為 " + msgid "Maximal cache size in MiB. Default is " + msgstr "最大快取大小,單位為 MiB。預設為 " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "關閉身份認證" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat Support 使用者名稱" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat Support 密碼;如果未提供密碼,將會發出提示" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL 憑證路徑或憑證類型" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "使用 --password 時必須指定 --username" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "您可以使用 --username 或 --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "您可以使用 --username 或 --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "您可以使用 --anonymous 或 --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "無效的引數數目" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "未知的選項值:「%s」\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "密碼:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "沒有密碼無法繼續\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP 身份認證自動回報" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL 用戶端身份憑證自動回報" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "匿名自動回報" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -549,83 +569,83 @@ msgstr "" + " FILENAME - 上傳過的封存檔名稱\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "不是目錄:「{0}」" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "略過:「{0}」(以 / 起頭)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "略過:「{0}」(以 . 起頭)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "略過:「{0}」(含有 ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "略過:「{0}」(含有空白)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "略過:「{0}」(含有跳格符)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "無法切換目錄至「{0}」" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "未知檔案類型:「{0}」" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "無法在「{0}」中建立工作目錄" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "無法將「{0}」移動至「{1}」" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "無法將「{0}」複製至「{1}」" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "驗證「{0}」上的錯誤" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "正在解開「{0}」" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "無法建立「{0}」目錄" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "無法解開「{0}」" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "「{0}」處理成功" + +@@ -649,21 +669,29 @@ msgstr "無法 chown 「%s」:%s" + msgid "Deleting problem directory failed: %s" + msgstr "刪除問題目錄失敗:%s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "無法從 abrt-dbus 取得問題資料:%s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "無法從 abrt-dbus 取得問題清單:%s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "無法從 abrt-dbus 取得問題資料:%s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "無法測試元素是否存在 abrt-dbus 上:%s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -704,7 +732,7 @@ msgstr "& [選項] -d DIR\n" + msgid "Backtrace parsing failed for %s" + msgstr "%s 的追蹤解析失敗" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "沒有找到崩潰執行序" + +@@ -808,13 +836,45 @@ msgstr "無法抽出 oops 訊息:「{0}」" + msgid "Oops text extracted successfully" + msgstr "Oops 內文已成功抽出" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "內核記錄指出有偵測到硬體錯誤。\n" + "這很可能不是軟體問題。\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -949,14 +1009,43 @@ msgstr "遺失 debuginfo 檔:{0}" + msgid "All debuginfo files are available" + msgstr "所有的 debuginfo 檔案皆可用" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "確定要上傳核心傾印?(它可能包含敏感資料)。若您的答案為「否」,將會在本地建立堆疊追蹤。(這可能需要下載大量資料)。" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1186,7 +1275,8 @@ msgstr "在 DIR 內為每個找到的 oops 建立新的問題目錄" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "與 -d DumpLocation 相同,DumpLocation 於 abrt.conf 內指定" + +@@ -1196,16 +1286,18 @@ msgstr "將抽出的資訊存入 PROBLEM 中" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "讓問題目錄全世界都可以讀取" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "節制問題目錄的建立速度為每秒 1 個" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "將搜尋字串列印在 stdout 上並離開" + +@@ -1215,9 +1307,13 @@ msgstr "將搜尋字串列印在 stdout 上並離開" + msgid "Failed to compile regex" + msgstr "無法編譯 regex" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "無法更新問題:找到超過一份 oops" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1236,6 +1332,7 @@ msgstr "無法在 abrt 資料庫中儲存偵測問題資料" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "無法初始化 systemd-journal watch" + +@@ -1259,11 +1356,13 @@ msgstr "在 DIR 目錄中為每個核心傾印建立新的問題目錄" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "開始從 CURSOR 位置讀取 systemd-journal" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "開始從尾端讀取 systemd-journal" + +@@ -1277,16 +1376,19 @@ msgstr "與 -t INT 相同,INT 則在 plugins/CCpp.conf 中指定" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "從上次查看的位置開始跟隨 systemd-journal (如果有的話)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "您需要指定 -c CURSOR 或 -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "無法開啟 systemd-journal" + +@@ -1294,18 +1396,21 @@ msgstr "無法開啟 systemd-journal" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "無法過濾 systemd-journal 僅取用 systemd-coredump 資料" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "無法查找到日誌尾端" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "無法設定 systed-journal 游標「%s」" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "無法讀取日誌資料。" + +@@ -1324,14 +1429,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "從所有機器讀取日誌檔" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1340,12 +1448,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "無法過濾 systemd-journal 僅取用內核資料" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "無法從游標「%s」啟動監視" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1354,58 +1508,62 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "從 FILE (或標準輸出) 抽出 Xorg 當機資訊" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "將找到的崩潰資料列印在標準輸出上" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "在 DIR 內為每個找到的當機資料建立問題目錄" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "無法儲存日誌監視的位置" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "無法儲存日誌監視的位置:open('%s')" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "不還原日誌監視的位置:不存在「%s」檔案" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "無法從檔案「%s」還原日誌監視的位置" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "無法還原日誌監視的位置:「%s」路徑並非通常檔案" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "無法還原日誌監視的位置:「%s」檔案超出 %dB 大小限制" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "無法還原日誌監視的位置:open('%s')" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "無法還原日誌監視的位置:無法讀取整份「%s」檔案" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "無法將日誌從檔案「%s」移到游標處" +@@ -1916,43 +2074,43 @@ msgstr "無法關閉 NSS。" + msgid "Sleeping for %d seconds" + msgstr "正睡眠 %d 秒" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "由於 BIOS 損壞而遭遇內核問題。很遺憾必須要告訴您,這樣的問題並無法由內核維護者修正。" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "遭遇一項內核問題,但實際上並不受支援您的硬體,因此內核維護者無法修正此問題。" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "遭遇一項內核問題,但您的內核已經損壞 (旗標:%s)。內核維護者無法診斷損壞的回報有什麼問題。" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "損壞的模組:%s。" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "臭蟲 ID 清單" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "指定 bodhi 伺服器 URL" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "指定發行版" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1962,20 +2120,20 @@ msgstr "" + "\n" + "在 bodhi 伺服器上搜尋是否有可用更新" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "搜尋是否有更新" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "找不到此軟體包的更新" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "本地端的軟體包版本比可用更新的版本還新" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1999,66 +2157,67 @@ msgstr "列印找到的 oops" + msgid "Delete files with found oopses" + msgstr "刪除找到的 oops 其檔案" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "「%s」辨識出一個以上的問題目錄" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "用法:abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "列出 [DIRs 中] 的問題" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "從問題目錄 DIR 移除檔案" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "在 DIR 內分析並回報問題資料" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "列印有關 DIR 的資訊" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "列印最近程式崩潰的數目" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "處理多項問題" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "請見 'abrt-cli COMMAND --help' 以瞭解更多資訊" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "僅列出尚未回報的問題" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "顯示詳細的回報" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "僅列出比指定的時間戳記更近期的問題" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "僅列出比指定的時間戳記更之前的問題" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2067,53 +2226,63 @@ msgid "" + msgstr "已停用自動回報功能。請考慮以取得 root 特權的使用者執行\n" + "「abrt-auto-reporting enabled」指令啟用此功能\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [選項] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "大於此的文字會刪減顯示" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "沒有這個問題目錄「%s」" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "僅列印問題數目而不帶任何訊息" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "僅列印比指定的時間戳記更近期的問題" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT 已偵測到 %u 項問題。若要取得更多資訊,請執行:abrt-cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "正在刪除「%s」" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [選項] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "在回報後移除 PROBLEM_DIR" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "正在刪除「%s」" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "可用動作:移除 remove(rm)、資訊 info(i)、略過 skip(s):" +@@ -2124,27 +2293,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "可用動作:移除 remove(rm)、回報 report(e)、資訊 info(i)、略過 skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "正在回報「%s」" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "下個問題請按 ENTER 鍵。" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "若不用 --since 引數,則會在所有偵測到的問題之間迭代。" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "僅選取時間戳記之後的問題" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +-- +2.5.0 + diff --git a/0049-translations-add-missing-new-line.patch b/0049-translations-add-missing-new-line.patch new file mode 100644 index 0000000..cc28689 --- /dev/null +++ b/0049-translations-add-missing-new-line.patch @@ -0,0 +1,26 @@ +From 3f81e0d5fce5b2f30ec19e260cc666f3ae89c034 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 11 Feb 2016 15:26:27 +0100 +Subject: [PATCH] translations: add missing new line + +Signed-off-by: Jakub Filak +--- + po/km.po | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/po/km.po b/po/km.po +index 84bb1b1..ab7a684 100644 +--- a/po/km.po ++++ b/po/km.po +@@ -137,7 +137,7 @@ msgid "" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" +-"Applet ដែលបានជូនដំណឹងអ្នកប្រើនៅពេលដែលមានបញ្ហាថ្មីត្រូវបានរកឃើញដោយ ABRT" ++"Applet ដែលបានជូនដំណឹងអ្នកប្រើនៅពេលដែលមានបញ្ហាថ្មីត្រូវបានរកឃើញដោយ ABRT\n" + + #: ../src/configuration-gui/abrt-config-widget.c:483 + msgid "" +-- +2.5.0 + diff --git a/0050-a-a-save-package-data-blacklist-usr-lib-64-firefox-p.patch b/0050-a-a-save-package-data-blacklist-usr-lib-64-firefox-p.patch new file mode 100644 index 0000000..57b37b4 --- /dev/null +++ b/0050-a-a-save-package-data-blacklist-usr-lib-64-firefox-p.patch @@ -0,0 +1,33 @@ +From a587ec0e3f2adc76445afc732d798e2d7cd33c02 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 16 Feb 2016 10:53:06 +0100 +Subject: [PATCH] a-a-save-package-data: blacklist + /usr/lib(64)/firefox/plugin-container + +/usr/lib(64)/firefox/plugin-container is a sandbox/launcher for Firefox +plug-ins. When it crases Firefox loads it again so we don't want those crashes +reported. + +Related to: rhbz#1308840 + +Signed-off-by: Matej Habrnal +--- + src/daemon/abrt-action-save-package-data.conf | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/daemon/abrt-action-save-package-data.conf b/src/daemon/abrt-action-save-package-data.conf +index 58f5061..f3a808f 100644 +--- a/src/daemon/abrt-action-save-package-data.conf ++++ b/src/daemon/abrt-action-save-package-data.conf +@@ -15,7 +15,7 @@ ProcessUnpackaged = yes + + # Blacklisted executable paths (shell patterns) + # +-BlackListedPaths = /usr/share/doc/*, */example*, /usr/bin/nspluginviewer ++BlackListedPaths = /usr/share/doc/*, */example*, /usr/bin/nspluginviewer, /usr/lib*/firefox/plugin-container + + # interpreters names + Interpreters = python2, python2.7, python, python3, python3.3, python3.4, python3.5, perl, perl5.16.2 +-- +2.5.0 + diff --git a/0052-a-a-install-debuginfo-make-tmpdir-variable-global.patch b/0052-a-a-install-debuginfo-make-tmpdir-variable-global.patch new file mode 100644 index 0000000..c4f5c1c --- /dev/null +++ b/0052-a-a-install-debuginfo-make-tmpdir-variable-global.patch @@ -0,0 +1,85 @@ +From 894ced59cc43dfda99a393154026181b0bf61784 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 8 Mar 2016 16:42:31 +0100 +Subject: [PATCH] a-a-install-debuginfo: make tmpdir variable global + +Function clean_up() has one required parameter tmpdir. +Without this commit clean_up() function raises an exception because it was +called without the parameter. + +Signed-off-by: Matej Habrnal +--- + src/plugins/abrt-action-install-debuginfo.in | 16 ++++++++-------- + 1 file changed, 8 insertions(+), 8 deletions(-) + +diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in +index 73ff82f..bb72695 100644 +--- a/src/plugins/abrt-action-install-debuginfo.in ++++ b/src/plugins/abrt-action-install-debuginfo.in +@@ -20,7 +20,8 @@ import problem + RETURN_OK = 0 + # serious problem, should be logged somewhere + RETURN_FAILURE = 2 +- ++# path to tmp directory has to be global because of clean_up() ++TMPDIR = None + + GETTEXT_PROGNAME = "abrt" + import locale +@@ -43,11 +44,11 @@ def init_gettext(): + gettext.textdomain(GETTEXT_PROGNAME) + + def sigterm_handler(signum, frame): +- clean_up() ++ clean_up(TMPDIR) + exit(RETURN_OK) + + def sigint_handler(signum, frame): +- clean_up() ++ clean_up(TMPDIR) + print("\n{0}".format(_("Exiting on user command"))) + sys.stdout.flush() + # ??! without "sys.", I am getting segv! +@@ -63,7 +64,6 @@ if __name__ == "__main__": + fbuild_ids = "build_ids" + cachedirs = [] + size_mb = 4096 +- tmpdir = None + keeprpms = False + noninteractive = False + b_ids = [] +@@ -135,7 +135,7 @@ if __name__ == "__main__": + except: + pass + elif opt == "--tmpdir": +- tmpdir = arg ++ TMPDIR = arg + elif opt == "--keeprpms": + keeprpms = True + # --exact takes precendece over --ids +@@ -159,11 +159,11 @@ if __name__ == "__main__": + + if not cachedirs: + cachedirs = ["/var/cache/abrt-di"] +- if not tmpdir: ++ if not TMPDIR: + # security people prefer temp subdirs in app's private dir, like /var/run/abrt + # and we switched to /tmp but Fedora feature tmp-on-tmpfs appeared, hence we must + # not use /tmp for potential big data anymore +- tmpdir = "@LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-%s.%u" % (time.strftime("%Y-%m-%d-%H:%M:%S"), os.getpid()) ++ TMPDIR = "@LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-%s.%u" % (time.strftime("%Y-%m-%d-%H:%M:%S"), os.getpid()) + + + if missing == None: +@@ -235,7 +235,7 @@ if __name__ == "__main__": + sys.exit(RETURN_FAILURE) + + # TODO: should we pass keep_rpms=keeprpms to DebugInfoDownload here?? +- downloader = download_class(cache=cachedirs[0], tmp=tmpdir, ++ downloader = download_class(cache=cachedirs[0], tmp=TMPDIR, + noninteractive=noninteractive, + repo_pattern=repo_pattern) + try: +-- +2.5.5 + diff --git a/0053-a-a-install-debuginfo-fix-BrokenPipe-error.patch b/0053-a-a-install-debuginfo-fix-BrokenPipe-error.patch new file mode 100644 index 0000000..e792d42 --- /dev/null +++ b/0053-a-a-install-debuginfo-fix-BrokenPipe-error.patch @@ -0,0 +1,49 @@ +From 9c58a7bbd6def445ba1d1faaf7a3c2960ba2819e Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 8 Mar 2016 16:45:36 +0100 +Subject: [PATCH] a-a-install-debuginfo: fix BrokenPipe error + +While debug info is downloading and stop button is pressed the BrokenPipe +error appears. + +If the stop button is pressed, gui wizard sends SIGTERM to all +processes with the same group ID so abrt-action-install-debuginfo got SIGTERM +as well. It has its own SIGTERM handler which calls clean_up() function and it +takes a while before the tool is terminated. +abrt-action-install-debuginfo tries to write some messages to the closed socket +during the clean_up process and it raises a BrokenPipe exception. We must +ensure that no message will be printed after SIGTERM is recieved. + +Related to: #1255259 + +Signed-off-by: Matej Habrnal +--- + src/plugins/abrt-action-install-debuginfo.in | 5 ++++- + 1 file changed, 4 insertions(+), 1 deletion(-) + +diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in +index bb72695..f9eb596 100644 +--- a/src/plugins/abrt-action-install-debuginfo.in ++++ b/src/plugins/abrt-action-install-debuginfo.in +@@ -44,7 +44,7 @@ def init_gettext(): + gettext.textdomain(GETTEXT_PROGNAME) + + def sigterm_handler(signum, frame): +- clean_up(TMPDIR) ++ clean_up(TMPDIR, silent=True) + exit(RETURN_OK) + + def sigint_handler(signum, frame): +@@ -241,6 +241,9 @@ if __name__ == "__main__": + try: + result = downloader.download(missing, download_exact_files=exact_fls) + except Exception as ex: ++ if ex.errno == errno.EPIPE: ++ clean_up(TMPDIR, silent=True) ++ exit(RETURN_FAILURE) + error_msg_and_die("Can't download debuginfos: %s", ex) + + if exact_fls: +-- +2.5.5 + diff --git a/abrt.spec b/abrt.spec index 3bdd3fe..f809ebd 100644 --- a/abrt.spec +++ b/abrt.spec @@ -1,46 +1,39 @@ +%{!?python_site: %global python_site %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)")} +# platform-dependent +%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} + # http://fedoraproject.org/wiki/Packaging:Guidelines#PIE # http://fedoraproject.org/wiki/Hardened_Packages %global _hardened_build 1 -%if 0%{?fedora} || 0%{?rhel} > 7 -# Enable python3 build by default -%bcond_without python3 +%if 0%{?fedora} >= 14 + %bcond_without systemd %else -%bcond_with python3 + %bcond_with systemd %endif -%if 0%{?fedora} >= 41 || 0%{?rhel} >= 10 -%bcond_with container_handler -%else -%bcond_without container_handler -%endif - - -%if 0%{?rhel}%{?suse_version} - %bcond_with bodhi -%else - %bcond_without bodhi +# systemd wasn't set by the code above - so we're on old Fedora or we're not on Fedora at all +%if %{without systemd} + %if 0%{?rhel} >= 7 + %bcond_without systemd + %else + %bcond_with systemd + %endif %endif # build abrt-atomic subpackage %bcond_without atomic -# build abrt-retrace-client by default -%bcond_without retrace - -# rpmbuild --define 'desktopvendor mystring' -%if "x%{?desktopvendor}" == "x" - %define desktopvendor %(source /etc/os-release; echo ${ID}) +%ifarch aarch64 +%define have_kexec_tools 0 +%else +%define have_kexec_tools 1 %endif -%if 0%{?suse_version} -%define dbus_devel dbus-1-devel -%define libjson_devel libjson-devel -%define shadow_utils pwdutils +%if 0%{?rhel} >= 6 +%define desktopvendor redhat %else -%define dbus_devel dbus-devel -%define libjson_devel json-c-devel -%define shadow_utils shadow-utils +%define desktopvendor fedora %endif # do not append package version to doc directory of subpackages in F20 and later; rhbz#993656 @@ -50,105 +43,117 @@ %define docdirversion -%{version} %endif -%define glib_ver 2.73.3 -%define libreport_ver 2.17.13 -%define satyr_ver 0.24 +%define libreport_ver 2.6.4-2 +%define satyr_ver 0.19 Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.17.8 -Release: 2%{?dist} -License: GPL-2.0-or-later +Version: 2.6.1 +Release: 11%{?dist} +License: GPLv2+ +Group: Applications/System URL: https://abrt.readthedocs.org/ -Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz -BuildRequires: git-core -BuildRequires: %{dbus_devel} -BuildRequires: hostname +Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz +# don't remove this patch, packages in rawhide are not signed! +#Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch + +# git format-patch %%{Version} --topo-order -N -M; +# i=1; for p in `ls 0*.patch`; do printf "Patch%04d: %s\n" $i $p; ((i++)); done +Patch0001: 0001-cli-enable-authetication-for-all-commands.patch +Patch0002: 0002-cli-remove-useless-code-from-print_crash.patch +Patch0003: 0003-cli-use-internal-command-impl-in-the-command-process.patch +Patch0004: 0004-a-dump-oops-allow-update-the-problem-if-more-then-on.patch +Patch0005: 0005-abrtd-de-prioritize-post-create-event-scripts.patch +Patch0006: 0006-abrt-Fixup-component-of-select-kernel-backtraces.patch +Patch0007: 0007-ccpp-do-not-crash-if-generate_core_backtrace-fails.patch +Patch0008: 0008-applet-do-not-crash-if-the-new-problem-has-no-comman.patch +Patch0009: 0009-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch +Patch0010: 0010-abrt-auto-reporting-fix-related-to-conditional-compi.patch +Patch0011: 0011-doc-fix-related-to-conditional-compilation-of-man-pa.patch +Patch0012: 0012-dbus-api-unify-reporting-of-errors.patch +Patch0013: 0013-cli-fix-testing-of-DBus-API-return-codes.patch +Patch0014: 0014-ccpp-fix-comment-related-to-MakeCompatCore-option-in.patch +Patch0015: 0015-ccpp-use-global-TID.patch +Patch0016: 0016-a-a-s-p-d-add-bash-on-the-package-blacklist.patch +Patch0017: 0017-cli-don-t-start-reporting-of-not-reportable-problems.patch +Patch0018: 0018-introduce-bodhi2-to-abrt-bodhi.patch +#Patch0019: 0019-spec-add-hawkey-to-BRs-of-abrt-bodhi.patch +Patch0020: 0020-ccpp-do-not-break-the-reporting-if-a-bodhi-fails.patch +Patch0021: 0021-bodhi-add-ignoring-of-Rawhide.patch +Patch0022: 0022-bodhi-add-parsing-of-error-responses.patch +Patch0023: 0023-doc-actualize-the-abrt-bodhi-man-page.patch +Patch0024: 0024-bodhi-fix-a-segfault-when-testing-an-os-release-opt-.patch +Patch0025: 0025-bodhi-fix-typo-in-error-messages.patch +Patch0026: 0026-abrt-dump-xorg-support-Xorg-log-backtraces-prefixed-.patch +Patch0027: 0027-a-a-a-ccpp-local-don-t-delete-build_ids.patch +Patch0028: 0028-abrt-retrace-client-use-atoll-for-_size-conversion.patch +Patch0029: 0029-doc-fix-default-DumpLocation-in-abrt.conf-man-page.patch +Patch0030: 0030-dbus-ensure-expected-bytes-width-of-DBus-numbers.patch +#Patch0031: 0031-spec-add-missing-man-page-for-abrt-dump-journal-core.patch +Patch0032: 0032-doc-add-missing-man-page-for-abrt-dump-journal-core.patch +Patch0033: 0033-a-d-journal-core-set-root-owner-for-created-dump-dir.patch +Patch0034: 0034-doc-a-a-analyze-xorg-fix-path-to-conf-file.patch +Patch0035: 0035-a-a-s-p-data-fix-segfault-if-GPGKeysDir-isn-t-config.patch +Patch0036: 0036-ccpp-make-crashes-of-processes-with-locked-memory-no.patch +Patch0037: 0037-a-a-i-d-to-abrt-cache-make-own-random-temporary-dire.patch +Patch0038: 0038-conf-introduce-DebugLevel.patch +Patch0039: 0039-ccpp-ignore-crashes-of-ABRT-binaries-if-DebugLevel-0.patch +Patch0040: 0040-ccpp-save-abrt-core-files-only-to-new-files.patch +Patch0041: 0041-lib-add-convenient-wrappers-for-ensuring-writable-di.patch +Patch0042: 0042-abrtd-switch-owner-of-the-dump-location-to-root.patch +#Patch0043: 0043-spec-switch-owner-of-the-dump-location-to-root.patch +Patch0044: 0044-a-a-save-package-data-do-not-blacklist-firefox.patch +Patch0045: 0045-ccpp-drop-e-from-the-core_pattern.patch +#Patch0046: 0046-testsuite-ccpp-executable-with-white-space-in-name.patch +#Patch0047: 0047-translations-update-zanata-configuration.patch +Patch0048: 0048-Translation-updates.patch +Patch0049: 0049-translations-add-missing-new-line.patch +Patch0050: 0050-a-a-save-package-data-blacklist-usr-lib-64-firefox-p.patch +#Patch0051: 0051-testsuite-add-concurrent-processing-test-for-abrtd.patch +Patch0052: 0052-a-a-install-debuginfo-make-tmpdir-variable-global.patch +Patch0053: 0053-a-a-install-debuginfo-fix-BrokenPipe-error.patch + + +# '%%autosetup -S git' -> git +BuildRequires: git + +BuildRequires: dbus-devel BuildRequires: gtk3-devel -BuildRequires: glib2-devel >= %{glib_ver} -BuildRequires: rpm-devel >= 6.0.0 +BuildRequires: glib2-devel >= 2.43 +BuildRequires: rpm-devel >= 4.6 BuildRequires: desktop-file-utils BuildRequires: libnotify-devel #why? BuildRequires: file-devel -BuildRequires: make +BuildRequires: python-devel +BuildRequires: python3-devel BuildRequires: gettext BuildRequires: libxml2-devel BuildRequires: intltool BuildRequires: libtool -BuildRequires: libsoup3-devel +BuildRequires: nss-devel BuildRequires: asciidoc BuildRequires: doxygen BuildRequires: xmlto BuildRequires: libreport-devel >= %{libreport_ver} BuildRequires: satyr-devel >= %{satyr_ver} +BuildRequires: systemd-python +BuildRequires: systemd-python3 BuildRequires: augeas BuildRequires: libselinux-devel -# Required for the %%{_unitdir} and %%{_tmpfilesdir} macros. -BuildRequires: systemd-rpm-macros -%if %{with python3} -BuildRequires: python3-devel -BuildRequires: python3-systemd -BuildRequires: python3-argcomplete -BuildRequires: python3-dbus -%endif Requires: libreport >= %{libreport_ver} Requires: satyr >= %{satyr_ver} -# these only exist on suse -%if 0%{?suse_version} -BuildRequires: dbus-1-glib-devel -Requires: dbus-1-glib -%endif -%{?systemd_requires} -Requires: systemd +%if %{with systemd} +Requires: systemd-units +%endif +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: %{name}-libs = %{version}-%{release} -Requires: python3-%{name} = %{version}-%{release} -Requires(pre): %{shadow_utils} -%if %{with python3} -Requires: python3-augeas -Requires: python3-dbus -%endif -%ifarch aarch64 i686 x86_64 -Requires: dmidecode -%endif -Requires: libreport-plugin-ureport -%if 0%{?fedora} -Requires: libreport-plugin-systemd-journal -%endif -# to fix upgrade path abrt-plugin-sosreport was removed in 2.14.5 version. -Obsoletes: abrt-plugin-sosreport < 2.14.5 -# fros was retired 2025-07, and was initially added to comps to support -# abrt-desktop, so let's obsolete it here -Obsoletes: fros < 1.1-42 -Obsoletes: fros-gnome < 1.1-42 -Obsoletes: fros-recordmydesktop < 1.1-42 - -#gui -BuildRequires: libreport-gtk-devel >= %{libreport_ver} -BuildRequires: gsettings-desktop-schemas-devel >= 3.15 -#addon-ccpp -BuildRequires: gdb-headless -#addon-kerneloops -BuildRequires: systemd-devel -BuildRequires: %{libjson_devel} -%if %{with bodhi} -# plugin-bodhi -BuildRequires: libreport-web-devel >= %{libreport_ver} -%endif -#desktop -#Default config of addon-ccpp requires gdb -BuildRequires: gdb-headless -#dbus -BuildRequires: polkit-devel -%if %{with python3} -#python3-abrt -BuildRequires: python3-pytest -BuildRequires: python3-sphinx -BuildRequires: python3-libreport -#python3-abrt-doc -BuildRequires: python3-devel -%endif +Requires: %{name}-python = %{version}-%{release} +Requires(pre): shadow-utils +Requires: python-dbus +Requires: python-dmidecode +Requires: libreport-plugin-ureport >= %{libreport_ver} %description %{name} is a tool to help users to detect defects in applications and @@ -157,12 +162,14 @@ It uses plugin system to extend its functionality. %package libs Summary: Libraries for %{name} +Group: System Environment/Libraries %description libs Libraries for %{name}. %package devel Summary: Development libraries for %{name} +Group: Development/Libraries Requires: abrt-libs = %{version}-%{release} %description devel @@ -170,13 +177,14 @@ Development libraries and headers for %{name}. %package gui-libs Summary: Libraries for %{name}-gui -Requires: %{name}-libs = %{version}-%{release} +Group: System Environment/Libraries %description gui-libs Libraries for %{name}-gui. %package gui-devel Summary: Development libraries for %{name}-gui +Group: Development/Libraries Requires: abrt-gui-libs = %{version}-%{release} %description gui-devel @@ -184,10 +192,13 @@ Development libraries and headers for %{name}-gui. %package gui Summary: %{name}'s gui +Group: User Interface/Desktops Requires: %{name} = %{version}-%{release} Requires: %{name}-dbus = %{version}-%{release} Requires: gnome-abrt Requires: gsettings-desktop-schemas >= 3.15 +BuildRequires: libreport-gtk-devel >= %{libreport_ver} +BuildRequires: gsettings-desktop-schemas-devel >= 3.15 # we used to have abrt-applet, now abrt-gui includes it: Provides: abrt-applet = %{version}-%{release} Obsoletes: abrt-applet < 0.0.5 @@ -198,37 +209,60 @@ Requires: abrt-gui-libs = %{version}-%{release} %description gui GTK+ wizard for convenient bug reporting. +%package addon-coredump-helper +Summary: %{name}'s /proc/sys/kernel/core_pattern helper +Group: System Environment/Libraries +Requires: abrt-libs = %{version}-%{release} + +%description addon-coredump-helper +This package contains hook for C/C++ crashed programs. + %package addon-ccpp Summary: %{name}'s C/C++ addon +Group: System Environment/Libraries Requires: cpio -Requires: gdb-headless +%if 0%{?fedora:%{fedora} > 22} +Requires: gdb >= gdb-7.9.50.20150531 +%else +Requires: gdb >= 7.9.1-16 +%endif Requires: elfutils -# Required for local retracing with GDB. -Requires: elfutils-debuginfod-client %if 0%{!?rhel:1} +# abrt-action-perform-ccpp-analysis wants to run analyze_RetraceServer: +Requires: %{name}-retrace-client %endif Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} -%if %{with python3} -Requires: python3-libreport -%endif -Obsoletes: abrt-addon-coredump-helper <= 2.12.2 -Obsoletes: abrt-retrace-client <= 2.15.1 - +Requires: %{name}-addon-coredump-helper = %{version}-%{release} +Requires: libreport-python %description addon-ccpp This package contains %{name}'s C/C++ analyzer plugin. %package addon-upload-watch Summary: %{name}'s upload addon +Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} %description addon-upload-watch This package contains hook for uploaded problems. +%package retrace-client +Summary: %{name}'s retrace client +Group: System Environment/Libraries +Requires: %{name} = %{version}-%{release} +Requires: xz +Requires: tar + +%description retrace-client +This package contains the client application for Retrace server +which is able to analyze C/C++ crashes remotely. + %package addon-kerneloops Summary: %{name}'s kerneloops addon +Group: System Environment/Libraries +BuildRequires: systemd-devel Requires: curl Requires: %{name} = %{version}-%{release} %if 0%{!?rhel:1} @@ -242,6 +276,7 @@ system log. %package addon-xorg Summary: %{name}'s Xorg addon +Group: System Environment/Libraries Requires: curl Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} @@ -250,98 +285,75 @@ Requires: abrt-libs = %{version}-%{release} This package contains plugin for collecting Xorg crash information from Xorg log. +%if %{?have_kexec_tools} == 1 %package addon-vmcore Summary: %{name}'s vmcore addon +Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: abrt-addon-kerneloops -# On riscv64, kexec-tools does not compile: -# "configure: error: unsupported architecture riscv64" -%ifnarch riscv64 Requires: kexec-tools -%endif -%if %{with python3} -Requires: python3-abrt -Requires: python3-augeas -Requires: python3-systemd -%endif -Requires: util-linux +Requires: abrt-python +Requires: python-augeas %description addon-vmcore This package contains plugin for collecting kernel crash information from vmcore files. +%endif %package addon-pstoreoops Summary: %{name}'s pstore oops addon +Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} Requires: abrt-addon-kerneloops -Obsoletes: abrt-addon-uefioops <= 2.1.6 -Provides: abrt-addon-uefioops = %{version}-%{release} +Obsoletes: abrt-addon-uefioops < 2.1.7 %description addon-pstoreoops This package contains plugin for collecting kernel oopses from pstore storage. -%if %{with bodhi} %package plugin-bodhi Summary: %{name}'s bodhi plugin +BuildRequires: json-c-devel +Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} -Requires: abrt-libs = %{version}-%{release} -Obsoletes: libreport-plugin-bodhi <= 2.0.10 -Provides: libreport-plugin-bodhi = %{version}-%{release} +BuildRequires: libreport-web-devel >= %{libreport_ver} +BuildRequires: hawkey-devel +Obsoletes: libreport-plugin-bodhi > 0.0.1 +Provides: libreport-plugin-bodhi %description plugin-bodhi Search for a new updates in bodhi server. -%endif -%if %{with python3} -%package -n python3-abrt-addon -Summary: %{name}'s addon for catching and analyzing Python 3 exceptions -BuildArch: noarch +%package addon-python +Summary: %{name}'s addon for catching and analyzing Python exceptions +Group: System Environment/Libraries +Requires: python Requires: %{name} = %{version}-%{release} -Requires: python3-systemd -Requires: python3-abrt +Requires: systemd-python +Requires: abrt-python -%description -n python3-abrt-addon +%description addon-python +This package contains python hook and python analyzer plugin for handling +uncaught exception in python programs. + +%package addon-python3 +Summary: %{name}'s addon for catching and analyzing Python 3 exceptions +Group: System Environment/Libraries +Requires: python3 +Requires: %{name} = %{version}-%{release} +Requires: systemd-python3 +Requires: abrt-python3 + +%description addon-python3 This package contains python 3 hook and python analyzer plugin for handling uncaught exception in python 3 programs. -%if %{with container_handler} -%package -n python3-abrt-container-addon -Summary: %{name}'s container addon for catching Python 3 exceptions -BuildArch: noarch -Conflicts: python3-abrt-addon -Requires: container-exception-logger - -%description -n python3-abrt-container-addon -This package contains python 3 hook and handling uncaught exception in python 3 -programs in container. -%endif - -%endif - -%package plugin-machine-id -Summary: %{name}'s plugin to generate machine_id based off dmidecode -Requires: %{name} = %{version}-%{release} - -%description plugin-machine-id -This package contains a configuration snippet to enable automatic generation -of machine_id for abrt events. - %package tui Summary: %{name}'s command line interface -BuildArch: noarch +Group: User Interface/Desktops Requires: %{name} = %{version}-%{release} Requires: libreport-cli >= %{libreport_ver} Requires: abrt-libs = %{version}-%{release} -Requires: abrt-dbus -%if %{with python3} -Requires: python3-abrt -Requires: abrt-addon-ccpp -Requires: python3-argcomplete - -Provides: %{name}-cli-ng = %{version}-%{release} -Obsoletes: %{name}-cli-ng < 2.12.2 -%endif %description tui This package contains a simple command line client for processing abrt reports @@ -349,29 +361,30 @@ in command line environment. %package cli Summary: Virtual package to make easy default installation on non-graphical environments +Group: Applications/System Requires: %{name} = %{version}-%{release} Requires: abrt-tui Requires: abrt-addon-kerneloops Requires: abrt-addon-pstoreoops +%if %{?have_kexec_tools} == 1 Requires: abrt-addon-vmcore +%endif Requires: abrt-addon-ccpp -%if %{with python3} -Requires: python3-abrt-addon -%endif +Requires: abrt-addon-python +Requires: abrt-addon-python3 Requires: abrt-addon-xorg -%if ! 0%{?rhel} -%if %{with bodhi} +%if 0%{?rhel} +Requires: libreport-rhel >= %{libreport_ver} +Requires: libreport-plugin-rhtsupport >= %{libreport_ver} +%else +Requires: abrt-retrace-client Requires: abrt-plugin-bodhi -%endif -%if 0%{!?suse_version:1} Requires: libreport-plugin-bugzilla >= %{libreport_ver} -%endif Requires: libreport-plugin-logger >= %{libreport_ver} Requires: libreport-plugin-ureport >= %{libreport_ver} -%if 0%{?fedora} + Requires: libreport-fedora >= %{libreport_ver} %endif -%endif %description cli Virtual package to install all necessary packages for usage from command line @@ -379,6 +392,7 @@ environment. %package desktop Summary: Virtual package to make easy default installation on desktop environments +Group: User Interface/Desktops # This package gets installed when anything requests bug-buddy - # happens when users upgrade Fn to Fn+1; # or if user just wants "typical desktop installation". @@ -387,30 +401,31 @@ Summary: Virtual package to make easy default installation on desktop environmen Requires: %{name} = %{version}-%{release} Requires: abrt-addon-kerneloops Requires: abrt-addon-pstoreoops +%if %{?have_kexec_tools} == 1 Requires: abrt-addon-vmcore -Requires: abrt-addon-ccpp -%if %{with python3} -Requires: python3-abrt-addon %endif +Requires: abrt-addon-ccpp +Requires: abrt-addon-python +Requires: abrt-addon-python3 Requires: abrt-addon-xorg -Requires: gdb-headless +# Default config of addon-ccpp requires gdb +Requires: gdb >= 7.8.1-31 +Requires: elfutils Requires: abrt-gui Requires: gnome-abrt -%if ! 0%{?rhel} -%if %{with bodhi} +%if 0%{?rhel} +Requires: libreport-rhel >= %{libreport_ver} +Requires: libreport-plugin-rhtsupport >= %{libreport_ver} +%else +Requires: abrt-retrace-client Requires: abrt-plugin-bodhi -%endif -%if 0%{!?suse_version:1} Requires: libreport-plugin-bugzilla >= %{libreport_ver} -%endif Requires: libreport-plugin-logger >= %{libreport_ver} Requires: libreport-plugin-ureport >= %{libreport_ver} -%if 0%{?fedora} Requires: libreport-fedora >= %{libreport_ver} %endif -%endif #Requires: abrt-plugin-firefox -Provides: bug-buddy = %{version}-%{release} +Provides: bug-buddy = 2.28.0 %description desktop Virtual package to install all necessary packages for usage from desktop @@ -418,51 +433,85 @@ environment. %if %{with atomic} %package atomic -Summary: Package to make easy default installation on Atomic hosts. -Requires: %{name}-libs = %{version}-%{release} +Summary: Package to make easy default installation on Atomic hosts +Group: Applications/System +Requires: %{name}-addon-coredump-helper = %{version}-%{release} Conflicts: %{name}-addon-ccpp +%endif %description atomic Package to install all necessary packages for usage from Atomic hosts. -%endif %package dbus Summary: ABRT DBus service +Group: Applications/System Requires: %{name} = %{version}-%{release} +BuildRequires: polkit-devel Requires: abrt-libs = %{version}-%{release} -Requires: dbus-tools %description dbus ABRT DBus service which provides org.freedesktop.problems API on dbus and uses PolicyKit to authorize to access the problem data. -%if %{with python3} -%package -n python3-abrt + +%package python +Summary: ABRT Python API +Group: System Environment/Libraries +Requires: %{name} = %{version}-%{release} +Requires: %{name}-libs = %{version}-%{release} +Requires: %{name}-dbus = %{version}-%{release} +Requires: dbus-python +Requires: libreport-python +BuildRequires: python-nose +BuildRequires: python-sphinx +BuildRequires: libreport-python + +%description python +High-level API for querying, creating and manipulating +problems handled by ABRT in Python. + +%package python-doc +Summary: ABRT Python API Documentation +Group: Documentation +BuildArch: noarch +BuildRequires: python2-devel +Requires: %{name} = %{version}-%{release} +Requires: %{name}-python = %{version}-%{release} + +%description python-doc +Examples and documentation for ABRT Python API. + +%package python3 Summary: ABRT Python 3 API +Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: %{name}-libs = %{version}-%{release} Requires: %{name}-dbus = %{version}-%{release} Requires: python3-dbus -Requires: python3-libreport -Requires: python3-gobject-base +Requires: libreport-python3 +BuildRequires: python3-nose +BuildRequires: python3-sphinx +BuildRequires: libreport-python3 -%description -n python3-abrt +%description python3 High-level API for querying, creating and manipulating problems handled by ABRT in Python 3. -%package -n python3-abrt-doc +%package python3-doc Summary: ABRT Python API Documentation +Group: Documentation BuildArch: noarch +BuildRequires: python3-devel Requires: %{name} = %{version}-%{release} -Requires: python3-%{name} = %{version}-%{release} +Requires: %{name}-python3 = %{version}-%{release} -%description -n python3-abrt-doc +%description python3-doc Examples and documentation for ABRT Python 3 API. -%endif %package console-notification Summary: ABRT console notification script +Group: Applications/System Requires: %{name} = %{version}-%{release} Requires: %{name}-cli = %{version}-%{release} @@ -471,46 +520,36 @@ A small script which prints a count of detected problems when someone logs in to the shell %prep -%global __scm_apply_git(qp:m:) %{__git} am --exclude doc/design --exclude doc/project/abrt.tex -%autosetup -S git -p 0 - -# Create a sysusers.d config file -#uidgid pair 173:173 reserved in setup rhbz#670231 -%global abrt_gid_uid 173 -cat >abrt.sysusers.conf </dev/null || groupadd -f -g %{abrt_gid_uid} --system abrt +getent passwd abrt >/dev/null || useradd --system -g abrt -u %{abrt_gid_uid} -d /etc/abrt -s /sbin/nologin abrt +exit 0 %post # $1 == 1 if install; 2 if upgrade %systemd_post abrtd.service %post addon-ccpp -# migration from 2.14.1.18 -if [ ! -e "%{_localstatedir}/cache/abrt-di/.migration-group-add" ]; then - chmod -R g+w %{_localstatedir}/cache/abrt-di - touch "%{_localstatedir}/cache/abrt-di/.migration-group-add" -fi - +# this is required for transition from 1.1.x to 2.x +# because /cache/abrt-di/* was created under root with root:root +# so 2.x fails when it tries to extract debuginfo there.. +chown -R abrt:abrt %{_localstatedir}/cache/abrt-di +%systemd_post abrt-ccpp.service %systemd_post abrt-journal-core.service -%journal_catalog_update %post addon-kerneloops %systemd_post abrt-oops.service -%journal_catalog_update %post addon-xorg %systemd_post abrt-xorg.service -%journal_catalog_update - -%if %{with python3} -%post -n python3-abrt-addon -%journal_catalog_update -%endif +%if %{?have_kexec_tools} == 1 %post addon-vmcore %systemd_post abrt-vmcore.service -%journal_catalog_update +%endif %post addon-pstoreoops %systemd_post abrt-pstoreoops.service @@ -602,6 +625,7 @@ fi %systemd_preun abrtd.service %preun addon-ccpp +%systemd_preun abrt-ccpp.service %systemd_preun abrt-journal-core.service %preun addon-kerneloops @@ -610,8 +634,10 @@ fi %preun addon-xorg %systemd_preun abrt-xorg.service +%if %{?have_kexec_tools} == 1 %preun addon-vmcore %systemd_preun abrt-vmcore.service +%endif %preun addon-pstoreoops %systemd_preun abrt-pstoreoops.service @@ -623,6 +649,7 @@ fi %systemd_postun_with_restart abrtd.service %postun addon-ccpp +%systemd_postun_with_restart abrt-ccpp.service %systemd_postun_with_restart abrt-journal-core.service %postun addon-kerneloops @@ -631,8 +658,10 @@ fi %postun addon-xorg %systemd_postun_with_restart abrt-xorg.service +%if %{?have_kexec_tools} == 1 %postun addon-vmcore %systemd_postun_with_restart abrt-vmcore.service +%endif %postun addon-pstoreoops %systemd_postun_with_restart abrt-pstoreoops.service @@ -649,17 +678,31 @@ touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : if [ -f /etc/abrt/plugins/CCpp.conf ]; then mv /etc/abrt/plugins/CCpp.conf /etc/abrt/plugins/CCpp.conf.rpmsave.atomic || exit 1; fi +ln -sf /etc/abrt/plugins/CCpp_Atomic.conf /etc/abrt/plugins/CCpp.conf +if [ -f /usr/share/abrt/conf.d/plugins/CCpp.conf ]; then + mv /usr/share/abrt/conf.d/plugins/CCpp.conf /usr/share/abrt/conf.d/plugins/CCpp.conf.rpmsave.atomic || exit 1; +fi +ln -sf /usr/share/abrt/conf.d/plugins/CCpp_Atomic.conf /usr/share/abrt/conf.d/plugins/CCpp.conf +%systemd_post abrt-coredump-helper.service %preun atomic if [ -L /etc/abrt/plugins/CCpp.conf ]; then rm /etc/abrt/plugins/CCpp.conf fi +if [ -L /usr/share/abrt/conf.d/plugins/CCpp.conf ]; then + rm /usr/share/abrt/conf.d/plugins/CCpp.conf +fi if [ -f /etc/abrt/plugins/CCpp.conf.rpmsave.atomic ]; then mv /etc/abrt/plugins/CCpp.conf.rpmsave.atomic /etc/abrt/plugins/CCpp.conf || exit 1 fi +if [ -f /usr/share/abrt/conf.d/plugins/CCpp.conf.rpmsave.atomic ]; then + mv /usr/share/abrt/conf.d/plugins/CCpp.conf.rpmsave.atomic /usr/share/abrt/conf.d/plugins/CCpp.conf || exit 1 +fi + +%postun atomic +%systemd_postun_with_restart abrt-coredump-helper.service %endif -%if 0%{?rhel} && 0%{?rhel} <= 7 %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig @@ -673,27 +716,12 @@ if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &>/dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi -%endif %posttrans -# update the old problem dirs to contain "type" element service abrtd condrestart >/dev/null 2>&1 || : %posttrans addon-ccpp -# Regenerate core_backtraces because of missing crash threads -abrtdir=$(grep "^\s*DumpLocation\b" /etc/abrt/abrt.conf | tail -1 | cut -d'=' -f2 | tr -d ' ') -if test -z "$abrtdir"; then - abrtdir=%{default_dump_dir} -fi -if test -d "$abrtdir"; then - for DD in `find "$abrtdir" -mindepth 1 -maxdepth 1 -type d` - do - if test -f "$DD/analyzer" && grep -q "^CCpp$" "$DD/analyzer"; then - /usr/bin/abrt-action-generate-core-backtrace -d "$DD" -- >/dev/null 2>&1 || : - test -f "$DD/core_backtrace" && chown `stat --format=%U:abrt $DD` "$DD/core_backtrace" || : - fi - done -fi +service abrt-ccpp condrestart >/dev/null 2>&1 || : %posttrans addon-kerneloops service abrt-oops condrestart >/dev/null 2>&1 || : @@ -701,77 +729,101 @@ service abrt-oops condrestart >/dev/null 2>&1 || : %posttrans addon-xorg service abrt-xorg condrestart >/dev/null 2>&1 || : +%if %{?have_kexec_tools} == 1 %posttrans addon-vmcore service abrt-vmcore condrestart >/dev/null 2>&1 || : # Copy the configuration file to plugin's directory test -f /etc/abrt/abrt-harvest-vmcore.conf && { - echo "Moving /etc/abrt/abrt-harvest-vmcore.conf to /etc/abrt/plugins/vmcore.conf" mv -b /etc/abrt/abrt-harvest-vmcore.conf /etc/abrt/plugins/vmcore.conf } exit 0 +%endif %posttrans addon-pstoreoops service abrt-pstoreoops condrestart >/dev/null 2>&1 || : +%posttrans addon-upload-watch +service abrt-upload-watch condrestart >/dev/null 2>&1 || : + +%posttrans gui +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + %posttrans dbus # Force abrt-dbus to restart like we do with the other services killall abrt-dbus >/dev/null 2>&1 || : + %files -f %{name}.lang -%doc README.md COPYING +%defattr(-,root,root,-) +%doc README COPYING +%if %{with systemd} %{_unitdir}/abrtd.service %{_tmpfilesdir}/abrt.conf +%else +%{_initrddir}/abrtd +%endif %{_sbindir}/abrtd %{_sbindir}/abrt-server %{_sbindir}/abrt-auto-reporting %{_libexecdir}/abrt-handle-event %{_libexecdir}/abrt-action-ureport -%{_libexecdir}/abrt-action-save-container-data +%{_libexecdir}/abrt-action-generate-machine-id %{_bindir}/abrt-handle-upload %{_bindir}/abrt-action-notify -%{_mandir}/man1/abrt-action-notify.1* +%{_mandir}/man1/abrt-action-notify.1.gz %{_bindir}/abrt-action-save-package-data +%{_bindir}/abrt-action-save-container-data %{_bindir}/abrt-watch-log %{_bindir}/abrt-action-analyze-python %{_bindir}/abrt-action-analyze-xorg %config(noreplace) %{_sysconfdir}/dbus-1/system.d/org.freedesktop.problems.daemon.conf -%config(noreplace) %{_sysconfdir}/%{name}/abrt.conf %config(noreplace) %{_sysconfdir}/%{name}/abrt-action-save-package-data.conf +%{_datadir}/%{name}/conf.d/abrt-action-save-package-data.conf +%config(noreplace) %{_sysconfdir}/%{name}/plugins/xorg.conf +%{_datadir}/%{name}/conf.d/plugins/xorg.conf +%{_mandir}/man5/abrt-xorg.conf.5.gz %config(noreplace) %{_sysconfdir}/%{name}/gpg_keys.conf +%{_datadir}/%{name}/conf.d/gpg_keys.conf +%{_mandir}/man5/gpg_keys.conf.5.gz %config(noreplace) %{_sysconfdir}/libreport/events.d/abrt_event.conf -%{_mandir}/man5/abrt_event.conf.5* +%{_mandir}/man5/abrt_event.conf.5.gz %config(noreplace) %{_sysconfdir}/libreport/events.d/smart_event.conf -%{_mandir}/man5/smart_event.conf.5* -%dir %attr(0751, root, abrt) %{default_dump_dir} +%{_mandir}/man5/smart_event.conf.5.gz +%dir %attr(0751, root, abrt) %{_localstatedir}/spool/%{name} %dir %attr(0700, abrt, abrt) %{_localstatedir}/spool/%{name}-upload # abrtd runs as root -%ghost %dir %attr(0755, root, root) %{_localstatedir}/run/%{name} +%dir %attr(0755, root, root) %{_localstatedir}/run/%{name} %ghost %attr(0666, -, -) %{_localstatedir}/run/%{name}/abrt.socket %ghost %attr(0644, -, -) %{_localstatedir}/run/%{name}/abrtd.pid -%{_mandir}/man1/abrt-handle-upload.1* -%{_mandir}/man1/abrt-server.1* -%{_mandir}/man1/abrt-action-save-package-data.1* -%{_mandir}/man1/abrt-watch-log.1* +%{_mandir}/man1/abrt-handle-upload.1.gz +%{_mandir}/man1/abrt-server.1.gz +%{_mandir}/man1/abrt-action-save-package-data.1.gz +%{_mandir}/man1/abrt-watch-log.1.gz %{_mandir}/man1/abrt-action-analyze-python.1* -%{_mandir}/man1/abrt-action-analyze-xorg.1* -%{_mandir}/man1/abrt-auto-reporting.1* -%{_mandir}/man5/abrt.conf.5* -%{_mandir}/man5/abrt-action-save-package-data.conf.5* -%{_mandir}/man5/gpg_keys.conf.5* -%{_mandir}/man8/abrtd.8* -%{_sysusersdir}/abrt.conf +%{_mandir}/man1/abrt-action-analyze-xorg.1.gz +%{_mandir}/man1/abrt-auto-reporting.1.gz +%{_mandir}/man8/abrtd.8.gz +%{_mandir}/man5/abrt-action-save-package-data.conf.5.gz +# {_mandir}/man5/pyhook.conf.5.gz %files libs +%defattr(-,root,root,-) %{_libdir}/libabrt.so.* +%config(noreplace) %{_sysconfdir}/%{name}/abrt.conf +%{_datadir}/%{name}/conf.d/abrt.conf +%{_mandir}/man5/abrt.conf.5.gz %dir %{_sysconfdir}/%{name} %dir %{_sysconfdir}/%{name}/plugins %dir %{_datadir}/%{name} +%dir %{_datadir}/%{name}/conf.d +%dir %{_datadir}/%{name}/conf.d/plugins # filesystem package should own /usr/share/augeas/lenses directory %{_datadir}/augeas/lenses/abrt.aug %files devel +%defattr(-,root,root,-) # The complex pattern below (instead of simlpy *) excludes Makefile{.am,.in}: %doc apidoc/html/*.{html,png,css,js} %{_includedir}/abrt/abrt-dbus.h @@ -782,55 +834,73 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_libdir}/pkgconfig/abrt.pc %files gui-libs +%defattr(-,root,root,-) %{_libdir}/libabrt_gui.so.* %files gui-devel +%defattr(-,root,root,-) %{_includedir}/abrt/abrt-config-widget.h %{_includedir}/abrt/system-config-abrt.h %{_libdir}/libabrt_gui.so %{_libdir}/pkgconfig/abrt_gui.pc %files gui +%defattr(-,root,root,-) %dir %{_datadir}/%{name} # all glade, gtkbuilder and py files for gui %{_datadir}/icons/hicolor/*/apps/* +%{_datadir}/icons/hicolor/*/status/* +%{_datadir}/%{name}/icons/hicolor/*/status/* %{_datadir}/%{name}/ui/* %{_bindir}/abrt-applet %{_bindir}/system-config-abrt #%%{_bindir}/test-report -%{_datadir}/applications/org.freedesktop.problems.applet.desktop -%config(noreplace) %{_sysconfdir}/xdg/autostart/org.freedesktop.problems.applet.desktop -%{_datadir}/dbus-1/services/org.freedesktop.problems.applet.service +%{_datadir}/applications/abrt-applet.desktop +%config(noreplace) %{_sysconfdir}/xdg/autostart/abrt-applet.desktop %{_mandir}/man1/abrt-applet.1* %{_mandir}/man1/system-config-abrt.1* +%files addon-coredump-helper +%defattr(-,root,root,-) +%{_libexecdir}/abrt-hook-ccpp +%{_sbindir}/abrt-install-ccpp-hook +%{_mandir}/man*/abrt-install-ccpp-hook.* + %files addon-ccpp +%defattr(-,root,root,-) %dir %attr(0775, abrt, abrt) %{_localstatedir}/cache/abrt-di %config(noreplace) %{_sysconfdir}/%{name}/plugins/CCpp.conf -%{_mandir}/man5/abrt-CCpp.conf.5* +%{_datadir}/%{name}/conf.d/plugins/CCpp.conf +%{_mandir}/man5/abrt-CCpp.conf.5.gz %{_libexecdir}/abrt-gdb-exploitable -%{_libexecdir}/abrt-action-coredump -%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_journal_ccpp_format.conf +%if %{with systemd} +%{_unitdir}/abrt-ccpp.service %{_unitdir}/abrt-journal-core.service -%{_journalcatalogdir}/abrt_ccpp.catalog +%else +%{_initrddir}/abrt-ccpp +%endif -%dir %{_localstatedir}/lib/abrt +# attr(6755) ~= SETUID|SETGID +%attr(6755, abrt, abrt) %{_libexecdir}/abrt-action-install-debuginfo-to-abrt-cache %{_bindir}/abrt-action-analyze-c %{_bindir}/abrt-action-trim-files +%{_bindir}/abrt-action-analyze-core %{_bindir}/abrt-action-analyze-vulnerability +%{_bindir}/abrt-action-install-debuginfo %{_bindir}/abrt-action-generate-backtrace %{_bindir}/abrt-action-generate-core-backtrace %{_bindir}/abrt-action-analyze-backtrace %{_bindir}/abrt-action-list-dsos +%{_bindir}/abrt-action-perform-ccpp-analysis %{_bindir}/abrt-action-analyze-ccpp-local %{_bindir}/abrt-dump-journal-core %config(noreplace) %{_sysconfdir}/libreport/events.d/ccpp_event.conf -%{_mandir}/man5/ccpp_event.conf.5* +%{_mandir}/man5/ccpp_event.conf.5.gz %config(noreplace) %{_sysconfdir}/libreport/events.d/gconf_event.conf -%{_mandir}/man5/gconf_event.conf.5* +%{_mandir}/man5/gconf_event.conf.5.gz %config(noreplace) %{_sysconfdir}/libreport/events.d/vimrc_event.conf -%{_mandir}/man5/vimrc_event.conf.5* +%{_mandir}/man5/vimrc_event.conf.5.gz %{_datadir}/libreport/events/analyze_CCpp.xml %{_datadir}/libreport/events/analyze_LocalGDB.xml %{_datadir}/libreport/events/collect_xsession_errors.xml @@ -844,1208 +914,1952 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man*/abrt-action-generate-core-backtrace.* %{_mandir}/man*/abrt-action-analyze-backtrace.* %{_mandir}/man*/abrt-action-list-dsos.* +%{_mandir}/man*/abrt-action-install-debuginfo.* %{_mandir}/man*/abrt-action-analyze-ccpp-local.* +%{_mandir}/man*/abrt-action-analyze-core.* %{_mandir}/man*/abrt-action-analyze-vulnerability.* -%{_mandir}/man1/abrt-dump-journal-core.1* +%{_mandir}/man*/abrt-action-perform-ccpp-analysis.* +%{_mandir}/man*/abrt-dump-journal-core.* %files addon-upload-watch +%defattr(-,root,root,-) %{_sbindir}/abrt-upload-watch +%if %{with systemd} %{_unitdir}/abrt-upload-watch.service +%else +%{_initrddir}/abrt-upload-watch +%endif %{_mandir}/man*/abrt-upload-watch.* +%files retrace-client +%{_bindir}/abrt-retrace-client +%{_mandir}/man1/abrt-retrace-client.1.gz +%config(noreplace) %{_sysconfdir}/libreport/events.d/ccpp_retrace_event.conf +%{_mandir}/man5/ccpp_retrace_event.conf.5.gz +%{_datadir}/libreport/events/analyze_RetraceServer.xml + %files addon-kerneloops +%defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/libreport/events.d/koops_event.conf -%{_journalcatalogdir}/abrt_koops.catalog -%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_koops_format.conf -%{_mandir}/man5/koops_event.conf.5* +%{_mandir}/man5/koops_event.conf.5.gz %config(noreplace) %{_sysconfdir}/%{name}/plugins/oops.conf +%{_datadir}/%{name}/conf.d/plugins/oops.conf +%if %{with systemd} %{_unitdir}/abrt-oops.service +%else +%{_initrddir}/abrt-oops +%endif %dir %{_localstatedir}/lib/abrt %{_bindir}/abrt-dump-oops %{_bindir}/abrt-dump-journal-oops %{_bindir}/abrt-action-analyze-oops +%{_bindir}/abrt-action-save-kernel-data %{_mandir}/man1/abrt-dump-oops.1* %{_mandir}/man1/abrt-dump-journal-oops.1* %{_mandir}/man1/abrt-action-analyze-oops.1* +%{_mandir}/man1/abrt-action-save-kernel-data.1* %{_mandir}/man5/abrt-oops.conf.5* %files addon-xorg +%defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/libreport/events.d/xorg_event.conf -%{_journalcatalogdir}/abrt_xorg.catalog -%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_xorg_format.conf -%config(noreplace) %{_sysconfdir}/%{name}/plugins/xorg.conf +%{_mandir}/man5/xorg_event.conf.5.gz +%if %{with systemd} %{_unitdir}/abrt-xorg.service +%else +%{_initrddir}/abrt-xorg +%endif %{_bindir}/abrt-dump-xorg -%{_bindir}/abrt-dump-journal-xorg %{_mandir}/man1/abrt-dump-xorg.1* -%{_mandir}/man1/abrt-dump-journal-xorg.1* -%{_mandir}/man5/abrt-xorg.conf.5* -%{_mandir}/man5/xorg_event.conf.5* +%if %{?have_kexec_tools} == 1 %files addon-vmcore +%defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/libreport/events.d/vmcore_event.conf -%{_mandir}/man5/vmcore_event.conf.5* +%{_mandir}/man5/vmcore_event.conf.5.gz %config(noreplace) %{_sysconfdir}/%{name}/plugins/vmcore.conf +%{_datadir}/%{name}/conf.d/plugins/vmcore.conf %{_datadir}/libreport/events/analyze_VMcore.xml +%if %{with systemd} %{_unitdir}/abrt-vmcore.service +%else +%{_initrddir}/abrt-vmcore +%endif %{_sbindir}/abrt-harvest-vmcore %{_bindir}/abrt-action-analyze-vmcore -%{_bindir}/abrt-action-check-oops-for-alt-component %{_bindir}/abrt-action-check-oops-for-hw-error +%{_bindir}/abrt-action-check-oops-for-alt-component %{_mandir}/man1/abrt-harvest-vmcore.1* %{_mandir}/man5/abrt-vmcore.conf.5* %{_mandir}/man1/abrt-action-analyze-vmcore.1* %{_mandir}/man1/abrt-action-check-oops-for-hw-error.1* -%{_journalcatalogdir}/abrt_vmcore.catalog -%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_vmcore_format.conf +%endif %files addon-pstoreoops +%defattr(-,root,root,-) +%if %{with systemd} %{_unitdir}/abrt-pstoreoops.service +%else +%{_initrddir}/abrt-pstoreoops +%endif %{_sbindir}/abrt-harvest-pstoreoops %{_bindir}/abrt-merge-pstoreoops %{_mandir}/man1/abrt-harvest-pstoreoops.1* %{_mandir}/man1/abrt-merge-pstoreoops.1* -%if %{with python3} -%files -n python3-abrt-addon +%files addon-python +%defattr(-,root,root,-) +%config(noreplace) %{_sysconfdir}/%{name}/plugins/python.conf +%{_datadir}/%{name}/conf.d/plugins/python.conf +%{_mandir}/man5/abrt-python.conf.5.gz +# TODO? Do we need %%config(noreplace) in the below line too? +%config(noreplace) %{_sysconfdir}/libreport/events.d/python_event.conf +%{_mandir}/man5/python_event.conf.5.gz +%{python_sitearch}/abrt*.py* +%{python_sitearch}/abrt.pth + +%files addon-python3 +%defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/%{name}/plugins/python3.conf -%{_mandir}/man5/python3-abrt.conf.5* +%{_datadir}/%{name}/conf.d/plugins/python3.conf +%{_mandir}/man5/abrt-python3.conf.5.gz %config(noreplace) %{_sysconfdir}/libreport/events.d/python3_event.conf -%{_journalcatalogdir}/python3_abrt.catalog -%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_python3_format.conf -%{_mandir}/man5/python3_event.conf.5* -%{python3_sitelib}/abrt3.pth -%{python3_sitelib}/abrt_exception_handler3.py -%{python3_sitelib}/__pycache__/abrt_exception_handler3.* - -%if %{with container_handler} -%files -n python3-abrt-container-addon -%{python3_sitelib}/abrt3_container.pth -%{python3_sitelib}/abrt_exception_handler3_container.py -%{python3_sitelib}/__pycache__/abrt_exception_handler3_container.* -%endif - -%endif - -%files plugin-machine-id -%config(noreplace) %{_sysconfdir}/libreport/events.d/machine-id_event.conf -%{_libexecdir}/abrt-action-generate-machine-id +%{_mandir}/man5/python3_event.conf.5.gz +%{python3_sitearch}/abrt* +%{python3_sitearch}/__pycache__/abrt* %files cli +%defattr(-,root,root,-) %files tui -%if %{with python3} -%{_bindir}/abrt +%defattr(-,root,root,-) %{_bindir}/abrt-cli -%{python3_sitelib}/abrtcli/ -%{_mandir}/man1/abrt.1* -%{_mandir}/man1/abrt-cli.1* -%endif +%{_mandir}/man1/abrt-cli.1.gz %files desktop +%defattr(-,root,root,-) %if %{with atomic} %files atomic +%defattr(-,root,root,-) +%config(noreplace) %{_sysconfdir}/%{name}/plugins/CCpp_Atomic.conf +%{_unitdir}/abrt-coredump-helper.service +%{_datadir}/%{name}/conf.d/plugins/CCpp_Atomic.conf %config(noreplace) %{_sysconfdir}/%{name}/abrt-action-save-package-data.conf %{_bindir}/abrt-action-save-package-data -%{_mandir}/man1/abrt-action-save-package-data.1* -%{_mandir}/man5/abrt-action-save-package-data.conf.5* +%{_mandir}/man1/abrt-action-save-package-data.1.gz +%{_mandir}/man5/abrt-action-save-package-data.conf.5.gz %endif -%if %{with bodhi} %files plugin-bodhi +%defattr(-,root,root,-) %{_bindir}/abrt-bodhi -%{_bindir}/abrt-action-find-bodhi-update -%config(noreplace) %{_sysconfdir}/libreport/events.d/bodhi_event.conf -%{_datadir}/libreport/events/analyze_BodhiUpdates.xml -%{_mandir}/man1/abrt-bodhi.1* -%{_mandir}/man1/abrt-action-find-bodhi-update.1* -%endif +%{_mandir}/man1/abrt-bodhi.1.gz %files dbus +%defattr(-,root,root,-) %{_sbindir}/abrt-dbus -%{_mandir}/man8/abrt-dbus.8* +%{_sbindir}/abrt-configuration +%{_mandir}/man8/abrt-dbus.8.gz +%{_mandir}/man8/abrt-configuration.8.gz %config(noreplace) %{_sysconfdir}/dbus-1/system.d/dbus-abrt.conf -%{_datadir}/dbus-1/interfaces/org.freedesktop.Problems2.xml -%{_datadir}/dbus-1/interfaces/org.freedesktop.Problems2.Entry.xml -%{_datadir}/dbus-1/interfaces/org.freedesktop.Problems2.Session.xml -%{_datadir}/dbus-1/interfaces/org.freedesktop.Problems2.Task.xml +%{_datadir}/dbus-1/interfaces/org.freedesktop.Problems.xml +%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.xml +%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.abrt.xml +%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.ccpp.xml +%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.oops.xml +%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.python.xml +%if %{?have_kexec_tools} == 1 +%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.vmcore.xml +%endif +%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.xorg.xml %{_datadir}/dbus-1/system-services/org.freedesktop.problems.service +%{_datadir}/dbus-1/system-services/com.redhat.problems.configuration.service %{_datadir}/polkit-1/actions/abrt_polkit.policy %dir %{_defaultdocdir}/%{name}-dbus%{docdirversion}/ %dir %{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/ %{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/*.html %{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/*.css -%config(noreplace) %{_sysconfdir}/libreport/events.d/abrt_dbus_event.conf -%if %{with python3} -%files -n python3-abrt +%files python +%{python_sitearch}/problem/ +%{_mandir}/man5/abrt-python.5.gz + +%files python-doc +%{python_sitelib}/problem_examples + +%files python3 %{python3_sitearch}/problem/ -%{_mandir}/man5/python3-abrt.5* +%{_mandir}/man5/abrt-python3.5.gz -%files -n python3-abrt-doc +%files python3-doc %{python3_sitelib}/problem_examples -%endif %files console-notification %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog -* Fri Jan 16 2026 Fedora Release Engineering - 2.17.8-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild - -* Thu Dec 04 2025 Michal Srb - 2.17.8-1 -- a-a-save-container-data: validate input -- Resolves: CVE-2025-12744 - -* Thu Oct 02 2025 Michal Srb - 2.17.7-1 -- Update to upstream release 2.17.7 -- Fix reading gpg keys with RPM 6.0.0 (rhbz#2396899) - -* Fri Sep 19 2025 Python Maint - 2.17.6-10 -- Rebuilt for Python 3.14.0rc3 bytecode - -* Fri Aug 15 2025 Python Maint - 2.17.6-9 -- Rebuilt for Python 3.14.0rc2 bytecode - -* Fri Aug 01 2025 Adam Williamson - 2.17.6-8 -- Obsolete fros packages - -* Wed Jul 23 2025 Fedora Release Engineering - 2.17.6-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild - -* Tue Jun 03 2025 Python Maint - 2.17.6-6 -- Rebuilt for Python 3.14 - -* Thu Jan 23 2025 Zbigniew Jędrzejewski-Szmek - 2.17.6-5 -- Add sysusers.d config file to allow rpm to create users/groups automatically - -* Thu Jan 16 2025 Fedora Release Engineering - 2.17.6-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild - -* Wed Nov 20 2024 David Abdurachmanov - 2.17.6-3 -- Disable Requires for kexec-tools on riscv64 (not supported) - -* Wed Sep 11 2024 Neal Gompa - 2.17.6-2 -- Drop container handler (rhbz#2295150) - -* Sun Sep 01 2024 Michal Srb - 2.17.6-1 -- Update to upstream release 2.17.6 -- Fix reading signature information from RPM headers (rhbz#2307278) - -* Wed Jul 17 2024 Fedora Release Engineering - 2.17.5-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild - -* Sun Jun 09 2024 Python Maint - 2.17.5-2 -- Rebuilt for Python 3.13 - -* Mon Feb 19 2024 Michal Srb - 2.17.5-1 -- Update to upstream release 2.17.5 - -* Mon Feb 12 2024 Michal Srb - 2.17.4-1 -- Update to upstream release 2.17.4 - -* Sun Feb 04 2024 Michal Srb - 2.17.2-1 -- Update to upstream release 2.17.2 - -* Mon Jan 22 2024 Fedora Release Engineering - 2.17.1-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Fri Jan 19 2024 Fedora Release Engineering - 2.17.1-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Wed Jul 19 2023 Fedora Release Engineering - 2.17.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Sat Jul 01 2023 Python Maint - 2.17.1-2 -- Rebuilt for Python 3.12 - -* Fri Jun 30 2023 Michal Srb - 2.17.1-1 -- Update to upstream release 2.17.1 - -* Wed Jun 28 2023 Python Maint - 2.17.0-2 -- Rebuilt for Python 3.12 - -* Mon May 22 2023 Matěj Grabovský - 2.17.0-1 -- Update to upstream release 2.17.0 -- Bump rpm-devel dependency to 4.18 - -* Thu Mar 30 2023 Michal Srb - 2.16.1-1 -- Update to upstream release 2.16.1 - -* Wed Jan 18 2023 Fedora Release Engineering - 2.16.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Mon Oct 24 2022 Michal Srb - 2.16.0-1 -- Update to upstream release 2.16.0 - -* Wed Oct 19 2022 Michal Srb - 2.15.1-6 -- abrt-journal: First seek the journal tail and then set filters -- Resolves: rhbz#2128662 - -* Wed Oct 12 2022 Michal Srb - 2.15.1-5 -- abrt-journal: call sd_journal_get_fd() right after sd_journal_open() -- Resolves: rhbz#2128662 - -* Wed Jul 20 2022 Fedora Release Engineering - 2.15.1-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Thu Jun 16 2022 Michal Srb - 2.15.1-3 -- Fix FTBFS -- Resolves: rhbz#2093924 - -* Wed Jun 15 2022 Python Maint - 2.15.1-2 -- Rebuilt for Python 3.11 - -* Thu Mar 10 2022 Michal Srb - 2.15.1-1 -- Update to 2.15.1 - -* Wed Jan 19 2022 Fedora Release Engineering - 2.15.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Wed Jan 19 2022 Matěj Grabovský - 2.15.0-2 -- Rebuild for testing - -* Mon Jan 17 2022 Matěj Grabovský - 2.15.0-1 -- Bump abrt library version to 1:0:1 -- cli: Fix path and glob matching for abrt info etc. -- abrt-dump-oops: Fix vmcore call trace parsing -- Use lazy imports in abrt_exception_handler3 -- Don't copy coredump to problem dir -- Detect Python 3.10 and Perl correctly in abrt-action-save-package-data -- Fix calls to deprecated methods in tests -- Update translations - -* Wed Jan 12 2022 Miro Hrončok - 2.14.6-11 -- Make abrt-tui and python3-abrt-container-addon noarch as they contain no architecture-specific content -- Ensure Python bytecode in noarch subpackages is reproducible - -* Thu Jan 06 2022 Matěj Grabovský - 2.14.6-10 -- Bump release for rebuild - -* Wed Dec 22 2021 Matěj Grabovský - 2.14.6-9 -- Rebuild for satyr 0.39 - -* Mon Sep 27 2021 Matěj Grabovský - 2.14.6-8 -- Use lazy import in the Python exception handler to avoid slowdown in Python - startup (rhbz#2007664) - -* Wed Jul 21 2021 Fedora Release Engineering - 2.14.6-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Sat Jul 10 2021 Björn Esser - 2.14.6-6 -- Rebuild for versioned symbols in json-c - -* Mon Jun 07 2021 Python Maint - 2.14.6-5 -- Rebuilt for Python 3.10 - -* Fri Jun 04 2021 Python Maint - 2.14.6-3 -- Rebuilt for Python 3.10 - -* Tue May 25 2021 Michal Fabik - 2.14.6-1 -- Add support of master + subkeys gpg. -- hooks: Remove stale workaround for a fixed bug -- cli: Gracefully handle disappearance of problem directory -- libs: Add version info script -- retrace-client: Output task ID to console in batch mode -- retrace-client: Separate commands by commas -- Doc: Improve man page for abrt-action-analyze-vulnerability -- Various memory management and other fixes - -* Fri Apr 30 2021 Sérgio Basto - 2.14.5-4 -- Obsoletes abrt-plugin-sosreport, to fix upgrade path - -* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek - 2.14.5-3 -- Rebuilt for updated systemd-rpm-macros - See https://pagure.io/fesco/issue/2583. - -* Mon Jan 25 2021 Fedora Release Engineering - 2.14.5-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Tue Dec 01 2020 Michal Fabik 2.14.5-1 -- Fix invalid free (rhbz#1895660) -- Fix crash during local processing (rhbz#1881745) -- Fix reported numbers of missing debuginfo packages in abrt-action-install-debuginfo -- Correct the format of NEVRA generated for packages where a problem occurred (rhbz#1900982) -- Drop --raw flag in abrt-action-generate-core-backtrace - -* Tue Oct 13 2020 Matěj Grabovský - 2.14.4-3 -- Add upstream patch for an invalid read bug - -* Thu Sep 24 2020 Matěj Grabovský - 2.14.4-2 -- Add fix for https://bugzilla.redhat.com/show_bug.cgi?id=1881745 - -* Mon Aug 17 2020 Michal Fabik - 2.14.4-1 -- Fix broken release 2.14.3 -- oops-utils: Respect the 'world-readable' flag -- Decommission libreport_list_free_with_free - -* Thu Aug 13 2020 Michal Fabik - 2.14.3-1 -- plugins: abrt-dump-journal-core: Handle zstd compression -- applet: application: Use GLib for logging -- Replace various utility functions with stock GLib ones -- Various coding style improvements -- Update documentation -- applet: application: Fix crash when processing deferred problems -- dbus: Remove session objects when owner disconnects -- python-problem: Use org.freedesktop.Problems2 API -- abrt-console-notification: Work around noclobber -- daemon: rpm: Use NEVRA instead of ENVRA -- abrtd: Don't delete new problem dirs -- Make sure that former caches are group writable -- Various memory management fixes - -* Thu Aug 13 2020 Adam Williamson - 2.14.2-6 -- Rebuild for libreport soname bump - -* Tue Jul 28 2020 - Ernestas Kulik - 2.14.2-5 -- Add patch for https://bugzilla.redhat.com/show_bug.cgi?id=1860903 - -* Mon Jul 27 2020 Fedora Release Engineering - 2.14.2-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Sun May 24 2020 Miro Hrončok - 2.14.2-3 -- Rebuilt for Python 3.9 - -* Thu May 21 2020 Ernestas Kulik - 2.14.2-2 -- Add fix for https://bugzilla.redhat.com/show_bug.cgi?id=1836190 - -* Tue May 12 2020 Michal Fabik - 2.14.2-1 -- Fix broken builds with --enable-authenticated-autoreporting - -* Fri Apr 24 2020 Michal Fabik - 2.14.1-1 -- tests: Add perl, php R and tcl to dont-blame-interpret -- a-a-save-package-data: Add R and tcl to interpreted langs -- a-a-save-package-data: Use regexps to match interpreters -- .travis.yml: Update secret -- plugins: xorg-utils: Loopify parsing -- Add namespace to libreport function and global names -- cli: Correct debug directories in config -- cli: Show defaults in help output -- cli: Fix verbosity option -- cli: Fix descriptions for --since and --until -- autogen.sh: Handle NOCONFIGURE per the Build API -- plugins: journal: Fix ci_mapping being overwritten -- plugins: abrt-journal-core: Don’t assume anything about uid_t -- lib,plugins: Accomodate for multiple debug directories -- dbus: Drop bogus dependency -- dbus: Drop abrt_problems2 -- Drop libcap dependency -- Drop Travis config - -* Tue Apr 21 2020 Björn Esser - 2.14.0-3 -- Rebuild (json-c) - -* Fri Feb 07 2020 Ernestas Kulik - 2.14.0-2 -- Bump libreport dependency - -* Fri Feb 07 2020 Ernestas Kulik - 2.14.0-1 -- Update to 2.14.0 - -* Fri Feb 07 2020 Igor Raits - 2.13.0-5 -- Rebuild for satyr 0.30 - -* Fri Jan 31 2020 Martin Kutlak - 2.13.0-4 -- Add patch to fix build failure with gcc -fno-common -- Initialize bodhi karma values with defaults -- Fix possibly uninitialized variable -- Resolves: #1795820 - -* Tue Jan 28 2020 Fedora Release Engineering - 2.13.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Tue Jan 14 2020 - Ernestas Kulik - 2.13.0-2 -- Drop systemd scriptlets for abrt-ccpp.service - -* Fri Oct 11 2019 Matěj Grabovský 2.13.0-1 -- cli: Use format argument in info command -- cli: Make pretty and format mutually exclusive -- cli: Set PYTHONPATH for tests -- cli: Rework commands -- Remove abrt-hook-ccpp -- spec: Use macros where appropriate -- tests: Use Augeas consistently -- spec: Move config files to corresponding subpackages -- build,spec: Empty config files in /etc/abrt/ -- doc: Update man pages and comments in config files -- plugins: Update in-code defaults -- doc: Correct alignment of heading underlines -- a-dump-journal-core: Purge commented code -- dbus: Remove D-Bus configuration service -- Partly revert removal of default configs -- cli: Tweak problem matching -- plugins: Add satyr flags when building -- cli: Fix warning -- cli: Fix file name -- cli: Use decorator for MATCH positional argument -- cli: match: Iterate dict instead of calling keys() -- cli: Make pylint happier about imports -- cli: Drop unused variables -- cli: utils: Use consistent return -- cli: Improve i18n -- cli: Drop humanize import -- Drop uses of bind_textdomain_codeset() -- gitignore: Update path to generated file after cli-ng move -- tests: runner: Use systemctl instead of service -- autogen.sh: Use autoreconf - -* Thu Oct 03 2019 Miro Hrončok - 2.12.2-3 -- Rebuilt for Python 3.8.0rc1 (#1748018) - -* Sat Aug 17 2019 Miro Hrončok - 2.12.2-2 -- Rebuilt for Python 3.8 - -* Thu Aug 01 2019 Ernestas Kulik 2.12.2-1 -- Remove old CLI and move cli-ng subpackage files into tui subpackage - -* Wed Jul 24 2019 Fedora Release Engineering - 2.12.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Fri Jul 12 2019 Martin Kutlak 2.12.1-2 -- Add patch to fix failing action abrt-action-list-dsos on rawhide - -* Wed Jul 03 2019 Martin Kutlak 2.12.1-1 -- Translation updates -- Rename all abrt-python to python3-abrt -- spec: Get rid of python provides -- hooks: abrt-hook-ccpp: Rename CreateCoreBacktrace setting -- Update icon -- non-fatal-mce: prepare oops1.test from template before using it -- meaningful-logs: check relative counts of lines instead of absolute -- oops-processing: fixed oops1.test handling. reworked so each oops has its own phase -- dumpoops: make sure hostname matches in oops_full_hostname.test -- Revert "applet: Add systemd service unit" -- a-a-analyze-c: Fix segfault when saving function name -- Fix grammar in implementation docs -- doc: Update man pages and mention locations of config files -- augeas,build,spec: Remove references to default configs -- daemon,lib: Update default config according to abrt.conf -- plugins: abrt-action-install-debuginfo: Replace uses of exit() -- plugins: abrt-action-install-debuginfo: Catch BrokenPipeError -- plugins: abrt-action-install-debuginfo: Remove unused imports -- daemon: Check return value after reading from channel -- spec: Require dbus-tools -- daemon: Don't process crashes from unpackaged apps by default -- plugins: abrt-action-install-debuginfo: Remove duplicate code -- plugins: abrt-action-install-debuginfo: Remove variable -- plugins: abrt-action-install-debuginfo: Remove comment -- plugins: abrt-action-install-debuginfo: Remove dead assignment -- doc: Fix spelling mistake in path to cache -- doc: Update man page for abrt-handle-upload -- doc: Update man page and help for a-a-install-debuginfo -- Nuke Python 2 support -- plugins: Catch unhandled exception in a-a-g-machine-id -- plugins: retrace-client: Bail out if we can’t get a config -- plugins: retrace-client: Default to HTTPS in RETRACE_SERVER_URI -- plugins: analyze_RetraceServer: Fix default RETRACE_SERVER_URI -- plugins: Fix name of env variable for retrace server -- configure.ac: Add dependency on libcap -- dbus: entry: Don’t claim truncation when there was none -- applet: Add systemd service unit -- spec: Remove obsolete scriptlets -- Makefile.am: Use correct locale when getting date - -* Mon Jun 10 22:13:16 CET 2019 Igor Gnatenko - 2.12.0-4 -- Rebuild for RPM 4.15 - -* Mon Jun 10 15:41:59 CET 2019 Igor Gnatenko - 2.12.0-3 -- Rebuild for RPM 4.15 - -* Tue Feb 5 2019 Ernestas Kulik - 2.12.0-2 -- Bump glib and libreport dependencies - -* Mon Feb 4 2019 Ernestas Kulik - 2.12.0-1 -- Update to 2.12.0 - -* Thu Jan 31 2019 Fedora Release Engineering - 2.11.1-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Sun Jan 27 2019 Igor Gnatenko - 2.11.1-4 -- Remove obsolete scriptlets - -* Tue Jan 08 2019 Matej Marusak 2.11.1-2 -- dbus: task: Use modern GLib type macros - -* Tue Jan 08 2019 Matej Marusak 2.11.1-1 -- Translation updates -- a-a-install-debuginfo: Clean cache if we need space -- shellcheck: Use command instead of type -- shellcheck: Check exit code directly with if mycmd -- shellcheck: Suppress shellcheck warning SC1090 -- shellcheck: Use $(...) instead of legacy backticked -- cli: Add a shebang -- applet: Port to GApplication/GNotification -- spec: Add explicit package-version requirement of abrt-libs -- Introduce pylintrc -- augeas: Adjust testsuite to changes in libreport -- signal_is_fatal: generate problem reports for SIGSYS -- plugins: retrace-client: Port to libsoup -- plugins: retrace-client: Fix copy-paste error -- revert: spec: disable addon-vmcore on aarch64 -- spec: turn on --enable-native-unwinder aarch64 -- configure: Replace sphinx-build check with sphinx-build-3 -- a-a-c-o-f-hw-error: Check systemd-journal for MCE logs -- koops: Filter kernel oopses based on logged hostname -- add hostname BR for tests -- add new prepare-data to dist files -- fix tests names for dist target after making templates from them -- fix for MCE events: Bug 1613182 - abrt-cli ignores rsyslog host info and incorrectly assumes that the receiving host had a problem -- dbus: Add configuration for Python3 -- Add . to etc - -* Mon Oct 08 2018 Martin Kutlak 2.11.0-1 -- Translation updates -- plugins: Allow abrt-retrace-client to be optional at build time -- daemon: Fix double closed fd race condition -- sosreport: plugin "general" split into two new plugins -- plugins: Replace vfork with posix_spawn -- gui-config: Remove deprecated GTK functions -- abrtd.service: force abrt-dbus to load changes from conf -- spec: Build python*-abrt-addon packages as noarch -- spec: remove duplicated python3-devel -- spec: set PYTHON variable because of ./py-compile - -* Sat Sep 15 2018 Adam Williamson - 2.10.10-5 -- Backport fix for RHBZ #1629408 (failed gdb backtrace generation) -- Backport fix for deprecated function use (broke build) -- Backport fix for argument error in harvest_vmcore -- Backport fix for missing parameter translations in abrt-hook-ccpp - -* Thu Jul 12 2018 Fedora Release Engineering - 2.10.10-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Mon Jun 18 2018 Miro Hrončok - 2.10.10-3 -- Rebuilt for Python 3.7 - -* Fri Jun 08 2018 Miro Hrončok - 2.10.10-2 -- Set PYTHON to python3 during install to avoid ambiguous python invocation (#1589314) - -* Thu May 31 2018 Matej Marusak 2.10.10-1 -- Translation updates -- Changelog: Update changelog -- Remove dependency on deprecated nss-pem -- spec: abrt do not require python2 -- spec: abrt-addon-ccpp do not require python2 -- spec: drop python2-abrt-addon requires -- spec: fix bugs in python requires -- cores: comment an unclearing statement -- cores: print to stdout -- cores: read all journal files - -* Thu May 10 2018 Matej Habrnal 2.10.9-5 -- abrt do not require python2 if "with python3" - -* Wed May 09 2018 Matej Habrnal 2.10.9-4 -- abrt-addon-ccpp do not require python2 if "with python3" - -* Thu May 03 2018 Matej Habrnal 2.10.9-3 -- drop python2-abrt-addon requires - -* Fri Apr 27 2018 Matej Habrnal 2.10.9-2 -- fix requires for python in spec file - -* Fri Apr 27 2018 Matej Habrnal 2.10.9-1 -- build: conditionalize the Python2 and Python3 -- cli-ng,hooks,python-problem: Allow python to be optional at build time -- spec: fix ambiguous Python 2 dependency declarations -- plugins: a-a-g-machine-id use dmidecode command -- spec: use dmidecode instead of python3-dmidecode -- hooks: use container-exception-logger tool -- spec: container python hooks require cel -- hooks: do not write any additional logs -- a-a-s-package-data: add python3.7 to known Interpreters -- autogen: ignore abrt's python packages -- correctly parse buildrequires from spec file - -* Wed Mar 21 2018 Matej Habrnal 2.10.8-1 -- Translation updates -- spec: use Python3 as default in abrt-cli-ng -- cli-ng: use Python3 as default -- Add a new element 'interpreter' for python problems -- retrace-client: Require nss-pem - -* Mon Feb 26 2018 Matej Habrnal 2.10.7-1 -- Translation updates -- hooks: introduce docker hook for Python2 -- hook: add type to Python3 container exception handler -- spec: introduce docker hook for Python2 -- Add ABRT hexa stickers -- a-container-logger: workaround permission issue in minishift - -* Mon Feb 19 2018 Matej Habrnal 2.10.6-1 -- Translation updates -- hooks: introduce docker hook for Python3 -- spec: introduce Python3 hook for container -- Remove deprecated is_error macro -- ldconfig is not needed in rawhide -- remove python_sitearch macro -- remove python_site macro -- move BuildRequires to top -- remove systemd-units and replace it with systemd macro -- remove init.d services -- a-h-event: Do not deduplicate different containers -- rpm: include epocho in package element if > 0 - -* Thu Nov 02 2017 Julius Milan 2.10.5-1 -- Translation updates -- a-action-ureport: add option 'ProcessUnpackaged' -- spec: change dependency on python{2,3}-gobject -- applet: Additional changes to allow optional polkit -- doc: remove obsolete doxygen tags -- dbus: Additional changes to allow optional polkit -- cli-ng: Explicitly state python version in shebangs -- spec: rename python binary packages -- a-d-journal-core: Save mountinfo from journal -- a-d-journal-core: Save container cmdline -- logging: rename omitted log() to log_warning() - -* Mon Aug 28 2017 Matej Habrnal 2.10.4-1 -- Translation updates -- logging: rename log() to log_warning() -- Quick hack to fix build with rpm >= 4.14 -- tests: Crash different binary in infinite event loop -- tests: Revert not sufficient fix -- tests: Reflect field changes in reporter-s-journal -- tests: Get docker-inspect while container is running -- cli,dbus: Allow polkit to be optional at build time -- spec: add dependency for python{3}-gobject -- a-d-journal-core: fix bad condition in creating reason msg -- a-d-journal-core: use pid of crashed process in dumpdir name -- changelog: update CHANGELOG.md - -* Thu Jun 15 2017 Martin Kutlak 2.10.3-1 -- Translation updates -- applet: add a default action to a notification -- spec: require libreport-plugin-systemd-journal on Fedoras -- changing load location from bin to libexec -- changing location of abrt-action-save-container-data from bin to libexec -- koops: Improve not-reportable for oopses with taint flags -- This fixes #1173 -- python: provide more information about exception -- abrt-journal: adapt to suspicious blacklist addition -- koops: add suspicious strings blacklist -- build: fix changelog adding in release target -- changelog: update CHANGELOG.md - -* Tue Apr 25 2017 Matej Habrnal 2.10.2-1 -- Translation updates -- spec: introduce migration to abrt-journal-core -- abrt_event: Save cpuinfo in problem directories -- koops: Improve fatal MCE check when dumping backtrace -- lib: typo in header -- Spelling fixes -- Python 3.6 invalid escape sequence deprecation fix -- koops_event: add check to restrict reporting of MCEs - -* Thu Mar 16 2017 Matej Habrnal 2.10.1-1 -- changelog: update CHANGELOG.md -- build: create tarball in release-* target -- spec: sosreport is not a package -- Fix Typo -- bodhi: Remove dependency on hawkey -- spec: Remove dependency on hawkey -- build: do not upload tarball to fedorahosted.org -- spec: do not use fedorahosted.org as source -- spec: install new plugins -- plugins: introduce Machine ID and SOS report -- Update CHANGELOG.md -- build: fix generating list of dependences in autogen.sh -- spec: start abrt-journal-core instead of abrt-ccpp -- build: fix scratch-build target -- a-a-ureport: fix calling of run_event_on_problem_dir -- spec: if using systemd, default to os-release ID for desktopvendor -- kernel: modify suspicious string "invalid opcode:" -- daemon: Allow rpm to be optional at build time -- spec: allow any compression of man pages -- spec: remove defattr -- spec: remove cleaning buildroot -- spec: use versioned provides -- spec: remove changelog entries older than 2 years -- remove Buildroot and Groups tags -- spec: recommend libreport-plugin-systemd-journal on Fedoras -- doc: document selinux change needed for automatic deletion of reports -- ccpp: tell gdb to analyze saved binary image - -* Sat Dec 03 2016 Jakub Filak 2.10.0-1 -- Translation updates -- spec: bump required libreport and satyr versions -- build: make the release-* targets smarter -- Add CHANGELOG.md -- a-a-notify: set env var before run report_systemd-journal event -- use run_event_on_problem_dir() helper for running events -- notify: do not require package element -- spec: add catalog_journal_ccpp_format.conf file -- reporter-s-journal: add formatting file for abrt-journal-core analyser -- cli-ng: fix --fmt parameter -- python: create analyzer element in dumpdir -- abrt-action-list-dsos: fix typo in vendor variable name -- cli-ng: chown problem before reporting -- lib: stop printing out a debug message 'adding: ' -- cli: print out the not-reportable reason -- cli: configure libreport to ignore not-reportable -- cli-ng: force reporting even if not-reportable -- cli-ng: introduce verbose argument -- Import GObject from gi.repository -- ccpp: configure package repositories for correct OS -- a-a-s-c-data: adapt to current docker -- daemon: don't drop problems from unknown containers -- a-a-s-c-data: correct detection of container type -- spec: install Bodhi event files -- bodhi: factor out Bodhi updates lookup into a solo event -- problems2: update the documentation -- a-a-analyze-python: create exception_type element -- a-a-analyze-xorg: create crash_function into dump dir -- koops: create crash_function element -- a-a-analyze-python: create crash_function element -- a-a-analyze-c: create crash_function element -- spec: add formatting files for reporter-systemd-journal -- reporter-systemd-journal: add formatting files -- vmcore: /var/tmp/abrt is no longer a dump location -- events: add event report_systemd-journal to all addons -- abrt-action-notify: notify to systemd journal -- spec: add abrt's catalog source files -- journal-catalog: add abrt's catalog source files -- ccpp: retain partial core_backtrace upon error -- ccpp: log waitpid errors -- ccpp: inform users about not supported unwinding -- ccpp: close stdin when we can let the process die -- daemon: properly shutdown socket connection -- daemon: close forgotten FD to /proc/[pid] -- ccpp: pass proc pid FD instead of pid to *_at fns -- ccpp+daemon: pass valid params to dd_open_item() -- python: remove unused functions from sysexcept hook -- build: add gettext-devel to sysdeps -- spec: add libcap-devel to BRs of addon-ccpp -- ccpp: avoid running elfutils under root -- Add abrt-action-analyze-vulnerability to .gitignore -- build: autoge.sh without args configures for debugging -- conf: increase MaxCrashReportsSize to 5GiB -- ccpp: fast dumping and abrt core limit -- CI: make debugging easier with more log messages -- doc: add a guide for ABRT hackers -- vmcore: fix an undefined variable on error path -- vmcore: read kdump.conf from an arbitrary location -- ccpp: use libreport 'at' functions -- ccpp: use abort() to exit in debug mode -- python2: stop generating dso_list in the process -- python: stop collecting ENVIRON in the process -- abrtd: details of processes from different PID NS -- abrtd: save interesting process details -- a-a-s-package-data: add python3.6 to known Interpreters -- spec: update gdb Requires -- tree-wide: make path to GDB configurable -- a-a-ureport: print out exit codes in verbose mode -- daemon: stop replacing analyzer with type - -* Fri Sep 09 2016 Jakub Filak 2.9.0-1 -- spec: install abrt_dbus_event.conf -- dbus: use Problems2 API in abrt-dbus -- dbus: Problems2 API implementation -- spec: install Problems2 interfaces -- dbus-doc: rewrite the XML to Problems2 -- Fix memory leaks -- lib: introdcue a function checking post-create name -- abrtd: change HTTP response code for duplicate problems to 303 -- autogen: fix typo in usage help string -- daemon: send base names from abrt-server to abrtd -- lib: normalize slashes of configured paths -- lib: make configuration paths alterable at runtime -- Add generated CCpp.conf to .gitignore -- abrt-bodhi: use CCpp PackageManager configuration directive from configure -- cli: introduce unsafe reporting for not-reporable problems -- handle-event: stop creating post-create lock -- daemon: trigger dump location cleanup after detection -- hook-ccpp: dump own core file in debug mode - -* Mon Jul 18 2016 Matej Habrnal 2.8.2-1 -- Translation updates -- abrt-hook-ccpp: Fix mismatching argument -- Allow selinux to be optional at build time -- vmcore: use findmnt to get mountpoint -- spec: add utils-linux to vmcore's Require -- vmcore: fix finding partitions by UUID and LABEL -- a-a-install-debuginfo: Exception may not have an argument errno -- koops: do not assume version has 3 levels -- Add ARM specific oops backtrace processing. -- examples: add oops-kernel-panic-hung-tasks-arm -- Add oops processing for kernel panics caused by hung tasks. -- abrt-hook-ccpp: save get_fsuid() return values in int variables - -* Wed May 25 2016 Matej Habrnal 2.8.1-1 -- a-dump-journal-xorg: allow *libexec/X* to be executable element -- a-dump-journal-xorg: add '_COMM=gnome-shell' to journal filter -- build: update pkg names for systemd -- a-d-journal-core: save core dump bytes from the journal field -- a-d-journal-core: support lz4 compressed core dump files -- a-a-install-debuginfo: do not try to split None -- doc: improve documentation of AllowedGroups, AllowedUsers and IgnoredPaths -- testcase: add serial field to uReport check -- a-a-install-debuginfo: correct handling of DebuginfoLocation -- a-a-s-container-data: update docker container ID parser -- abrt-hook-ccpp: drop saving of container env vars -- a-console-notification: do not leak variables -- a-retrace-client: format security -- daemon: avoid infinite crash loops -- spec: drop abrt-action-save-kernel-data bits -- spec: README -> README.md -- Add basic documentation +* Tue Apr 12 2016 Matej Habrnal 2.6.1-11 - a-a-install-debuginfo: fix BrokenPipe error -- a-a-install-debuginfo: make tmpdir variable global -- python3 addon: workaround a bug in traceback -- CCpp: turn off compat cores -- a-a-save-package-data: blacklist /usr/lib(64)/firefox/plugin-container -- Fix minor typo: possition -> position -- translations: add missing new line -- Translation updates -- translations: update zanata configuration -- ccpp: drop %e from the core_pattern -- Save Vendor and GPG Fingerprint -* Wed Feb 03 2016 Matej Habrnal 2.8.0-1 +* Tue Feb 23 2016 Matej Habrnal 2.6.1-10 +- translation updates +- blacklist Firefox's plugin-container + +* Wed Feb 10 2016 Matej Habrnal 2.6.1-9 +- drop %e from the core_pattern + +* Wed Feb 03 2016 Matej Habrnal - 2.6.1-8 - a-a-save-package-data: do not blacklist firefox -* Tue Feb 02 2016 Matej Habrnal 2.7.2-1 -- ccpp: bug fix - undefined variables -- a-a-c-o-f-hw-error: fix unicode error -- ccpp: use error_msg_ignore_crash() instead of error_msg() -- ccpp: add AllowedUsers and AllowedGroups feature -- doc: fix formatting in abrt.conf man page -- ccpp: use executable name from pid -- a-a-c-o-f-hw-error: do not crash on invalid unicode -- Use %s instead of %d. -- configui: link GUI library with libabrt.so -- Do not include system libabrt.h -- ccpp: unify log message of ignored crashes -- ccpp: add IgnoredPath option -- lib: check_recent_crash_file do not produce error_msg - -* Mon Nov 23 2015 Jakub Filak 2.7.1-1 -- spec: switch owner of the dump location to 'root' -- abrtd: switch owner of the dump location to 'root' -- lib: add convenient wrappers for ensuring writable dir -- ccpp: save abrt core files only to new files -- ccpp: ignore crashes of ABRT binaries if DebugLevel == 0 -- conf: introduce DebugLevel -- a-a-i-d-to-abrt-cache: make own random temporary directory -- update .gitignore +* Wed Nov 25 2015 Jakub Filak - 2.6.1-7 +- CVE-2015-5287: switch owner of /var/spool/abrt to 'root' +- CVE-2015-5287: ccpp: save abrt core files only if DebugLevel > 0 +- CVE-2015-5287: ccpp: save abrt core files only to new files +- CVE-2015-5287: abrt configuration: introduce DebugLevel +- CVE-2015-5273: a-a-i-d-to-abrt-cache: make own random temporary directory - ccpp: make crashes of processes with locked memory not-reportable -- a-a-s-p-data: fix segfault if GPGKeysDir isn't configured -- a-dump-journal-xorg: make journal filter configurable -- doc: a-a-analyze-xorg fix path to conf file -- abrt-journal: use GList instead of char** in abrt_journal_set_journal_filter() -- xorg: introduce tool abrt-dump-journal-xorg -- abrt-xorg.service: change due to abrt-dump-journal-xorg -- journal: add function abrt_journal_get_next_log_line -- spec: add abrt-dump-journal-xorg to spec file -- xorg: rewrite skip_pfx() function to work with journal msgs -- xorg: introduce library xorg-utils -- dbus: ensure expected bytes width of DBus numbers - a-d-journal-core: set root owner for created dump directory -- doc: add missing man page for abrt-dump-journal-core - spec: add missing man page for abrt-dump-journal-core +- Resolves: #1262252, #1284557 -* Thu Oct 15 2015 Matej Habrnal 2.7.0-1 -- abrt-python: add problem.chown -- a-a-a-ccpp-local don't delete build_ids -- update .gitignore -- spec: add cli-ng -- cli-ng: initial - -* Thu Oct 15 2015 Matej Habrnal 2.6.3-1 -- bodhi: introduce wrapper for 'reporter-bugzilla -h' and 'abrt-bodhi' -- remove random code example from abrt-server -- spec: introduce abrt-action-find-bodhi-update -- api: fix pths -> paths rename -- handle-event: remove obsolete workaround -- remove 'not needed' code -- events: fix example wording -- doc: change /var/tmp/abrt to /var/spool/abrt -- doc: actualize core_pattern content in documentation +* Fri Oct 16 2015 Matej Habrnal 2.6.1-6 - doc: fix default DumpLocation in abrt.conf man page -- events: improve example -- events: comments not needed anymore - abrt-retrace-client: use atoll for _size conversion -- abrt-dump-xorg: support Xorg log backtraces prefixed by (EE) -- runtests: more verbose fail in get_crash_path -- ureport-auth: force cp/mv when restoring configuration -- runtests: stick to new BZ password rules +- a-a-a-ccpp-local don't delete build_ids +- abrt-dump-xorg: support Xorg log backtraces prefixed by (EE - bodhi: fix typo in error messages -- bodhi: fix a segfault when testing an os-release opt for 'rawhide' + +* Thu Sep 17 2015 Matej Habrnal 2.6.1-5 - doc: actualize the abrt-bodhi man page -- autogen: use dnf instead of yum to install dependencies +- bodhi: fix a segfault when testing an os-release opt for 'rawhide' + +* Thu Aug 27 2015 Matej Habrnal 2.6.1-4 - bodhi: add parsing of error responses - bodhi: add ignoring of Rawhide -- ccpp: do not break the reporting if a-bodhi fails +- do not break the reporting if a-bodhi fails - spec: add hawkey to BRs of abrt-bodhi - introduce bodhi2 to abrt-bodhi -- a-handle-upload: pass bytes to file.write() -- upload a problem data in the EVENT 'notify' -- turn off several post-create scripts for remote problems -- convert all 'ex.message' stmts to 'str(ex)' -- cli: don't start reporting of not-reportable problems -- a-a-s-p-d: add bash on the package blacklist -- correct usage of abrt-gdb-exploitable -- testsutie: first wait_for_hooks, then get_crash_path -- ccpp: use global TID -- ccpp: fix comment related to 'MakeCompatCore' option in CCpp.conf -- cli: fix testing of DBus API return codes -- dbus-api: unify reporting of errors -- doc: fix related to conditional compilation of man page -- abrt-auto-reporting: fix related to conditional compilation -- vmcore: read vmcore by chunks -- pass encoded Unicode to hashlib.sha1.update() -- abrt-merge-pstoreoops: merge files in descending order -- use gettext instead of lgettext in all python scripts -- gitignore: add a generated man page source file +- don't start reporting of not-reportable problems +- add bash on the package blacklist -* Fri Jul 17 2015 Jakub Filak 2.6.2-1 +* Fri Aug 14 2015 Matej Habrnal 2.6.1-3 +- ccpp: use global TID +- fix comment related to 'MakeCompatCore' option in CCpp.conf +- fix testing of DBus API return codes +- dbus-api: unify reporting of errors +- fix related to conditional compilation of man page +- abrt-auto-reporting: fix related to conditional compilation +- abrt-merge-pstoreoops: merge files in descending order + +* Tue Jul 21 2015 Jakub Filak 2.6.1-2 - applet: do not crash if the new problem has no command_line - ccpp: do not crash if generate_core_backtrace fails - abrt: Fixup component of select kernel backtraces - abrtd: de-prioritize post-create event scripts -- spec: switch python Requires to python3 -- switch all python scripts to python3 -- spec: drop abrt-addon-python requires - a-dump-oops: allow update the problem, if more then one oops found -- cli: use internal command impl in the command process -- cli: remove useless code from print_crash() - cli: enable authetication for all commands +- Resolves: #1236422, #1243791 -* Thu Jul 02 2015 Matej Habrnal 2.6.1-1 -- dbus: keep the polkit authorization for all clients -- cli: enable polkit authentication on command line -- spec: --enable-dump-time-unwind by default -- ccpp: use TID to find crash thread -- spec: remove PyGObject from all Requires -- spec: update version of gdb because of -ascending -- lib: make it easier to find the backtrace of th crash thread -- ccpp: save TID in the file 'tid' -- ccpp: get TID from correct cmd line argument -- configui: add option always generate backtrace locally -- a-a-p-ccpp-analysis: use ask_yes_no_save_result instead of ask_yes_no_yesforever -- spec: use more appropriate url -- spec: abrt requires libreport-plugin-rhtsupport on rhel -- sosreport: add processor information to sosreport -- doc: update abrt-cli man page +* Fri Jul 03 2015 Matej Habrnal 2.6.1-1 +- keep the polkit authorization for all clients +- enable polkit authentication on command line +- use TID to find crash thread +- remove PyGObject from all Requires +- update version of gdb because of -ascending +- make it easier to find the backtrace of th crash thread +- save TID in the file 'tid' +- get TID from correct cmd line argument +- add option always generate backtrace locally +- add processor information to sosreport +- update abrt-cli man page +- Resolves: #1240516 * Tue Jun 09 2015 Jakub Filak 2.6.0-1 -- spec: add abrt-dbus to Rs of abrt-python -- vmcore: use libreport dd API in the harvestor -- ccpp: don't save the system logs by default -- cli: exit with the number of unreported problems -- spec: restart abrt-dbus in posttrans -- cli: chown before reporting +- move the default dump location to /var/spool/abrt from /var/tmp/abrt - hooks: use root for owner of all dump directories - ccpp: do not unlink failed and big user cores -- ccpp: include the system logs only with root's coredumps -- koops: don't save dmesg if kernel.dmesg_restrict=1 -- daemon, dbus: allow only root to create CCpp, Koops, vmcore and xorg -- daemon: allow only root user to trigger the post-create -- daemon: harden against race conditions in DELETE -- ccpp: revert the UID/GID changes if user core fails -- a-a-i-d-t-a-cache: sanitize umask -- a-a-i-d-t-a-cache: sanitize arguments -- dbus: report invalid element names -- dbus: avoid race-conditions in tests for dum dir availability -- dbus: process only valid sub-directories of the dump location -- lib: add functions validating dump dir -- daemon: use libreport's function checking file name -- configure: move the default dump location to /var/spool -- ccpp: avoid overriding system files by coredump -- spec: add libselinux-devel to BRs -- ccpp: emulate selinux for creation of compat cores -- ccpp: harden dealing with UID/GID -- ccpp: do not use value of /proc/PID/cwd for chdir -- ccpp: do not override existing files by compat cores +- ccpp: don't save the system logs by default - ccpp: stop reading hs_error.log from /tmp -- ccpp: fix symlink race conditions +- ccpp: emulate selinux for creation of compat cores +- koops: don't save dmesg if kernel.dmesg_restrict=1 +- dbus: validate passed arguments - turn off exploring crashed process's root directories -- abrt-python: add proper PYTHONPATH to test shellscripts -- abrt-python: unify unknown problem type handling -- abrt-python: add not_reportable properties -- spec: remove analyzer to type conversion -- abrt-python: add Python3 problem type -- abrt-python: add id, short_id and path to problem -- abrt-python: add Problem.prefetch_data function -- abrt-python: handle reconnection gracefully -- config UI: Automatic reporting from GSettings -- doc, polkit: Spelling/grammar fixes +- abrt-python: bug fixes and improvements +- fixes for CVE-2015-3315, CVE-2015-3142, CVE-2015-1869, CVE-2015-1870 +- fixes for CVE-2015-3147, CVE-2015-3151, CVE-2015-3150, CVE-2015-3159 +- spec: add abrt-dbus to Rs of abrt-python and abrt-cli +- spec: restart abrt-dbus in posttrans + +* Wed May 20 2015 Matej Habrnal 2.5.1-3 - applet: fix problem info double free -- a-a-s-p-d: add new known interpreter to conf file -- config UI: enable options without config files -- config UI: read glade from a local file first -- applet: migrate Autoreporting options to GSettings -- abrt-action-list-dsos: do not decode not existing object -- spec: add AUTHENTICATED_AUTOREPORTING conditional -- abrt-auto-reporting: require rhtsupport.conf file only on RHEL -- lib: add new kernel taint flags -- spec: add a dependency on abrt-dbus to abrt-cli -- cli: do not exit with segfault if dbus fails -- applet: switch to D-Bus methods - upload: validate and sanitize uploaded dump directories +- applet: switch to D-Bus methods +- lib: add new kernel taint flags +- abrt-auto-reporting: require rhtsupport.conf file only on RHEL +- doc, polkit: Spelling/grammar fixes +- applet: migrate Autoreporting options to GSettings +- config UI: read glade from a local file first +- config UI: Automatic reporting from GSettings +- Resolves: #1211644 + +* Mon Apr 13 2015 Jakub Filak 2.5.1-2 +- Remove no longer needed posttrans scriptlet copying analyzer to type * Thu Apr 09 2015 Jakub Filak 2.5.1-1 - Translation updates - problem: use 'type' element instead of 'analyzer' - cli-status: don't return 0 if there is a problem older than limit -- journal-oops: add an argument accepting journal directory -- journal: open journal files from directory -- lib: don't expect kernel's version '2.6.*' or '3.*.*' - cli: use the DBus methods for getting problem information -- libabrt: add wrappers TestElemeExists and GetInfo for one element +- journal-oops: add an argument accepting journal directory +- lib: don't expect kernel's version '2.6.*' or '3.*.*' - dbus: add new method to test existence of an element -- libabrt: add new function fetching full problem data over DBus -- applet: use a shared function for getting problems over DBus - vmcore: generate 'reason' file in all cases -- applet: Fix trivial indentation bug - applet: Don't show report button for unpackaged programs -- applet: fix freeing of the notify problem list - applet: get the list of problems through D-Bus service -- doc: D-Bus api: make desc of DeleteProblem clearer +- Resolves: #1205439 + +* Fri Mar 20 2015 Jakub Filak 2.5.0-2 +- applet: re-enable notifications of problems not-yet seen problems at start-up * Wed Mar 18 2015 Jakub Filak 2.5.0-1 -- applet: cast to correct type to fix a warrning -- applet: Use new problem_create_app_from_env() helper -- doc: add documentation for GetProblemData - dbus: add a new method GetProblemData - abrt_event: run save package data event even if component exists - a-a-s-container-data: add a new argument --root -- spec: add a-a-s-package-data to abrt-atomic - a-a-s-kernel-data: add --root argument - journal-oops: add an argument similar to '--merge' -- spec: let configure generate the spec file - ccpp: create the dump location from standalone hook - retrace-client: stop failing on SSL2 - spec: changes for Atomic hosts -- add stuff necessary for Project Atomic -- Python 3 fixes - ccpp: add support for multiple pkg mngrs - Python 3 compatibility -- Revert "dbus: Allow admins to load problems without a password" -- dbus: Allow admins to load problems without a password -- abrtd: Don't allow users to list problems "by hand" -- spec: Don't allow users to list problems "by hand" +- Don't allow users to list problems "by hand" - spec: abrt-python requires libreport-python to build +- Resolves: #1200852 -* Fri Feb 20 2015 Jakub Filak 2.4.0-1 -- spec: factor out core_pattern helper from addon-ccpp -- ccpp: standalone hook -- ccpp: save package data from hook in case of crash in container -- a-a-s-package-data: save data from artifical chroots -- spec: install containers tools -- containers: add utility collecting containers info -- ccpp: add support for containers -- spec: install the daemon's D-Bus configuration file -- daemon: add configuration enabling our name on the System bus -- daemon: get rid of own main loop -- init: set Type of abrtd.service to dbus -- applet: Use libreport's helper to find applications -- applet: Remove unused build information -- build: Fix pkg-config warning related to abrt.pc -- applet: Fix a massive leak in the app detection code -- applet: Remove left-over code from the systray icon -- applet: Use the easy way to detect empty lists -- applet: Fix a number of "problems" memory leaks -- applet: Make problem_info_t refcounted -- applet: If gnome-abrt isn't there, don't offer to report -- applet: Fix multiple notifications for the same problem -- applet: Always defer auto-reporting without a network -- applet: Don't ignore foreign problems if an admin -- applet: Rename problem variable to "pi" -- applet: Remove unused "flags" parameters -- applet: Completely ignore incomplete problems -- applet: Don't ignore repeat problems in the same app -- applet: Fix warning when crash doesn't happen in app -- applet: Remove unused functions -- applet: Remove unused flags -- applet: Rewrite notifications -- applet: Don't run full reports from the applet -- applet: Simplify "report" action -- applet: Add helper to guess .desktop for a cmdline -- applet: Get more details from the crash report -- applet: Ignore other people's problems for non-admins -- applet: Remove handling of "ignored" crashes -- applet: Remove specific persistent notifications handling -- applet: Rename applet to match gnome-abrt -- applet: Initialise libnotify on startup -- applet: Use g_new0() instead of xzalloc() -- applet: Use g_strdup_printf()/g_strdup() -- applet: Move variable inside block where it's used -- daemon: process unpackaged by default -- spec: fix abrt-applet requires -- applet: Fix memory leak in fork_exec_gui() -- applet: Detect whether gnome-abrt is available -- applet: Use GUI_EXECUTABLE macro -- autogen: move configure to the default case -- applet: Use GIO to launch gnome-abrt -- applet: Fix typo in "Oterwise" -- applet: Use symbolic icon instead of abrt's in notifications -- applet: Add some debug to new_dir_exists() -- applet: Require at least libnotify 0.7 -- applet: Fix typo in "cuurent" -- applet: Don't defer sending out uReports -- applet: Use G_SOURCE_REMOVE in timeout callback -- spec: Bump required glib2 version -- applet: Use g_bus_own_name() for single-instance -- applet: Remove status icon -- applet: Use GDBus to filter crash signals -- applet: Remove XSMP support -- build: Launch configure after autogen.sh -- make: make some python depencies optional -- configure: fix typos -- configure: check for python-sphinx and nose -- spec: add gsettings-desktop-schemas to the build requires -- core: use updated dump_fd_info() -- switch from 'analyzer' to 'type' -- spec: install abrt-dump-journal-core stuff -- init: add abrt-journal-core service -- introduce abrt-dump-journal-core -- applet: Remove the automatic crash reporting message dialog -- applet: Remove pre-glib 2.32 code -- applet: Remove pointless custom signal handling -- applet: Use GNetworkMonitor instead of NM directly -- applet: Use GSettings to check whether to send uReports -- Rewrite journalctl invocations: replace grep/tail pipeline with journalctl builtins. -- Don't slurp unbounded amounts of data when invoking journalctl. Fixes #887. -- console-notifications: add timeout -- cli-status: use will_python_exception -- ccpp-hook: move utility functions to hooklib -- ccpp-hook: move /proc/[pid]/ utils to libreport -- abrt-journal: add functions for reading/saving journald state -- Do not use 'bool' in OPT_BOOL() macro : it expects 'int' -- daemon: Own a D-Bus name -- zanata: add gettext mappings -- auto-reporting: add options to specify auth type -- translations: move from transifex to zanata -- spec: add missing augeas dependency -- Only analyze vulnerabilities when coredump present -- abrt-install-ccpp-hook check configuration -- UUID from core backtrace if coredump is missing -- Create core backtrace in unwind hook -- abrt-hook-ccpp: minor refactoring -- vmcore: remove original vmcore file in the last step -- vmcore: catch IOErrors and OSErrors -- python: load the configuration from correct file -- Remove garbage from ccpp_event.conf -- spec: update the required gdb version -- gdb: make gdb aware of the abrt's debuginfo dir -- Revert "gdb: disable loading of auto-loaded files" -- spec: update the URL +* Fri Feb 20 2015 Jakub Filak - 2.4.0-1 +- gracefully handle crashes in containers +- reworked abrt-applet's work-flow +- process unpackaged by default +- support collecting coredumps from systemd-coredumpctl +- search for log lines in journald more efficiently +- support sending micro-reports without the need to save coredump +- create a new package abrt-coredump-helper for Fedora Atomic + +* Fri Nov 07 2014 Jakub Filak - 2.3.0-5 - koops: improve 'reason' text for page faults -- sos: use all valuable plugins -- a-a-g-machine-id: do not print any error from the event handler -- a-a-g-machine-id: omit trailing new-line for one-liners only -- a-a-g-machine-id: suppress its failures in abrt_event.conf -- a-a-g-machine-id: add systemd's machine id -- applet: ensure writable dump directory before reporting -- make ABRT quieter -- journal-oops: use the length result of sd_journal_get_data() +- do not detect Firefox crashes +- make ABRT queiter +- update Package URL + +* Tue Oct 14 2014 Jakub Filak - 2.3.0-4 +- oops: get rid of invalid characters when dumping from journald + +* Mon Oct 13 2014 Jakub Filak - 2.3.0-3 +- applet: show package instead of duphash - console-notifications: skip non-interactive shells -- applet: don't show duphash instead of component -- ureport: attach contact email if configured + +* Thu Oct 09 2014 Jakub Filak - 2.3.0-2 - console-notifications: use return instead of exit + +* Wed Oct 08 2014 Jakub Filak - 2.3.0-1 +- applet: confirm ignoring of notifications +- cli: batch reporting in abrt-cli +- cli: add option remove crash dirs after reporting + +* Thu Oct 02 2014 Jakub Filak - 2.2.2-9 +- disable addon-vmcore on AArch64 + +* Wed Oct 01 2014 Jakub Filak - 2.2.2-8 +- dbus: fixed abrt-dbus memory leaks +- plugins: add abrt-action-generate-machine-id +- retrace-client: humanize sizes +- cli: robustize abrt-console-notification.sh +- cli: make consistent commands in abrt-cli +- Resolves: #1141485 + +* Thu Sep 11 2014 Jakub Filak - 2.2.2-7 +- remove dependency on crash + +* Mon Sep 01 2014 Jakub Filak - 2.2.2-6 +- gettext: fix the initialization in python scripts +- oops: add man page.patch +- revert: support handling crashes in lxc containers +- oops: fix a use after free bug uncoverd by coverity +- reduced the amount of log messages + +* Fri Aug 15 2014 Fedora Release Engineering - 2.2.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Wed Jul 16 2014 Jakub Filak 2.2.2-4 +- dump kernel oopses from systemd-journal +- support SyntaxError Python exceptions + +* Wed Jul 16 2014 Jakub Filak 2.2.2-3 +- don't use native unwinder on arm + +* Mon Jul 14 2014 Jakub Filak 2.2.2-2 +- use native unwinder for generating 'core_backtrace' + +* Tue Jul 08 2014 Jakub Filak 2.2.2-1 +- applet: chown each notified problem before reporting it +- koops: don't analyze MCEs like standard oopses +- koops: don't drop not-reportable oopses by default +- abrt_event: fix post-create reporter-uploader examples +- local duplicates must have matching executables +- Resolves: #1105316 + +* Tue Jun 10 2014 Jakub Filak - 2.2.1-6 +- configui: do not use deprecated gtk3 API +- gdb: disable auto-loaded files +- Resolves: #1105940 + +* Sat Jun 07 2014 Fedora Release Engineering - 2.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Tue May 27 2014 Kalev Lember - 2.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 + +* Tue May 06 2014 Jakub Filak 2.2.1-3 +- dbus: Fix invalid dbus policy file + +* Tue May 06 2014 Jakub Filak 2.2.1-2 +- dbus: Fix desktop centric polkit policy file + +* Tue Apr 22 2014 Jakub Filak 2.2.1-1 +- stop using deprecated json-c functions +- vmcore: start the service after kdump service +- do not clear LANG env variable +- localization: fix gettext - Translation updates -- a-a-s-p-d: add firefox on the package blacklist +- simplify Analyze C/C++ event configuration +- Support handling crashes in lxc containers +- koops: add an option controlling MCE detection +- cli: list displays all problems +- Fix a spelling error in a configuration GUI tooltip. +- spec: python3 corrections +- Fix new lines in po files + +* Wed Mar 05 2014 Jakub Filak 2.2.0-1 +- Translation updates +- limit ourselves to *.conf in /etc/abrt +- applet: run Autoreporting event in NONINTERACTIVE mode +- ureport: add user to CC List of Bugzilla bug +- python: build python api for py3 +- koops: never search for MCE strings in dmesg +- spec: remove stray space from %%description +- spec: add missing requires for python api +- spec: add dependency on abrt-python + +* Mon Feb 10 2014 Jakub Filak - 2.1.12-2 +- python: install modules to sitearch directory +- upload-watch: remove busy-wait for SIGUSR1 + +* Thu Jan 30 2014 Jakub Filak 2.1.12-1 +- don't break the event run by failures of abrt-action-notify +- harvest-vmcore: properly handle inaccessible dir error +- spec: abrt-cli requires a pkg providing workflows +- applet: do not say the report is anonymous when ureport auth is enabled +- abrtd.service: Don't order after syslog.target +- vmcore: properly configure Augeas +- applet: don't notify missing ignored_problems file +- fix a double free error in abrt-applet +- configui: show 'Close' button in the dialog +- configure: remove all -Werror from O0CFLAGS +- fix handling of Machine Check Exceptions. + +* Wed Jan 08 2014 Jakub Filak 2.1.11-1 +- Update translations +- harvest_vmcore: replace regexp config parsing with augeas +- introduce D-Bus Configuration Service +- mark koopses with unsupporeted HW as not-reportable +- bodhi: use the right exit codes +- abrt-handle-event: don't use already freed memory +- introduce abrt-auto-reporting utility +- abrt-action-notify: fix couple of flaws +- Use satyr to compute koops duphash +- koops: tweak koops parser for s390 Call Traces +- configui: do not use deprecated gtk3 API + +* Wed Dec 11 2013 Jakub Filak 2.1.10-1 +- abrt-cli: display URL to reports in the details +- abrt-cli list: list all problems by default +- Do not copy Makefiles to documentation. +- harvest_vmcore: Fix absolute path handling +- Speed up journalctl --system support detection +- spec: add abrt's augeas module +- add augeas module for abrt configuration files +- spec: rename CCpp.conf +- rename CCpp.conf man to abrt-CCpp.conf +- spec: move vmcore addon's configuration to a new dir +- vmcore: reorganize configuration +- make: install abrt-harvest-vmcore into share conf.d +- spec: install abrt-harvest-vmcore.conf to share conf.d +- switch to libreport workflows in all report-cli events +- abrtd: use warning level for "Recreating deleted ..." message +- abrt-python: add missing arguments to Crash handler +- spec: adapt recent changes related to abrt-action-notify +- move the notify event from dbus_event.conf to abrt_event.conf +- run the autoreporting event from abrt-action-notify +- spec: install conf to /usr/share/abrt/conf.d +- Load conf from /usr/share/abrt/conf.d and /etc/abrt +- abrt-action-install-debuginfo: fix --exact handling. Fixes rhbz1027786 +- Use bugzilla_formatdup.conf for detected duplicates in python too. Fixes rhbz#875312. +- applet: properly handle incomplete problems +- DBus Problems API: update documentation +- spec: add abrt-action-notify +- factor out the D-Bus notifications into a python script +- adapt post_create event to the recent changes in reporter-ureport +- spec: add Requires: systemd-python for python addon +- shorten CCpp reason message +- abrt-dump-oops: if backtrace is not seen, file an one-line oops. Fixes rhbz#812537 +- Update translations +- Add several manpages +- Resolves: #812204, #1005762 + +* Sat Oct 26 2013 Jakub Filak 2.1.9-1 +- pyhook: add logging workaround for rhbz#1023041 +- spec: add systemd-python to BuildRequires +- start abrt-handle-event in non-interactive mode +- Log to journal instead of syslog +- Create manpage for xorg.conf +- Configuration UI: instantly apply changes +- applet: reload user configuration before accessing its values +- switch logging from syslog to systemd in f20 - rhbz#1010648 +- make notification messages more clear +- Use log_ family instead of VERBn log calls +- spec: unversioned doc directories in newer fedoras +- don't consider crashes posted to ABRT server as reported +- check return values of fcntl() and setsid() +- remove a dead code uncovered by coverity +- spec: fix file access rights for type and core_bactrace +- spec: move examples to abrt-python-doc package +- install problem examples to python dir +- spec: added the versioned abrt-libs requires to silence rpmdiff +- a-dump-oops: Add new WARNING pattern +- a-a-save-kernel-data: support more kernel flavours +- a-h-event: always compare results of realpath() + +* Fri Oct 04 2013 Jakub Filak 2.1.8-1 +- Disassemble only instruction rage memory if backtrace is too big +- Include floating-point registers in the backtrace +- spec: make addon-ccpp dependent on libreport-python +- polkit: replace deprecated functions with their subtitues +- retrace-client: query CCpp exploitable information from Retrace server; closes #703 +- GUI config: add support for Private ticket option +- a-a-ureport: handle os errors gracefully rhbz#998428 rhbz#998197 +- add prefix from configure to the path of debuginfo installer - closes #701 +- spec: added deps on abrt-python - closes rhbz#1008182 +- spec: remove abrt-dedup-client; closes #702 +- remove abrt-dedup-client; related to #702 +- abrt-*-client: simplify formatting of locale-related headers +- Resolves: #812204 + +* Wed Sep 11 2013 Jakub Filak 2.1.7-1 +- fix debuginfo installer expecting user input from a pipe - closes #696 +- add environment variable whitelist to debuginfo install wrapper - closes #692 +- add repo_pattern argument as a custom repository filter - closes #688 +- abrt-cli list: replace "@" prefix by "id " prefix +- fix a crash in 'abrt-cli info' when short id isn't found +- Use common string-to-sha1_hash functions. #694 +- doc: update OpenGPGCheck in a-a-save-package-data rhbz#997922 +- abrt-cli report: accept sha1 hashes of directory names. #693 +- abrt-dump-oops: emit a message if throttling for a significant period of time +- abrt-gdb-exploitable: print current instruction +- spec: posttrans scriptlet regenerating core_backtraces +- abrt-handle-event: add check for missing crash thread +- provide tmpfiles.d configuration +- abrt-cli list: use sha1 hash as short ids instead of @N thing. rhbz#906733 +- vmcore: fail gracefully if dump_dir is not accessible +- spec: vmcore: require kexec-tools +- vmcore: use re.MULTILINE instead of numerical value +- vmcore: don't fail if /etc/kdump.conf is not readable +- abrt-cli info: add "-s SIZE" option. closes #689 +- fix noninteractive mode in debuginfo installer - rhbz#737066 +- fixed the gpg keys loading - closes #686 +- Fix type of OPT_BOOL's referenced flag variable - it must be int, not bool! +- adds a kdump.conf parser to get the correct dump dir location, closes #640 +- xorg_event.conf: use abrt-action-list-dsos to create dso_list +- abrt-action-list-dsos: extend it to be able to parse Xorg backtrace. +- don't require debuginfo for vmcore analysis rhbz#768389 +- specfile: make addon-pstoreoops obsolete addon-uefioops +- abrt-dump-oops: add -t option which slows down problem creation. rhbz#902398. +- rename uefioops to pstoreoops rhbz#949721 +- spec: create type element for problem dirs where it doesn't exist - rhbz#958968 +- introduce abrt-upload-watch +- fix ccpp hook to create the type element - closes #682 +- specfile: use systemd-rpm macros. rhbz#850019 +- abrt-harvest-vmcore: notify new path - #657 +- abrt-dump-oops: remove redundant g_list_length() call, make messages clearer +- updated translation - rhbz#860555 +- updated transifex url +- GUI config: add Close/Defaults button +- GUI config: hide option descriptions in tool tips +- GUI config: add Silent shortened reporting support +- applet: silent shortened reporting +- applet: less misleading label for Ignore button +- abrt-handle-upload: switch from shell to python; send socket notification. #657 +- spec: add build requires for XSMP depencies +- applet: update seen list when X Session dies +- improved the error messages in abrt-server - closes #679 +- fix typo in abrt-config-widget.ui +- spec: add new packages abrt-gui-libs and abrt-gui-devel +- delete desktop file for system-config-abrt +- expose abrt configuration GUI in public API +- rewrite abrt-harvest-uefioops to python - closes #678 +- spec: abrt-python is no longer noarch - related #677 +- created python binding for notify_new_path - closes #677 +- spec: install applet's desktop file to system dir +- applet: configure notification source +- rewrite shell script for moving vmcores into python closes #676 +- abrtd: ensure that the dump location directory exists +- a-a-ureport: generate core_backtrace only for CCpp problems +- do not store potentially big data in /tmp +- abrt-dbus: send new problem notify signal to socket +- abrtd: remove "post-create" machinery. Related to #657 +- Avoid leaving stale rpmdb locks behind (rhbz#918184) +- abrtd: improve parsing of pidfile in create_pidfile() +- abrt-dump-{oops,xorg}: send new problem notify signal to socket +- abrtd: disable inotify watch on DUMP_LOC +- abrt-hook-ccpp: send "POST /creation_notification" after creating problem dir +- Stop dying in check_free_space(); rename it to low_free_space() +- abrt-server: make create_problem_dir() run "post-create" +- abrt-handle-event: create DUMP_LOC/post-create.lock when running "post-create" +- abrt-server: add support for "POST /creation_notification" +- abrt-handle-event: free more of allocated data +- Resolves: #994009 + +* Tue Aug 06 2013 Jakub Filak 2.1.6-3 +- try to generate core_backtrace only for CCpp problems + +* Mon Jul 29 2013 Jakub Filak 2.1.6-2 +- disable gcc unused-typedef warning for GLib +- use right dependencies for RHEL + +* Fri Jul 26 2013 Jakub Filak 2.1.6-1 +- replace functions deprecated in Gtk-3.10 with their substitutes +- integrate with satyr, drop btparser +- use absolute path in python shebang rhzb#987010 +- abrt-action-save-package-data: properly close rpm database. Closes #674. +- abrt-action-save-package-data: fix handling of ProcessUnpackaged on scripts +- abrt-action-save-package-data manpage: typo fix +- change /var/spool/abrt/ to /var/tmp/abrt in doc rhbz#912750 +- Fix RPMdiff warnings about abrtd and abrt-action-install-debuginfo-to-abrt-cache +- specfile: add dependency on abrt-libs to abrt-addon-uefioops +- stop using the hardcoded event list, use workflows instead rhbz#866027 +- retrace-client: build correct release for Fedora Rawhide +- spec: drop unnecessary Obsoletes and Provides +- correct FSF address in python exception hook +- add missing manual pages for binaries and scripts +- fix rpmlint issues in the spec file +- move event option XML files to /usr/share/libreport/ +- abrt-hook-ccpp: always fall back to creating user core. +- dbus: add GetForeignProblems method +- the system tray icon opens recently detected problem +- add gdb python plugin which analyzes coredump for vulnerability +- applet: stop saving configuration at exit +- introduce system-config-abrt +- abrt-cli status: make the output more natural +- Fix wrong path in shell include +- abrt-dump-xorg: save "type=xorg" along with "analyzer=xorg" +- Update python hook to use fixed socket interface +- abrt-server: updates/fixes for future rasdaemon needs + +* Tue Jul 16 2013 Jakub Filak 2.1.5-2 +- fix reporting from Rawhide +- Resolves: #958933 + +* Fri Jun 14 2013 Jakub Filak 2.1.5-1 +- abrt-retrace-client requires tar closes #635 +- abrt-tui requires abrt closes #633 +- a-d-oops: obtain kernel version from the oops +- a-a-p-ccpp-analysis: import all used attributes +- vmcore: provide all problem elements necessary for the reporting +- a-d-oops: add 'update' command line argument +- a-a-g-core-backtrace: don't crash if kernel file doesn't exist +- a-a-a-vmcore: save kernel version in 'kernel' file +- abrt-cli: make status help message more precise +- abrt-cli status: don't include reported problems into count +- abrt-cli list: implement --since and --until +- abrt-python: open dirs read-only if possible +- dbus: ChownProblemDir method really changes the owner +- python: disable events in collision with anaconda +- abrt-python requires pygobject2 +- systemd units: start services only if it make sense +- abrt-harvest-uefioops.in: test for abrtd after testing for pstore, not before +- make abrt-uefioops.service conditional on /sys/fs/pstore being populated +- dbus: fix SetElement failing when shrinking an item +- spec: fix unowned directories +- abrt-python: whole python API path in POTFILES.skip +- abrt-python: fix dbus compatibility on RHEL6 +- abrt-python: check if gid equals current users gid +- abrt-python: fix tests compatibility with python 2.6 +- abrt-python: pass DD_OPEN_READONLY only if available +- abrt-python: fix deprecation warnings +- console notification shouldn't ask confirmation - closes #652 +- Short BT deduplication false positives workaround +- Only problems of same type can be duplicates +- abrt-python: fix bug in problem.get +- abrt-python: pep8 cleanup +- koops parse: support frame prefix +- don't show non critical errors in console notification + +* Mon May 06 2013 Jakub Filak 2.1.4-3 +- don't show non critical errors in console notification +- use last_occurrence with --since + +* Fri May 03 2013 Jakub Filak 2.1.4-2 +- start abrtd.service after livecd +- udpate translation +- add addon-uefioops +- Resolves: #928753 + +* Tue Apr 30 2013 Jakub Filak 2.1.4-1 +- build abrtd and setuided executables with full relro rhbz#812284 +- added a console notification script to profile.d closes #641 +- return the right exit code for user cancellation +- add more examples to Problem API doc +- updated translation Related: #951416 +- Replace "THANKYOU" with EXIT_STOP_EVENT_RUN exit code (70) +- abrt-action-ureport: rewrite in python, improve messages +- abrt-cli: added 'status' command +- abrt-cli: make "report -v[vv]" export correct $ABRT_VERBOSE value +- bodhi, retrace: support /etc/os-release +- abrt-action-generate-core-backtrace: be a bit more verbose +- abrt-dump-oops: add "Machine Check Exception" to the list of watched strings rhbz#812537 +- abrt-action-install-debuginfo: do not assume os.execvp never returns +- abrtd: mark unprocessed dump directories as not-reportable +- abrtd: update last occurrence dump dir file +- spec: remove the commented macros rhbz#864851 +- spec: added the versioned abrt-libs requires to silence rpmdiff rhbz#881123 +- spec: create a new subpackage for the console notification #641 +- spec: add deps. required for reporting to abrt-cli pkg +- spec: inc required version of libreport + +* Mon Apr 08 2013 Jakub Filak 2.1.3-2 +- Require correct version of libreport +- Add dependecies required for reporting to abrt-cli package + +* Wed Mar 27 2013 Jakub Filak 2.1.3-1 +- record runlevel +- Integration with satyr +- dbus: check correct errno after dump_dir_is_accessible_by_uid() +- require libreport workflow package acc. to OS type +- remove the abrt-gui closes #629 +- retrace-client: do not allow space in os_release_id; closes #625 +- Remove all smolt-related files and code bits +- abrtd: recreate Dump Location directory if it is delete + +* Mon Mar 25 2013 Jakub Filak 2.1.2-4 +- Check if restorecon cmd exists and run it only if it does +- Resolves: #926934 + +* Fri Mar 22 2013 Jakub Filak 2.1.2-3 +- Fix problems with spaces in retrace-client + +* Fri Mar 22 2013 Jakub Filak 2.1.2-2 +- Require correct version of libreport +- Add a patch for abrtd which ensures that the dump location always exists + +* Tue Mar 19 2013 Jakub Filak 2.1.2-1 +- Improve log messages +- Update translation +- Introduce helpers for management of list of ignored problems +- applet: show a confirmation notify bubble for reported problems in ShortenedReporting mode +- applet: mark problems as ignored and don't notify ignored problems +- applet: remove confusing "Show" button +- applet: pass problem's id to the gui app +- abrt-ccpp: try to read hs_err.log from crash's CWD +- abrt-action-perform-ccpp-analysis: Complain if analyze_RetraceServer can't run. Closes 619 +- abrt-gui: change URL to point to most recent doc +- add abrt-action-analyze-ccpp-local to ccpp-addon related to rhbz#759443 +- analyze-ccpp don't suid to abrt when run as root, related rhbz#759443 +- abrtd: prohibit DumpLocation == WatchCrashdumpArchiveDir. Closes rhbz#854668 +- abrtd: don't blame interpreter, blame the running script #609 +- a-a-ureport: don't fail on missing counter file +- a-a-ureport: allow to send ureport more than once +- dbus doc: install abrt-dbus documentation files to the correct places +- dbus doc: extend the documentation of DBus API +- dbus doc: make xml interface parseable by qtdbusxml2cpp +- dbus: add basics to a new problem +- abrt-harvest-vmcore: don't copy dir from var/spool if copy already exists +- fix path in the collect_xsession_errors event +- retrace-client: print dots instead of repeated status message +- move abrt.pth to arch specific location rhbz#912540 +- Make forking code paths more robust. +- add more logging to catch "stuck core-backtrace" problem; reduce gdb looping +- Resolves: #879160, #854668, #885044, #903005, #905412, #909968, #912540 + +* Tue Mar 05 2013 Jakub Filak 2.1.1-3 +- disable shortened and auto reporting in RHEL +- Resolves: #918040, #918041 + +* Tue Mar 05 2013 Jakub Filak 2.1.1-2 +- remove ureport events from the reporting workflow in RHEL + +* Fri Feb 08 2013 Jakub Filak 2.1.1-1 +- add SETGID bit to abrt-action-install-debuginfo-to-abrt-cache +- add abrt-desktop depency on libreport-fedora +- abrt-dump-{oops,xorg}: limit amount of created dirs, add cooldown sleep if exceeded +- abrt-watch-log: handle a case when child doesn't process its input +- abrt-watch-log: fix a bug in mmap error check +- abrt-action-analyze-xorg: fix the case with DIR != "." +- Resolves: #908256 + +* Mon Feb 04 2013 Jakub Filak 2.1.0-1 +- pkg-config: export defaultdumplocation variable +- configure: set default dump location to /var/tmp/abrt +- abrtd: sanitize mode and ovner of all elements +- updated translation +- abrtd-inotify-flood test: expend it to check for another inotify-related bug +- gnome-abrt is default GUI +- applet: on requrest open gnome-abrt instead of abrt-gui +- Make it so that g_io_channel_read_chars(channel_inotify) does not buffer data. +- multilib fixes +- daemon: unify accessibility check before delete with dbus +- dbus: move dir accessibility check from abrt to libreport +- dbus: user dd_chown instead of own impl. +- allow default dump directory to be configured through cmd line args +- introduce abrt-python +- reporter-bz: post a comment to dup bug, if we found a dup. version 2. +- replace left over magic dd modes by macro +- synchronize default dump dir mode with libreport +- replace all occurrences of hardcoded dump location by a variable +- harvest-vmcore: read dump dir path from configuration +- use lchown when chowning files over dbus +- use lchown when chowning newly created problem directory +- verify-that-report-edits test: fix to account for new CLI interface +- koops: add all x86 TRAP prefixes to list of suspicious strings +- koops: put all suspicious strings to global variable +- applet: extend comment. No code changes +- applet: introduce shortened reporting +- abrt-applet: handle SIGTERM and perform nice termination +- abrt-applet: update the seen list on every possible action +- applet: don't notify outdated new problems +- Add and use "report-cli" event instead of removed "report-cli -r" option +- fixed the relro flags rhbz#812284 +- applet: unref unused GIOChannel +- Resolves: #892230, #895742 + +* Thu Dec 20 2012 Jiri Moskovcak 2.0.20-1 +- New version 2.0.20 +- Fix typo: usefull->useful +- koops: generate core backtrace if missing +- udpated po files +- Cosmetic fixes in abrtd-inotify-flood test +- Hook up abrtd-inotify-flood to test infrastructure +- Add a testcase for inotify flood +- replace 'Start Autoreport' btn by a popup dialog +- dbus: NewProblem returns full path as problem_id +- abrt-action-analyze-xorg: fix /usr/include/paths.h -> paths.h +- abrtd: set inotify fd to non-blocking mode; ignore 0-sized inotify reads. Closes rhbz#873815 +- s/ABRT dump/problem directory/g +- abrt-applet: don't leak component name +- abrt-applet: alerts only not reported problems +- build system: Remove leftover of abrt-action-analyze-xorg shell script +- Rewrite abrt-action-analyze-xorg in C (partially) +- rework abrt-gui>Help>'Report problem with ABRT' +- abrt-action-analyze-oops: fix help text - we have no -s option +- Help text fix - using "problem directory" consistently +- abrt-dump-oops: add list of tainted modules to NOT_REPORTABLE string. Closes trac#821 +- a-a-p-c-a: use ask_yes_no_yesforever() fn from reportclient +- abrt-dump-oops: save /proc/modules contents. Partially closes trac#821 +- add ureporter wrapper sending ureport only once per problem dir +- introduce Desktop Session Autoreporting +- add Autoreporting configuration options +- abrt-action-analyze-xorg: robustify 'test "a" = "b"' against bugs +- Collect ~/.xsession_errors from its new path, if it is there. Closes trac#791 +- reflect recent libreport API changes .trac#822 +- Indentation fix. No code changes. +- minor fix to previous commit realted to .trac#541 +- don't use gtk_main* when using gtk_application .trac#890 +- minor fix to quit button +- Make "Open problem data" open the expert mode GUI +- Teach kernel oops hash to ignore "" / "" prefixes. Closes rhbz#875852 +- introduce DeleteElement D-Bus method +- introduce SetElement D-Bus method +- allow only one instance of gui trac#541 +- runtests/bugzilla-comment-format: fix false positive AGAIN +- update translations +- a-a-p-c-a: use correct name in gettext initialization +- Fix build system so that make rpm works again +- runtests/bugzilla-comment-format: fix false positive +- Improve xorg post-create. closes trac#838 +- Update po files +- fix problem occurrence counter updating algorithm +- abrt-dbus: immediately return an error if not-existing problem is requested +- bugzilla-comment-format: new test +- a-a-p-c-a: use event python API instead of abrt-handle-event +- doc: add dbus problems service specification + +* Mon Nov 26 2012 Jakub Filak 2.0.19-2 +- update translations +- Resolves: #880201 + +* Wed Nov 14 2012 Jakub Filak 2.0.19-1 +- call g_type_init() only in GLib version < 2.35 +- plugins/*_event.conf: use reporter-bz -F FMTFILE as appropriate +- repeat unchaged retrace status message only in verbose mode +- check the correct return value of yesforever answer +- abrt-handle-event: forward event process requests to parent +- don't leak optional retrace path and kernel tainted string +- enhance koops tainted flag parser +- Use "comment" element instead of "description" +- Resolves: #873488 + +* Thu Nov 01 2012 Jakub Filak 2.0.18-1 +- bugzilla-dupe-search: fix os_release to contain the same OS version as bug 755535 +- Do not stop reporting when GConf entry is not found. Closes rhbz#869833 +- Fix false positive caused by English language fix +- pyhook: import inspect lazily +- Resolves: #869833 + +* Wed Oct 24 2012 Jakub Filak 2.0.17-2 +- remove ABRT1.0-to-ABRT2.0 upgrade script from spec file + +* Wed Oct 24 2012 Jakub Filak 2.0.17-1 +- provide a problem item containing versions of binaries listed in Xorg backtrace + Adresses #867694 comment 1 +- import rpm lazily +- Resolves: #864324 + +* Wed Oct 17 2012 Jakub Filak 2.0.16-1 +- xorg_event: make post-create save dmesg, drop problems w/ binary modules + Partially addresses: #856790 +- collect_xsession_errors should not fail if !xsession-errors + Resolves: #866698 + +* Thu Oct 11 2012 Jakub Filak 2.0.15-1 +- add collect_* event to reporting chains for CCpp/Python/Kernel +- core-backtrace: make sure kernel version does not contain spaces +- core-backtrace: also include '?' flag for kerneloops +- don't check EXECUTABLE if it isn't present in list +- retrace-client: check whether all included files are regular +- abrt_exception_handler.py: save 'environ' element +- add Makefile target release-fix +- Make it possible for developer to disable crash processing for specific apps. Closes rhbz#848786 +- s/Dump directory/Problem directory/ +- Resolves: #864014, #864331, #848786 + +* Sun Oct 07 2012 Jakub Filak 2.0.14-2 +- added forgotten Requires + +* Fri Oct 05 2012 Jakub Filak 2.0.14-1 +- abrt-dump-oops: save /sys/kernel/debug/suspend_stats. Closes rhbz#787749 +- abrt-hook-ccpp: save /proc/sys/crypto/fips_enabled value if it isn't "0". Closes rhbz#747870 +- abrt-dump-oops: save /proc/sys/crypto/fips_enabled value if it isn't "0". Closes rhbz#747870 +- abrt-action-analyze-oops: fail if we end up hashing "" (empty string). Closes rhbz#862013 +- retrace-client: respect chrooted os_release in pkgcheck +- Added oops_recursive_locking1.right to Makefile.am +- fix koops-parser.at, remove bastardized copy of oops_recursive_locking1.test +- add new oops example (currently fails, the fix is coming up) +- fix oops jiffies time stamp counter removal code +- trivia: s/dump/problem directory; fix false positive in oops-with-jiffies.right +- testsuite: added f18 kickstart +- open files for appned not for write rhbz#854266 +- added more info about locking - rewrote with vda's comments rhbz#859724 +- ccpp_event.conf: ignore crashes with nonzero TracerPid. Closes rhbz#812350 +- show more info when abrtd can't acquire lock on pid, related to rhbz#859724 +- abrt-hook-ccpp: save "proc_pid_status" element +- use FILENAME_ABRT_VERSION instead of string literal +- Fix pyhook test to reflect changes made in write_dump +- trac#333: Add code generating dso_list to the python hook +- spec: tui should require libreport-cli rhbz#859770 +- trac#682: emit Crash DBus signal on org.freedesktop.problems bus +- spec: added deps on elfutils rhbz#859674 +- Resolves: #859674, #859770, #859724, #812350, #854266, #862013, #747870, #787749 + +* Fri Sep 21 2012 Jiri Moskovcak 2.0.13-1 +- + +* Tue Aug 21 2012 Jakub Filak 2.0.12-1 +- move abrtd.pid to /var/run/abrt/abrtd.pid +- abrt-harvest-vmcore: add CopyVMcore config option to copy vmcores. Closes 448, rhbz#811733, rhbz#844679 +- update po files rhzb#800784 +- applet: fix a SEGV caused by notify_init() not being called +- minor fix to pkg-config file +- ignore results of setregid() and setreuid() after glibc update +- hopefully fixed ugly applet icon rhbz#797078 +- add update of abrt server database to event chains +- Resolves: #761431, #811733, #844679, #797078 + +* Fri Aug 10 2012 Jakub Filak 2.0.11-2 +- fix abrt-dbus crash if no element is found in GetInfo() +- set sending-sensitive-data option to 'yes' for analyze_RetraceServer event + +* Thu Aug 02 2012 Jiri Moskovcak 2.0.11-1 +- new upstream release +- Resolves: #622773, #741222, #823299, #825116, #826058, #826800, #831333, #832085, #838842 + +* Tue May 22 2012 Jiri Moskovcak 2.0.10-4 +- abrt-desktop should require abrt-retrace-client +- Resolves: #823812 + +* Thu May 10 2012 Jiri Moskovcak 2.0.10-3 +- enable plugins unconditionally rhbz#819113 + +* Wed Apr 18 2012 Jiri Moskovcak +- fixed freeze in crashing python apps rhbz#808562 +- Resolves: #808562 + +* Wed Apr 18 2012 Jiri Moskovcak 2.0.10-2 +- minor rhel7 build fixes + +* Mon Apr 02 2012 Jiri Moskovcak 2.0.10-1 +- new upstream release +- fixed problem with empty problem directory rhzb#808131 +- fixed exception in a-a-a-core when eu-unstrip output is broken +- Resolves: #808131, #804309 + +* Mon Mar 19 2012 Jiri Moskovcak 2.0.7-7 +- fixed problems with rhel gpg keys rhbz#800419 + +* Thu Feb 02 2012 Jiri Moskovcak - 2.0.7-6 +- abrt-desktop shouldn't require bodhi on rhel (2nd try) + +* Wed Feb 01 2012 Jiri Moskovcak - 2.0.7-5 +- abrt-desktop shouldn't require bodhi on rhel + +* Thu Jan 12 2012 Fedora Release Engineering - 2.0.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Jan 03 2012 Jiri Moskovcak 2.0.7-3 +- build fixes + +* Thu Dec 08 2011 Jiri Moskovcak 2.0.7-2 +- added man page +- fixed weird number formatting + +* Wed Dec 07 2011 Jiri Moskovcak 2.0.7-1 +- new version +- disabled kerneloops.org +- abrt-ccpp hook fixes +- catch indentation errors in python rhbz#578969 +- fixed make check +- fixed retrace-client to work with rawhide +- require abrtd service in other services rhbz#752014 +- fixed problems with dupes rhbz#701717 +- keep abrt services enabled when updating F15->F16 +- Resolves: 752014 749891 749603 744887 730422 665210 639068 625445 701717 752014 578969 732876 757683 753183 756146 749100 + +* Fri Nov 04 2011 Jiri Moskovcak 2.0.6-1 +- new version +- Resolves: #701171 #712508 #726033 #728194 #728314 #730107 #733389 #738602 +- Resolves: #741242 #749365 #700252 #734298 #736016 #738324 #748457 #692274 +- Resolves: #711986 #723219 #749891 #712602 #744887 #749603 #625445 #665210 +- Resolves: #737991 #639068 #578969 #636000 #631856 + +* Fri Oct 07 2011 Nikola Pajkovsky - 2.0.4.981-3 +- don't file kernel bugs if "tainted: B" is set. +- don't file bugs about BIOS bugs. +- incorrect TAINTED description in bugs. +- Resoves: #718097 #708534 724838 + +* Mon Oct 3 2011 Jiri Moskovcak - 2.0.4-981-2 +- added abrt-retrace-client as a dependency + +* Thu Sep 22 2011 Jiri Moskovcak - 2.0.4.981-1 +- updated translation +- don't allow to skip the analyze step +- don't send ~ backups +- added hint to report only in English +- renamed abrt-action-kerneloops -> reporter-kerneloops +- explain option bugtracker and logger +- gui added padding to main window +- better message when gdb time outs +- added support for catching vmcores +- added version to Logger output +- [RFE] abrt should have an easy way to include smolt-profile +- Resolves: #694828 #694833 #704958 #735071 #731189 #739182 #704452 #734037 #606123 #631822 + +* Tue Sep 13 2011 Jiri Moskovcak - 2.0.4-5 +- minor spec file fix + +* Tue Sep 13 2011 Jiri Moskovcak - 2.0.4-4 +- fixed sigsegv in a-a-save-package-data rhbz#737961 +- fixed privs for /var/run/abrt rhbz#725974 +- fixed segv in free space check +- Resolves: #737961 #725974 + +* Tue Aug 30 2011 Jiri Moskovcak - 2.0.4-3 +- fixed abrt1-abrt2 update + +* Fri Aug 19 2011 Jiri Moskovcak - 2.0.4-2 +- enable bugzilla for kerneloops rhbz#725970 +- Resolves: #725970 + +* Thu Jul 21 2011 Jiri Moskovcak - 2.0.4-1 +- new upstream version +- resolves wrong provs/obsolete rhbz#723376 +- split main UI into two panes +- debuginfo-install script asks before downloading +- Resolves: #723376 + +* Mon Jun 20 2011 Jiri Moskovcak - 2.0.3-1 +- new upstream release + +* Fri May 20 2011 Jiri Moskovcak - 2.0.2-6 +- make abrt-ccpp and abrt-oops start on boot + +* Fri May 13 2011 Karel Klíč - 2.0.2-5 +- Do not force service startup in %%posttrans, as it breaks live media + creation (rhbz#704415) + +* Sun May 08 2011 Jiri Moskovcak 2.0.2-4 +- fixed prgname, fixes problem where Gnome3 shows lowres icons instead + nice highres ones + +* Fri May 06 2011 Christopher Aillon - 2.0.2-3 +- Update icon cache scriptlet per packaging guidelines + +* Fri May 06 2011 Jiri Moskovcak 2.0.2-2 +- flush messages in retrace client + +* Thu May 05 2011 Jiri Moskovcak 2.0.2-1 +- updated translation +- new icons (thanks to Lapo Calamandrei) +- changed address of retrace01 to retrace +- fixed problem with not trusted ssl certificate #695977 +- #692713 Dialogue Box Buttons Wrong Way Around +- #695452 abrt crashing when trying to generate backtrace +- #698458 RFE: report separators between reports in abrt.log +- #699098 999 futile attempts to delete excess debuginfo +- #691881 GUI doesn't sort by last occurrence by default, and doesn't remember that sort order if you set it and restart the app +- #698418 Can't access '/var/spool/abrt/ccpp-2011-04-18-11:53:22-2661': Permission denied +- #698934 abrt-applet segfault on abrtd restart +- #695450 Retrace client - show meaningful message on failure +- #616407 RFE: Change abrt to catch TRAP signal crashes +- #584352 running service abrtd a non-root user doesn't show error +- retrace client: fail on servers with problematic SSL certificates (kklic@redhat.com) +- retrace-client: Load system-wide certificates. Move NSS init/shutdown to main, as it shouldn't be run multiple times. (kklic@redhat.com) +- abrt-cli: update manpage. Closes #243 (dvlasenk@redhat.com) +- move abrt-handle-crashdump to abrt-cli package. No code changes (dvlasenk@redhat.com) +- add abrt-action-print manpage. Closes #238 (dvlasenk@redhat.com) +- add abrt-action-trim-files manpage. Closes #241 (dvlasenk@redhat.com) +- added abrt-action-generate-backtrace manpage (dvlasenk@redhat.com) +- add abrt-action-analyze-backtrace manpage. Closes #227 (dvlasenk@redhat.com) +- retrace server: do not create zombie workers (mtoman@redhat.com) +- btparser: Remove top frame with address 0x0000 (jump to NULL) during normalization to avoid incorrect backtrace ratings (rhbz#639049) (kklic@redhat.com) +- abrt-gui: better list refreshing. Closes #251 (dvlasenk@redhat.com) +- fix for spurious "Lock file 'DIR/.lock' is locked by process PID" message (dvlasenk@redhat.com) +- Asciidoc manpage support; abrt-action-mailx manpage (kklic@redhat.com) +- list-dsos: don't list the same library multiple times (jmoskovc@redhat.com) +- call abrt-action-trim-files from abrt-action-install-debuginfo (dvlasenk@redhat.com) +- list-dsos: added package install time trac#123 (jmoskovc@redhat.com) +- retrace client: handle messages in HTTP body (mtoman@redhat.com) +- retrace server: remove chroot on failure (mtoman@redhat.com) +- spec: use versioned deps on libreport (jmoskovc@redhat.com) +- generate abrt version from git (npajkovs@redhat.com) +- abrt-action-trim-files needs to be suided rhbz#699098 (jmoskovc@redhat.com) +- gui: suppress printing dumpdir access errors (bz#698418) (mlichvar@redhat.com) +- Do not leave dump dir locked by abrt-action-generate-backtrace. (kklic@redhat.com) +- wizard: expand explanatory text on 1st screen. Closes 201 (dvlasenk@redhat.com) +- gui: fixed the OK and CANCEL buttons order in event config dialog (jmoskovc@redhat.com) +- Make abrt-action-list-dsos.py take -m maps -o dsos params; and abrt-action-analyze-core.py to take -o build_ids param (dvlasenk@redhat.com) +- abrt-action-install-debuginfo.py: don't die on some Yum exceptions. closes bz#681281 (dvlasenk@redhat.com) + +* Thu Apr 21 2011 Jiri Moskovcak 2.0.1-2 +- don't allow reporting of backtrace with rating = 0 rhbz#672023 +- use versioned deps on libreport + +* Wed Apr 20 2011 Jiri Moskovcak 2.0.1-1 +- updated to 2.0.1 +- updated translation +- allowed reporting oops to bugzilla +- added warning when the plugin settings are wrong +- added help text in plugins settings +- the plugin settings dialog is translatable +- improved dir rescanning logic in abrt-gui +- fixed icons for child dialogs +- retrace-client: human readable messages instead of http codes +- save envirnment variables when app crashes +- fixed gpg/pgp check +- revert to the old icon + +* Fri Apr 15 2011 Jiri Moskovcak 2.0.0-5 +- fixed problem with abrt-action-debuginfo-install rhbz#692064 + +* Thu Mar 31 2011 Jiri Moskovcak 2.0.0-4 +- fixed prgname in wizard rhbz#692442 + +* Wed Mar 30 2011 Jiri Moskovcak 2.0.0-3 +- fixed notification persistence in gnome3 (again) +- fixed wrong group:user on /var/cache/abrt-di afte rupdate from abrt 1.x #692064 +- added mono-core to blacklist + +* Tue Mar 29 2011 Jiri Moskovcak 2.0.0-2 +- use %%ghost on files in /var/run and /var/lock rhbz#656542 +- fixed notification persistence in gnome3 +- added analyze selector to CLI +- refuse reporting to bz without backtrace or hash +- use g_set_prgname to set the prgname of abrt-gui trac#180 + +* Wed Mar 16 2011 Jiri Moskovcak 2.0.0-1 +- update to the latest upstream version +- many improvements +- FIXME: add closed bugzillas + +* Fri Feb 18 2011 Jiri Moskovcak 1.1.17-2 +- removed gnome-python2-vfs dependency + +* Mon Feb 07 2011 Fedora Release Engineering - 1.1.17-1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Sat Feb 05 2011 Jiri Moskovcak 1.1.17-1 +- rewritten abrt-debuginfo-install script to use the yum API +- GUI: added search box to backtrace view rhbz#612017 (jmoskovc@redhat.com) +- fixed some gui warnings rhbz#671488 (jmoskovc@redhat.com) +- btparser/dupechecker improvements: + - Better handling of glibc architecture-specific functions (kklic@redhat.com) + - support format of thread header: "Thread 8 (LWP 6357):" (kklic@redhat.com) + +* Fri Feb 04 2011 Jiri Moskovcak 1.1.16-1 +- rhtsupport: added list of attachments to comment rhbz#668875 +- rhtsupport: stop consuming non-standard header rhbz#670492 +- Resolves: #670492, #668875 + +* Wed Jan 19 2011 Jiri Moskovcak 1.1.15-2 +- add a gui/uid to useradd/groupadd command (reserved in setup rhbz#670231) +- Resolves: #650975 + +* Wed Jan 19 2011 Jiri Moskovcak 1.1.15-1 +- removed unused files (jmoskovc@redhat.com) +- update po files (jmoskovc@redhat.com) +- removed some unused files (jmoskovc@redhat.com) +- pass old pattern to ccpp hook and use it (dvlasenk@redhat.com) +- GUI: added warning when gnome-keyring can't be accessed rhbz#576866 (jmoskovc@redhat.com) +- 666893 - Unable to make sense of XML-RPC response from server (npajkovs@redhat.com) +- PyHook: ignore SystemExit exception rhbz#636913 (jmoskovc@redhat.com) +- 665405 - ABRT's usage of sos does not grab /var/log/messages (npajkovs@redhat.com) +- add a note in report if kernel is tainted (npajkovs@redhat.com) +- KerneloopsScanner.cpp: make a room for NULL byte (npajkovs@redhat.com) +- fix multicharacter warring (npajkovs@redhat.com) +- open help page instead of about rhbz#666267 + +* Wed Jan 19 2011 Jiri Moskovcak 1.1.14-3 +- fixed build with rpm 4.9 (thx panu pmatilai for the patch) + +* Wed Jan 19 2011 Matthias Clasen 1.1.14-2 +- Rebuild against new rpm + +* Wed Nov 17 2010 Jiri Moskovcak 1.1.14-1 +- made howto mandatory +- fixed segv in abrt-hook-ccpp rhbz#652338 +- added warning if kernel was tainted +- make the "install debuginfo" hint selectable rhbz#644343 +- wrap howto and comments rhbz#625237 +- wrap lines in the backtrace window rhbz#625232 +- changed '*' to '•' rhbz#625236 +- make the bt viewer not-editable rhbz#621871 +- removed unneeded patches + +* Wed Nov 10 2010 Jiri Moskovcak 1.1.13-3 +- Rebuild for libnotify-0.7 + +* Wed Aug 25 2010 Jochen Schmitt 1.1.13-2 +- Rebuild for python-2.7 + +* Tue Aug 10 2010 Jiri Moskovcak 1.1.13-1 +- updated translation +- added native systemd file rhbz#617316 (jmoskovc@redhat.com) +- added ar to LINGUAS (jmoskovc@redhat.com) +- made /etc/abrt/plugins/Bugzilla.conf world-readable again (jmoskovc@redhat.com) +- l10n: adding fa locale (lashar@fedoraproject.org) +- l10n: new Persian (lashar@fedoraproject.org) +- remove libzip code (npajkovs@redhat.com) +- add libxml-2.0 into configure (npajkovs@redhat.com) +- fixed typo in man page rhbz#610748 (jmoskovc@redhat.com) +- RHTSupport: GUI's SSLVerify checkbox had one missing bit of code (vda.linux@googlemail.com) +- abrt_curl: discard headers from HTTP redirection (vda.linux@googlemail.com) +- moved abrt.socket and abrtd.lock into /var/run/abrt making selinux happy (jmoskovc@redhat.com) +- Mention --info and --backtrace in the abrt-cli man page. (kklic@redhat.com) +- build fixes for gcc 4.5 (jmoskovc@redhat.com) +- abrt-hook-ccpp: small fixes prompted by testing on RHEL5 (vda.linux@googlemail.com) +- Added --info action to abrt-cli (mtoman@redhat.com) +- wire up SSLVerify in RHTSupport.conf to actually have the desired effect (vda.linux@googlemail.com) +- fixed tooltip localization rhbz#574693 (jmoskovc@redhat.com) +- dumpoops/KerneloopsScanner: add pid to crashdump name (vda.linux@googlemail.com) +- A message change suggested by dhensley (kklic@redhat.com) + +* Tue Jul 27 2010 David Malcolm - 1.1.10-4 +- rebuild + +* Tue Jul 27 2010 Jiri Moskovcak 1.1.10-3 +- blacklist /usr/bin/nspluginviewer + +* Mon Jul 26 2010 Jiri Moskovcak 1.1.10-2 +- minor build fixes + +* Mon Jul 26 2010 Jiri Moskovcak 1.1.10-1 +- blacklisted mono-core package +- die with an error message if the database plugin is not accessible when needed (kklic@redhat.com) +- change RHTSupport URL protocol from HTTP to HTTPS (dvlasenk@redhat.com) +- the Logger plugin returns a message as the result of Report() call instead of a file URL (kklic@redhat.com) +- Cut off prelink suffixes from executable name if any (mtoman@redhat.com) +- CCpp: abrt-debuginfo-install output lines can be long, accomodate them (dvlasenk@redhat.com) +- do not pop up message on crash if the same crash is the same (dvlasenk@redhat.com) +- fedora bugs do not depend on rhel bugs (npajkovs@redhat.com) +- GUI: fixed problem with no gkeyring and just one reporter enabled rhbz#612457 (jmoskovc@redhat.com) +- added a document about interpreted language integration (kklic@redhat.com) +- moved devel header files to inc/ and included them in -devel package (jmoskovc@redhat.com, npajkovs@redhat.com) +- renamed abrt-utils.pc to abrt.pc (jmoskovc@redhat.com) +- string updates based on a UI text review (kklic@redhat.com) +- rhtsupport obsoletes the old rh plugins (jmoskovc@redhat.com) +- list allowed items in RHTSupport.conf (kklic@redhat.com) +- GUI: fixed package name in warning message when the packge is kernel rhbz#612191 (jmoskovc@redhat.com) +- remove rating for python crashes (jmoskovc@redhat.com) +- CCpp: give zero rating to an empty backtrace (jmoskovc@redhat.com) +- GUI: allow sending crashes without rating (jmoskovc@redhat.com) +- RHTSupport: set default URL to api.access.redhat.com/rs (dvlasenk@redhat.com) +- abort initialization on abrt.conf parsing errors (dvlasenk@redhat.com) +- changing NoSSLVerify to SSLVerify in bugzilla plugin (mtoman@redhat.com) +- added rating to python crashes +- show hostname in cli (kklic@redhat.com) +- updated po files (jmoskovc@redhat.com) +- added support for package specific actions rhbz#606917 (jmoskovc@redhat.com) +- renamed TicketUploader to ReportUploader (jmoskovc@redhat.com) +- bad hostnames on remote crashes (npajkovs@redhat.com) +- unlimited MaxCrashReportsSize (npajkovs@redhat.com) +- abrt_rh_support: improve error messages rhbz#608698 (vda.linux@googlemail.com) +- Added BacktraceRemotes option. (kklic@redhat.com) +- Allow remote crashes to not to belong to a package. Skip GPG check on remote crashes. (kklic@redhat.com) +- remove obsolete Catcut and rhfastcheck reporters (vda.linux@googlemail.com) +- make rhel bug point to correct place rhbz#578397 (npajkovs@redhat.com) +- Show comment and how to reproduce fields when reporing crashes in abrt-cli (kklic@redhat.com) +- Bash completion update (kklic@redhat.com) +- Rename --get-list to --list (kklic@redhat.com) +- Update man page (kklic@redhat.com) +- Options overhaul (kklic@redhat.com) +- abrt should not point to Fedora bugs but create new RHEL bug instead (npajkovs@redhat.com) +- Don't show global uuid in report (npajkovs@redhat.com) +- GUI: don't try to use action plugins as reporters (jmoskovc@redhat.com) +- Added WatchCrashdumpArchiveDir directive to abrt.conf and related code (vda.linux@googlemail.com) +- GUI: don't show the placehondler icon rhbz#605693 (jmoskovc@redhat.com) +- Make "Loaded foo.conf" message less confusing (vda.linux@googlemail.com) +- Fixed a flaw in strbuf_prepend_str (kklic@redhat.com) +- TicketUploader: do not add '\n' to text files in crashdump (vda.linux@googlemail.com) +- GUI: skip the plugin selection, if it's not needed (jmoskovc@redhat.com) +- Check conf file for syntax errors (kklic@redhat.com) +- move misplaced sanity checks in cron parser (vda.linux@googlemail.com) +- GUI: don't require the rating for all reporters (jmoskovc@redhat.com) +- GUI: fixed exception when there is no configure dialog for plugin rhbz#603745 (jmoskovc@redhat.com) +- Add a GUI config dialog for RHTSupport plugin (vda.linux@googlemail.com) +- abrt_curl: fix a problem with incorrect content-length on 32-bit arches (vda.linux@googlemail.com) +- sosreport: save the dump directly to crashdump directory (vda.linux@googlemail.com) +- plugin rename: rhticket -> RHTSupport (vda.linux@googlemail.com) +- Daemon socket for reporting crashes (karel@localhost.localdomain) +- GUI: fixed few typos (jmoskovc@redhat.com) + +* Wed Jul 21 2010 David Malcolm - 1.1.5-1.1 +- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild + +* Wed Jun 09 2010 Jiri Moskovcak 1.1.5-1 +- GUI: polished the reporter assistant (jmoskovc@redhat.com) +- Logger reporter: do not store useless info (vda.linux@googlemail.com) +- ccpp hook: add SaveBinaryImage option which saves of the crashed binary (vda.linux@googlemail.com) +- SPEC: added CFLAGS="-fno-strict-aliasing" to fix the rpmdiff warnings rhbz#599364 (jmoskovc@redhat.com) +- GUI: don't remove user comments when re-reporting the bug rhbz#601779 (jmoskovc@redhat.com) +- remove "(deleted)" from executable path rhbz#593037 (jmoskovc@redhat.com) +- CCpp analyzer: add 60 sec cap on gdb run time. (vda.linux@googlemail.com) +- add new file *hostname* into debugdump directory (npajkovs@redhat.com) +- rhticket: upload real tarball, not a bogus file (vda.linux@googlemail.com) +- abrt-hook-ccpp: eliminate race between process exit and compat coredump creation rhbz#584554 (vda.linux@googlemail.com) +- rhticket: actually do create ticket, using Gavin's lib code (vda.linux@googlemail.com) +- properly obsolete gnome-python2-bugbuddy rhbz#579748 (jmoskovc@redhat.com) +- GUI: remember comment and howto on backtrace refresh rhbz#545690 (jmoskovc@redhat.com) +- use header case in button label rhbz#565812 (jmoskovc@redhat.com) +- make log window resizable (vda.linux@googlemail.com) +- rename a few remaining /var/cache/abrt -> /var/spool/abrt (vda.linux@googlemail.com) + +* Wed May 26 2010 Jiri Moskovcak 1.1.4-1 +- added reporting wizard +- fixed few leaked fds +- fixed kerneloops --- cut here --- problem +- updated translations + +* Fri May 21 2010 Denys Vlasenko 1.1.3-1 +- More fixes for /var/cache/abrt -> /var/spool/abrt conversion + +* Fri May 21 2010 Jiri Moskovcak 1.1.2-3 +- fixed spec file to create /var/spool/abrt rhbz#593670 +- updated init script to reflect the pid file renaming + +* Wed May 19 2010 Jiri Moskovcak 1.1.2-1 +- updated translation +- obsolete gnome-python2-bugbuddy rhbz#579748 (jmoskovc@redhat.com) +- Report "INFO: possible recursive locking detected rhbz#582378 (vda.linux@googlemail.com) +- kill yumdownloader if abrt-debuginfo-install is terminated mid-flight (vda.linux@googlemail.com) +- do not create Python dumps if argv[0] is not absolute (vda.linux@googlemail.com) +- improve kerneloops hash (vda.linux@googlemail.com) +- Move /var/cache/abrt to /var/spool/abrt. rhbz#568101. (vda.linux@googlemail.com) +- bugzilla: better summary and decription messages (npajkovs@redhat.com) +- renamed daemon pid and lock file rhbz#588315 (jmoskovc@redhat.com) +- Daemon socket for reporting crashes (kklic@redhat.com) +- Move hooklib from src/Hooks to lib/Utils (kklic@redhat.com) + +* Thu May 13 2010 Jiri Moskovcak 1.1.1-1 +- updated translations +- removed avant-window-navigator from blacklist (jmoskovc@redhat.com) +- Abort debuginfo download if low on disk space (partially addresses #564451) (vda.linux@googlemail.com) +- fix bug 588945 - sparse core files performance hit (vda.linux@googlemail.com) +- Add BlackListedPaths option to abrt.conf. Fixes #582421 (vda.linux@googlemail.com) +- Do not die when /var/cache/abrt/*/uid does not contain a number (rhbz#580899) (kklic@redhat.com) +- rid of rewriting config in /etc/abrt/abrt.conf (npajkovs@redhat.com) +- fix bug 571411: backtrace attachment of the form /var/cache/abrt/foo-12345-67890/backtrace (vda.linux@googlemail.com) +- Do not echo password to terminal in abrt-cli (kklic@redhat.com) +- improved daemon error messages (kklic@redhat.com) + +* Mon May 03 2010 Jiri Moskovcak 1.1.0-1 +- updated transaltions +- added Hebrew into languages +- updated icons rhbz#587698 (jmoskovc@redhat.com) +- Bugzilla login/password emptiness check uses 'or' instead of 'and' (kklic@redhat.com) +- Show error message when abrtd service is run as non-root. rhbz#584352 (kklic@redhat.com) +- Rename EnableOpenGPG to OpenGPGCheck in the man page rhbz#584332 (kklic@redhat.com) +- Document ProcessUnpackaged in abrt.conf.5. Document default values. (kklic@redhat.com) +- Crash function is now detected even for threads without an abort frame (kklic@redhat.com) +- comment can be private (npajkovs@redhat.com) +- do not catch perl/python crashes when the script is not of known package origin (kklic@redhat.com) +- kerneloop is more informative when failed (npajkovs@redhat.com) +- add function name into summary(if it's found) (npajkovs@redhat.com) +- Change kerneloops message when it fails (npajkovs@redhat.com) + +* Fri Apr 30 2010 Karel Klic 1.0.9-3 +- fixed crash function detection (a part of duplication detection) + +* Wed Apr 14 2010 Jiri Moskovcak 1.0.9-2 +- fixed problem with localized yum messages rhbz#581804 +- better bugzilla summary (napjkovs@redhat.com) +- ignore interpreter (py,perl) crashes caused by unpackaged scripts (kklic@redhat.com) + +* Tue Apr 06 2010 Jiri Moskovcak 1.0.9-1 +- hooklib: fix excessive rounding down in free space calculation (bz#575644) (vda.linux@googlemail.com) +- gui: fix 551989 "crash detected in abrt-gui-1.0.0-1.fc12" and such (vda.linux@googlemail.com) +- trivial: fix 566806 "abrt-gui sometimes can't be closed" (vda.linux@googlemail.com) +- gui: fix the last case where gnome-keyring's find_items_sync() may throw DeniedError (vda.linux@googlemail.com) +- fixed some compilation problems on F13 (jmoskovc@redhat.com) +- updated translations (jmoskovc@redhat.com) +- minor fix to sosreport to make it work with latest sos rhbz#576861 (jmoskovc@redhat.com) + +* Wed Mar 31 2010 Jiri Moskovcak 1.0.9-0.201003312045.1 +- test day build +- updated translation +- minor fix to sosreport to make it work with latest sos rhbz#576861 (jmoskovc@redhat.com) +- GUI: total rewrite based on design from Mairin Duffy (jmoskovc@redhat.com) +- trivial: better HTTP/curl error reporting (vda.linux@googlemail.com) +- Use backtrace parser from abrtutils, new backtrace rating algorithm, store crash function if it's known (kklic@redhat.com) +- abrt-rate-backtrace is replaced by abrt-backtrace --rate (kklic@redhat.com) +- Ignore some temp files (kklic@redhat.com) +- PYHOOK: don't use sitecustomize.py rhbz#539497 (jmoskovc@redhat.com) +- rhfastcheck: a new reporter plugin based on Gavin's work (vda.linux@googlemail.com) +- rhticket: new reporter plugin (vda.linux@googlemail.com) +- GUI: fixed few window icons (jmoskovc@redhat.com) +- Allow user to select which reporter he wants to use to report a crash using CLI.(kklic@redhat.com) +- bz reporter: s/uuid/duphash; more understandable message; simplify result str generation; fix indentation (vda.linux@googlemail.com) +- GUI: fixed crash count column sorting rhbz#573139 (jmoskovc@redhat.com) +- Kerneloops: use 1st line of oops as REASON. Closes rhbz#574196. (vda.linux@googlemail.com) +- Kerneloops: fix a case when we file an oops w/o backtrace (vda.linux@googlemail.com) +- minor fix in abrt-debuginfo-install to make it work with yum >= 3.2.26 (jmoskovc@redhat.com) +- GUI: added action to applet to directly report last crash (jmoskovc@redhat.com) +- Never flag backtrace as binary file (fixes problem observed in bz#571411) (vda.linux@googlemail.com) +- improve syslog file detection. closes bz#565983 (vda.linux@googlemail.com) +- add arch, package and release in comment (npajkovs@redhat.com) +- add ProcessUnpackaged option to abrt.conf (vda.linux@googlemail.com) +- abrt-debuginfo-install: use -debuginfo repos which match enabled "usual" repos (vda.linux@googlemail.com) +- fix format security error (fcrozat@mandriva.com) +- icons repackaging (jmoskovc@redhat.com) +- partial fix for bz#565983 (vda.linux@googlemail.com) +- SPEC: Updated source URL (jmoskovc@redhat.com) +- removed unneeded patches +- and much more ... + +* Sat Mar 13 2010 Jiri Moskovcak 1.0.8-3 +- fixed kerneloops reporting rhbz#570081 +- fixed Source url +- fixed debuginfo-install to work on F13 + - improved debuginfo-install (vda.linux@googlemail.com) + - fix debuginfo-install to work with yum >= 3.2.26 (jmoskovc@redhat.com) + +* Wed Mar 3 2010 Denys Vlasenko 1.0.8-2 +- fix initscript even more (npajkovs@redhat.com) +- remove -R2 from yum command line + +* Mon Feb 22 2010 Jiri Moskovcak 1.0.8-1 +- fix initscript (npajkovs@redhat.com) +- Kerneloops: make hashing more likely to produce same hash on different oopses (vda.linux@googlemail.com) + +* Mon Feb 22 2010 Jiri Moskovcak 1.0.8-0.git-20100222 +- Kerneloops: make hashing more likely to produce same hash on different oopses (vda.linux@googlemail.com) +- make abrt work with the latest kernels (>= 2.6.33) (jmoskovc@redhat.com) +- lib/Utils/abrt_dbus: utf8-sanitize all strings in dbus messages (fixes #565876) (vda.linux@googlemail.com) + +* Fri Feb 12 2010 Jiri Moskovcak 1.0.7-1 +- enabled column sorting rhbz#541853 +- Load plugin settings also from ~/.abrt/*.conf (kklic@redhat.com) +- fix bz#541088 "abrt should not catch python excp EPIPE" (vda.linux@googlemail.com) +- fix bz#554242 "Cannot tab between input areas in report dialog" (vda.linux@googlemail.com) +- fix bz#563484 "abrt uses unnecessary disk space when getting debug info" (vda.linux@googlemail.com) +- Don't show empty 'Not loaded plugins' section - fix#2 rhbz#560971 (jmoskovc@redhat.com) +- fix big-endian build problem (vda.linux@googlemail.com) +- Fixes, displays package owners (kklic@redhat.com) +- GUI: fixed exception in plugin settings dialog rhbz#560851 (jmoskovc@redhat.com) +- GUI: respect system settings for toolbars rhbz#552161 (jmoskovc@redhat.com) +- python hook: move UUID generation to abrtd; generate REASON, add it to bz title (vda.linux@googlemail.com) +- make "reason" field less verbose; bz reporter: include it in "summary" (vda.linux@googlemail.com) +- added avant-window-navigator to blacklist per maintainer request (jmoskovc@redhat.com) +- CCpp analyzer: fix rhbz#552435 (bt rating misinterpreting # chars) (vda.linux@googlemail.com) +- Ask for login and password if missing from reporter plugin. (kklic@redhat.com) +- abrtd: fix handling of dupes (weren't deleting dup's directory); better logging (vda.linux@googlemail.com) +- abrtd: handle "perl -w /usr/bin/script" too (vda.linux@googlemail.com) +- Component-wise duplicates (kklic@redhat.com) +- abrtd: fix rhbz#560642 - don't die on bad plugin names (vda.linux@googlemail.com) +- Fixed parsing backtrace from rhbz#549293 (kklic@redhat.com) +- GUI: fixed scrolling in reporter dialog rhbz#559687 (jmoskovc@redhat.com) +- fixed button order in plugins windows rhbz#560961 (jmoskovc@redhat.com) +- GUI: fixed windows icons and titles rhbz#537240, rhbz#560964 (jmoskovc@redhat.com) +- Fix to successfully parse a backtrace from rhbz#550642 (kklic@redhat.com) +- cli: fix the problem of not showing oops text in editor (vda.linux@googlemail.com) +- GUI: fix rhbz#560971 "Don't show empty 'Not loaded plugins' section" (vda.linux@googlemail.com) + +* Tue Feb 2 2010 Jiri Moskovcak 1.0.6-1 +- print __glib_assert_msg (rhbz#549735); +- SPEC: added some requires to abrt-cli to make it work out-of-the-box (jmoskovc@redhat.com) +- abrt-hook-ccpp: fix rhbz#560612 "limit '18446744073709551615' is bogus" rhbz#560612(vda.linux@googlemail.com) +- APPLET: don't show the icon when abrtd is not running rhbz#557866 (jmoskovc@redhat.com) +- GUI: made report message labels wrap (jmoskovc@redhat.com) +- GUI: don't die if daemon doesn't send the gpg keys (jmoskovc@redhat.com) +- disabled the autoreporting of kerneloopses (jmoskovc@redhat.com) +- Kerneloops: fix BZ reporting of oopses (vda.linux@googlemail.com) +- GUI: wider report message dialog (jmoskovc@redhat.com) +- moved the gpg key list from abrt.conf to gpg_keys file (jmoskovc@redhat.com) +- Logger: create log file with mode 0600 (vda.linux@googlemail.com) +- GUI: fixed the rating logic, to prevent sending BT with rating < 3 (jmoskovc@redhat.com) +- Report GUI: made more fields copyable - closed rhbz#526209; tweaked wording (vda.linux@googlemail.com) +- GUI: fixed bug caused by failed gk-authorization (jmoskovc@redhat.com) + +* Fri Jan 29 2010 Jiri Moskovcak 1.0.5-1 +- moved the gpg key list from abrt.conf to gpg_keys file (jmoskovc@redhat.com) +- Logger: create log file with mode 0600 rhbz#559545 (vda.linux@googlemail.com) +- GUI: fixed the rating logic, to prevent sending BT with rating < 3 (jmoskovc@redhat.com) +- Report GUI: made more fields copyable - closed rhbz#526209; tweaked wording (vda.linux@googlemail.com) +- GUI: fixed bug caused by failed gk-authorization (jmoskovc@redhat.com) +- fix bug 559881 (kerneloops not shown in "new" GUI) (vda.linux@googlemail.com) +- GUI ReporterDialog: hide log button (vda.linux@googlemail.com) +- added valgrind and strace to blacklist (jmoskovc@redhat.com) +- SOSreport: do not leave stray files in /tmp (vda.linux@googlemail.com) +- Save the core where it belongs if ulimit -c is > 0 (jmoskovc@redhat.com) +- reenabled gpg check (jmoskovc@redhat.com) +- SOSreport: run it niced (vda.linux@googlemail.com) +- report GUI: rename buttons: Log -> Show log, Send -> Send report (vda.linux@googlemail.com) +- applet: reduce blinking timeout to 3 sec (vda.linux@googlemail.com) +- fix dbus autostart (vda.linux@googlemail.com) +- abrtd: set "Reported" status only if at least one reporter succeeded (vda.linux@googlemail.com) +- SQLite3: disable newline escaping, SQLite does not handle it (vda.linux@googlemail.com) +- SOSreport: make it avoid double runs; add forced regeneration; upd PLUGINS-HOWTO (vda.linux@googlemail.com) +- attribute SEGVs in perl to script's package, like we already do for python (vda.linux@googlemail.com) + +* Wed Jan 20 2010 Jiri Moskovcak 1.0.4-1 +- enabled sosreport +- fixes in ticketuploader +- GUI: redesign of reporter dialog (jmoskovc@redhat.com) +- Set the prgname to "Automatic Bug Reporting Tool" fixes rhbz#550357 (jmoskovc@redhat.com) +- CCpp analyzer: display __abort_msg in backtrace. closes rhbz#549735 (vda.linux@googlemail.com) +- s/os.exit/sys.exit - closes rhbz#556313 (vda.linux@googlemail.com) +- use repr() to print variable values in python hook rhbz#545070 (jmoskovc@redhat.com) +- gui: add logging infrastructure (vda.linux@googlemail.com) +- Added "Enabled = yes" to all plugin's config files (jmoskovc@redhat.com) +- *: disable plugin loading/unloading through GUI. Document keyring a bit (vda.linux@googlemail.com) +- fix memory leaks in catcut plugin (npajkovs@redhat.com) +- fix memory leaks in bugzilla (npajkovs@redhat.com) +- abrt-hook-python: sanitize input more; log to syslog (vda.linux@googlemail.com) +- Fixed /var/cache/abrt/ permissions (kklic@redhat.com) +- Kerneloops: we require commandline for every crash, save dummy one for oopses (vda.linux@googlemail.com) +- *: remove nss dependencies (vda.linux@googlemail.com) +- CCpp: use our own sha1 implementation (less pain with nss libs) (vda.linux@googlemail.com) +- DebugDump: more consistent logic in setting mode and uid:gid on dump dir (vda.linux@googlemail.com) +- fixes based on security review (vda.linux@googlemail.com) +- SOSreport/TicketUploader: use more restrictive file modes (vda.linux@googlemail.com) +- abrt-hook-python: add input sanitization and directory size guard (vda.linux@googlemail.com) +- RunApp: safer chdir. Overhauled "sparn a child and get its output" in general (vda.linux@googlemail.com) +- DebugDump: use more restrictive modes (vda.linux@googlemail.com) +- SQLite3: check for SQL injection (vda.linux@googlemail.com) +- replace plugin enabling via EnabledPlugins by par-plugin Enabled = yes/no (vda.linux@googlemail.com) +- abrt.spec: move "requires: gdb" to abrt-desktop (vda.linux@googlemail.com) +- ccpp: add a possibility to disable backtrace generation (vda.linux@googlemail.com) +- abrtd: limit the number of frames in backtrace to 3000 (vda.linux@googlemail.com) + +* Tue Jan 5 2010 Jiri Moskovcak 1.0.3-1 +- speed optimalization of abrt-debuginfo-install (jmoskovc@redhat.com) +- updated credits (jmoskovc@redhat.com) +- GUI: fixed crash when abrt-gui is run without X server rhbz#552039 (jmoskovc@redhat.com) +- abrt-backtrace manpage installed (kklic@redhat.com) +- cmdline and daemon checking is done by abrt-python-hook (kklic@redhat.com) +- moved get_cmdline() and daemon_is_ok() to abrtlib (kklic@redhat.com) +- large file support for whole abrt (kklic@redhat.com) +- made s_signal_caught volatile (vda.linux@googlemail.com) +- abrt-debuginfo-install: fixes for runs w/o cachedir (vda.linux@googlemail.com) +- remove unsafe log() from signal handler (vda.linux@googlemail.com) +- src/Hooks/CCpp.cpp: use and honour 'c' (core limit size). (vda.linux@googlemail.com) +- lib/Plugins/CCpp.cpp: save gdb error messages too (vda.linux@googlemail.com) +- prevent destructors from throwing exceptions; check curl_easy_init errors (vda.linux@googlemail.com) +- don't blame python for every crash in /usr/bin/python rhbz#533521 trac#109 (jmoskovc@redhat.com) +- GUI: autoscroll log window (jmoskovc@redhat.com) +- Kerneloops.conf: better comments (vda.linux@googlemail.com) +- applet: reduce blinking time to 30 seconds (vda.linux@googlemail.com) +- add paranoia checks on setuid/setgid (vda.linux@googlemail.com) +- more "obviously correct" code for secure opening of /dev/null (vda.linux@googlemail.com) +- get rid of ugly sleep call inside while() (vda.linux@googlemail.com) + +* Mon Dec 14 2009 Jiri Moskovcak 1.0.2-1 +- disabled GPG check again (jmoskovc@redhat.com) +- abrt-pyhook-helper rename (vda.linux@googlemail.com) +- abrt-cli: report success/failure of reporting. closes bug 71 (vda.linux@googlemail.com) +- less logging (vda.linux@googlemail.com) +- mkde abrt-gui --help and --version behave as expected. closes bug 85 (vda.linux@googlemail.com) +- dbus lib: fix parsing of 0-element arrays. Fixes bug 95 (vda.linux@googlemail.com) +- make "abrt-cli --delete randomuuid" report that deletion failed. closes bug 59 (vda.linux@googlemail.com) +- applet: make animation stop after 1 minute. (closes bug 108) (vda.linux@googlemail.com) +- show comment and how to reproduce fields, when BT rating > 3 (jmoskovc@redhat.com) +- Gui: make report status window's text wrap. Fixes bug 82 (vda.linux@googlemail.com) +- CCpp analyzer: added "info sharedlib" (https://fedorahosted.org/abrt/ticket/90) (vda.linux@googlemail.com) +- added link to bugzilla new account page to Bugzilla config dialog (jmoskovc@redhat.com) +- GUI: added log window (jmoskovc@redhat.com) + +* Tue Dec 8 2009 Jiri Moskovcak 1.0.1-1 +- PyHook: better logic for checking if abrtd is running rhbz#539987 (jmoskovc@redhat.com) +- re-enabled gpg sign checking (jmoskovc@redhat.com) +- PyHook: use repr() for displaying variables rhbz#545070 (jmoskovc@redhat.com) +- kerneloops: fix the linux kernel version identification (aarapov@redhat.com) +- gui review (rrakus@redhat.com) +- when we trim the dir, we must delete it from DB too rhbz#541854 (vda.linux@googlemail.com) +- improved dupe checking (kklic@redhat.com) +- GUI: handle cases when gui fails to start daemon on demand rhbz#543725 (jmoskovc@redhat.com) +- Add abrt group only if it is missing; fixes rhbz#543250 (kklic@redhat.com) +- GUI: more string fixes rhbz#543266 (jmoskovc@redhat.com) +- abrt.spec: straighten out relations between abrt-desktop and abrt-gui (vda.linux@googlemail.com) +- refuse to start if some required plugins are missing rhbz#518422 (vda.linux@googlemail.com) +- GUI: survive gnome-keyring access denial rhbz#543200 (jmoskovc@redhat.com) +- typo fixes rhbz#543266 (jmoskovc@redhat.com) +- abrt-debuginfo-install: better fix for incorrect passing double quotes (vda.linux@googlemail.com) +- APPLET: stop animation when it's not needed rhbz#542157 (jmoskovc@redhat.com) +- ccpp hook: reanme it, and add "crash storm protection" (see rhbz#542003) (vda.linux@googlemail.com) +- Hooks/CCpp.cpp: add MakeCompatCore = yes/no directive. Fixes rhbz#541707 (vda.linux@googlemail.com) +- SPEC: removed sqlite3 package, fixed some update problems (jmoskovc@redhat.com) +- Kerneloops are reported automaticky now when AutoReportUIDs = root is in Kerneloops.conf (npajkovs@redhat.com) +- remove word 'detected' from description rhbz#541459 (vda.linux@googlemail.com) +- src/Hooks/CCpp.cpp: do save abrtd's own coredumps, but carefully... (vda.linux@googlemail.com) +- CCpp.cpp: quote parameters if needed rhbz#540164 (vda.linux@googlemail.com) + +* Fri Nov 20 2009 Jiri Moskovcak 1.0.0-1 +- new version +- comment input wraps words rhbz#531276 +- fixed hiding password dialog rhbz#529583 +- easier kerneloops reporting rhbz#528395 +- made menu entry translatable rhbz#536878 (jmoskovc@redhat.com) +- GUI: don't read the g-k every time we want to use the setting (jmoskovc@redhat.com) +- GUI: survive if g-k access is denied rhbz#534171 (jmoskovc@redhat.com) +- include more info into oops (we were losing the stack dump) (vda.linux@googlemail.com) +- make BZ insert small text attachments inline; move text file detection code (vda.linux@googlemail.com) +- GUI: fixed text wrapping in comment field rhbz#531276 (jmoskovc@redhat.com) +- GUI: added cancel to send dialog rhbz#537238 (jmoskovc@redhat.com) +- include abrt version in bug descriptions (vda.linux@googlemail.com) +- ccpp hook: implemented ReadonlyLocalDebugInfoDirs directive (vda.linux@googlemail.com) +- GUI: added window icon rhbz#537240 (jmoskovc@redhat.com) +- add support for \" escaping in config file (vda.linux@googlemail.com) +- add experimental saving of /var/log/Xorg*.log for X crashes (vda.linux@googlemail.com) +- APPLET: changed icon from default gtk-warning to abrt specific, add animation (jmoskovc@redhat.com) +- don't show icon on abrtd start/stop rhbz#537630 (jmoskovc@redhat.com) +- /var/cache/abrt permissions 1775 -> 0775 in spec file (kklic@redhat.com) +- Daemon properly checks /var/cache/abrt attributes (kklic@redhat.com) +- abrt user group; used by abrt-pyhook-helper (kklic@redhat.com) +- pyhook-helper: uid taken from system instead of command line (kklic@redhat.com) +- KerneloopsSysLog: fix breakage in code which detects abrt marker (vda.linux@googlemail.com) +- GUI: added support for backtrace rating (jmoskovc@redhat.com) +- InformAllUsers support. enabled by default for Kerneloops. Tested wuth CCpp. (vda.linux@googlemail.com) +- abrtd: call res_init() if /etc/resolv.conf or friends were changed rhbz#533589 (vda.linux@googlemail.com) +- supress errors in python hook to not colide with the running script (jmoskovc@redhat.com) + +* Tue Nov 10 2009 Jiri Moskovcak 0.0.11-2 +- spec file fixes + +* Mon Nov 2 2009 Jiri Moskovcak 0.0.11-1 +- re-enabled kerneloops +- abrt-debuginfo-install: download packages one-by-one - better logging (vda.linux@googlemail.com) +- do not report empty fields (vda.linux@googlemail.com) +- Added abrt.png, fixed rhbz#531181 (jmoskovc@redhat.com) +- added option DebugInfoCacheMB to limit size of unpacked debuginfos (vda.linux@googlemail.com) +- fixed the problem with overwriting the default plugin settings (jmoskovc@redhat.com) +- disabled kerneloops in config file (jmoskovc@redhat.com) +- added dependency to gdb >= 7.0 (jmoskovc@redhat.com) +- better format of report text (vda.linux@googlemail.com) +- Python backtrace size limited to 1 MB (kklic@redhat.com) +- lib/Plugins/Bugzilla: better message at login failure (vda.linux@googlemail.com) +- build fixes, added plugin-logger to abrt-desktop (jmoskovc@redhat.com) +- blacklisted nspluginwrapper, because it causes too many useless reports (jmoskovc@redhat.com) +- GUI: Wrong settings window is not shown behind the reporter dialog rhbz#531119 (jmoskovc@redhat.com) +- Normal user can see kerneloops and report it Bugzilla memory leaks fix (npajkovs@redhat.com) +- dumpoops: add -s option to dump results to stdout (vda.linux@googlemail.com) +- removed kerneloops from abrt-desktop rhbz#528395 (jmoskovc@redhat.com) +- GUI: fixed exception when enabling plugin rhbz#530495 (jmoskovc@redhat.com) +- Improved abrt-cli (kklic@redhat.com) +- Added backtrace rating to CCpp analyzer (dnovotny@redhat.com) +- GUI improvements (jmoskovc@redhat.com) +- Added abrt-pyhook-helper (kklic@redhat.com) + +* Thu Oct 15 2009 Jiri Moskovcak 0.0.10-1 +- new version +- added more logging (vda.linux@googlemail.com) +- made polkit policy to be more permissive when installing debuginfo (jmoskovc@redhat.com) +- lib/Plugins/CCpp.cpp: add build-ids to backtrace (vda.linux@googlemail.com) +- lib/Plugins/CCpp.cpp: do not use temp file for gdb commands - use -ex CMD instead (vda.linux@googlemail.com) +- GUI: added refresh button, added sanity check to plugin settings (jmoskovc@redhat.com) +- Initial man page for abrt-cli (kklic@redhat.com) +- Added --version, -V, --help, -? options. Fixed crash caused by unknown option. (kklic@redhat.com) +- Date/time honors current system locale (kklic@redhat.com) +- fixed saving/reading user config (jmoskovc@redhat.com) +- SPEC: added gnome-python2-gnomekeyring to requirements (jmoskovc@redhat.com) +- GUI: call Report() with the latest pluginsettings (jmoskovc@redhat.com) +- Fix Bug 526220 - [abrt] crash detected in abrt-gui-0.0.9-2.fc12 (vda.linux@googlemail.com) +- removed unsecure reading/writting from ~HOME directory rhbz#522878 (jmoskovc@redhat.com) +- error checking added to archive creation (danny@rawhide.localdomain) +- try using pk-debuginfo-install before falling back to debuginfo-install (vda.linux@googlemail.com) +- abrt-gui: make "report" toolbar button work even if abrtd is not running (vda.linux@googlemail.com) +- set LIMIT_MESSAGE to 16k, typo fix and daemon now reads config information from dbus (npajkovs@redhat.com) +- add support for abrtd autostart (vda.linux@googlemail.com) +- GUI: reversed the dumplist, so the latest crashes are at the top (jmoskovc@redhat.com) +- rewrite FileTransfer to use library calls instead of commandline calls for compression (dnovotny@redhat.com) +- and many minor fixes .. + +* Wed Sep 23 2009 Jiri Moskovcak 0.0.9-2 +- added bug-buddy to provides rhbz#524934 + +* Tue Sep 22 2009 Jiri Moskovcak 0.0.9-1 +- new version +- comments and how to reproduce are stored now (npajkovs@redhat.com) +- reduce verbosity a bit (vda.linux@googlemail.com) +- GUI: fixed word wrap in Comment field rhbz#524349 (jmoskovc@redhat.com) +- remove last vestives of dbus-c++ from build system (vda.linux@googlemail.com) +- GUI: added popup menu, fixed behaviour when run with root privs (jmoskovc@redhat.com) +- add dbus signalization when quota exceeded (npajkovs@redhat.com) +- Added cleaning of attachment variable, so there should not be mixed attachmetn anymore. (zprikryl@redhat.com) +- fixed closing of debug dump in case of existing backtrace (zprikryl@redhat.com) +- remove C++ dbus glue in src/CLI; fix a bug in --report (vda.linux@googlemail.com) +- new polkit action for installing debuginfo, default "yes" (danny@rawhide.localdomain) +- Polkit moved to Utils (can be used both in daemon and plugins) (danny@rawhide.localdomain) +- oops... remove stray trailing '\' (vda.linux@googlemail.com) +- GUI: added missing tooltips (jmoskovc@redhat.com) +- PYHOOK: ignore KeyboardInterrupt exception (jmoskovc@redhat.com) +- added ticket uploader plugin (gavin@redhat.com) (zprikryl@redhat.com) +- GUI: added UI for global settings (just preview, not usable!) (jmoskovc@redhat.com) +- Add checker if bugzilla login and password are filled in. (npajkovs@redhat.com) +- Add new config option InstallDebuginfo into CCpp.conf (npajkovs@redhat.com) +- translation updates +- many other fixes + +* Fri Sep 4 2009 Jiri Moskovcak 0.0.8.5-1 +- new version +- APPLET: added about dialog, removed popup, if icon is not visible, fixed (trac#43) (jmoskovc@redhat.com) +- renamed abrt to abrtd, few minor spec file fixes (jmoskovc@redhat.com) +- Made abrt service start by deafult (jmoskovc@redhat.com) +- add gettext support for all plugins (npajkovs@redhat.com) +- APPLET: removed the warning bubble about not running abrt service (walters) +- APPLET: changed tooltip rhbz#520293 (jmoskovc@redhat.com) +- CommLayerServerDBus: rewrote to use dbus, not dbus-c++ (vda.linux@googlemail.com) +- fixed timeout on boot causing [ FAILED ] message (vda.linux@googlemail.com) +- and many other fixes + +* Wed Sep 02 2009 Colin Walters 0.0.8-2 +- Change Conflicts: kerneloops to be an Obsoletes so we do the right thing + on upgrades. Also add an Obsoletes: bug-buddy. + +* Wed Aug 26 2009 Jiri Moskovcak 0.0.8-1 +- new version +- resolved: Bug 518420 - ordinary user's abrt-applet shows up for root owned crashes (npajkovs) +- GUI: added support for gettext (+part of czech translation) (jmoskovc) +- added support for saving settings (zprikryl) +- fixed conf: comment in the middle of the line isn't supported anymore (zprikryl) +- BZ#518413 PATCH ... furious kerneloops reporting (aarapov) +- GUI: added first part of support for gettext (jmoskovc) +- add new parameter to FileTransfer plugin (dnovotny) +- added support for updating abrt's table (zprikryl) +- added check for cc-list and reporter. +1 is created iff reporter is somebody else and current user isn't in cc list. (zprikryl) +- GUI: few improvements, to be more userfriendly (jmoskovc) +- LOGGER: return valid uri of the log file on succes (jmoskovc) +- GUI: bring the GUI up to front instead of just blinking in taskbar (trac#60, rhbz#512390) (jmoskovc) +- Try to execute $bindir/abrt-gui, then fall back to $PATH search. Closes bug 65 (vda.linux) +- APPLET: added popup menu (trac#37, rhbz#518386) (jmoskovc) +- Improved report results (zprikryl) +- Fixed sigsegv (#rhbz 518609) (zprikryl) +- GUI: removed dependency on libsexy if gtk2 >= 2.17 (jmoskovc) +- fixed signature check (zprikryl) +- KerneloopsSysLog: check line length to be >= 4 before looking for "Abrt" (vda.linux) +- Comment cannot start in the middle of the line. Comment has to start by Char # (first char in the line) (zprikryl) +- command mailx isn't run under root anymore. (zprikryl) +- GUI: added horizontal scrolling to report window (jmoskovc) +- GUI: added clickable link to "after report" status window (jmoskovc) +- added default values for abrt daemon (zprikryl) +- Plugins/CCpp: remove trailing \n from debuginfo-install's output (vda.linux) +- explain EnableGPGCheck option better (vda.linux) +- mailx: correct English (vda.linux) +- Bugzilla.conf: correct English (vda.linux) +- GUI: nicer after report message (jmoskovc) +- BZ plugin: removed /xmlrpc.cgi from config, made the report message more user friendly (jmoskovc) +- CCpp plugin: do not abort if debuginfos aren't found (vda.linux) +- abrt.spec: bump version to 0.0.7-2 (vda.linux) +- mailx removed dangerous parameter option (zprikryl) +- minimum timeout is 1 second (zprikryl) +- in case of plugin error, don't delete debug dumps (zprikryl) +- abrt-gui: fix crash when run by root (vda.linux) +- and lot more in git log ... + +* Thu Aug 20 2009 Jiri Moskovcak 0.0.7.2-1 +- new version +- fixed some bugs found during test day + +* Wed Aug 19 2009 Jiri Moskovcak 0.0.7.1-1 +- fixes to bugzilla plugin and gui to make the report message more user-friendly + +* Tue Aug 18 2009 Denys Vlasenko 0.0.7-2 +- removed dangerous parameter option +- minimum plugin activation period is 1 second +- in case of plugin error, don't delete debug dumps +- abrt-gui: fix crash when run by root +- simplify parsing of debuginfo-install output + +* Tue Aug 18 2009 Jiri Moskovcak 0.0.7-1 +- new version +- added status window to show user some info after reporting a bug + +* Mon Aug 17 2009 Denys Vlasenko 0.0.6-1 +- new version +- many fixes + +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Jun 25 2009 Jiri Moskovcak 0.0.4-3 +- fixed dependencies in spec file + +* Tue Jun 16 2009 Daniel Novotny 0.0.4-2 +- added manual pages (also for plugins) + +* Mon Jun 15 2009 Jiri Moskovcak 0.0.4-1 +- new version +- added cli (only supports sockets) +- added python hook +- many fixes + +* Fri Apr 10 2009 Jiri Moskovcak 0.0.3-1 +- new version +- added bz plugin +- minor fix in reporter gui +- Configurable max size of debugdump storage rhbz#490889 +- Wrap lines in report to keep the window sane sized +- Fixed gui for new daemon API +- removed unneeded code +- removed dependency on args +- new guuid hash creating +- fixed local UUID +- fixed debuginfo-install checks +- renamed MW library +- Added notification thru libnotify +- fixed parsing settings of action plugins +- added support for action plugins +- kerneloops - plugin: fail gracefully. +- Added commlayer to make dbus optional +- a lot of kerneloops fixes +- new approach for getting debuginfos and backtraces +- fixed unlocking of a debugdump +- replaced language and application plugins by analyzer plugin +- more excetpion handling +- conf file isn't needed +- Plugin's configuration file is optional +- Add curl dependency +- Added column 'user' to the gui +- Gui: set the newest entry as active (ticket#23) +- Delete and Report button are no longer active if no entry is selected (ticket#41) +- Gui refreshes silently (ticket#36) +- Added error reporting over dbus to daemon, error handling in gui, about dialog + +* Wed Mar 11 2009 Jiri Moskovcak 0.0.2-1 +- added kerneloops addon to rpm (aarapov) +- added kerneloops addon and plugin (aarapov) +- Made Crash() private +- Applet requires gui, removed dbus-glib deps +- Closing stdout in daemon rhbz#489622 +- Changed applet behaviour according to rhbz#489624 +- Changed gui according to rhbz#489624, fixed dbus timeouts +- Increased timeout for async dbus calls to 60sec +- deps cleanup, signal AnalyzeComplete has the crashreport as an argument. +- Fixed empty package Description. +- Fixed problem with applet tooltip on x86_64 + +* Wed Mar 4 2009 Jiri Moskovcak 0.0.1-13 +- More renaming issues fixed.. +- Changed BR from gtkmm24 to gtk2 +- Fixed saving of user comment +- Added a progress bar, new Comment entry for user comments.. +- FILENAME_CMDLINE and FILENAME_RELEASE are optional +- new default path to DB +- Rename to abrt + +* Tue Mar 3 2009 Jiri Moskovcak 0.0.1-12 +- initial fedora release +- changed SOURCE url +- added desktop-file-utils to BR +- changed crash-catcher to %%{name} + +* Mon Mar 2 2009 Jiri Moskovcak 0.0.1-11 +- more spec file fixes according to review +- async dbus method calls, added exception handler +- avoid deadlocks (zprikryl) +- root is god (zprikryl) +- create bt only once (zprikryl) + +* Sat Feb 28 2009 Jiri Moskovcak 0.0.1-10 +- New gui +- Added new method DeleteDebugDump to daemon +- Removed gcc warnings from applet +- Rewritten CCpp hook and removed dealock in DebugDumps lib (zprikryl) +- fixed few gcc warnings +- DBusBackend improvements + +* Fri Feb 27 2009 Jiri Moskovcak 0.0.1-9 +- fixed few gcc warnings +- added scrolled window for long reports + +* Thu Feb 26 2009 Adam Williamson 0.0.1-8 +- fixes for all issues identified in review + +* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-7 +- Fixed cancel button behaviour in reporter +- disabled core file sending +- removed some debug messages + +* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-6 +- fixed DB path +- added new signals to handler +- gui should survive the dbus timeout + +* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-5 +- fixed catching debuinfo install exceptions +- some gui fixes +- added check for GPGP public key + +* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-4 +- changed from full bt to simple bt + +* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-3 +- spec file cleanups +- changed default paths to crash DB and log DB +- fixed some memory leaks + +* Tue Feb 24 2009 Jiri Moskovcak 0.0.1-2 +- spec cleanup +- added new subpackage gui + +* Wed Feb 18 2009 Zdenek Prikryl 0.0.1-1 +- initial packing diff --git a/disable-OpenGPGCheck-in-Fedora-Rawhide.patch b/disable-OpenGPGCheck-in-Fedora-Rawhide.patch new file mode 100644 index 0000000..11d8c3e --- /dev/null +++ b/disable-OpenGPGCheck-in-Fedora-Rawhide.patch @@ -0,0 +1,26 @@ +From 1ef034096efe367af85f568bc982af969124003b Mon Sep 17 00:00:00 2001 +From: rpm-build +Date: Mon, 10 Feb 2014 09:39:07 +0100 +Subject: [PATCH] disable OpenGPGCheck in Fedora Rawhide + +Packages in Fedora Rawhide are not signed. +--- + src/daemon/abrt-action-save-package-data.conf | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/daemon/abrt-action-save-package-data.conf b/src/daemon/abrt-action-save-package-data.conf +index 3d35bb6..e3f724a 100644 +--- a/src/daemon/abrt-action-save-package-data.conf ++++ b/src/daemon/abrt-action-save-package-data.conf +@@ -3,7 +3,7 @@ + # the list of public keys used to check the signature is + # in the file gpg_keys + # +-OpenGPGCheck = yes ++OpenGPGCheck = no + + # Blacklisted packages + # +-- +1.8.3.1 + diff --git a/gating.yaml b/gating.yaml deleted file mode 100644 index f075ad7..0000000 --- a/gating.yaml +++ /dev/null @@ -1,15 +0,0 @@ ---- !Policy -product_versions: - - fedora-* -decision_context: bodhi_update_push_testing -subject_type: koji_build -rules: - - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional} - ---- !Policy -product_versions: - - fedora-* -decision_context: bodhi_update_push_stable -subject_type: koji_build -rules: - - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional} diff --git a/sources b/sources index 4e58c99..88a4585 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.17.8.tar.gz) = 90b74229412e0186bfa109ee940a60c9f3c0f7ce8c1216acad6f05619a1bb591e7f0bae87363143a05034312c9f14fe5ace341b84f680780ceb93a1e624705b3 +936fa2b51d58d5c00729b8512ffa2a68 abrt-2.6.1.tar.gz diff --git a/tests/smoke.fmf b/tests/smoke.fmf deleted file mode 100644 index 69759b3..0000000 --- a/tests/smoke.fmf +++ /dev/null @@ -1,10 +0,0 @@ -summary: Basic smoke test for abrt -prepare: - how: install - # Do not attempt to install conflicting subpackages. - exclude: - - abrt-atomic - - abrt-java-connector-container - - python3-abrt-container-addon -execute: - script: abrt-action-notify --help