summaryrefslogtreecommitdiffstats
path: root/ipa-client/ipa-client-common.c
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2013-07-18 17:40:17 +0200
committerMartin Kosek <mkosek@redhat.com>2013-07-19 12:26:28 +0200
commitefb7a2d54d4d7498d60e5e212ef4d53fa5fe39d4 (patch)
tree711b9fded1b8d7653509fe0d63239bffe90b25be /ipa-client/ipa-client-common.c
parent6c0b7f3389a13d0fb86e5c3bd7d299a9e8629958 (diff)
downloadfreeipa-efb7a2d54d4d7498d60e5e212ef4d53fa5fe39d4.tar.gz
freeipa-efb7a2d54d4d7498d60e5e212ef4d53fa5fe39d4.tar.xz
freeipa-efb7a2d54d4d7498d60e5e212ef4d53fa5fe39d4.zip
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
Diffstat (limited to 'ipa-client/ipa-client-common.c')
-rw-r--r--ipa-client/ipa-client-common.c4
1 files 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;
}