diff options
author | pthomas <pthomas@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-28 23:46:27 +0000 |
---|---|---|
committer | pthomas <pthomas@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-28 23:46:27 +0000 |
commit | a4db0a1db67624827f629d9b2c4048748db7d032 (patch) | |
tree | cf84960b7dcda6445f2020417d413146c796651f /gcc/mips-tfile.c | |
parent | c4bd5e71cdafa235a1013fb9c6fec6a71636afe2 (diff) | |
download | gcc-a4db0a1db67624827f629d9b2c4048748db7d032.tar.gz |
2000-06-28 Philipp Thomas <pthomas@suse.de>
* c-decl.c : Mark strings for translation.
(parmlist_tags_warning): Use distinct messages instead
of conditional expressions.
* diagnostic.c (v_message_with_decl): Mark string for translation.
* gcc.c: Mark messages for translation.
(display_help): Combine messages into one string where necessary.
* mips-tfile.c: Add intl.h. Mark messages for translation.
* rtl.c (fatal_with_file_and_line): Modify function for NLS. Mark
messages for translation.
* timevar.c: Mark messages for translation.
* tlink.c: Likewise.
* toplev.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34773 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/mips-tfile.c')
-rw-r--r-- | gcc/mips-tfile.c | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/gcc/mips-tfile.c b/gcc/mips-tfile.c index aa986c4b504..ee0afe581db 100644 --- a/gcc/mips-tfile.c +++ b/gcc/mips-tfile.c @@ -603,6 +603,7 @@ Boston, MA 02111-1307, USA. */ #include "config.h" #include "system.h" #include "version.h" +#include "intl.h" #ifndef __SABER__ #define saber_stop() @@ -4947,23 +4948,23 @@ main (argc, argv) if (object_name == (char *) 0 || had_errors || optind != argc - 1) { - fprintf (stderr, "Calling Sequence:\n"); - fprintf (stderr, "\tmips-tfile [-d <num>] [-v] [-i <o-in-file>] -o <o-out-file> <s-file> (or)\n"); - fprintf (stderr, "\tmips-tfile [-d <num>] [-v] [-I <o-in-file>] -o <o-out-file> <s-file> (or)\n"); - fprintf (stderr, "\tmips-tfile [-d <num>] [-v] <s-file> <o-in-file> <o-out-file>\n"); + fprintf (stderr, _("Calling Sequence:\n")); + fprintf (stderr, _("\tmips-tfile [-d <num>] [-v] [-i <o-in-file>] -o <o-out-file> <s-file> (or)\n")); + fprintf (stderr, _("\tmips-tfile [-d <num>] [-v] [-I <o-in-file>] -o <o-out-file> <s-file> (or)\n")); + fprintf (stderr, _("\tmips-tfile [-d <num>] [-v] <s-file> <o-in-file> <o-out-file>\n")); fprintf (stderr, "\n"); - fprintf (stderr, "Debug levels are:\n"); - fprintf (stderr, " 1\tGeneral debug + trace functions/blocks.\n"); - fprintf (stderr, " 2\tDebug level 1 + trace externals.\n"); - fprintf (stderr, " 3\tDebug level 2 + trace all symbols.\n"); - fprintf (stderr, " 4\tDebug level 3 + trace memory allocations.\n"); + fprintf (stderr, _("Debug levels are:\n")); + fprintf (stderr, _(" 1\tGeneral debug + trace functions/blocks.\n")); + fprintf (stderr, _(" 2\tDebug level 1 + trace externals.\n")); + fprintf (stderr, _(" 3\tDebug level 2 + trace all symbols.\n")); + fprintf (stderr, _(" 4\tDebug level 3 + trace memory allocations.\n")); return 1; } if (version) { - fprintf (stderr, "mips-tfile version %s", version_string); + fprintf (stderr, _("mips-tfile version %s"), version_string); #ifdef TARGET_VERSION TARGET_VERSION; #endif |