diff options
Diffstat (limited to 'gdb/dwarf2read.c')
-rw-r--r-- | gdb/dwarf2read.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 85c5500..eab60a0 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -2315,7 +2315,7 @@ dwarf2_psymtab_to_symtab (struct partial_symtab *pst) { if (info_verbose) { - printf_filtered ("Reading in symbols for %s...", pst->filename); + printf_filtered (_("Reading in symbols for %s..."), pst->filename); gdb_flush (gdb_stdout); } @@ -2327,7 +2327,7 @@ dwarf2_psymtab_to_symtab (struct partial_symtab *pst) /* Finish up the debug error message. */ if (info_verbose) - printf_filtered ("done.\n"); + printf_filtered (_("done.\n")); } } } @@ -2438,6 +2438,7 @@ psymtab_to_symtab_1 (struct partial_symtab *pst) /* Inform about additional files that need to be read in. */ if (info_verbose) { + /* FIXME: i18n: Need to make this a single string. */ fputs_filtered (" ", gdb_stdout); wrap_here (""); fputs_filtered ("and ", gdb_stdout); |