From a6ae409d34f962e5d5938c277dfa7b899077898c Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Fri, 21 Apr 2017 11:50:13 +0900 Subject: [PATCH] Fix i18n translation issue app-core does not support non reversed DNS type, so calls bindtextdomain directly. Change-Id: If0bd415b6be9fb271ba84ebc05a85dac65dd6e44 Signed-off-by: Jihoon Kim --- src/ise.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ise.cpp b/src/ise.cpp index d8a363a..d01bca1 100644 --- a/src/ise.cpp +++ b/src/ise.cpp @@ -1432,6 +1432,9 @@ ise_create() g_ui = new CSCLUI; } + bindtextdomain(PACKAGE, LOCALEDIR); + textdomain(PACKAGE); + /* Set scl_parser_type * default type is text xml * use command: export sclres_type="sclres_binary" to enable use binary resource -- 2.7.4