From 701552a5a1e23f14d8dfed6524b1322d3b77a654 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Thu, 23 Apr 1998 15:15:27 +0000 Subject: [PATCH] Fixed internationalisation. --- bfd/ChangeLog | 4 ++++ 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 + + * peicode.h (dir_names): Add missing N_() macros to dir_names array. + Wed Apr 22 13:06:15 1998 Tom Tromey * 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") }; /**********************************************************************/ -- 2.7.4