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/tlink.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/tlink.c')
-rw-r--r-- | gcc/tlink.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tlink.c b/gcc/tlink.c index 32685b19404..cafa0c6978c 100644 --- a/gcc/tlink.c +++ b/gcc/tlink.c @@ -424,7 +424,7 @@ read_repo_file (f) FILE *stream = fopen ((char*) f->root.key, "r"); if (tlink_verbose >= 2) - fprintf (stderr, "collect: reading %s\n", + fprintf (stderr, _("collect: reading %s\n"), (char*) f->root.key); while (fscanf (stream, "%c ", &c) == 1) @@ -525,7 +525,7 @@ recompile_files () command = obstack_copy0 (&temporary_obstack, f->main, strlen (f->main)); if (tlink_verbose) - fprintf (stderr, "collect: recompiling %s\n", f->main); + fprintf (stderr, _("collect: recompiling %s\n"), f->main); if (tlink_verbose >= 3) fprintf (stderr, "%s\n", command); @@ -676,7 +676,7 @@ scan_linker_output (fname) if (sym && !sym->tweaking) { if (tlink_verbose >= 2) - fprintf (stderr, "collect: tweaking %s in %s\n", + fprintf (stderr, _("collect: tweaking %s in %s\n"), (char*) sym->root.key, (char*) sym->file->root.key); sym->tweaking = 1; file_push (sym->file); @@ -723,7 +723,7 @@ do_tlink (ld_argv, object_lst) if (! recompile_files ()) break; if (tlink_verbose) - fprintf (stderr, "collect: relinking\n"); + fprintf (stderr, _("collect: relinking\n")); exit = tlink_execute ("ld", ld_argv, ldout); } } |