Subject: Re: Missing translation in view.c ButtonBar (2)
Date: Fri, 24 Jul 2009 16:47:46 -0400
In view.c -> view_moveto_addr_cmd (WView *view)
g_snprintf (prompt, sizeof (prompt),
<------><------>_(" The current address is 0x%08"OFFSETTYPE_PRIX".\n"
<------><------> " Enter the new address:"), view->hex_cursor);
This one is more weird. gettext just recognizes to the first "closing
quote" and only takes the first piece. ¿Could someone think of a better
way of doing this? Maybe the format string could itself be constructed dinamically so that the translated string were just the initial pattern: " The current address is %s.\n"...