diff options
author | Henrik Brautaset Aronsen <subsurface@henrik.synth.no> | 2012-10-15 14:44:01 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2012-10-15 09:36:30 -0700 |
commit | ef039c9d32e998af3ceab21673a51169f6e4f1ed (patch) | |
tree | eafa830236c22de20faa1fd050c26a3d5a47825b /macos.c | |
parent | 5c432d3c8afdb7b98ef385b5bde04bc5aea1c5cf (diff) | |
download | subsurface-ef039c9d32e998af3ceab21673a51169f6e4f1ed.tar.gz |
Support for gettext in MacOSX application bundle
The MacOSX applications bundle needs to be told where to bind the
text domain from.
Also copy the gettext .mo files in the install-macosx target.
[Dirk Hohndel: minor change in main(): move the path declaration to
the beginning of the function]
Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'macos.c')
-rw-r--r-- | macos.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -104,6 +104,19 @@ const char *subsurface_default_filename() } } +const char *subsurface_gettext_domainpath() +{ + CFBundleRef mainBundle = CFBundleGetMainBundle(); + CFURLRef localeURL = CFBundleCopyResourceURL(mainBundle, CFSTR("locale"), CFSTR(""), NULL); + if (localeURL) { + CFStringRef localePath = CFURLCopyFileSystemPath(localeURL, kCFURLPOSIXPathStyle); + CFStringEncoding encodingMethod = CFStringGetSystemEncoding(); + const char *path = CFStringGetCStringPtr(localePath, encodingMethod); + return path; + } + return "./locale"; +} + static void show_main_window(GtkWidget *w, gpointer data) { gtk_widget_show(main_window); |