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/elflink.h | |
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/elflink.h')
-rw-r--r-- | bfd/elflink.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bfd/elflink.h b/bfd/elflink.h index 21bd270..db79db7 100644 --- a/bfd/elflink.h +++ b/bfd/elflink.h @@ -1123,7 +1123,7 @@ elf_link_add_object_symbols (abfd, info) if (vernum > elf_tdata (abfd)->dynverdef_hdr.sh_info) { (*_bfd_error_handler) - ("%s: %s: invalid version %u (max %d)", + (_("%s: %s: invalid version %u (max %d)"), abfd->filename, name, vernum, elf_tdata (abfd)->dynverdef_hdr.sh_info); bfd_set_error (bfd_error_bad_value); @@ -1164,7 +1164,7 @@ elf_link_add_object_symbols (abfd, info) if (verstr == NULL) { (*_bfd_error_handler) - ("%s: %s: invalid needed version %d", + (_("%s: %s: invalid needed version %d"), abfd->filename, name, vernum); bfd_set_error (bfd_error_bad_value); goto error_return; @@ -1277,7 +1277,7 @@ elf_link_add_object_symbols (abfd, info) { if (h->size != 0 && h->size != sym.st_size && ! size_change_ok) (*_bfd_error_handler) - ("Warning: size of symbol `%s' changed from %lu to %lu in %s", + (_("Warning: size of symbol `%s' changed from %lu to %lu in %s"), name, (unsigned long) h->size, (unsigned long) sym.st_size, bfd_get_filename (abfd)); @@ -1299,7 +1299,7 @@ elf_link_add_object_symbols (abfd, info) && h->type != ELF_ST_TYPE (sym.st_info) && ! type_change_ok) (*_bfd_error_handler) - ("Warning: type of symbol `%s' changed from %d to %d in %s", + (_("Warning: type of symbol `%s' changed from %d to %d in %s"), name, h->type, ELF_ST_TYPE (sym.st_info), bfd_get_filename (abfd)); @@ -1521,7 +1521,7 @@ elf_link_add_object_symbols (abfd, info) don't expect to see the type of override we do in the case above. */ (*_bfd_error_handler) - ("%s: warning: unexpected redefinition of `%s'", + (_("%s: warning: unexpected redefinition of `%s'"), bfd_get_filename (abfd), shortname); } else @@ -3217,7 +3217,7 @@ elf_link_assign_sym_version (h, data) /* We could not find the version for a symbol when generating a shared archive. Return an error. */ (*_bfd_error_handler) - ("%s: undefined versioned symbol name %s", + (_("%s: undefined versioned symbol name %s"), bfd_get_filename (sinfo->output_bfd), h->root.root.string); bfd_set_error (bfd_error_bad_value); sinfo->failed = true; |