diff options
author | Gabor Kelemen <kelemeng@gnome.hu> | 2007-06-23 03:10:30 +0800 |
---|---|---|
committer | Gabor Keleman <kelemeng@src.gnome.org> | 2007-06-23 03:10:30 +0800 |
commit | b0a1720fcbb55cac52926c703df9528bd05e4b7f (patch) | |
tree | ceabc8fad232a392b078c892bcb626200d2031c0 /src/ephy-main.c | |
parent | 6ecb9db9e4f568b79123977da9eec079d771cadb (diff) | |
download | gsoc2013-epiphany-b0a1720fcbb55cac52926c703df9528bd05e4b7f.tar.gz gsoc2013-epiphany-b0a1720fcbb55cac52926c703df9528bd05e4b7f.tar.zst gsoc2013-epiphany-b0a1720fcbb55cac52926c703df9528bd05e4b7f.zip |
Use g_option_group_set_translation_domain to translate commandline
2007-06-22 Gabor Kelemen <kelemeng@gnome.hu>
* src/ephy-main.c: Use g_option_group_set_translation_domain to
translate commandline options. Fixes bug #450146
svn path=/trunk/; revision=7090
Diffstat (limited to 'src/ephy-main.c')
-rw-r--r-- | src/ephy-main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ephy-main.c b/src/ephy-main.c index 828365dd8..b3f0dc30c 100644 --- a/src/ephy-main.c +++ b/src/ephy-main.c @@ -504,6 +504,9 @@ main (int argc, N_("GNOME Web Browser"), N_("GNOME Web Browser options"), NULL, NULL); + + g_option_group_set_translation_domain (option_group, GETTEXT_PACKAGE); + g_option_group_add_entries (option_group, option_entries); g_option_context_set_main_group (option_context, option_group); |