summaryrefslogtreecommitdiff
path: root/gdb/charset.c
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@specifix.com>2011-01-11 15:09:54 +0000
committerMichael Snyder <msnyder@specifix.com>2011-01-11 15:09:54 +0000
commit91d92eade9b57f7baaa2c255d07ca42347f9204b (patch)
treedd2337e3c79f40b593f0c02ac18e543820292e25 /gdb/charset.c
parent601e037e8e18057678379ee347c5a4f02874cf33 (diff)
downloadgdb-91d92eade9b57f7baaa2c255d07ca42347f9204b.tar.gz
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/charset.c')
-rw-r--r--gdb/charset.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/charset.c b/gdb/charset.c
index 0c269bdbf5e..41cbc435f33 100644
--- a/gdb/charset.c
+++ b/gdb/charset.c
@@ -486,7 +486,7 @@ convert_between_encodings (const char *from, const char *to,
desc = iconv_open (to, from);
if (desc == (iconv_t) -1)
- perror_with_name ("Converting character sets");
+ perror_with_name (_("Converting character sets"));
cleanups = make_cleanup (cleanup_iconv, &desc);
inleft = num_bytes;
@@ -553,8 +553,8 @@ convert_between_encodings (const char *from, const char *to,
break;
default:
- perror_with_name ("Internal error while "
- "converting character sets");
+ perror_with_name (_("Internal error while "
+ "converting character sets"));
}
}
}
@@ -593,7 +593,7 @@ make_wchar_iterator (const gdb_byte *input, size_t bytes,
desc = iconv_open (INTERMEDIATE_ENCODING, charset);
if (desc == (iconv_t) -1)
- perror_with_name ("Converting character sets");
+ perror_with_name (_("Converting character sets"));
result = XNEW (struct wchar_iterator);
result->desc = desc;
@@ -694,8 +694,8 @@ wchar_iterate (struct wchar_iterator *iter,
return 0;
default:
- perror_with_name ("Internal error while "
- "converting character sets");
+ perror_with_name (_("Internal error while "
+ "converting character sets"));
}
}