diff options
author | Nick Clifton <nickc@redhat.com> | 1998-04-23 15:15:27 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1998-04-23 15:15:27 +0000 |
commit | 701552a5a1e23f14d8dfed6524b1322d3b77a654 (patch) | |
tree | 6595c6cdfd0384b9f7348e23cda611648de9813d /bfd | |
parent | 52dd717d63cfa5b467ec4482bc54f712a52b30e8 (diff) | |
download | gdb-701552a5a1e23f14d8dfed6524b1322d3b77a654.zip gdb-701552a5a1e23f14d8dfed6524b1322d3b77a654.tar.gz gdb-701552a5a1e23f14d8dfed6524b1322d3b77a654.tar.bz2 |
Fixed internationalisation.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/peicode.h | 28 |
2 files changed, 18 insertions, 14 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index f384434..c437bc3 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +Thu Apr 23 08:13:04 1998 Nick Clifton <nickc@cygnus.com> + + * peicode.h (dir_names): Add missing N_() macros to dir_names array. + Wed Apr 22 13:06:15 1998 Tom Tromey <tromey@cygnus.com> * po/Make-in (MKINSTALLDIRS): Don't look in $(top_srcdir). diff --git a/bfd/peicode.h b/bfd/peicode.h index 77e8d68..7953831 100644 --- a/bfd/peicode.h +++ b/bfd/peicode.h @@ -1205,20 +1205,20 @@ static char * dir_names[IMAGE_NUMBEROF_DIRECTORY_ENTRIES] = { N_ ("Export Directory [.edata (or where ever we found it)]"), N_ ("Import Directory [parts of .idata]"), - _("Resource Directory [.rsrc]"), - _("Exception Directory [.pdata]"), - _("Security Directory"), - _("Base Relocation Directory [.reloc]"), - _("Debug Directory"), - _("Description Directory"), - _("Special Directory"), - _("Thread Storage Directory [.tls]"), - _("Load Configuration Directory"), - _("Bound Import Directory"), - _("Import Address Table Directory"), - _("Reserved"), - _("Reserved"), - _("Reserved") + N_ ("Resource Directory [.rsrc]"), + N_ ("Exception Directory [.pdata]"), + N_ ("Security Directory"), + N_ ("Base Relocation Directory [.reloc]"), + N_ ("Debug Directory"), + N_ ("Description Directory"), + N_ ("Special Directory"), + N_ ("Thread Storage Directory [.tls]"), + N_ ("Load Configuration Directory"), + N_ ("Bound Import Directory"), + N_ ("Import Address Table Directory"), + N_ ("Reserved"), + N_ ("Reserved"), + N_ ("Reserved") }; /**********************************************************************/ |