diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/ephy-main.c | 3 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,8 @@ +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 + 2007-06-07 Diego Escalante Urrelo <diegoe@gnome.org> * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: 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); |