diff options
Diffstat (limited to 'gdb/tui/tui-hooks.c')
-rw-r--r-- | gdb/tui/tui-hooks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/tui/tui-hooks.c b/gdb/tui/tui-hooks.c index 64bcb996d87..91129bedcce 100644 --- a/gdb/tui/tui-hooks.c +++ b/gdb/tui/tui-hooks.c @@ -88,7 +88,7 @@ tui_query_hook (const char * msg, va_list argp) gdb_flush (gdb_stdout); vfprintf_filtered (gdb_stdout, msg, argp); - printf_filtered ("(y or n) "); + printf_filtered (_("(y or n) ")); wrap_here (""); gdb_flush (gdb_stdout); @@ -121,7 +121,7 @@ tui_query_hook (const char * msg, va_list argp) retval = 0; break; } - printf_filtered ("Please answer y or n.\n"); + printf_filtered (_("Please answer y or n.\n")); } noecho (); return retval; |