diff options
author | Tom Tromey <tromey@redhat.com> | 1998-04-22 05:13:54 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1998-04-22 05:13:54 +0000 |
commit | 53d3ce37d4d65d2df72ec3c96e292adb1759d03e (patch) | |
tree | 92f307eadb5c78c77a8ee3f84aa582370628fe51 /bfd/elf64-alpha.c | |
parent | 6bf191bf4d7018ecb2e4d68fd4f5b768162c0a7e (diff) | |
download | gdb-53d3ce37d4d65d2df72ec3c96e292adb1759d03e.zip gdb-53d3ce37d4d65d2df72ec3c96e292adb1759d03e.tar.gz gdb-53d3ce37d4d65d2df72ec3c96e292adb1759d03e.tar.bz2 |
* Many files: Added gettext invocations around user-visible
strings.
* libbfd-in.h: Added gettext includes and defines.
* acconfig.h (ENABLE_NLS, HAVE_CATGETS, HAVE_GETTEXT, HAVE_STPCPY,
HAVE_LC_MESSAGES): Define.
* configure.in: Call CY_GNU_GETTEXT. Create po/Makefile.in and
po/Makefile.
* Makefile.am (SUBDIRS): Added po.
(POTFILES): New macro.
(po/POTFILES.in): New target.
(SOURCE_HFILES): New macro.
(HFILES): Use it.
* po/Make-in, po/POTFILES.in, po/bfd.pot: New files.
Diffstat (limited to 'bfd/elf64-alpha.c')
-rw-r--r-- | bfd/elf64-alpha.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bfd/elf64-alpha.c b/bfd/elf64-alpha.c index 36da889..54cb033 100644 --- a/bfd/elf64-alpha.c +++ b/bfd/elf64-alpha.c @@ -946,7 +946,7 @@ elf64_alpha_reloc_gpdisp (abfd, reloc_entry, sym, data, input_section, /* Complain if the instructions are not correct. */ if (ret == bfd_reloc_dangerous) - *err_msg = "GPDISP relocation did not find ldah and lda instructions"; + *err_msg = _("GPDISP relocation did not find ldah and lda instructions"); return ret; } @@ -2944,7 +2944,7 @@ elf64_alpha_size_got_sections (output_bfd, info) { /* Yikes! A single object file has too many entries. */ (*_bfd_error_handler) - ("%s: .got subsegment exceeds 64K (size %d)", + (_("%s: .got subsegment exceeds 64K (size %d)"), bfd_get_filename(i), alpha_elf_tdata(this_got)->total_got_entries * 8); return false; @@ -2964,7 +2964,7 @@ elf64_alpha_size_got_sections (output_bfd, info) if (++ngots == 2) { (*info->callbacks->warning) - (info, "using multiple gp values", (char *) NULL, + (info, _("using multiple gp values"), (char *) NULL, output_bfd, (asection *) NULL, (bfd_vma) 0); } *cur_got_tail = NULL; @@ -4368,7 +4368,7 @@ elf64_alpha_final_link (abfd, info) else { (*_bfd_error_handler) - ("%s: illegal section name `%s'", + (_("%s: illegal section name `%s'"), bfd_get_filename (abfd), o->name); bfd_set_error (bfd_error_nonrepresentable_section); return false; |