From: Alan Modra <amodra@gmail.com>
To: Peter Bergner <bergner@vnet.ibm.com>
Cc: Pedro Alves <palves@redhat.com>, Eli Zaretskii <eliz@gnu.org>,
nickc@redhat.com, gdb-patches@sourceware.org,
uweigand@de.ibm.com, binutils@sourceware.org
Subject: Re: [PATCH 1/2] Add support for setting disassembler-options in GDB for POWER, ARM and S390
Date: Wed, 25 Jan 2017 04:31:00 -0000 [thread overview]
Message-ID: <20170125043122.GL28669@bubble.grove.modra.org> (raw)
In-Reply-To: <f4c87f48-a2f9-bf92-49be-33183be80885@vnet.ibm.com>
On Tue, Jan 24, 2017 at 09:59:18AM -0600, Peter Bergner wrote:
> On 1/23/17 10:32 PM, Peter Bergner wrote:
> > On 1/23/17 9:36 PM, Alan Modra wrote:
> >>>> This appears to have lost translation of the help strings.
> > [snip]
> >> Yes, I meant the support for language translation.
> >
> > Ok, I see now. How about the following changes to to add _(...)
> > around the option descriptions for s390 and arm (ppc doesn't have any)?
>
> For completeness, here is the full updated patch that keeps the language
> translation.
You're going to hate me, but this still doesn't keep the language
translations. If you regenerate opcodes/po/opcodes.pot you'll see
that lines like
msgid " esa Disassemble in ESA architecture mode\n"
have disappeared without being replaced by anything. I think you need
to wrap your new options[].description with N_() to let gettext know
they should be translated, like this:
static const options_t options[] =
{
{ "esa" , N_("Disassemble in ESA architecture mode") },
{ "zarch", N_("Disassemble in z/Architecture mode") },
{ "insnlength", N_("Print unknown instructions according to "
"length from first two bits") }
};
The same thing needs to be done for regnames description in arm-dis.c.
I also see this arm-dis.c hunk
> @@ -6855,7 +6889,7 @@ the -M switch:\n"));
> fprintf (stream, " reg-names-%s %*c%s\n",
> regnames[i].name,
> (int)(14 - strlen (regnames[i].name)), ' ',
> - regnames[i].description);
> + _(regnames[i].description));
>
> fprintf (stream, " force-thumb Assume all insns are Thumb insns\n");
> fprintf (stream, " no-force-thumb Examine preceding label to determine an insn's type\n\n");
showing missing _() for the last two lines. Bonus points for fixing
them in a way that uses exactly the same translatated strings as you
have in disassembler_options_desc_arm.
The opcodes patch is OK with those changes.
--
Alan Modra
Australia Development Lab, IBM
next prev parent reply other threads:[~2017-01-25 4:31 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-17 19:19 Peter Bergner
2016-11-17 19:52 ` Peter Bergner
2016-11-18 10:25 ` Nick Clifton
2016-11-18 15:10 ` Peter Bergner
2016-11-18 15:38 ` Eli Zaretskii
2016-11-18 16:56 ` Peter Bergner
2016-11-18 17:08 ` Eli Zaretskii
2016-11-18 17:23 ` Pedro Alves
2016-11-22 17:04 ` Peter Bergner
2016-11-22 17:40 ` Pedro Alves
2017-01-23 23:35 ` Peter Bergner
2017-01-24 1:57 ` Alan Modra
2017-01-24 2:39 ` Peter Bergner
2017-01-24 3:36 ` Alan Modra
2017-01-24 4:32 ` Peter Bergner
2017-01-24 16:00 ` Peter Bergner
2017-01-25 4:31 ` Alan Modra [this message]
2017-01-25 17:20 ` Peter Bergner
2017-01-24 3:29 ` Eli Zaretskii
[not found] ` <20170125142335.GT28060@E107787-LIN>
2017-01-25 14:30 ` Peter Bergner
2017-01-31 21:13 ` Peter Bergner
2017-02-01 21:44 ` Yao Qi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170125043122.GL28669@bubble.grove.modra.org \
--to=amodra@gmail.com \
--cc=bergner@vnet.ibm.com \
--cc=binutils@sourceware.org \
--cc=eliz@gnu.org \
--cc=gdb-patches@sourceware.org \
--cc=nickc@redhat.com \
--cc=palves@redhat.com \
--cc=uweigand@de.ibm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox