diff options
author | Hidetoshi Tajima <hidetoshi.tajima@sun.com> | 2003-05-30 01:09:05 +0000 |
---|---|---|
committer | Hidetoshi Tajima <tajima@src.gnome.org> | 2003-05-30 01:09:05 +0000 |
commit | 3e08d91b1992462fd32f34e5e5369dfef33a9bf5 (patch) | |
tree | 484a87bd70be0384c22ee2d5cd00f7a21cc1adf3 | |
parent | 156e978f87b5f020ad006bde0fdd8640665cb285 (diff) | |
download | gdk-pixbuf-3e08d91b1992462fd32f34e5e5369dfef33a9bf5.tar.gz |
use GETTEXT_PACKAGE to get a translation for "Default"(#113850).
Thu May 29 18:08:01 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com>
* gtk/gtkimmodule.c (_gtk_im_module_list):
use GETTEXT_PACKAGE to get a translation for "Default"(#113850).
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-4 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 5 | ||||
-rw-r--r-- | gtk/gtkimmodule.c | 4 |
6 files changed, 27 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Thu May 29 18:08:01 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com> + + * gtk/gtkimmodule.c (_gtk_im_module_list): + use GETTEXT_PACKAGE to get a translation for "Default"(#113850). + Thu May 29 09:34:05 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com> * gtk/gtkimmodule.c (_gtk_im_module_list): make "Default" diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 06ee567bd..7b5d09ae5 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Thu May 29 18:08:01 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com> + + * gtk/gtkimmodule.c (_gtk_im_module_list): + use GETTEXT_PACKAGE to get a translation for "Default"(#113850). + Thu May 29 09:34:05 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com> * gtk/gtkimmodule.c (_gtk_im_module_list): make "Default" diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 06ee567bd..7b5d09ae5 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +Thu May 29 18:08:01 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com> + + * gtk/gtkimmodule.c (_gtk_im_module_list): + use GETTEXT_PACKAGE to get a translation for "Default"(#113850). + Thu May 29 09:34:05 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com> * gtk/gtkimmodule.c (_gtk_im_module_list): make "Default" diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 06ee567bd..7b5d09ae5 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Thu May 29 18:08:01 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com> + + * gtk/gtkimmodule.c (_gtk_im_module_list): + use GETTEXT_PACKAGE to get a translation for "Default"(#113850). + Thu May 29 09:34:05 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com> * gtk/gtkimmodule.c (_gtk_im_module_list): make "Default" diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 06ee567bd..7b5d09ae5 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Thu May 29 18:08:01 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com> + + * gtk/gtkimmodule.c (_gtk_im_module_list): + use GETTEXT_PACKAGE to get a translation for "Default"(#113850). + Thu May 29 09:34:05 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com> * gtk/gtkimmodule.c (_gtk_im_module_list): make "Default" diff --git a/gtk/gtkimmodule.c b/gtk/gtkimmodule.c index e4e77ff9b..4af34a078 100644 --- a/gtk/gtkimmodule.c +++ b/gtk/gtkimmodule.c @@ -417,8 +417,8 @@ _gtk_im_module_list (const GtkIMContextInfo ***contexts, static const GtkIMContextInfo simple_context_info = { SIMPLE_ID, N_("Default"), - "gtk+", - NULL, + GETTEXT_PACKAGE, + GTK_LOCALEDIR, "" }; |