Load translation on mac

presentation
Andreas Butti 7 years ago
parent edb18aaa87
commit f30b6c9a62
  1. 6
      src/control/XournalMain.cpp

@ -50,6 +50,12 @@ void XournalMain::initLocalisation()
#define PACKAGE_LOCALE_DIR "../share/locale/"
#endif
#ifdef __APPLE__
#undef PACKAGE_LOCALE_DIR
Path p = Stacktrace::getExePath();
p /= "../Resources/share/locale/";
const char* PACKAGE_LOCALE_DIR = p.c_str();
#endif
bindtextdomain(GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR);
textdomain(GETTEXT_PACKAGE);

Loading…
Cancel
Save