Some i18n fixes for the TUI

The TUI has a few #defines that hold user-visible strings.  As these
are only used in a single spot, this patch removes the defines,
preferring direct use of the string where needed.  Furthermore, now
the strings are wrapped in _(), which is friendlier for i18n purposes.

gdb/ChangeLog
2019-08-20  Tom Tromey  <tom@tromey.com>

	* tui/tui-source.h (struct tui_source_window): Update.
	* tui/tui-regs.c (tui_show_registers): Update.
	* tui/tui-disasm.h (struct tui_disasm_window): Update.
	* tui/tui-data.h (NO_SRC_STRING, NO_DISASSEM_STRING)
	(NO_REGS_STRING): Remove defines.
This commit is contained in:
Tom Tromey 2019-07-13 15:45:14 -06:00
parent 722a298cca
commit 605dc2c21d
5 changed files with 11 additions and 6 deletions

View File

@ -1,3 +1,11 @@
2019-08-20 Tom Tromey <tom@tromey.com>
* tui/tui-source.h (struct tui_source_window): Update.
* tui/tui-regs.c (tui_show_registers): Update.
* tui/tui-disasm.h (struct tui_disasm_window): Update.
* tui/tui-data.h (NO_SRC_STRING, NO_DISASSEM_STRING)
(NO_REGS_STRING): Remove defines.
2019-08-20 Conrad Meyer <cem@FreeBSD.org>
* remote.c (remote_target::remote_btrace_maybe_reopen): Avoid

View File

@ -103,9 +103,6 @@ public:
/* Constant definitions. */
#define DEFAULT_TAB_LEN 8
#define NO_SRC_STRING "[ No Source Available ]"
#define NO_DISASSEM_STRING "[ No Assembly Available ]"
#define NO_REGS_STRING "[ Register Values Unavailable ]"
#define NO_DATA_STRING "[ No Data Values Displayed ]"
#define SRC_NAME "src"
#define CMD_NAME "cmd"

View File

@ -50,7 +50,7 @@ struct tui_disasm_window : public tui_source_window_base
void erase_source_content () override
{
do_erase_source_content (NO_DISASSEM_STRING);
do_erase_source_content (_("[ No Assembly Available ]"));
}
protected:

View File

@ -165,7 +165,7 @@ tui_show_registers (struct reggroup *group)
else
{
TUI_DATA_WIN->current_group = 0;
TUI_DATA_WIN->erase_data_content (NO_REGS_STRING);
TUI_DATA_WIN->erase_data_content (_("[ Register Values Unavailable ]"));
}
}

View File

@ -53,7 +53,7 @@ struct tui_source_window : public tui_source_window_base
void erase_source_content () override
{
do_erase_source_content (NO_SRC_STRING);
do_erase_source_content (_("[ No Source Available ]"));
}
void show_symtab_source (struct gdbarch *, struct symtab *,