diff options
author | Michael Snyder <msnyder@vmware.com> | 2011-01-11 15:10:03 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2011-01-11 15:10:03 +0000 |
commit | 9b20d036b6804e167f6b3a843661022ed46399bb (patch) | |
tree | 6f390f9b7338d77b0d1de99a5e97d770d61e2093 /gdb/mi/mi-interp.c | |
parent | dae477fed8cdd8063a79042f2781a983be1c728d (diff) | |
download | gdb-9b20d036b6804e167f6b3a843661022ed46399bb.zip gdb-9b20d036b6804e167f6b3a843661022ed46399bb.tar.gz gdb-9b20d036b6804e167f6b3a843661022ed46399bb.tar.bz2 |
2011-01-11 Michael Snyder <msnyder@vmware.com>
* arm-tdep.c: Internationalization.
* c-lang.c: Ditto.
* charset.c: Ditto.
* fork-child.c: Ditto.
* nto-procfs.c: Ditto.
* ppc-sysv-tdep.c: Ditto.
* procfs.c: Ditto.
* remote-mips.c: Ditto.
* remote.c: Ditto.
* rs6000-nat.c: Ditto.
* rs6000-tdep.c: Ditto.
* target.c: Ditto.
* valops.c: Ditto.
* value.c: Ditto.
* xml-support.c: Ditto.
* mi/mi-cmd-break.c: Ditto.
* mi/mi-cmd-var.c: Ditto.
* mi/mi-interp.c: Ditto.
* mi/mi-main.c: Ditto.
Diffstat (limited to 'gdb/mi/mi-interp.c')
-rw-r--r-- | gdb/mi/mi-interp.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gdb/mi/mi-interp.c b/gdb/mi/mi-interp.c index 6aaed3a..e42bffe 100644 --- a/gdb/mi/mi-interp.c +++ b/gdb/mi/mi-interp.c @@ -192,16 +192,17 @@ mi_cmd_interpreter_exec (char *command, char **argv, int argc) struct cleanup *old_chain; if (argc < 2) - error ("mi_cmd_interpreter_exec: Usage: -interpreter-exec interp command"); + error (_("mi_cmd_interpreter_exec: " + "Usage: -interpreter-exec interp command")); interp_to_use = interp_lookup (argv[0]); if (interp_to_use == NULL) - error ("mi_cmd_interpreter_exec: could not find interpreter \"%s\"", + error (_("mi_cmd_interpreter_exec: could not find interpreter \"%s\""), argv[0]); if (!interp_exec_p (interp_to_use)) - error ("mi_cmd_interpreter_exec: interpreter \"%s\" " - "does not support command execution", + error (_("mi_cmd_interpreter_exec: interpreter \"%s\" " + "does not support command execution"), argv[0]); /* Insert the MI out hooks, making sure to also call the interpreter's hooks |