diff options
author | Werner Koch <[email protected]> | 2005-01-20 11:42:03 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2005-01-20 11:42:03 +0000 |
commit | 5bda87bd6ea9936af2abd3c449fc48dc57549c1f (patch) | |
tree | feefe0d59cbe40eb7952b2f24a22fcf394ca8a27 /include/i18n.h | |
parent | * NEWS: Note --rfc2440-text import/export-unusable-sigs and (diff) | |
download | gnupg-5bda87bd6ea9936af2abd3c449fc48dc57549c1f.tar.gz gnupg-5bda87bd6ea9936af2abd3c449fc48dc57549c1f.zip |
* g10.c (i18n_init) [W32]: Pass registry key to gettext
initialization.
* gpgv.c (i18n_init) [W32]: Ditto.
* simple-gettext.c (set_gettext_file): Use MO files depending on
the installation directory. Add new arg REGKEY.
Diffstat (limited to '')
-rw-r--r-- | include/i18n.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/i18n.h b/include/i18n.h index 20c2570ab..12def28b8 100644 --- a/include/i18n.h +++ b/include/i18n.h @@ -22,7 +22,7 @@ #define G10_I18N_H #ifdef USE_SIMPLE_GETTEXT -int set_gettext_file( const char *filename ); +int set_gettext_file( const char *filename, const char *regkey ); const char *gettext( const char *msgid ); #define _(a) gettext (a) |