make "Default" label of default input method localizable. use translations
Thu May 29 09:34:05 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com> * gtk/gtkimmodule.c (_gtk_im_module_list): make "Default" label of default input method localizable. * gtk/gtkimmulticontext.c (gtk_im_multicontext_append_menuitems): use translations of input method context names * modules/input/imam-et.c, modules/input/imcyrillic-translit.c, modules/input/iminuktitut.c, modules/input/imthai-broken.c, modules/input/imti-er.c, modules/input/imti-et.c modules/input/imviqr.c, modules/input/imxim.c use GETTEXT_PACKAGE instead of "gtk+" for domain name. (#113850).
This commit is contained in:
committed by
Hidetoshi Tajima
parent
763672696a
commit
156e978f87
@ -450,8 +450,8 @@ am_et_init (GtkIMContextSimple *im_context)
|
||||
|
||||
static const GtkIMContextInfo am_et_info = {
|
||||
"am_et", /* ID */
|
||||
N_("Amharic (EZ+)"), /* Human readable name */
|
||||
"gtk+", /* Translation domain */
|
||||
N_("Amharic (EZ+)"), /* Human readable name */
|
||||
GETTEXT_PACKAGE, /* Translation domain */
|
||||
GTK_LOCALEDIR, /* Dir for bindtextdomain (not strictly needed for "gtk+") */
|
||||
"am" /* Languages for which this module is the default */
|
||||
};
|
||||
|
||||
@ -214,7 +214,7 @@ cyrillic_translit_init (GtkIMContextSimple *im_context)
|
||||
static const GtkIMContextInfo cyrillic_translit_info = {
|
||||
"cyrillic_translit", /* ID */
|
||||
N_("Cyrillic (Transliterated)"), /* Human readable name */
|
||||
"gtk+", /* Translation domain */
|
||||
GETTEXT_PACKAGE, /* Translation domain */
|
||||
GTK_LOCALEDIR, /* Dir for bindtextdomain (not strictly needed for "gtk+") */
|
||||
"" /* Languages for which this module is the default */
|
||||
};
|
||||
|
||||
@ -124,8 +124,8 @@ inuktitut_init (GtkIMContextSimple *im_context)
|
||||
static const GtkIMContextInfo inuktitut_info = {
|
||||
"inuktitut", /* ID */
|
||||
N_("Inukitut (Transliterated)"), /* Human readable name */
|
||||
"gtk+", /* Translation domain */
|
||||
GTK_LOCALEDIR, /* Dir for bindtextdomain (not strictly needed for "gtk+") */
|
||||
GETTEXT_PACKAGE, /* Translation domain */
|
||||
GTK_LOCALEDIR, /* Dir for bindtextdomain (not strictly needed for "gtk+") */
|
||||
"iu" /* Languages for which this module is the default */
|
||||
};
|
||||
|
||||
|
||||
@ -175,7 +175,7 @@ thai_broken_init (GtkIMContextSimple *im_context)
|
||||
static const GtkIMContextInfo thai_broken_info = {
|
||||
"thai_broken", /* ID */
|
||||
N_("Thai (Broken)"), /* Human readable name */
|
||||
"gtk+", /* Translation domain */
|
||||
GETTEXT_PACKAGE, /* Translation domain */
|
||||
GTK_LOCALEDIR, /* Dir for bindtextdomain (not strictly needed for "gtk+") */
|
||||
"" /* Languages for which this module is the default */
|
||||
};
|
||||
|
||||
@ -450,7 +450,7 @@ ti_er_init (GtkIMContextSimple *im_context)
|
||||
static const GtkIMContextInfo ti_er_info = {
|
||||
"ti_er", /* ID */
|
||||
N_("Tigrigna-Eritrean (EZ+)"), /* Human readable name */
|
||||
"gtk+", /* Translation domain */
|
||||
GETTEXT_PACKAGE, /* Translation domain */
|
||||
GTK_LOCALEDIR, /* Dir for bindtextdomain (not strictly needed for "gtk+") */
|
||||
"ti" /* Languages for which this module is the default */
|
||||
};
|
||||
|
||||
@ -450,7 +450,7 @@ ti_et_init (GtkIMContextSimple *im_context)
|
||||
static const GtkIMContextInfo ti_et_info = {
|
||||
"ti_et", /* ID */
|
||||
N_("Tigrigna-Ethiopian (EZ+)"), /* Human readable name */
|
||||
"gtk+", /* Translation domain */
|
||||
GETTEXT_PACKAGE, /* Translation domain */
|
||||
GTK_LOCALEDIR, /* Dir for bindtextdomain (not strictly needed for "gtk+") */
|
||||
"ti" /* Languages for which this module is the default */
|
||||
};
|
||||
|
||||
@ -241,7 +241,7 @@ viqr_init (GtkIMContextSimple *im_context)
|
||||
static const GtkIMContextInfo viqr_info = {
|
||||
"viqr", /* ID */
|
||||
N_("Vietnamese (VIQR)"), /* Human readable name */
|
||||
"gtk+", /* Translation domain */
|
||||
GETTEXT_PACKAGE, /* Translation domain */
|
||||
GTK_LOCALEDIR, /* Dir for bindtextdomain (not strictly needed for "gtk+") */
|
||||
"vi" /* Languages for which this module is the default */
|
||||
};
|
||||
|
||||
@ -25,8 +25,8 @@
|
||||
static const GtkIMContextInfo xim_ja_info = {
|
||||
"xim", /* ID */
|
||||
N_("X Input Method"), /* Human readable name */
|
||||
"gtk+", /* Translation domain */
|
||||
GTK_LOCALEDIR, /* Dir for bindtextdomain (not strictly needed for "gtk+") */
|
||||
GETTEXT_PACKAGE, /* Translation domain */
|
||||
GTK_LOCALEDIR, /* Dir for bindtextdomain (not strictly needed for "gtk+") */
|
||||
"ko:ja:zh" /* Languages for which this module is the default */
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user