aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2007-10-08 15:35:33 +0000
committerNick Clifton <nickc@redhat.com>2007-10-08 15:35:33 +0000
commitb1b17bc508cd93e4ed8b6318bdaf9e48d89e4811 (patch)
tree3c6918c8c5a6d320483810e55eca49189ee0fcd2 /gas
parent8b040e0a493dbabd5e8d2f921ea4a9ac9ad3e190 (diff)
downloadfsf-binutils-gdb-b1b17bc508cd93e4ed8b6318bdaf9e48d89e4811.zip
fsf-binutils-gdb-b1b17bc508cd93e4ed8b6318bdaf9e48d89e4811.tar.gz
fsf-binutils-gdb-b1b17bc508cd93e4ed8b6318bdaf9e48d89e4811.tar.bz2
PR 5142: Allow for translation of error messages
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog2
-rw-r--r--gas/config/tc-dlx.c8
2 files changed, 6 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index c9af1a3..0868568 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -41,6 +41,8 @@
* config/tc-bfin.c: Likewise.
PR gas/5143
* config/tc-frv.c: Likewise.
+ PR gas/5142
+ * config/tc-dlx.c: Likewise.
2007-10-08 Eric B. Weddington <eweddington@cso.atmel.com>
diff --git a/gas/config/tc-dlx.c b/gas/config/tc-dlx.c
index e429166..fc4b210 100644
--- a/gas/config/tc-dlx.c
+++ b/gas/config/tc-dlx.c
@@ -287,7 +287,7 @@ md_begin (void)
if (retval != NULL)
{
- fprintf (stderr, "internal error: can't hash `%s': %s\n",
+ fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
machine_opcodes[i].name, retval);
lose = 1;
}
@@ -889,7 +889,7 @@ machine_ip (char *str)
}
/* Types or values of args don't match. */
- as_bad ("Invalid operands");
+ as_bad (_("Invalid operands"));
return;
}
}
@@ -1022,7 +1022,7 @@ md_atof (int type, char *litP, int *sizeP)
default:
*sizeP = 0;
- return "Bad call to MD_ATOF()";
+ return _("Bad call to MD_ATOF()");
}
t = atof_ieee (input_line_pointer, type, words);
@@ -1253,7 +1253,7 @@ tc_gen_reloc (asection *section ATTRIBUTE_UNUSED,
if (reloc->howto == NULL)
{
as_bad_where (fixP->fx_file, fixP->fx_line,
- "internal error: can't export reloc type %d (`%s')",
+ _("internal error: can't export reloc type %d (`%s')"),
fixP->fx_r_type,
bfd_get_reloc_code_name (fixP->fx_r_type));
return NULL;