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
This commit is contained in:
Petr Viktorin 2013-07-18 17:40:17 +02:00 committed by Martin Kosek
parent 6c0b7f3389
commit efb7a2d54d

View File

@ -33,13 +33,13 @@ int init_gettext(void)
} }
errno = 0; errno = 0;
c = bindtextdomain(PACKAGE, LOCALEDIR); c = bindtextdomain("ipa", LOCALEDIR);
if (c == NULL) { if (c == NULL) {
return errno; return errno;
} }
errno = 0; errno = 0;
c = textdomain(PACKAGE); c = textdomain("ipa");
if (c == NULL) { if (c == NULL) {
return errno; return errno;
} }