mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +08:00
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.
This commit is contained in:
@ -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"));
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user