mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
Make the list of default languages more comprehensive. (Suggestion of Fco.
Sat Aug 16 10:34:49 2003 Owen Taylor <otaylor@redhat.com> * modules/input/imcedilla.c: Make the list of default languages more comprehensive. (Suggestion of Fco. Javier F. Serrador) Sat Aug 9 12:47:11 2003 Owen Taylor <otaylor@redhat.com> * gdk/gdk.c (gdk_arg_context_parse): Fix broken parentheses when skipping args.
This commit is contained in:
parent
4e6ec12ec3
commit
34c550243f
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
|||||||
|
Sat Aug 16 10:34:49 2003 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* modules/input/imcedilla.c: Make the list of default
|
||||||
|
languages more comprehensive. (Suggestion of
|
||||||
|
Fco. Javier F. Serrador)
|
||||||
|
|
||||||
|
Sat Aug 9 12:47:11 2003 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* gdk/gdk.c (gdk_arg_context_parse): Fix broken
|
||||||
|
parentheses when skipping args.
|
||||||
|
|
||||||
Sat Aug 16 16:22:23 2003 Kristian Rietveld <kris@gtk.org>
|
Sat Aug 16 16:22:23 2003 Kristian Rietveld <kris@gtk.org>
|
||||||
|
|
||||||
Fix major bug in row ref handling, so the new combo box
|
Fix major bug in row ref handling, so the new combo box
|
||||||
|
@ -1,3 +1,14 @@
|
|||||||
|
Sat Aug 16 10:34:49 2003 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* modules/input/imcedilla.c: Make the list of default
|
||||||
|
languages more comprehensive. (Suggestion of
|
||||||
|
Fco. Javier F. Serrador)
|
||||||
|
|
||||||
|
Sat Aug 9 12:47:11 2003 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* gdk/gdk.c (gdk_arg_context_parse): Fix broken
|
||||||
|
parentheses when skipping args.
|
||||||
|
|
||||||
Sat Aug 16 16:22:23 2003 Kristian Rietveld <kris@gtk.org>
|
Sat Aug 16 16:22:23 2003 Kristian Rietveld <kris@gtk.org>
|
||||||
|
|
||||||
Fix major bug in row ref handling, so the new combo box
|
Fix major bug in row ref handling, so the new combo box
|
||||||
|
@ -1,3 +1,14 @@
|
|||||||
|
Sat Aug 16 10:34:49 2003 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* modules/input/imcedilla.c: Make the list of default
|
||||||
|
languages more comprehensive. (Suggestion of
|
||||||
|
Fco. Javier F. Serrador)
|
||||||
|
|
||||||
|
Sat Aug 9 12:47:11 2003 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* gdk/gdk.c (gdk_arg_context_parse): Fix broken
|
||||||
|
parentheses when skipping args.
|
||||||
|
|
||||||
Sat Aug 16 16:22:23 2003 Kristian Rietveld <kris@gtk.org>
|
Sat Aug 16 16:22:23 2003 Kristian Rietveld <kris@gtk.org>
|
||||||
|
|
||||||
Fix major bug in row ref handling, so the new combo box
|
Fix major bug in row ref handling, so the new combo box
|
||||||
|
@ -1,3 +1,14 @@
|
|||||||
|
Sat Aug 16 10:34:49 2003 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* modules/input/imcedilla.c: Make the list of default
|
||||||
|
languages more comprehensive. (Suggestion of
|
||||||
|
Fco. Javier F. Serrador)
|
||||||
|
|
||||||
|
Sat Aug 9 12:47:11 2003 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* gdk/gdk.c (gdk_arg_context_parse): Fix broken
|
||||||
|
parentheses when skipping args.
|
||||||
|
|
||||||
Sat Aug 16 16:22:23 2003 Kristian Rietveld <kris@gtk.org>
|
Sat Aug 16 16:22:23 2003 Kristian Rietveld <kris@gtk.org>
|
||||||
|
|
||||||
Fix major bug in row ref handling, so the new combo box
|
Fix major bug in row ref handling, so the new combo box
|
||||||
|
@ -1,3 +1,14 @@
|
|||||||
|
Sat Aug 16 10:34:49 2003 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* modules/input/imcedilla.c: Make the list of default
|
||||||
|
languages more comprehensive. (Suggestion of
|
||||||
|
Fco. Javier F. Serrador)
|
||||||
|
|
||||||
|
Sat Aug 9 12:47:11 2003 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* gdk/gdk.c (gdk_arg_context_parse): Fix broken
|
||||||
|
parentheses when skipping args.
|
||||||
|
|
||||||
Sat Aug 16 16:22:23 2003 Kristian Rietveld <kris@gtk.org>
|
Sat Aug 16 16:22:23 2003 Kristian Rietveld <kris@gtk.org>
|
||||||
|
|
||||||
Fix major bug in row ref handling, so the new combo box
|
Fix major bug in row ref handling, so the new combo box
|
||||||
|
@ -109,7 +109,7 @@ gdk_arg_context_parse (GdkArgContext *context, gint *argc, gchar ***argv)
|
|||||||
{
|
{
|
||||||
char *arg;
|
char *arg;
|
||||||
|
|
||||||
if (!(*argv)[i][0] == '-' && (*argv)[i][1] == '-')
|
if (!((*argv)[i][0] == '-' && (*argv)[i][1] == '-'))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
arg = (*argv)[i] + 2;
|
arg = (*argv)[i] + 2;
|
||||||
|
@ -90,7 +90,7 @@ static const GtkIMContextInfo cedilla_info = {
|
|||||||
N_("Cedilla"), /* Human readable name */
|
N_("Cedilla"), /* Human readable name */
|
||||||
"gtk+", /* Translation domain */
|
"gtk+", /* Translation domain */
|
||||||
GTK_LOCALEDIR, /* Dir for bindtextdomain (not strictly needed for "gtk+") */
|
GTK_LOCALEDIR, /* Dir for bindtextdomain (not strictly needed for "gtk+") */
|
||||||
"fr:pt" /* Languages for which this module is the default */
|
"az:ca:co:fr:gv:oc:pt:sq:tr:wa" /* Languages for which this module is the default */
|
||||||
};
|
};
|
||||||
|
|
||||||
static const GtkIMContextInfo *info_list[] = {
|
static const GtkIMContextInfo *info_list[] = {
|
||||||
|
Loading…
Reference in New Issue
Block a user