From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 105963 invoked by alias); 15 Sep 2017 11:14:16 -0000 Mailing-List: contact elfutils-devel-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Post: List-Help: List-Subscribe: Sender: elfutils-devel-owner@sourceware.org Received: (qmail 105948 invoked by uid 89); 15 Sep 2017 11:14:14 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.99.2 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.1 required=5.0 tests=BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,KAM_ASCII_DIVIDERS,KAM_LAZY_DOMAIN_SECURITY autolearn=ham version=3.3.2 spammy=depo, H*F:U*mark, D*io X-Spam-Status: No, score=-25.1 required=5.0 tests=BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,KAM_ASCII_DIVIDERS,KAM_LAZY_DOMAIN_SECURITY autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on sourceware.org X-Spam-Level: X-HELO: gnu.wildebeest.org Received: from wildebeest.demon.nl (HELO gnu.wildebeest.org) (212.238.236.112) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 15 Sep 2017 11:14:12 +0000 Received: from tarox.wildebeest.org (tarox.wildebeest.org [172.31.17.39]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id 55618304D691; Fri, 15 Sep 2017 13:14:10 +0200 (CEST) Received: by tarox.wildebeest.org (Postfix, from userid 1000) id 41649413CC80; Fri, 15 Sep 2017 13:14:10 +0200 (CEST) From: Mark Wielaard To: elfutils-devel@sourceware.org Cc: Mark Wielaard Subject: [COMMITTED] Internationalized messages should not contain the '\v' escape sequence. Date: Fri, 15 Sep 2017 11:14:00 -0000 Message-Id: <1505474037-15854-1-git-send-email-mark@klomp.org> X-Mailer: git-send-email 1.8.3.1 X-IsSubscribed: yes X-SW-Source: 2017-q3/txt/msg00110.txt.bz2 Replace horizontal tab '\v' with double line feed '\n\n' in doc strings. Regenerate .po files. Signed-off-by: Mark Wielaard --- po/ChangeLog | 4 + po/de.po | 754 ++++++++++++++++++++++++++++---------------------------- po/es.po | 760 ++++++++++++++++++++++++++++---------------------------- po/fr.po | 2 +- po/it.po | 2 +- po/ja.po | 754 ++++++++++++++++++++++++++++---------------------------- po/nl.po | 2 +- po/pl.po | 780 +++++++++++++++++++++++++++++----------------------------- po/ru.po | 2 +- po/uk.po | 779 ++++++++++++++++++++++++++++----------------------------- po/zh_CN.po | 2 +- src/ChangeLog | 5 + src/stack.c | 3 +- src/unstrip.c | 3 +- 14 files changed, 1942 insertions(+), 1910 deletions(-) diff --git a/po/ChangeLog b/po/ChangeLog index 465ae16..2c27e64 100644 --- a/po/ChangeLog +++ b/po/ChangeLog @@ -1,3 +1,7 @@ +2017-09-01 Mark Wielaard + + * *.po: Regenerated. Replace \v with \n\n. + 2017-08-02 Mark Wielaard * *.po: Update for 0.170. diff --git a/src/ChangeLog b/src/ChangeLog index daedfca..8370b69 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2017-09-01 Mark Wielaard + + * stack.c (main): Replace \v in doc string with \n\n. + * unstrip.c (main): Likewise. + 2017-05-04 Ulf Hermann * stack.c: Print pid_t using %lld. diff --git a/src/stack.c b/src/stack.c index 7c180b7..52ae3a8 100644 --- a/src/stack.c +++ b/src/stack.c @@ -678,7 +678,8 @@ main (int argc, char **argv) { .options = options, .parser = parse_opt, - .doc = N_("Print a stack for each thread in a process or core file.\v\ + .doc = N_("Print a stack for each thread in a process or core file.\n\ +\n\ Program exits with return code 0 if all frames were shown without \ any errors. If some frames were shown, but there were some non-fatal \ errors, possibly causing an incomplete backtrace, the program exits \ diff --git a/src/unstrip.c b/src/unstrip.c index 5074909..f368e69 100644 --- a/src/unstrip.c +++ b/src/unstrip.c @@ -2383,7 +2383,8 @@ main (int argc, char **argv) .children = argp_children, .args_doc = N_("STRIPPED-FILE DEBUG-FILE\n[MODULE...]"), .doc = N_("\ -Combine stripped files with separate symbols and debug information.\v\ +Combine stripped files with separate symbols and debug information.\n\ +\n\ The first form puts the result in DEBUG-FILE if -o was not given.\n\ \n\ MODULE arguments give file name patterns matching modules to process.\n\ -- 1.8.3.1