diff options
author | Tom Tromey <tom@tromey.com> | 2019-07-13 15:45:14 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-08-20 16:22:03 -0600 |
commit | 605dc2c21d145b9eeaa2456dd43512ef28e02dbd (patch) | |
tree | 99faf62657e1efdd6b9ee3106906e6144fb5aee7 /gdb/tui/tui-disasm.h | |
parent | 722a298cca946e8dd219a6e55ae48fa48ea4d994 (diff) | |
download | fsf-binutils-gdb-605dc2c21d145b9eeaa2456dd43512ef28e02dbd.zip fsf-binutils-gdb-605dc2c21d145b9eeaa2456dd43512ef28e02dbd.tar.gz fsf-binutils-gdb-605dc2c21d145b9eeaa2456dd43512ef28e02dbd.tar.bz2 |
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.
Diffstat (limited to 'gdb/tui/tui-disasm.h')
-rw-r--r-- | gdb/tui/tui-disasm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/tui/tui-disasm.h b/gdb/tui/tui-disasm.h index d989532..bfddfa0 100644 --- a/gdb/tui/tui-disasm.h +++ b/gdb/tui/tui-disasm.h @@ -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: |