From efb7a2d54d4d7498d60e5e212ef4d53fa5fe39d4 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Thu, 18 Jul 2013 17:40:17 +0200 Subject: [PATCH] ipa-client: Use "ipa" as the package name for i18n IPA uses "ipa" as the "package name" for all translations, even in the ipa-client package. https://fedorahosted.org/freeipa/ticket/3695 --- ipa-client/ipa-client-common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ipa-client/ipa-client-common.c b/ipa-client/ipa-client-common.c index 68861c654..23f384a6e 100644 --- a/ipa-client/ipa-client-common.c +++ b/ipa-client/ipa-client-common.c @@ -33,13 +33,13 @@ int init_gettext(void) } errno = 0; - c = bindtextdomain(PACKAGE, LOCALEDIR); + c = bindtextdomain("ipa", LOCALEDIR); if (c == NULL) { return errno; } errno = 0; - c = textdomain(PACKAGE); + c = textdomain("ipa"); if (c == NULL) { return errno; }