mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
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:
parent
6c0b7f3389
commit
efb7a2d54d
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user