From 8a3fe4f86c51d363e10efed1046ebcbdc853ae99 Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Fri, 11 Feb 2005 04:06:14 +0000 Subject: 2005-02-10 Andrew Cagney Mark up all error and warning messages. * ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update. * bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update. * core-aout.c, core-regset.c, corefile.c, corelow.c: Update. * cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update. * dbxread.c, demangle.c, doublest.c, dsrec.c: Update. * dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update. * dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update. * event-top.c, exec.c, expprint.c, f-lang.c: Update. * f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update. * frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update. * gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update. * hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update. * hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update. * hpread.c, hpux-thread.c, i386-linux-nat.c: Update. * i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update. * i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update. * ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update. * infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update. * inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update. * kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update. * linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update. * m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update. * m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update. * maint.c, mdebugread.c, mem-break.c, memattr.c: Update. * mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update. * nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update. * observer.c, ocd.c, p-lang.c, p-typeprint.c: Update. * p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update. * ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update. * remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update. * remote-rdp.c, remote-sim.c, remote-st.c: Update. * remote-utils.c, remote-utils.h, remote.c: Update. * rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update. * ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update. * sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update. * solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update. * solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update. * somread.c, somsolib.c, source.c, stabsread.c: Update. * stack.c, std-regs.c, symfile-mem.c, symfile.c: Update. * symmisc.c, symtab.c, target.c, thread.c, top.c: Update. * tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update. * uw-thread.c, valarith.c, valops.c, valprint.c: Update. * value.c, varobj.c, version.in, win32-nat.c, wince.c: Update. * xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update. * cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update. * cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update. * mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update. * mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update. * mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update. * tui/tui-win.c: Update. --- gdb/cli/cli-dump.c | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'gdb/cli/cli-dump.c') diff --git a/gdb/cli/cli-dump.c b/gdb/cli/cli-dump.c index 4030a85..593e637 100644 --- a/gdb/cli/cli-dump.c +++ b/gdb/cli/cli-dump.c @@ -94,7 +94,7 @@ scan_filename_with_cleanup (char **cmd, const char *defname) if ((*cmd) == NULL) { if (defname == NULL) - error ("Missing filename."); + error (_("Missing filename.")); filename = xstrdup (defname); make_cleanup (xfree, filename); } @@ -134,12 +134,12 @@ bfd_openr_with_cleanup (const char *filename, const char *target) ibfd = bfd_openr (filename, target); if (ibfd == NULL) - error ("Failed to open %s: %s.", filename, + error (_("Failed to open %s: %s."), filename, bfd_errmsg (bfd_get_error ())); make_cleanup_bfd_close (ibfd); if (!bfd_check_format (ibfd, bfd_object)) - error ("'%s' is not a recognized file format.", filename); + error (_("'%s' is not a recognized file format."), filename); return ibfd; } @@ -154,18 +154,18 @@ bfd_openw_with_cleanup (const char *filename, const char *target, { obfd = bfd_openw (filename, target); if (obfd == NULL) - error ("Failed to open %s: %s.", filename, + error (_("Failed to open %s: %s."), filename, bfd_errmsg (bfd_get_error ())); make_cleanup_bfd_close (obfd); if (!bfd_set_format (obfd, bfd_object)) - error ("bfd_openw_with_cleanup: %s.", bfd_errmsg (bfd_get_error ())); + error (_("bfd_openw_with_cleanup: %s."), bfd_errmsg (bfd_get_error ())); } else if (*mode == 'a') /* Append to existing file */ { /* FIXME -- doesn't work... */ - error ("bfd_openw does not work with append."); + error (_("bfd_openw does not work with append.")); } else - error ("bfd_openw_with_cleanup: unknown mode %s.", mode); + error (_("bfd_openw_with_cleanup: unknown mode %s."), mode); return obfd; } @@ -241,18 +241,18 @@ dump_memory_to_file (char *cmd, char *mode, char *file_format) /* Find the low address. */ if (cmd == NULL || *cmd == '\0') - error ("Missing start address."); + error (_("Missing start address.")); lo_exp = scan_expression_with_cleanup (&cmd, NULL); /* Find the second address - rest of line. */ if (cmd == NULL || *cmd == '\0') - error ("Missing stop address."); + error (_("Missing stop address.")); hi_exp = cmd; lo = parse_and_eval_address (lo_exp); hi = parse_and_eval_address (hi_exp); if (hi <= lo) - error ("Invalid memory address range (start >= end)."); + error (_("Invalid memory address range (start >= end).")); count = hi - lo; /* FIXME: Should use read_memory_partial() and a magic blocking @@ -292,10 +292,10 @@ dump_value_to_file (char *cmd, char *mode, char *file_format) /* Find the value. */ if (cmd == NULL || *cmd == '\0') - error ("No value to %s.", *mode == 'a' ? "append" : "dump"); + error (_("No value to %s."), *mode == 'a' ? "append" : "dump"); val = parse_and_eval (cmd); if (val == NULL) - error ("Invalid expression."); + error (_("Invalid expression.")); /* Have everything. Open/write the data. */ if (file_format == NULL || strcmp (file_format, "binary") == 0) @@ -314,7 +314,7 @@ dump_value_to_file (char *cmd, char *mode, char *file_format) else { vaddr = 0; - warning ("value is not an lval: address assumed to be zero"); + warning (_("value is not an lval: address assumed to be zero")); } dump_bfd_file (filename, mode, file_format, vaddr, @@ -492,7 +492,7 @@ restore_section_callback (bfd *ibfd, asection *isec, void *args) buf = xmalloc (size); old_chain = make_cleanup (xfree, buf); if (!bfd_get_section_contents (ibfd, isec, buf, 0, size)) - error ("Failed to read bfd file %s: '%s'.", bfd_get_filename (ibfd), + error (_("Failed to read bfd file %s: '%s'."), bfd_get_filename (ibfd), bfd_errmsg (bfd_get_error ())); printf_filtered ("Restoring section %s (0x%lx to 0x%lx)", @@ -513,7 +513,7 @@ restore_section_callback (bfd *ibfd, asection *isec, void *args) ret = target_write_memory (sec_start + sec_offset + data->load_offset, buf + sec_offset, sec_load_count); if (ret != 0) - warning ("restore: memory write failed (%s).", safe_strerror (ret)); + warning (_("restore: memory write failed (%s)."), safe_strerror (ret)); do_cleanups (old_chain); return; } @@ -533,7 +533,7 @@ restore_binary_file (char *filename, struct callback_data *data) perror_with_name (filename); if (len <= data->load_start) - error ("Start address is greater than length of binary file %s.", + error (_("Start address is greater than length of binary file %s."), filename); /* Chop off "len" if it exceeds the requested load_end addr. */ @@ -562,7 +562,7 @@ restore_binary_file (char *filename, struct callback_data *data) /* Now write the buffer into target memory. */ len = target_write_memory (data->load_start + data->load_offset, buf, len); if (len != 0) - warning ("restore: memory write failed (%s).", safe_strerror (len)); + warning (_("restore: memory write failed (%s)."), safe_strerror (len)); return; } @@ -608,7 +608,7 @@ restore_command (char *args, int from_tty) /* Parse end address (optional). */ data.load_end = parse_and_eval_long (args); if (data.load_end <= data.load_start) - error ("Start must be less than end."); + error (_("Start must be less than end.")); } } } -- cgit v1.1