diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-07-12 04:23:10 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-07-12 04:23:10 +0800 |
commit | 8edb3efb671cef0c762dac6a67de549f88382479 (patch) | |
tree | 74a3994e41a3aeb53402b9dc42a60da4093dcd39 | |
parent | 9f25938b8101d5ea10d547d709bc136d4aeddb6b (diff) | |
download | gsoc2013-epiphany-8edb3efb671cef0c762dac6a67de549f88382479.tar gsoc2013-epiphany-8edb3efb671cef0c762dac6a67de549f88382479.tar.gz gsoc2013-epiphany-8edb3efb671cef0c762dac6a67de549f88382479.tar.bz2 gsoc2013-epiphany-8edb3efb671cef0c762dac6a67de549f88382479.tar.lz gsoc2013-epiphany-8edb3efb671cef0c762dac6a67de549f88382479.tar.xz gsoc2013-epiphany-8edb3efb671cef0c762dac6a67de549f88382479.tar.zst gsoc2013-epiphany-8edb3efb671cef0c762dac6a67de549f88382479.zip |
Init the gettext domain.
2005-07-11 Christian Persch <chpe@cvs.gnome.org>
* src/prefs-dialog.c: (prefs_dialog_init):
Init the gettext domain.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/prefs-dialog.c | 6 |
2 files changed, 12 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2005-07-11 Christian Persch <chpe@cvs.gnome.org> + * src/prefs-dialog.c: (prefs_dialog_init): + + Init the gettext domain. + +2005-07-11 Christian Persch <chpe@cvs.gnome.org> + * lib/widgets/ephy-node-view.c: (check_node_is_drag_source), (can_drag_selection), (button_release_cb), (motion_notify_cb): diff --git a/src/prefs-dialog.c b/src/prefs-dialog.c index 8f853ce19..7fda4913d 100644 --- a/src/prefs-dialog.c +++ b/src/prefs-dialog.c @@ -1192,6 +1192,12 @@ prefs_dialog_init (PrefsDialog *pd) pd->priv = EPHY_PREFS_DIALOG_GET_PRIVATE (pd); +#ifdef ENABLE_NLS + /* Initialize the control centre domain */ + bindtextdomain (GTK_DOMAIN, GNOMELOCALEDIR); + bind_textdomain_codeset(GTK_DOMAIN, "UTF-8"); +#endif + ephy_dialog_construct (dialog, properties, ephy_file ("prefs-dialog.glade"), |