diff --git a/clutter/clutter-animation.c b/clutter/clutter-animation.c
index 555a6151e..812437398 100644
--- a/clutter/clutter-animation.c
+++ b/clutter/clutter-animation.c
@@ -196,7 +196,7 @@ struct _ClutterAnimationPrivate
guint timeline_started_id;
guint timeline_completed_id;
- guint alpha_notify_id;
+ guint timeline_frame_id;
};
static guint animation_signals[LAST_SIGNAL] = { 0, };
@@ -318,24 +318,24 @@ clutter_animation_dispose (GObject *gobject)
if (timeline != NULL && priv->timeline_completed_id != 0)
g_signal_handler_disconnect (timeline, priv->timeline_completed_id);
+ if (timeline != NULL && priv->timeline_frame_id != 0)
+ g_signal_handler_disconnect (timeline, priv->timeline_frame_id);
+
priv->timeline_started_id = 0;
priv->timeline_completed_id = 0;
+ priv->timeline_frame_id = 0;
if (priv->alpha != NULL)
{
- if (priv->alpha_notify_id != 0)
- g_signal_handler_disconnect (priv->alpha, priv->alpha_notify_id);
-
g_object_unref (priv->alpha);
+ priv->alpha = NULL;
}
- priv->alpha_notify_id = 0;
- priv->alpha = NULL;
-
if (priv->object != NULL)
- g_object_unref (priv->object);
-
- priv->object = NULL;
+ {
+ g_object_unref (priv->object);
+ priv->object = NULL;
+ }
G_OBJECT_CLASS (clutter_animation_parent_class)->dispose (gobject);
}
@@ -1074,9 +1074,9 @@ on_timeline_completed (ClutterTimeline *timeline,
}
static void
-on_alpha_notify (GObject *gobject,
- GParamSpec *pspec,
- ClutterAnimation *animation)
+on_timeline_frame (ClutterTimeline *timeline,
+ gint elapsed,
+ ClutterAnimation *animation)
{
ClutterAnimationPrivate *priv;
GList *properties, *p;
@@ -1089,7 +1089,7 @@ on_alpha_notify (GObject *gobject,
priv = animation->priv;
- alpha_value = clutter_alpha_get_alpha (CLUTTER_ALPHA (gobject));
+ alpha_value = clutter_alpha_get_alpha (priv->alpha);
if (CLUTTER_IS_ANIMATABLE (priv->object))
{
@@ -1156,11 +1156,6 @@ clutter_animation_get_alpha_internal (ClutterAnimation *animation)
alpha = clutter_alpha_new ();
clutter_alpha_set_mode (alpha, CLUTTER_LINEAR);
- priv->alpha_notify_id =
- g_signal_connect (alpha, "notify::alpha",
- G_CALLBACK (on_alpha_notify),
- animation);
-
priv->alpha = g_object_ref_sink (alpha);
g_object_notify_by_pspec (G_OBJECT (animation), obj_props[PROP_ALPHA]);
@@ -1193,6 +1188,11 @@ clutter_animation_get_timeline_internal (ClutterAnimation *animation)
G_CALLBACK (on_timeline_completed),
animation);
+ priv->timeline_frame_id =
+ g_signal_connect (timeline, "new-frame",
+ G_CALLBACK (on_timeline_frame),
+ animation);
+
clutter_alpha_set_timeline (alpha, timeline);
/* the alpha owns the timeline now */
@@ -1489,8 +1489,12 @@ clutter_animation_set_timeline (ClutterAnimation *animation,
if (cur_timeline != NULL && priv->timeline_completed_id != 0)
g_signal_handler_disconnect (cur_timeline, priv->timeline_completed_id);
+ if (cur_timeline != NULL && priv->timeline_frame_id != 0)
+ g_signal_handler_disconnect (cur_timeline, priv->timeline_frame_id);
+
priv->timeline_started_id = 0;
priv->timeline_completed_id = 0;
+ priv->timeline_frame_id = 0;
alpha = clutter_animation_get_alpha_internal (animation);
clutter_alpha_set_timeline (alpha, timeline);
@@ -1508,6 +1512,10 @@ clutter_animation_set_timeline (ClutterAnimation *animation,
g_signal_connect (timeline, "completed",
G_CALLBACK (on_timeline_completed),
animation);
+ priv->timeline_frame_id =
+ g_signal_connect (timeline, "new-frame",
+ G_CALLBACK (on_timeline_frame),
+ animation);
}
g_object_thaw_notify (G_OBJECT (animation));
@@ -1579,10 +1587,10 @@ clutter_animation_set_alpha (ClutterAnimation *animation,
}
/* then we need to disconnect the signal handler from the old alpha */
- if (priv->alpha_notify_id != 0)
+ if (timeline != NULL && priv->timeline_frame_id != 0)
{
- g_signal_handler_disconnect (priv->alpha, priv->alpha_notify_id);
- priv->alpha_notify_id = 0;
+ g_signal_handler_disconnect (timeline, priv->timeline_frame_id);
+ priv->timeline_frame_id = 0;
}
if (priv->alpha != NULL)
@@ -1596,10 +1604,6 @@ clutter_animation_set_alpha (ClutterAnimation *animation,
goto out;
priv->alpha = g_object_ref_sink (alpha);
- priv->alpha_notify_id =
- g_signal_connect (priv->alpha, "notify::alpha",
- G_CALLBACK (on_alpha_notify),
- animation);
/* if the alpha has a timeline then we use it, otherwise we create one */
timeline = clutter_alpha_get_timeline (priv->alpha);
@@ -1613,6 +1617,10 @@ clutter_animation_set_alpha (ClutterAnimation *animation,
g_signal_connect (timeline, "completed",
G_CALLBACK (on_timeline_completed),
animation);
+ priv->timeline_frame_id =
+ g_signal_connect (timeline, "new-frame",
+ G_CALLBACK (on_timeline_frame),
+ animation);
}
else
{
diff --git a/clutter/clutter-box-layout.c b/clutter/clutter-box-layout.c
index ba71599bb..8a7c8ad26 100644
--- a/clutter/clutter-box-layout.c
+++ b/clutter/clutter-box-layout.c
@@ -749,16 +749,15 @@ count_expand_children (ClutterLayoutManager *layout,
gint *visible_children,
gint *expand_children)
{
- GList *children;
+ GList *children, *l;
ClutterActor *child;
*visible_children = *expand_children = 0;
- for (children = clutter_container_get_children (container);
- children;
- children = children->next)
+ children = clutter_container_get_children (container);
+ for (l = children; l != NULL; l = l->next)
{
- child = children->data;
+ child = l->data;
if (CLUTTER_ACTOR_IS_VISIBLE (child))
{
@@ -901,7 +900,7 @@ clutter_box_layout_allocate (ClutterLayoutManager *layout,
{
ClutterBoxLayoutPrivate *priv = CLUTTER_BOX_LAYOUT (layout)->priv;
ClutterActor *child;
- GList *children;
+ GList *children, *l;
gint nvis_children;
gint nexpand_children;
gboolean is_rtl;
@@ -929,11 +928,10 @@ clutter_box_layout_allocate (ClutterLayoutManager *layout,
size = box->x2 - box->x1 - (nvis_children - 1) * priv->spacing;
/* Retrieve desired size for visible children. */
- for (i = 0, children = clutter_container_get_children (container);
- children;
- children = children->next)
+ children = clutter_container_get_children (container);
+ for (i = 0, l = children; l != NULL; l = l->next)
{
- child = children->data;
+ child = l->data;
if (!CLUTTER_ACTOR_IS_VISIBLE (child))
continue;
@@ -1037,14 +1035,14 @@ clutter_box_layout_allocate (ClutterLayoutManager *layout,
}
children = clutter_container_get_children (container);
- for (i = g_list_length (children) - 1, children = g_list_last (children);
- children;
- children = children->prev, i--)
+ for (i = g_list_length (children) - 1, l = g_list_last (children);
+ l != NULL;
+ l = l->prev, i--)
{
ClutterLayoutMeta *meta;
ClutterBoxChild *box_child;
- child = children->data;
+ child = l->data;
meta = clutter_layout_manager_get_child_meta (layout,
container,
child);
diff --git a/clutter/clutter-event.h b/clutter/clutter-event.h
index c9b3a1939..d50b3cc1a 100644
--- a/clutter/clutter-event.h
+++ b/clutter/clutter-event.h
@@ -454,6 +454,7 @@ void clutter_event_set_scroll_direction (ClutterEvent
ClutterScrollDirection clutter_event_get_scroll_direction (const ClutterEvent *event);
guint32 clutter_keysym_to_unicode (guint keyval);
+guint clutter_unicode_to_keysym (guint32 wc);
guint32 clutter_get_current_event_time (void);
const ClutterEvent * clutter_get_current_event (void);
diff --git a/clutter/clutter-keysyms-table.c b/clutter/clutter-keysyms-table.c
index 9dcb2fb42..0835c6028 100644
--- a/clutter/clutter-keysyms-table.c
+++ b/clutter/clutter-keysyms-table.c
@@ -871,3 +871,807 @@ clutter_keysym_to_unicode (guint keyval)
/* No matching Unicode value found */
return 0;
}
+
+static const struct {
+ unsigned short keysym;
+ unsigned short ucs;
+} clutter_unicode_to_keysym_tab[] = {
+ { 0x0abd, 0x002e }, /* decimalpoint . FULL STOP */
+ { 0x0ba3, 0x003c }, /* leftcaret < LESS-THAN SIGN */
+ { 0x0ba6, 0x003e }, /* rightcaret > GREATER-THAN SIGN */
+ { 0x0bc6, 0x005f }, /* underbar _ LOW LINE */
+ { 0x0bc0, 0x00af }, /* overbar ¯ MACRON */
+ { 0x03c0, 0x0100 }, /* Amacron Ā LATIN CAPITAL LETTER A WITH MACRON */
+ { 0x03e0, 0x0101 }, /* amacron ā LATIN SMALL LETTER A WITH MACRON */
+ { 0x01c3, 0x0102 }, /* Abreve Ă LATIN CAPITAL LETTER A WITH BREVE */
+ { 0x01e3, 0x0103 }, /* abreve ă LATIN SMALL LETTER A WITH BREVE */
+ { 0x01a1, 0x0104 }, /* Aogonek Ą LATIN CAPITAL LETTER A WITH OGONEK */
+ { 0x01b1, 0x0105 }, /* aogonek ą LATIN SMALL LETTER A WITH OGONEK */
+ { 0x01c6, 0x0106 }, /* Cacute Ć LATIN CAPITAL LETTER C WITH ACUTE */
+ { 0x01e6, 0x0107 }, /* cacute ć LATIN SMALL LETTER C WITH ACUTE */
+ { 0x02c6, 0x0108 }, /* Ccircumflex Ĉ LATIN CAPITAL LETTER C WITH CIRCUMFLEX */
+ { 0x02e6, 0x0109 }, /* ccircumflex ĉ LATIN SMALL LETTER C WITH CIRCUMFLEX */
+ { 0x02c5, 0x010a }, /* Cabovedot Ċ LATIN CAPITAL LETTER C WITH DOT ABOVE */
+ { 0x02e5, 0x010b }, /* cabovedot ċ LATIN SMALL LETTER C WITH DOT ABOVE */
+ { 0x01c8, 0x010c }, /* Ccaron Č LATIN CAPITAL LETTER C WITH CARON */
+ { 0x01e8, 0x010d }, /* ccaron č LATIN SMALL LETTER C WITH CARON */
+ { 0x01cf, 0x010e }, /* Dcaron Ď LATIN CAPITAL LETTER D WITH CARON */
+ { 0x01ef, 0x010f }, /* dcaron ď LATIN SMALL LETTER D WITH CARON */
+ { 0x01d0, 0x0110 }, /* Dstroke Đ LATIN CAPITAL LETTER D WITH STROKE */
+ { 0x01f0, 0x0111 }, /* dstroke đ LATIN SMALL LETTER D WITH STROKE */
+ { 0x03aa, 0x0112 }, /* Emacron Ē LATIN CAPITAL LETTER E WITH MACRON */
+ { 0x03ba, 0x0113 }, /* emacron ē LATIN SMALL LETTER E WITH MACRON */
+ { 0x03cc, 0x0116 }, /* Eabovedot Ė LATIN CAPITAL LETTER E WITH DOT ABOVE */
+ { 0x03ec, 0x0117 }, /* eabovedot ė LATIN SMALL LETTER E WITH DOT ABOVE */
+ { 0x01ca, 0x0118 }, /* Eogonek Ę LATIN CAPITAL LETTER E WITH OGONEK */
+ { 0x01ea, 0x0119 }, /* eogonek ę LATIN SMALL LETTER E WITH OGONEK */
+ { 0x01cc, 0x011a }, /* Ecaron Ě LATIN CAPITAL LETTER E WITH CARON */
+ { 0x01ec, 0x011b }, /* ecaron ě LATIN SMALL LETTER E WITH CARON */
+ { 0x02d8, 0x011c }, /* Gcircumflex Ĝ LATIN CAPITAL LETTER G WITH CIRCUMFLEX */
+ { 0x02f8, 0x011d }, /* gcircumflex ĝ LATIN SMALL LETTER G WITH CIRCUMFLEX */
+ { 0x02ab, 0x011e }, /* Gbreve Ğ LATIN CAPITAL LETTER G WITH BREVE */
+ { 0x02bb, 0x011f }, /* gbreve ğ LATIN SMALL LETTER G WITH BREVE */
+ { 0x02d5, 0x0120 }, /* Gabovedot Ġ LATIN CAPITAL LETTER G WITH DOT ABOVE */
+ { 0x02f5, 0x0121 }, /* gabovedot ġ LATIN SMALL LETTER G WITH DOT ABOVE */
+ { 0x03ab, 0x0122 }, /* Gcedilla Ģ LATIN CAPITAL LETTER G WITH CEDILLA */
+ { 0x03bb, 0x0123 }, /* gcedilla ģ LATIN SMALL LETTER G WITH CEDILLA */
+ { 0x02a6, 0x0124 }, /* Hcircumflex Ĥ LATIN CAPITAL LETTER H WITH CIRCUMFLEX */
+ { 0x02b6, 0x0125 }, /* hcircumflex ĥ LATIN SMALL LETTER H WITH CIRCUMFLEX */
+ { 0x02a1, 0x0126 }, /* Hstroke Ħ LATIN CAPITAL LETTER H WITH STROKE */
+ { 0x02b1, 0x0127 }, /* hstroke ħ LATIN SMALL LETTER H WITH STROKE */
+ { 0x03a5, 0x0128 }, /* Itilde Ĩ LATIN CAPITAL LETTER I WITH TILDE */
+ { 0x03b5, 0x0129 }, /* itilde ĩ LATIN SMALL LETTER I WITH TILDE */
+ { 0x03cf, 0x012a }, /* Imacron Ī LATIN CAPITAL LETTER I WITH MACRON */
+ { 0x03ef, 0x012b }, /* imacron ī LATIN SMALL LETTER I WITH MACRON */
+ { 0x03c7, 0x012e }, /* Iogonek Į LATIN CAPITAL LETTER I WITH OGONEK */
+ { 0x03e7, 0x012f }, /* iogonek į LATIN SMALL LETTER I WITH OGONEK */
+ { 0x02a9, 0x0130 }, /* Iabovedot İ LATIN CAPITAL LETTER I WITH DOT ABOVE */
+ { 0x02b9, 0x0131 }, /* idotless ı LATIN SMALL LETTER DOTLESS I */
+ { 0x02ac, 0x0134 }, /* Jcircumflex Ĵ LATIN CAPITAL LETTER J WITH CIRCUMFLEX */
+ { 0x02bc, 0x0135 }, /* jcircumflex ĵ LATIN SMALL LETTER J WITH CIRCUMFLEX */
+ { 0x03d3, 0x0136 }, /* Kcedilla Ķ LATIN CAPITAL LETTER K WITH CEDILLA */
+ { 0x03f3, 0x0137 }, /* kcedilla ķ LATIN SMALL LETTER K WITH CEDILLA */
+ { 0x03a2, 0x0138 }, /* kra ĸ LATIN SMALL LETTER KRA */
+ { 0x01c5, 0x0139 }, /* Lacute Ĺ LATIN CAPITAL LETTER L WITH ACUTE */
+ { 0x01e5, 0x013a }, /* lacute ĺ LATIN SMALL LETTER L WITH ACUTE */
+ { 0x03a6, 0x013b }, /* Lcedilla Ļ LATIN CAPITAL LETTER L WITH CEDILLA */
+ { 0x03b6, 0x013c }, /* lcedilla ļ LATIN SMALL LETTER L WITH CEDILLA */
+ { 0x01a5, 0x013d }, /* Lcaron Ľ LATIN CAPITAL LETTER L WITH CARON */
+ { 0x01b5, 0x013e }, /* lcaron ľ LATIN SMALL LETTER L WITH CARON */
+ { 0x01a3, 0x0141 }, /* Lstroke Ł LATIN CAPITAL LETTER L WITH STROKE */
+ { 0x01b3, 0x0142 }, /* lstroke ł LATIN SMALL LETTER L WITH STROKE */
+ { 0x01d1, 0x0143 }, /* Nacute Ń LATIN CAPITAL LETTER N WITH ACUTE */
+ { 0x01f1, 0x0144 }, /* nacute ń LATIN SMALL LETTER N WITH ACUTE */
+ { 0x03d1, 0x0145 }, /* Ncedilla Ņ LATIN CAPITAL LETTER N WITH CEDILLA */
+ { 0x03f1, 0x0146 }, /* ncedilla ņ LATIN SMALL LETTER N WITH CEDILLA */
+ { 0x01d2, 0x0147 }, /* Ncaron Ň LATIN CAPITAL LETTER N WITH CARON */
+ { 0x01f2, 0x0148 }, /* ncaron ň LATIN SMALL LETTER N WITH CARON */
+ { 0x03bd, 0x014a }, /* ENG Ŋ LATIN CAPITAL LETTER ENG */
+ { 0x03bf, 0x014b }, /* eng ŋ LATIN SMALL LETTER ENG */
+ { 0x03d2, 0x014c }, /* Omacron Ō LATIN CAPITAL LETTER O WITH MACRON */
+ { 0x03f2, 0x014d }, /* omacron ō LATIN SMALL LETTER O WITH MACRON */
+ { 0x01d5, 0x0150 }, /* Odoubleacute Ő LATIN CAPITAL LETTER O WITH DOUBLE ACUTE */
+ { 0x01f5, 0x0151 }, /* odoubleacute ő LATIN SMALL LETTER O WITH DOUBLE ACUTE */
+ { 0x13bc, 0x0152 }, /* OE Œ LATIN CAPITAL LIGATURE OE */
+ { 0x13bd, 0x0153 }, /* oe œ LATIN SMALL LIGATURE OE */
+ { 0x01c0, 0x0154 }, /* Racute Ŕ LATIN CAPITAL LETTER R WITH ACUTE */
+ { 0x01e0, 0x0155 }, /* racute ŕ LATIN SMALL LETTER R WITH ACUTE */
+ { 0x03a3, 0x0156 }, /* Rcedilla Ŗ LATIN CAPITAL LETTER R WITH CEDILLA */
+ { 0x03b3, 0x0157 }, /* rcedilla ŗ LATIN SMALL LETTER R WITH CEDILLA */
+ { 0x01d8, 0x0158 }, /* Rcaron Ř LATIN CAPITAL LETTER R WITH CARON */
+ { 0x01f8, 0x0159 }, /* rcaron ř LATIN SMALL LETTER R WITH CARON */
+ { 0x01a6, 0x015a }, /* Sacute Ś LATIN CAPITAL LETTER S WITH ACUTE */
+ { 0x01b6, 0x015b }, /* sacute ś LATIN SMALL LETTER S WITH ACUTE */
+ { 0x02de, 0x015c }, /* Scircumflex Ŝ LATIN CAPITAL LETTER S WITH CIRCUMFLEX */
+ { 0x02fe, 0x015d }, /* scircumflex ŝ LATIN SMALL LETTER S WITH CIRCUMFLEX */
+ { 0x01aa, 0x015e }, /* Scedilla Ş LATIN CAPITAL LETTER S WITH CEDILLA */
+ { 0x01ba, 0x015f }, /* scedilla ş LATIN SMALL LETTER S WITH CEDILLA */
+ { 0x01a9, 0x0160 }, /* Scaron Š LATIN CAPITAL LETTER S WITH CARON */
+ { 0x01b9, 0x0161 }, /* scaron š LATIN SMALL LETTER S WITH CARON */
+ { 0x01de, 0x0162 }, /* Tcedilla Ţ LATIN CAPITAL LETTER T WITH CEDILLA */
+ { 0x01fe, 0x0163 }, /* tcedilla ţ LATIN SMALL LETTER T WITH CEDILLA */
+ { 0x01ab, 0x0164 }, /* Tcaron Ť LATIN CAPITAL LETTER T WITH CARON */
+ { 0x01bb, 0x0165 }, /* tcaron ť LATIN SMALL LETTER T WITH CARON */
+ { 0x03ac, 0x0166 }, /* Tslash Ŧ LATIN CAPITAL LETTER T WITH STROKE */
+ { 0x03bc, 0x0167 }, /* tslash ŧ LATIN SMALL LETTER T WITH STROKE */
+ { 0x03dd, 0x0168 }, /* Utilde Ũ LATIN CAPITAL LETTER U WITH TILDE */
+ { 0x03fd, 0x0169 }, /* utilde ũ LATIN SMALL LETTER U WITH TILDE */
+ { 0x03de, 0x016a }, /* Umacron Ū LATIN CAPITAL LETTER U WITH MACRON */
+ { 0x03fe, 0x016b }, /* umacron ū LATIN SMALL LETTER U WITH MACRON */
+ { 0x02dd, 0x016c }, /* Ubreve Ŭ LATIN CAPITAL LETTER U WITH BREVE */
+ { 0x02fd, 0x016d }, /* ubreve ŭ LATIN SMALL LETTER U WITH BREVE */
+ { 0x01d9, 0x016e }, /* Uring Ů LATIN CAPITAL LETTER U WITH RING ABOVE */
+ { 0x01f9, 0x016f }, /* uring ů LATIN SMALL LETTER U WITH RING ABOVE */
+ { 0x01db, 0x0170 }, /* Udoubleacute Ű LATIN CAPITAL LETTER U WITH DOUBLE ACUTE */
+ { 0x01fb, 0x0171 }, /* udoubleacute ű LATIN SMALL LETTER U WITH DOUBLE ACUTE */
+ { 0x03d9, 0x0172 }, /* Uogonek Ų LATIN CAPITAL LETTER U WITH OGONEK */
+ { 0x03f9, 0x0173 }, /* uogonek ų LATIN SMALL LETTER U WITH OGONEK */
+ { 0x13be, 0x0178 }, /* Ydiaeresis Ÿ LATIN CAPITAL LETTER Y WITH DIAERESIS */
+ { 0x01ac, 0x0179 }, /* Zacute Ź LATIN CAPITAL LETTER Z WITH ACUTE */
+ { 0x01bc, 0x017a }, /* zacute ź LATIN SMALL LETTER Z WITH ACUTE */
+ { 0x01af, 0x017b }, /* Zabovedot Ż LATIN CAPITAL LETTER Z WITH DOT ABOVE */
+ { 0x01bf, 0x017c }, /* zabovedot ż LATIN SMALL LETTER Z WITH DOT ABOVE */
+ { 0x01ae, 0x017d }, /* Zcaron Ž LATIN CAPITAL LETTER Z WITH CARON */
+ { 0x01be, 0x017e }, /* zcaron ž LATIN SMALL LETTER Z WITH CARON */
+ { 0x08f6, 0x0192 }, /* function ƒ LATIN SMALL LETTER F WITH HOOK */
+ { 0x01b7, 0x02c7 }, /* caron ˇ CARON */
+ { 0x01a2, 0x02d8 }, /* breve ˘ BREVE */
+ { 0x01ff, 0x02d9 }, /* abovedot ˙ DOT ABOVE */
+ { 0x01b2, 0x02db }, /* ogonek ˛ OGONEK */
+ { 0x01bd, 0x02dd }, /* doubleacute ˝ DOUBLE ACUTE ACCENT */
+ { 0x07ae, 0x0385 }, /* Greek_accentdieresis ΅ GREEK DIALYTIKA TONOS */
+ { 0x07a1, 0x0386 }, /* Greek_ALPHAaccent Ά GREEK CAPITAL LETTER ALPHA WITH TONOS */
+ { 0x07a2, 0x0388 }, /* Greek_EPSILONaccent Έ GREEK CAPITAL LETTER EPSILON WITH TONOS */
+ { 0x07a3, 0x0389 }, /* Greek_ETAaccent Ή GREEK CAPITAL LETTER ETA WITH TONOS */
+ { 0x07a4, 0x038a }, /* Greek_IOTAaccent Ί GREEK CAPITAL LETTER IOTA WITH TONOS */
+ { 0x07a7, 0x038c }, /* Greek_OMICRONaccent Ό GREEK CAPITAL LETTER OMICRON WITH TONOS */
+ { 0x07a8, 0x038e }, /* Greek_UPSILONaccent Ύ GREEK CAPITAL LETTER UPSILON WITH TONOS */
+ { 0x07ab, 0x038f }, /* Greek_OMEGAaccent Ώ GREEK CAPITAL LETTER OMEGA WITH TONOS */
+ { 0x07b6, 0x0390 }, /* Greek_iotaaccentdieresis ΐ GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS */
+ { 0x07c1, 0x0391 }, /* Greek_ALPHA Α GREEK CAPITAL LETTER ALPHA */
+ { 0x07c2, 0x0392 }, /* Greek_BETA Β GREEK CAPITAL LETTER BETA */
+ { 0x07c3, 0x0393 }, /* Greek_GAMMA Γ GREEK CAPITAL LETTER GAMMA */
+ { 0x07c4, 0x0394 }, /* Greek_DELTA Δ GREEK CAPITAL LETTER DELTA */
+ { 0x07c5, 0x0395 }, /* Greek_EPSILON Ε GREEK CAPITAL LETTER EPSILON */
+ { 0x07c6, 0x0396 }, /* Greek_ZETA Ζ GREEK CAPITAL LETTER ZETA */
+ { 0x07c7, 0x0397 }, /* Greek_ETA Η GREEK CAPITAL LETTER ETA */
+ { 0x07c8, 0x0398 }, /* Greek_THETA Θ GREEK CAPITAL LETTER THETA */
+ { 0x07c9, 0x0399 }, /* Greek_IOTA Ι GREEK CAPITAL LETTER IOTA */
+ { 0x07ca, 0x039a }, /* Greek_KAPPA Κ GREEK CAPITAL LETTER KAPPA */
+ { 0x07cb, 0x039b }, /* Greek_LAMBDA Λ GREEK CAPITAL LETTER LAMDA */
+ { 0x07cc, 0x039c }, /* Greek_MU Μ GREEK CAPITAL LETTER MU */
+ { 0x07cd, 0x039d }, /* Greek_NU Ν GREEK CAPITAL LETTER NU */
+ { 0x07ce, 0x039e }, /* Greek_XI Ξ GREEK CAPITAL LETTER XI */
+ { 0x07cf, 0x039f }, /* Greek_OMICRON Ο GREEK CAPITAL LETTER OMICRON */
+ { 0x07d0, 0x03a0 }, /* Greek_PI Π GREEK CAPITAL LETTER PI */
+ { 0x07d1, 0x03a1 }, /* Greek_RHO Ρ GREEK CAPITAL LETTER RHO */
+ { 0x07d2, 0x03a3 }, /* Greek_SIGMA Σ GREEK CAPITAL LETTER SIGMA */
+ { 0x07d4, 0x03a4 }, /* Greek_TAU Τ GREEK CAPITAL LETTER TAU */
+ { 0x07d5, 0x03a5 }, /* Greek_UPSILON Υ GREEK CAPITAL LETTER UPSILON */
+ { 0x07d6, 0x03a6 }, /* Greek_PHI Φ GREEK CAPITAL LETTER PHI */
+ { 0x07d7, 0x03a7 }, /* Greek_CHI Χ GREEK CAPITAL LETTER CHI */
+ { 0x07d8, 0x03a8 }, /* Greek_PSI Ψ GREEK CAPITAL LETTER PSI */
+ { 0x07d9, 0x03a9 }, /* Greek_OMEGA Ω GREEK CAPITAL LETTER OMEGA */
+ { 0x07a5, 0x03aa }, /* Greek_IOTAdieresis Ϊ GREEK CAPITAL LETTER IOTA WITH DIALYTIKA */
+ { 0x07a9, 0x03ab }, /* Greek_UPSILONdieresis Ϋ GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA */
+ { 0x07b1, 0x03ac }, /* Greek_alphaaccent ά GREEK SMALL LETTER ALPHA WITH TONOS */
+ { 0x07b2, 0x03ad }, /* Greek_epsilonaccent έ GREEK SMALL LETTER EPSILON WITH TONOS */
+ { 0x07b3, 0x03ae }, /* Greek_etaaccent ή GREEK SMALL LETTER ETA WITH TONOS */
+ { 0x07b4, 0x03af }, /* Greek_iotaaccent ί GREEK SMALL LETTER IOTA WITH TONOS */
+ { 0x07ba, 0x03b0 }, /* Greek_upsilonaccentdieresis ΰ GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS */
+ { 0x07e1, 0x03b1 }, /* Greek_alpha α GREEK SMALL LETTER ALPHA */
+ { 0x07e2, 0x03b2 }, /* Greek_beta β GREEK SMALL LETTER BETA */
+ { 0x07e3, 0x03b3 }, /* Greek_gamma γ GREEK SMALL LETTER GAMMA */
+ { 0x07e4, 0x03b4 }, /* Greek_delta δ GREEK SMALL LETTER DELTA */
+ { 0x07e5, 0x03b5 }, /* Greek_epsilon ε GREEK SMALL LETTER EPSILON */
+ { 0x07e6, 0x03b6 }, /* Greek_zeta ζ GREEK SMALL LETTER ZETA */
+ { 0x07e7, 0x03b7 }, /* Greek_eta η GREEK SMALL LETTER ETA */
+ { 0x07e8, 0x03b8 }, /* Greek_theta θ GREEK SMALL LETTER THETA */
+ { 0x07e9, 0x03b9 }, /* Greek_iota ι GREEK SMALL LETTER IOTA */
+ { 0x07ea, 0x03ba }, /* Greek_kappa κ GREEK SMALL LETTER KAPPA */
+ { 0x07eb, 0x03bb }, /* Greek_lambda λ GREEK SMALL LETTER LAMDA */
+ { 0x07ec, 0x03bc }, /* Greek_mu μ GREEK SMALL LETTER MU */
+ { 0x07ed, 0x03bd }, /* Greek_nu ν GREEK SMALL LETTER NU */
+ { 0x07ee, 0x03be }, /* Greek_xi ξ GREEK SMALL LETTER XI */
+ { 0x07ef, 0x03bf }, /* Greek_omicron ο GREEK SMALL LETTER OMICRON */
+ { 0x07f0, 0x03c0 }, /* Greek_pi π GREEK SMALL LETTER PI */
+ { 0x07f1, 0x03c1 }, /* Greek_rho ρ GREEK SMALL LETTER RHO */
+ { 0x07f3, 0x03c2 }, /* Greek_finalsmallsigma ς GREEK SMALL LETTER FINAL SIGMA */
+ { 0x07f2, 0x03c3 }, /* Greek_sigma σ GREEK SMALL LETTER SIGMA */
+ { 0x07f4, 0x03c4 }, /* Greek_tau τ GREEK SMALL LETTER TAU */
+ { 0x07f5, 0x03c5 }, /* Greek_upsilon υ GREEK SMALL LETTER UPSILON */
+ { 0x07f6, 0x03c6 }, /* Greek_phi φ GREEK SMALL LETTER PHI */
+ { 0x07f7, 0x03c7 }, /* Greek_chi χ GREEK SMALL LETTER CHI */
+ { 0x07f8, 0x03c8 }, /* Greek_psi ψ GREEK SMALL LETTER PSI */
+ { 0x07f9, 0x03c9 }, /* Greek_omega ω GREEK SMALL LETTER OMEGA */
+ { 0x07b5, 0x03ca }, /* Greek_iotadieresis ϊ GREEK SMALL LETTER IOTA WITH DIALYTIKA */
+ { 0x07b9, 0x03cb }, /* Greek_upsilondieresis ϋ GREEK SMALL LETTER UPSILON WITH DIALYTIKA */
+ { 0x07b7, 0x03cc }, /* Greek_omicronaccent ό GREEK SMALL LETTER OMICRON WITH TONOS */
+ { 0x07b8, 0x03cd }, /* Greek_upsilonaccent ύ GREEK SMALL LETTER UPSILON WITH TONOS */
+ { 0x07bb, 0x03ce }, /* Greek_omegaaccent ώ GREEK SMALL LETTER OMEGA WITH TONOS */
+ { 0x06b3, 0x0401 }, /* Cyrillic_IO Ё CYRILLIC CAPITAL LETTER IO */
+ { 0x06b1, 0x0402 }, /* Serbian_DJE Ђ CYRILLIC CAPITAL LETTER DJE */
+ { 0x06b2, 0x0403 }, /* Macedonia_GJE Ѓ CYRILLIC CAPITAL LETTER GJE */
+ { 0x06b4, 0x0404 }, /* Ukrainian_IE Є CYRILLIC CAPITAL LETTER UKRAINIAN IE */
+ { 0x06b5, 0x0405 }, /* Macedonia_DSE Ѕ CYRILLIC CAPITAL LETTER DZE */
+ { 0x06b6, 0x0406 }, /* Ukrainian_I І CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I */
+ { 0x06b7, 0x0407 }, /* Ukrainian_YI Ї CYRILLIC CAPITAL LETTER YI */
+ { 0x06b8, 0x0408 }, /* Cyrillic_JE Ј CYRILLIC CAPITAL LETTER JE */
+ { 0x06b9, 0x0409 }, /* Cyrillic_LJE Љ CYRILLIC CAPITAL LETTER LJE */
+ { 0x06ba, 0x040a }, /* Cyrillic_NJE Њ CYRILLIC CAPITAL LETTER NJE */
+ { 0x06bb, 0x040b }, /* Serbian_TSHE Ћ CYRILLIC CAPITAL LETTER TSHE */
+ { 0x06bc, 0x040c }, /* Macedonia_KJE Ќ CYRILLIC CAPITAL LETTER KJE */
+ { 0x06be, 0x040e }, /* Byelorussian_SHORTU Ў CYRILLIC CAPITAL LETTER SHORT U */
+ { 0x06bf, 0x040f }, /* Cyrillic_DZHE Џ CYRILLIC CAPITAL LETTER DZHE */
+ { 0x06e1, 0x0410 }, /* Cyrillic_A А CYRILLIC CAPITAL LETTER A */
+ { 0x06e2, 0x0411 }, /* Cyrillic_BE Б CYRILLIC CAPITAL LETTER BE */
+ { 0x06f7, 0x0412 }, /* Cyrillic_VE В CYRILLIC CAPITAL LETTER VE */
+ { 0x06e7, 0x0413 }, /* Cyrillic_GHE Г CYRILLIC CAPITAL LETTER GHE */
+ { 0x06e4, 0x0414 }, /* Cyrillic_DE Д CYRILLIC CAPITAL LETTER DE */
+ { 0x06e5, 0x0415 }, /* Cyrillic_IE Е CYRILLIC CAPITAL LETTER IE */
+ { 0x06f6, 0x0416 }, /* Cyrillic_ZHE Ж CYRILLIC CAPITAL LETTER ZHE */
+ { 0x06fa, 0x0417 }, /* Cyrillic_ZE З CYRILLIC CAPITAL LETTER ZE */
+ { 0x06e9, 0x0418 }, /* Cyrillic_I И CYRILLIC CAPITAL LETTER I */
+ { 0x06ea, 0x0419 }, /* Cyrillic_SHORTI Й CYRILLIC CAPITAL LETTER SHORT I */
+ { 0x06eb, 0x041a }, /* Cyrillic_KA К CYRILLIC CAPITAL LETTER KA */
+ { 0x06ec, 0x041b }, /* Cyrillic_EL Л CYRILLIC CAPITAL LETTER EL */
+ { 0x06ed, 0x041c }, /* Cyrillic_EM М CYRILLIC CAPITAL LETTER EM */
+ { 0x06ee, 0x041d }, /* Cyrillic_EN Н CYRILLIC CAPITAL LETTER EN */
+ { 0x06ef, 0x041e }, /* Cyrillic_O О CYRILLIC CAPITAL LETTER O */
+ { 0x06f0, 0x041f }, /* Cyrillic_PE П CYRILLIC CAPITAL LETTER PE */
+ { 0x06f2, 0x0420 }, /* Cyrillic_ER Р CYRILLIC CAPITAL LETTER ER */
+ { 0x06f3, 0x0421 }, /* Cyrillic_ES С CYRILLIC CAPITAL LETTER ES */
+ { 0x06f4, 0x0422 }, /* Cyrillic_TE Т CYRILLIC CAPITAL LETTER TE */
+ { 0x06f5, 0x0423 }, /* Cyrillic_U У CYRILLIC CAPITAL LETTER U */
+ { 0x06e6, 0x0424 }, /* Cyrillic_EF Ф CYRILLIC CAPITAL LETTER EF */
+ { 0x06e8, 0x0425 }, /* Cyrillic_HA Х CYRILLIC CAPITAL LETTER HA */
+ { 0x06e3, 0x0426 }, /* Cyrillic_TSE Ц CYRILLIC CAPITAL LETTER TSE */
+ { 0x06fe, 0x0427 }, /* Cyrillic_CHE Ч CYRILLIC CAPITAL LETTER CHE */
+ { 0x06fb, 0x0428 }, /* Cyrillic_SHA Ш CYRILLIC CAPITAL LETTER SHA */
+ { 0x06fd, 0x0429 }, /* Cyrillic_SHCHA Щ CYRILLIC CAPITAL LETTER SHCHA */
+ { 0x06ff, 0x042a }, /* Cyrillic_HARDSIGN Ъ CYRILLIC CAPITAL LETTER HARD SIGN */
+ { 0x06f9, 0x042b }, /* Cyrillic_YERU Ы CYRILLIC CAPITAL LETTER YERU */
+ { 0x06f8, 0x042c }, /* Cyrillic_SOFTSIGN Ь CYRILLIC CAPITAL LETTER SOFT SIGN */
+ { 0x06fc, 0x042d }, /* Cyrillic_E Э CYRILLIC CAPITAL LETTER E */
+ { 0x06e0, 0x042e }, /* Cyrillic_YU Ю CYRILLIC CAPITAL LETTER YU */
+ { 0x06f1, 0x042f }, /* Cyrillic_YA Я CYRILLIC CAPITAL LETTER YA */
+ { 0x06c1, 0x0430 }, /* Cyrillic_a а CYRILLIC SMALL LETTER A */
+ { 0x06c2, 0x0431 }, /* Cyrillic_be б CYRILLIC SMALL LETTER BE */
+ { 0x06d7, 0x0432 }, /* Cyrillic_ve в CYRILLIC SMALL LETTER VE */
+ { 0x06c7, 0x0433 }, /* Cyrillic_ghe г CYRILLIC SMALL LETTER GHE */
+ { 0x06c4, 0x0434 }, /* Cyrillic_de д CYRILLIC SMALL LETTER DE */
+ { 0x06c5, 0x0435 }, /* Cyrillic_ie е CYRILLIC SMALL LETTER IE */
+ { 0x06d6, 0x0436 }, /* Cyrillic_zhe ж CYRILLIC SMALL LETTER ZHE */
+ { 0x06da, 0x0437 }, /* Cyrillic_ze з CYRILLIC SMALL LETTER ZE */
+ { 0x06c9, 0x0438 }, /* Cyrillic_i и CYRILLIC SMALL LETTER I */
+ { 0x06ca, 0x0439 }, /* Cyrillic_shorti й CYRILLIC SMALL LETTER SHORT I */
+ { 0x06cb, 0x043a }, /* Cyrillic_ka к CYRILLIC SMALL LETTER KA */
+ { 0x06cc, 0x043b }, /* Cyrillic_el л CYRILLIC SMALL LETTER EL */
+ { 0x06cd, 0x043c }, /* Cyrillic_em м CYRILLIC SMALL LETTER EM */
+ { 0x06ce, 0x043d }, /* Cyrillic_en н CYRILLIC SMALL LETTER EN */
+ { 0x06cf, 0x043e }, /* Cyrillic_o о CYRILLIC SMALL LETTER O */
+ { 0x06d0, 0x043f }, /* Cyrillic_pe п CYRILLIC SMALL LETTER PE */
+ { 0x06d2, 0x0440 }, /* Cyrillic_er р CYRILLIC SMALL LETTER ER */
+ { 0x06d3, 0x0441 }, /* Cyrillic_es с CYRILLIC SMALL LETTER ES */
+ { 0x06d4, 0x0442 }, /* Cyrillic_te т CYRILLIC SMALL LETTER TE */
+ { 0x06d5, 0x0443 }, /* Cyrillic_u у CYRILLIC SMALL LETTER U */
+ { 0x06c6, 0x0444 }, /* Cyrillic_ef ф CYRILLIC SMALL LETTER EF */
+ { 0x06c8, 0x0445 }, /* Cyrillic_ha х CYRILLIC SMALL LETTER HA */
+ { 0x06c3, 0x0446 }, /* Cyrillic_tse ц CYRILLIC SMALL LETTER TSE */
+ { 0x06de, 0x0447 }, /* Cyrillic_che ч CYRILLIC SMALL LETTER CHE */
+ { 0x06db, 0x0448 }, /* Cyrillic_sha ш CYRILLIC SMALL LETTER SHA */
+ { 0x06dd, 0x0449 }, /* Cyrillic_shcha щ CYRILLIC SMALL LETTER SHCHA */
+ { 0x06df, 0x044a }, /* Cyrillic_hardsign ъ CYRILLIC SMALL LETTER HARD SIGN */
+ { 0x06d9, 0x044b }, /* Cyrillic_yeru ы CYRILLIC SMALL LETTER YERU */
+ { 0x06d8, 0x044c }, /* Cyrillic_softsign ь CYRILLIC SMALL LETTER SOFT SIGN */
+ { 0x06dc, 0x044d }, /* Cyrillic_e э CYRILLIC SMALL LETTER E */
+ { 0x06c0, 0x044e }, /* Cyrillic_yu ю CYRILLIC SMALL LETTER YU */
+ { 0x06d1, 0x044f }, /* Cyrillic_ya я CYRILLIC SMALL LETTER YA */
+ { 0x06a3, 0x0451 }, /* Cyrillic_io ё CYRILLIC SMALL LETTER IO */
+ { 0x06a1, 0x0452 }, /* Serbian_dje ђ CYRILLIC SMALL LETTER DJE */
+ { 0x06a2, 0x0453 }, /* Macedonia_gje ѓ CYRILLIC SMALL LETTER GJE */
+ { 0x06a4, 0x0454 }, /* Ukrainian_ie є CYRILLIC SMALL LETTER UKRAINIAN IE */
+ { 0x06a5, 0x0455 }, /* Macedonia_dse ѕ CYRILLIC SMALL LETTER DZE */
+ { 0x06a6, 0x0456 }, /* Ukrainian_i і CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I */
+ { 0x06a7, 0x0457 }, /* Ukrainian_yi ї CYRILLIC SMALL LETTER YI */
+ { 0x06a8, 0x0458 }, /* Cyrillic_je ј CYRILLIC SMALL LETTER JE */
+ { 0x06a9, 0x0459 }, /* Cyrillic_lje љ CYRILLIC SMALL LETTER LJE */
+ { 0x06aa, 0x045a }, /* Cyrillic_nje њ CYRILLIC SMALL LETTER NJE */
+ { 0x06ab, 0x045b }, /* Serbian_tshe ћ CYRILLIC SMALL LETTER TSHE */
+ { 0x06ac, 0x045c }, /* Macedonia_kje ќ CYRILLIC SMALL LETTER KJE */
+ { 0x06ae, 0x045e }, /* Byelorussian_shortu ў CYRILLIC SMALL LETTER SHORT U */
+ { 0x06af, 0x045f }, /* Cyrillic_dzhe џ CYRILLIC SMALL LETTER DZHE */
+ { 0x0ce0, 0x05d0 }, /* hebrew_aleph א HEBREW LETTER ALEF */
+ { 0x0ce1, 0x05d1 }, /* hebrew_bet ב HEBREW LETTER BET */
+ { 0x0ce2, 0x05d2 }, /* hebrew_gimel ג HEBREW LETTER GIMEL */
+ { 0x0ce3, 0x05d3 }, /* hebrew_dalet ד HEBREW LETTER DALET */
+ { 0x0ce4, 0x05d4 }, /* hebrew_he ה HEBREW LETTER HE */
+ { 0x0ce5, 0x05d5 }, /* hebrew_waw ו HEBREW LETTER VAV */
+ { 0x0ce6, 0x05d6 }, /* hebrew_zain ז HEBREW LETTER ZAYIN */
+ { 0x0ce7, 0x05d7 }, /* hebrew_chet ח HEBREW LETTER HET */
+ { 0x0ce8, 0x05d8 }, /* hebrew_tet ט HEBREW LETTER TET */
+ { 0x0ce9, 0x05d9 }, /* hebrew_yod י HEBREW LETTER YOD */
+ { 0x0cea, 0x05da }, /* hebrew_finalkaph ך HEBREW LETTER FINAL KAF */
+ { 0x0ceb, 0x05db }, /* hebrew_kaph כ HEBREW LETTER KAF */
+ { 0x0cec, 0x05dc }, /* hebrew_lamed ל HEBREW LETTER LAMED */
+ { 0x0ced, 0x05dd }, /* hebrew_finalmem ם HEBREW LETTER FINAL MEM */
+ { 0x0cee, 0x05de }, /* hebrew_mem מ HEBREW LETTER MEM */
+ { 0x0cef, 0x05df }, /* hebrew_finalnun ן HEBREW LETTER FINAL NUN */
+ { 0x0cf0, 0x05e0 }, /* hebrew_nun נ HEBREW LETTER NUN */
+ { 0x0cf1, 0x05e1 }, /* hebrew_samech ס HEBREW LETTER SAMEKH */
+ { 0x0cf2, 0x05e2 }, /* hebrew_ayin ע HEBREW LETTER AYIN */
+ { 0x0cf3, 0x05e3 }, /* hebrew_finalpe ף HEBREW LETTER FINAL PE */
+ { 0x0cf4, 0x05e4 }, /* hebrew_pe פ HEBREW LETTER PE */
+ { 0x0cf5, 0x05e5 }, /* hebrew_finalzade ץ HEBREW LETTER FINAL TSADI */
+ { 0x0cf6, 0x05e6 }, /* hebrew_zade צ HEBREW LETTER TSADI */
+ { 0x0cf7, 0x05e7 }, /* hebrew_qoph ק HEBREW LETTER QOF */
+ { 0x0cf8, 0x05e8 }, /* hebrew_resh ר HEBREW LETTER RESH */
+ { 0x0cf9, 0x05e9 }, /* hebrew_shin ש HEBREW LETTER SHIN */
+ { 0x0cfa, 0x05ea }, /* hebrew_taw ת HEBREW LETTER TAV */
+ { 0x05ac, 0x060c }, /* Arabic_comma ، ARABIC COMMA */
+ { 0x05bb, 0x061b }, /* Arabic_semicolon ؛ ARABIC SEMICOLON */
+ { 0x05bf, 0x061f }, /* Arabic_question_mark ؟ ARABIC QUESTION MARK */
+ { 0x05c1, 0x0621 }, /* Arabic_hamza ء ARABIC LETTER HAMZA */
+ { 0x05c2, 0x0622 }, /* Arabic_maddaonalef آ ARABIC LETTER ALEF WITH MADDA ABOVE */
+ { 0x05c3, 0x0623 }, /* Arabic_hamzaonalef أ ARABIC LETTER ALEF WITH HAMZA ABOVE */
+ { 0x05c4, 0x0624 }, /* Arabic_hamzaonwaw ؤ ARABIC LETTER WAW WITH HAMZA ABOVE */
+ { 0x05c5, 0x0625 }, /* Arabic_hamzaunderalef إ ARABIC LETTER ALEF WITH HAMZA BELOW */
+ { 0x05c6, 0x0626 }, /* Arabic_hamzaonyeh ئ ARABIC LETTER YEH WITH HAMZA ABOVE */
+ { 0x05c7, 0x0627 }, /* Arabic_alef ا ARABIC LETTER ALEF */
+ { 0x05c8, 0x0628 }, /* Arabic_beh ب ARABIC LETTER BEH */
+ { 0x05c9, 0x0629 }, /* Arabic_tehmarbuta ة ARABIC LETTER TEH MARBUTA */
+ { 0x05ca, 0x062a }, /* Arabic_teh ت ARABIC LETTER TEH */
+ { 0x05cb, 0x062b }, /* Arabic_theh ث ARABIC LETTER THEH */
+ { 0x05cc, 0x062c }, /* Arabic_jeem ج ARABIC LETTER JEEM */
+ { 0x05cd, 0x062d }, /* Arabic_hah ح ARABIC LETTER HAH */
+ { 0x05ce, 0x062e }, /* Arabic_khah خ ARABIC LETTER KHAH */
+ { 0x05cf, 0x062f }, /* Arabic_dal د ARABIC LETTER DAL */
+ { 0x05d0, 0x0630 }, /* Arabic_thal ذ ARABIC LETTER THAL */
+ { 0x05d1, 0x0631 }, /* Arabic_ra ر ARABIC LETTER REH */
+ { 0x05d2, 0x0632 }, /* Arabic_zain ز ARABIC LETTER ZAIN */
+ { 0x05d3, 0x0633 }, /* Arabic_seen س ARABIC LETTER SEEN */
+ { 0x05d4, 0x0634 }, /* Arabic_sheen ش ARABIC LETTER SHEEN */
+ { 0x05d5, 0x0635 }, /* Arabic_sad ص ARABIC LETTER SAD */
+ { 0x05d6, 0x0636 }, /* Arabic_dad ض ARABIC LETTER DAD */
+ { 0x05d7, 0x0637 }, /* Arabic_tah ط ARABIC LETTER TAH */
+ { 0x05d8, 0x0638 }, /* Arabic_zah ظ ARABIC LETTER ZAH */
+ { 0x05d9, 0x0639 }, /* Arabic_ain ع ARABIC LETTER AIN */
+ { 0x05da, 0x063a }, /* Arabic_ghain غ ARABIC LETTER GHAIN */
+ { 0x05e0, 0x0640 }, /* Arabic_tatweel ـ ARABIC TATWEEL */
+ { 0x05e1, 0x0641 }, /* Arabic_feh ف ARABIC LETTER FEH */
+ { 0x05e2, 0x0642 }, /* Arabic_qaf ق ARABIC LETTER QAF */
+ { 0x05e3, 0x0643 }, /* Arabic_kaf ك ARABIC LETTER KAF */
+ { 0x05e4, 0x0644 }, /* Arabic_lam ل ARABIC LETTER LAM */
+ { 0x05e5, 0x0645 }, /* Arabic_meem م ARABIC LETTER MEEM */
+ { 0x05e6, 0x0646 }, /* Arabic_noon ن ARABIC LETTER NOON */
+ { 0x05e7, 0x0647 }, /* Arabic_ha ه ARABIC LETTER HEH */
+ { 0x05e8, 0x0648 }, /* Arabic_waw و ARABIC LETTER WAW */
+ { 0x05e9, 0x0649 }, /* Arabic_alefmaksura ى ARABIC LETTER ALEF MAKSURA */
+ { 0x05ea, 0x064a }, /* Arabic_yeh ي ARABIC LETTER YEH */
+ { 0x05eb, 0x064b }, /* Arabic_fathatan ً ARABIC FATHATAN */
+ { 0x05ec, 0x064c }, /* Arabic_dammatan ٌ ARABIC DAMMATAN */
+ { 0x05ed, 0x064d }, /* Arabic_kasratan ٍ ARABIC KASRATAN */
+ { 0x05ee, 0x064e }, /* Arabic_fatha َ ARABIC FATHA */
+ { 0x05ef, 0x064f }, /* Arabic_damma ُ ARABIC DAMMA */
+ { 0x05f0, 0x0650 }, /* Arabic_kasra ِ ARABIC KASRA */
+ { 0x05f1, 0x0651 }, /* Arabic_shadda ّ ARABIC SHADDA */
+ { 0x05f2, 0x0652 }, /* Arabic_sukun ْ ARABIC SUKUN */
+ { 0x0da1, 0x0e01 }, /* Thai_kokai ก THAI CHARACTER KO KAI */
+ { 0x0da2, 0x0e02 }, /* Thai_khokhai ข THAI CHARACTER KHO KHAI */
+ { 0x0da3, 0x0e03 }, /* Thai_khokhuat ฃ THAI CHARACTER KHO KHUAT */
+ { 0x0da4, 0x0e04 }, /* Thai_khokhwai ค THAI CHARACTER KHO KHWAI */
+ { 0x0da5, 0x0e05 }, /* Thai_khokhon ฅ THAI CHARACTER KHO KHON */
+ { 0x0da6, 0x0e06 }, /* Thai_khorakhang ฆ THAI CHARACTER KHO RAKHANG */
+ { 0x0da7, 0x0e07 }, /* Thai_ngongu ง THAI CHARACTER NGO NGU */
+ { 0x0da8, 0x0e08 }, /* Thai_chochan จ THAI CHARACTER CHO CHAN */
+ { 0x0da9, 0x0e09 }, /* Thai_choching ฉ THAI CHARACTER CHO CHING */
+ { 0x0daa, 0x0e0a }, /* Thai_chochang ช THAI CHARACTER CHO CHANG */
+ { 0x0dab, 0x0e0b }, /* Thai_soso ซ THAI CHARACTER SO SO */
+ { 0x0dac, 0x0e0c }, /* Thai_chochoe ฌ THAI CHARACTER CHO CHOE */
+ { 0x0dad, 0x0e0d }, /* Thai_yoying ญ THAI CHARACTER YO YING */
+ { 0x0dae, 0x0e0e }, /* Thai_dochada ฎ THAI CHARACTER DO CHADA */
+ { 0x0daf, 0x0e0f }, /* Thai_topatak ฏ THAI CHARACTER TO PATAK */
+ { 0x0db0, 0x0e10 }, /* Thai_thothan ฐ THAI CHARACTER THO THAN */
+ { 0x0db1, 0x0e11 }, /* Thai_thonangmontho ฑ THAI CHARACTER THO NANGMONTHO */
+ { 0x0db2, 0x0e12 }, /* Thai_thophuthao ฒ THAI CHARACTER THO PHUTHAO */
+ { 0x0db3, 0x0e13 }, /* Thai_nonen ณ THAI CHARACTER NO NEN */
+ { 0x0db4, 0x0e14 }, /* Thai_dodek ด THAI CHARACTER DO DEK */
+ { 0x0db5, 0x0e15 }, /* Thai_totao ต THAI CHARACTER TO TAO */
+ { 0x0db6, 0x0e16 }, /* Thai_thothung ถ THAI CHARACTER THO THUNG */
+ { 0x0db7, 0x0e17 }, /* Thai_thothahan ท THAI CHARACTER THO THAHAN */
+ { 0x0db8, 0x0e18 }, /* Thai_thothong ธ THAI CHARACTER THO THONG */
+ { 0x0db9, 0x0e19 }, /* Thai_nonu น THAI CHARACTER NO NU */
+ { 0x0dba, 0x0e1a }, /* Thai_bobaimai บ THAI CHARACTER BO BAIMAI */
+ { 0x0dbb, 0x0e1b }, /* Thai_popla ป THAI CHARACTER PO PLA */
+ { 0x0dbc, 0x0e1c }, /* Thai_phophung ผ THAI CHARACTER PHO PHUNG */
+ { 0x0dbd, 0x0e1d }, /* Thai_fofa ฝ THAI CHARACTER FO FA */
+ { 0x0dbe, 0x0e1e }, /* Thai_phophan พ THAI CHARACTER PHO PHAN */
+ { 0x0dbf, 0x0e1f }, /* Thai_fofan ฟ THAI CHARACTER FO FAN */
+ { 0x0dc0, 0x0e20 }, /* Thai_phosamphao ภ THAI CHARACTER PHO SAMPHAO */
+ { 0x0dc1, 0x0e21 }, /* Thai_moma ม THAI CHARACTER MO MA */
+ { 0x0dc2, 0x0e22 }, /* Thai_yoyak ย THAI CHARACTER YO YAK */
+ { 0x0dc3, 0x0e23 }, /* Thai_rorua ร THAI CHARACTER RO RUA */
+ { 0x0dc4, 0x0e24 }, /* Thai_ru ฤ THAI CHARACTER RU */
+ { 0x0dc5, 0x0e25 }, /* Thai_loling ล THAI CHARACTER LO LING */
+ { 0x0dc6, 0x0e26 }, /* Thai_lu ฦ THAI CHARACTER LU */
+ { 0x0dc7, 0x0e27 }, /* Thai_wowaen ว THAI CHARACTER WO WAEN */
+ { 0x0dc8, 0x0e28 }, /* Thai_sosala ศ THAI CHARACTER SO SALA */
+ { 0x0dc9, 0x0e29 }, /* Thai_sorusi ษ THAI CHARACTER SO RUSI */
+ { 0x0dca, 0x0e2a }, /* Thai_sosua ส THAI CHARACTER SO SUA */
+ { 0x0dcb, 0x0e2b }, /* Thai_hohip ห THAI CHARACTER HO HIP */
+ { 0x0dcc, 0x0e2c }, /* Thai_lochula ฬ THAI CHARACTER LO CHULA */
+ { 0x0dcd, 0x0e2d }, /* Thai_oang อ THAI CHARACTER O ANG */
+ { 0x0dce, 0x0e2e }, /* Thai_honokhuk ฮ THAI CHARACTER HO NOKHUK */
+ { 0x0dcf, 0x0e2f }, /* Thai_paiyannoi ฯ THAI CHARACTER PAIYANNOI */
+ { 0x0dd0, 0x0e30 }, /* Thai_saraa ะ THAI CHARACTER SARA A */
+ { 0x0dd1, 0x0e31 }, /* Thai_maihanakat ั THAI CHARACTER MAI HAN-AKAT */
+ { 0x0dd2, 0x0e32 }, /* Thai_saraaa า THAI CHARACTER SARA AA */
+ { 0x0dd3, 0x0e33 }, /* Thai_saraam ำ THAI CHARACTER SARA AM */
+ { 0x0dd4, 0x0e34 }, /* Thai_sarai ิ THAI CHARACTER SARA I */
+ { 0x0dd5, 0x0e35 }, /* Thai_saraii ี THAI CHARACTER SARA II */
+ { 0x0dd6, 0x0e36 }, /* Thai_saraue ึ THAI CHARACTER SARA UE */
+ { 0x0dd7, 0x0e37 }, /* Thai_sarauee ื THAI CHARACTER SARA UEE */
+ { 0x0dd8, 0x0e38 }, /* Thai_sarau ุ THAI CHARACTER SARA U */
+ { 0x0dd9, 0x0e39 }, /* Thai_sarauu ู THAI CHARACTER SARA UU */
+ { 0x0dda, 0x0e3a }, /* Thai_phinthu ฺ THAI CHARACTER PHINTHU */
+ { 0x0ddf, 0x0e3f }, /* Thai_baht ฿ THAI CURRENCY SYMBOL BAHT */
+ { 0x0de0, 0x0e40 }, /* Thai_sarae เ THAI CHARACTER SARA E */
+ { 0x0de1, 0x0e41 }, /* Thai_saraae แ THAI CHARACTER SARA AE */
+ { 0x0de2, 0x0e42 }, /* Thai_sarao โ THAI CHARACTER SARA O */
+ { 0x0de3, 0x0e43 }, /* Thai_saraaimaimuan ใ THAI CHARACTER SARA AI MAIMUAN */
+ { 0x0de4, 0x0e44 }, /* Thai_saraaimaimalai ไ THAI CHARACTER SARA AI MAIMALAI */
+ { 0x0de5, 0x0e45 }, /* Thai_lakkhangyao ๅ THAI CHARACTER LAKKHANGYAO */
+ { 0x0de6, 0x0e46 }, /* Thai_maiyamok ๆ THAI CHARACTER MAIYAMOK */
+ { 0x0de7, 0x0e47 }, /* Thai_maitaikhu ็ THAI CHARACTER MAITAIKHU */
+ { 0x0de8, 0x0e48 }, /* Thai_maiek ่ THAI CHARACTER MAI EK */
+ { 0x0de9, 0x0e49 }, /* Thai_maitho ้ THAI CHARACTER MAI THO */
+ { 0x0dea, 0x0e4a }, /* Thai_maitri ๊ THAI CHARACTER MAI TRI */
+ { 0x0deb, 0x0e4b }, /* Thai_maichattawa ๋ THAI CHARACTER MAI CHATTAWA */
+ { 0x0dec, 0x0e4c }, /* Thai_thanthakhat ์ THAI CHARACTER THANTHAKHAT */
+ { 0x0ded, 0x0e4d }, /* Thai_nikhahit ํ THAI CHARACTER NIKHAHIT */
+ { 0x0df0, 0x0e50 }, /* Thai_leksun ๐ THAI DIGIT ZERO */
+ { 0x0df1, 0x0e51 }, /* Thai_leknung ๑ THAI DIGIT ONE */
+ { 0x0df2, 0x0e52 }, /* Thai_leksong ๒ THAI DIGIT TWO */
+ { 0x0df3, 0x0e53 }, /* Thai_leksam ๓ THAI DIGIT THREE */
+ { 0x0df4, 0x0e54 }, /* Thai_leksi ๔ THAI DIGIT FOUR */
+ { 0x0df5, 0x0e55 }, /* Thai_lekha ๕ THAI DIGIT FIVE */
+ { 0x0df6, 0x0e56 }, /* Thai_lekhok ๖ THAI DIGIT SIX */
+ { 0x0df7, 0x0e57 }, /* Thai_lekchet ๗ THAI DIGIT SEVEN */
+ { 0x0df8, 0x0e58 }, /* Thai_lekpaet ๘ THAI DIGIT EIGHT */
+ { 0x0df9, 0x0e59 }, /* Thai_lekkao ๙ THAI DIGIT NINE */
+ { 0x0ed4, 0x11a8 }, /* Hangul_J_Kiyeog ᆨ HANGUL JONGSEONG KIYEOK */
+ { 0x0ed5, 0x11a9 }, /* Hangul_J_SsangKiyeog ᆩ HANGUL JONGSEONG SSANGKIYEOK */
+ { 0x0ed6, 0x11aa }, /* Hangul_J_KiyeogSios ᆪ HANGUL JONGSEONG KIYEOK-SIOS */
+ { 0x0ed7, 0x11ab }, /* Hangul_J_Nieun ᆫ HANGUL JONGSEONG NIEUN */
+ { 0x0ed8, 0x11ac }, /* Hangul_J_NieunJieuj ᆬ HANGUL JONGSEONG NIEUN-CIEUC */
+ { 0x0ed9, 0x11ad }, /* Hangul_J_NieunHieuh ᆭ HANGUL JONGSEONG NIEUN-HIEUH */
+ { 0x0eda, 0x11ae }, /* Hangul_J_Dikeud ᆮ HANGUL JONGSEONG TIKEUT */
+ { 0x0edb, 0x11af }, /* Hangul_J_Rieul ᆯ HANGUL JONGSEONG RIEUL */
+ { 0x0edc, 0x11b0 }, /* Hangul_J_RieulKiyeog ᆰ HANGUL JONGSEONG RIEUL-KIYEOK */
+ { 0x0edd, 0x11b1 }, /* Hangul_J_RieulMieum ᆱ HANGUL JONGSEONG RIEUL-MIEUM */
+ { 0x0ede, 0x11b2 }, /* Hangul_J_RieulPieub ᆲ HANGUL JONGSEONG RIEUL-PIEUP */
+ { 0x0edf, 0x11b3 }, /* Hangul_J_RieulSios ᆳ HANGUL JONGSEONG RIEUL-SIOS */
+ { 0x0ee0, 0x11b4 }, /* Hangul_J_RieulTieut ᆴ HANGUL JONGSEONG RIEUL-THIEUTH */
+ { 0x0ee1, 0x11b5 }, /* Hangul_J_RieulPhieuf ᆵ HANGUL JONGSEONG RIEUL-PHIEUPH */
+ { 0x0ee2, 0x11b6 }, /* Hangul_J_RieulHieuh ᆶ HANGUL JONGSEONG RIEUL-HIEUH */
+ { 0x0ee3, 0x11b7 }, /* Hangul_J_Mieum ᆷ HANGUL JONGSEONG MIEUM */
+ { 0x0ee4, 0x11b8 }, /* Hangul_J_Pieub ᆸ HANGUL JONGSEONG PIEUP */
+ { 0x0ee5, 0x11b9 }, /* Hangul_J_PieubSios ᆹ HANGUL JONGSEONG PIEUP-SIOS */
+ { 0x0ee6, 0x11ba }, /* Hangul_J_Sios ᆺ HANGUL JONGSEONG SIOS */
+ { 0x0ee7, 0x11bb }, /* Hangul_J_SsangSios ᆻ HANGUL JONGSEONG SSANGSIOS */
+ { 0x0ee8, 0x11bc }, /* Hangul_J_Ieung ᆼ HANGUL JONGSEONG IEUNG */
+ { 0x0ee9, 0x11bd }, /* Hangul_J_Jieuj ᆽ HANGUL JONGSEONG CIEUC */
+ { 0x0eea, 0x11be }, /* Hangul_J_Cieuc ᆾ HANGUL JONGSEONG CHIEUCH */
+ { 0x0eeb, 0x11bf }, /* Hangul_J_Khieuq ᆿ HANGUL JONGSEONG KHIEUKH */
+ { 0x0eec, 0x11c0 }, /* Hangul_J_Tieut ᇀ HANGUL JONGSEONG THIEUTH */
+ { 0x0eed, 0x11c1 }, /* Hangul_J_Phieuf ᇁ HANGUL JONGSEONG PHIEUPH */
+ { 0x0eee, 0x11c2 }, /* Hangul_J_Hieuh ᇂ HANGUL JONGSEONG HIEUH */
+ { 0x0ef8, 0x11eb }, /* Hangul_J_PanSios ᇫ HANGUL JONGSEONG PANSIOS */
+ { 0x0efa, 0x11f9 }, /* Hangul_J_YeorinHieuh ᇹ HANGUL JONGSEONG YEORINHIEUH */
+ { 0x0aa2, 0x2002 }, /* enspace EN SPACE */
+ { 0x0aa1, 0x2003 }, /* emspace EM SPACE */
+ { 0x0aa3, 0x2004 }, /* em3space THREE-PER-EM SPACE */
+ { 0x0aa4, 0x2005 }, /* em4space FOUR-PER-EM SPACE */
+ { 0x0aa5, 0x2007 }, /* digitspace FIGURE SPACE */
+ { 0x0aa6, 0x2008 }, /* punctspace PUNCTUATION SPACE */
+ { 0x0aa7, 0x2009 }, /* thinspace THIN SPACE */
+ { 0x0aa8, 0x200a }, /* hairspace HAIR SPACE */
+ { 0x0abb, 0x2012 }, /* figdash ‒ FIGURE DASH */
+ { 0x0aaa, 0x2013 }, /* endash – EN DASH */
+ { 0x0aa9, 0x2014 }, /* emdash — EM DASH */
+ { 0x07af, 0x2015 }, /* Greek_horizbar ― HORIZONTAL BAR */
+ { 0x0cdf, 0x2017 }, /* hebrew_doublelowline ‗ DOUBLE LOW LINE */
+ { 0x0ad0, 0x2018 }, /* leftsinglequotemark ‘ LEFT SINGLE QUOTATION MARK */
+ { 0x0ad1, 0x2019 }, /* rightsinglequotemark ’ RIGHT SINGLE QUOTATION MARK */
+ { 0x0afd, 0x201a }, /* singlelowquotemark ‚ SINGLE LOW-9 QUOTATION MARK */
+ { 0x0ad2, 0x201c }, /* leftdoublequotemark “ LEFT DOUBLE QUOTATION MARK */
+ { 0x0ad3, 0x201d }, /* rightdoublequotemark ” RIGHT DOUBLE QUOTATION MARK */
+ { 0x0afe, 0x201e }, /* doublelowquotemark „ DOUBLE LOW-9 QUOTATION MARK */
+ { 0x0af1, 0x2020 }, /* dagger † DAGGER */
+ { 0x0af2, 0x2021 }, /* doubledagger ‡ DOUBLE DAGGER */
+ { 0x0ae6, 0x2022 }, /* enfilledcircbullet • BULLET */
+ { 0x0aae, 0x2026 }, /* ellipsis … HORIZONTAL ELLIPSIS */
+ { 0x0ad6, 0x2032 }, /* minutes ′ PRIME */
+ { 0x0ad7, 0x2033 }, /* seconds ″ DOUBLE PRIME */
+ { 0x0afc, 0x2038 }, /* caret ‸ CARET */
+ { 0x047e, 0x203e }, /* overline ‾ OVERLINE */
+ { 0x20a0, 0x20a0 }, /* EcuSign ₠ EURO-CURRENCY SIGN */
+ { 0x20a1, 0x20a1 }, /* ColonSign ₡ COLON SIGN */
+ { 0x20a2, 0x20a2 }, /* CruzeiroSign ₢ CRUZEIRO SIGN */
+ { 0x20a3, 0x20a3 }, /* FFrancSign ₣ FRENCH FRANC SIGN */
+ { 0x20a4, 0x20a4 }, /* LiraSign ₤ LIRA SIGN */
+ { 0x20a5, 0x20a5 }, /* MillSign ₥ MILL SIGN */
+ { 0x20a6, 0x20a6 }, /* NairaSign ₦ NAIRA SIGN */
+ { 0x20a7, 0x20a7 }, /* PesetaSign ₧ PESETA SIGN */
+ { 0x20a8, 0x20a8 }, /* RupeeSign ₨ RUPEE SIGN */
+ { 0x0eff, 0x20a9 }, /* Korean_Won ₩ WON SIGN */
+ { 0x20a9, 0x20a9 }, /* WonSign ₩ WON SIGN */
+ { 0x20aa, 0x20aa }, /* NewSheqelSign ₪ NEW SHEQEL SIGN */
+ { 0x20ab, 0x20ab }, /* DongSign ₫ DONG SIGN */
+ { 0x20ac, 0x20ac }, /* EuroSign € EURO SIGN */
+ { 0x0ab8, 0x2105 }, /* careof ℅ CARE OF */
+ { 0x06b0, 0x2116 }, /* numerosign № NUMERO SIGN */
+ { 0x0afb, 0x2117 }, /* phonographcopyright ℗ SOUND RECORDING COPYRIGHT */
+ { 0x0ad4, 0x211e }, /* prescription ℞ PRESCRIPTION TAKE */
+ { 0x0ac9, 0x2122 }, /* trademark ™ TRADE MARK SIGN */
+ { 0x0ab0, 0x2153 }, /* onethird ⅓ VULGAR FRACTION ONE THIRD */
+ { 0x0ab1, 0x2154 }, /* twothirds ⅔ VULGAR FRACTION TWO THIRDS */
+ { 0x0ab2, 0x2155 }, /* onefifth ⅕ VULGAR FRACTION ONE FIFTH */
+ { 0x0ab3, 0x2156 }, /* twofifths ⅖ VULGAR FRACTION TWO FIFTHS */
+ { 0x0ab4, 0x2157 }, /* threefifths ⅗ VULGAR FRACTION THREE FIFTHS */
+ { 0x0ab5, 0x2158 }, /* fourfifths ⅘ VULGAR FRACTION FOUR FIFTHS */
+ { 0x0ab6, 0x2159 }, /* onesixth ⅙ VULGAR FRACTION ONE SIXTH */
+ { 0x0ab7, 0x215a }, /* fivesixths ⅚ VULGAR FRACTION FIVE SIXTHS */
+ { 0x0ac3, 0x215b }, /* oneeighth ⅛ VULGAR FRACTION ONE EIGHTH */
+ { 0x0ac4, 0x215c }, /* threeeighths ⅜ VULGAR FRACTION THREE EIGHTHS */
+ { 0x0ac5, 0x215d }, /* fiveeighths ⅝ VULGAR FRACTION FIVE EIGHTHS */
+ { 0x0ac6, 0x215e }, /* seveneighths ⅞ VULGAR FRACTION SEVEN EIGHTHS */
+ { 0x08fb, 0x2190 }, /* leftarrow ← LEFTWARDS ARROW */
+ { 0x08fc, 0x2191 }, /* uparrow ↑ UPWARDS ARROW */
+ { 0x08fd, 0x2192 }, /* rightarrow → RIGHTWARDS ARROW */
+ { 0x08fe, 0x2193 }, /* downarrow ↓ DOWNWARDS ARROW */
+ { 0x08ce, 0x21d2 }, /* implies ⇒ RIGHTWARDS DOUBLE ARROW */
+ { 0x08cd, 0x21d4 }, /* ifonlyif ⇔ LEFT RIGHT DOUBLE ARROW */
+ { 0x08ef, 0x2202 }, /* partialderivative ∂ PARTIAL DIFFERENTIAL */
+ { 0x08c5, 0x2207 }, /* nabla ∇ NABLA */
+ { 0x0bca, 0x2218 }, /* jot ∘ RING OPERATOR */
+ { 0x08d6, 0x221a }, /* radical √ SQUARE ROOT */
+ { 0x08c1, 0x221d }, /* variation ∝ PROPORTIONAL TO */
+ { 0x08c2, 0x221e }, /* infinity ∞ INFINITY */
+ { 0x08de, 0x2227 }, /* logicaland ∧ LOGICAL AND */
+ { 0x0ba9, 0x2227 }, /* upcaret ∧ LOGICAL AND */
+ { 0x08df, 0x2228 }, /* logicalor ∨ LOGICAL OR */
+ { 0x0ba8, 0x2228 }, /* downcaret ∨ LOGICAL OR */
+ { 0x08dc, 0x2229 }, /* intersection ∩ INTERSECTION */
+ { 0x0bc3, 0x2229 }, /* upshoe ∩ INTERSECTION */
+ { 0x08dd, 0x222a }, /* union ∪ UNION */
+ { 0x0bd6, 0x222a }, /* downshoe ∪ UNION */
+ { 0x08bf, 0x222b }, /* integral ∫ INTEGRAL */
+ { 0x08c0, 0x2234 }, /* therefore ∴ THEREFORE */
+ { 0x08c8, 0x2245 }, /* approximate ≅ APPROXIMATELY EQUAL TO */
+ { 0x08bd, 0x2260 }, /* notequal ≠ NOT EQUAL TO */
+ { 0x08cf, 0x2261 }, /* identical ≡ IDENTICAL TO */
+ { 0x08bc, 0x2264 }, /* lessthanequal ≤ LESS-THAN OR EQUAL TO */
+ { 0x08be, 0x2265 }, /* greaterthanequal ≥ GREATER-THAN OR EQUAL TO */
+ { 0x08da, 0x2282 }, /* includedin ⊂ SUBSET OF */
+ { 0x0bda, 0x2282 }, /* leftshoe ⊂ SUBSET OF */
+ { 0x08db, 0x2283 }, /* includes ⊃ SUPERSET OF */
+ { 0x0bd8, 0x2283 }, /* rightshoe ⊃ SUPERSET OF */
+ { 0x0bfc, 0x22a2 }, /* righttack ⊢ RIGHT TACK */
+ { 0x0bdc, 0x22a3 }, /* lefttack ⊣ LEFT TACK */
+ { 0x0bc2, 0x22a4 }, /* downtack ⊤ DOWN TACK */
+ { 0x0bce, 0x22a5 }, /* uptack ⊥ UP TACK */
+ { 0x0bd3, 0x2308 }, /* upstile ⌈ LEFT CEILING */
+ { 0x0bc4, 0x230a }, /* downstile ⌊ LEFT FLOOR */
+ { 0x0afa, 0x2315 }, /* telephonerecorder ⌕ TELEPHONE RECORDER */
+ { 0x08a4, 0x2320 }, /* topintegral ⌠ TOP HALF INTEGRAL */
+ { 0x08a5, 0x2321 }, /* botintegral ⌡ BOTTOM HALF INTEGRAL */
+ { 0x0abc, 0x2329 }, /* leftanglebracket 〈 LEFT-POINTING ANGLE BRACKET */
+ { 0x0abe, 0x232a }, /* rightanglebracket 〉 RIGHT-POINTING ANGLE BRACKET */
+ { 0x0bcc, 0x2395 }, /* quad ⎕ APL FUNCTIONAL SYMBOL QUAD (Unicode 3.0) */
+ { 0x09e2, 0x2409 }, /* ht ␉ SYMBOL FOR HORIZONTAL TABULATION */
+ { 0x09e5, 0x240a }, /* lf ␊ SYMBOL FOR LINE FEED */
+ { 0x09e9, 0x240b }, /* vt ␋ SYMBOL FOR VERTICAL TABULATION */
+ { 0x09e3, 0x240c }, /* ff ␌ SYMBOL FOR FORM FEED */
+ { 0x09e4, 0x240d }, /* cr ␍ SYMBOL FOR CARRIAGE RETURN */
+ { 0x09df, 0x2422 }, /* blank ␢ BLANK SYMBOL */
+ { 0x09e8, 0x2424 }, /* nl  SYMBOL FOR NEWLINE */
+ { 0x09f1, 0x2500 }, /* horizlinescan5 ─ BOX DRAWINGS LIGHT HORIZONTAL */
+ { 0x08a6, 0x2502 }, /* vertconnector │ BOX DRAWINGS LIGHT VERTICAL */
+ { 0x09f8, 0x2502 }, /* vertbar │ BOX DRAWINGS LIGHT VERTICAL */
+ { 0x09ec, 0x250c }, /* upleftcorner ┌ BOX DRAWINGS LIGHT DOWN AND RIGHT */
+ { 0x09eb, 0x2510 }, /* uprightcorner ┐ BOX DRAWINGS LIGHT DOWN AND LEFT */
+ { 0x09ed, 0x2514 }, /* lowleftcorner └ BOX DRAWINGS LIGHT UP AND RIGHT */
+ { 0x09ea, 0x2518 }, /* lowrightcorner ┘ BOX DRAWINGS LIGHT UP AND LEFT */
+ { 0x09f4, 0x251c }, /* leftt ├ BOX DRAWINGS LIGHT VERTICAL AND RIGHT */
+ { 0x09f5, 0x2524 }, /* rightt ┤ BOX DRAWINGS LIGHT VERTICAL AND LEFT */
+ { 0x09f7, 0x252c }, /* topt ┬ BOX DRAWINGS LIGHT DOWN AND HORIZONTAL */
+ { 0x09f6, 0x2534 }, /* bott ┴ BOX DRAWINGS LIGHT UP AND HORIZONTAL */
+ { 0x09ee, 0x253c }, /* crossinglines ┼ BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL */
+ { 0x09e1, 0x2592 }, /* checkerboard ▒ MEDIUM SHADE */
+ { 0x0adf, 0x25a0 }, /* emfilledrect ■ BLACK SQUARE */
+ { 0x0acf, 0x25a1 }, /* emopenrectangle □ WHITE SQUARE */
+ { 0x0ae7, 0x25aa }, /* enfilledsqbullet ▪ BLACK SMALL SQUARE */
+ { 0x0ae1, 0x25ab }, /* enopensquarebullet ▫ WHITE SMALL SQUARE */
+ { 0x0adb, 0x25ac }, /* filledrectbullet ▬ BLACK RECTANGLE */
+ { 0x0ae2, 0x25ad }, /* openrectbullet ▭ WHITE RECTANGLE */
+ { 0x0ae8, 0x25b2 }, /* filledtribulletup ▲ BLACK UP-POINTING TRIANGLE */
+ { 0x0ae3, 0x25b3 }, /* opentribulletup △ WHITE UP-POINTING TRIANGLE */
+ { 0x0add, 0x25b6 }, /* filledrighttribullet ▶ BLACK RIGHT-POINTING TRIANGLE */
+ { 0x0acd, 0x25b7 }, /* rightopentriangle ▷ WHITE RIGHT-POINTING TRIANGLE */
+ { 0x0ae9, 0x25bc }, /* filledtribulletdown ▼ BLACK DOWN-POINTING TRIANGLE */
+ { 0x0ae4, 0x25bd }, /* opentribulletdown ▽ WHITE DOWN-POINTING TRIANGLE */
+ { 0x0adc, 0x25c0 }, /* filledlefttribullet ◀ BLACK LEFT-POINTING TRIANGLE */
+ { 0x0acc, 0x25c1 }, /* leftopentriangle ◁ WHITE LEFT-POINTING TRIANGLE */
+ { 0x09e0, 0x25c6 }, /* soliddiamond ◆ BLACK DIAMOND */
+ { 0x0ace, 0x25cb }, /* emopencircle ○ WHITE CIRCLE */
+ { 0x0bcf, 0x25cb }, /* circle ○ WHITE CIRCLE */
+ { 0x0ade, 0x25cf }, /* emfilledcircle ● BLACK CIRCLE */
+ { 0x0ae0, 0x25e6 }, /* enopencircbullet ◦ WHITE BULLET */
+ { 0x0ae5, 0x2606 }, /* openstar ☆ WHITE STAR */
+ { 0x0af9, 0x260e }, /* telephone ☎ BLACK TELEPHONE */
+ { 0x0aca, 0x2613 }, /* signaturemark ☓ SALTIRE */
+ { 0x0aea, 0x261c }, /* leftpointer ☜ WHITE LEFT POINTING INDEX */
+ { 0x0aeb, 0x261e }, /* rightpointer ☞ WHITE RIGHT POINTING INDEX */
+ { 0x0af8, 0x2640 }, /* femalesymbol ♀ FEMALE SIGN */
+ { 0x0af7, 0x2642 }, /* malesymbol ♂ MALE SIGN */
+ { 0x0aec, 0x2663 }, /* club ♣ BLACK CLUB SUIT */
+ { 0x0aee, 0x2665 }, /* heart ♥ BLACK HEART SUIT */
+ { 0x0aed, 0x2666 }, /* diamond ♦ BLACK DIAMOND SUIT */
+ { 0x0af6, 0x266d }, /* musicalflat ♭ MUSIC FLAT SIGN */
+ { 0x0af5, 0x266f }, /* musicalsharp ♯ MUSIC SHARP SIGN */
+ { 0x0af3, 0x2713 }, /* checkmark ✓ CHECK MARK */
+ { 0x0af4, 0x2717 }, /* ballotcross ✗ BALLOT X */
+ { 0x0ad9, 0x271d }, /* latincross ✝ LATIN CROSS */
+ { 0x0af0, 0x2720 }, /* maltesecross ✠ MALTESE CROSS */
+ { 0x04a4, 0x3001 }, /* kana_comma 、 IDEOGRAPHIC COMMA */
+ { 0x04a1, 0x3002 }, /* kana_fullstop 。 IDEOGRAPHIC FULL STOP */
+ { 0x04a2, 0x300c }, /* kana_openingbracket 「 LEFT CORNER BRACKET */
+ { 0x04a3, 0x300d }, /* kana_closingbracket 」 RIGHT CORNER BRACKET */
+ { 0x04de, 0x309b }, /* voicedsound ゛ KATAKANA-HIRAGANA VOICED SOUND MARK */
+ { 0x04df, 0x309c }, /* semivoicedsound ゜ KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK */
+ { 0x04a7, 0x30a1 }, /* kana_a ァ KATAKANA LETTER SMALL A */
+ { 0x04b1, 0x30a2 }, /* kana_A ア KATAKANA LETTER A */
+ { 0x04a8, 0x30a3 }, /* kana_i ィ KATAKANA LETTER SMALL I */
+ { 0x04b2, 0x30a4 }, /* kana_I イ KATAKANA LETTER I */
+ { 0x04a9, 0x30a5 }, /* kana_u ゥ KATAKANA LETTER SMALL U */
+ { 0x04b3, 0x30a6 }, /* kana_U ウ KATAKANA LETTER U */
+ { 0x04aa, 0x30a7 }, /* kana_e ェ KATAKANA LETTER SMALL E */
+ { 0x04b4, 0x30a8 }, /* kana_E エ KATAKANA LETTER E */
+ { 0x04ab, 0x30a9 }, /* kana_o ォ KATAKANA LETTER SMALL O */
+ { 0x04b5, 0x30aa }, /* kana_O オ KATAKANA LETTER O */
+ { 0x04b6, 0x30ab }, /* kana_KA カ KATAKANA LETTER KA */
+ { 0x04b7, 0x30ad }, /* kana_KI キ KATAKANA LETTER KI */
+ { 0x04b8, 0x30af }, /* kana_KU ク KATAKANA LETTER KU */
+ { 0x04b9, 0x30b1 }, /* kana_KE ケ KATAKANA LETTER KE */
+ { 0x04ba, 0x30b3 }, /* kana_KO コ KATAKANA LETTER KO */
+ { 0x04bb, 0x30b5 }, /* kana_SA サ KATAKANA LETTER SA */
+ { 0x04bc, 0x30b7 }, /* kana_SHI シ KATAKANA LETTER SI */
+ { 0x04bd, 0x30b9 }, /* kana_SU ス KATAKANA LETTER SU */
+ { 0x04be, 0x30bb }, /* kana_SE セ KATAKANA LETTER SE */
+ { 0x04bf, 0x30bd }, /* kana_SO ソ KATAKANA LETTER SO */
+ { 0x04c0, 0x30bf }, /* kana_TA タ KATAKANA LETTER TA */
+ { 0x04c1, 0x30c1 }, /* kana_CHI チ KATAKANA LETTER TI */
+ { 0x04af, 0x30c3 }, /* kana_tsu ッ KATAKANA LETTER SMALL TU */
+ { 0x04c2, 0x30c4 }, /* kana_TSU ツ KATAKANA LETTER TU */
+ { 0x04c3, 0x30c6 }, /* kana_TE テ KATAKANA LETTER TE */
+ { 0x04c4, 0x30c8 }, /* kana_TO ト KATAKANA LETTER TO */
+ { 0x04c5, 0x30ca }, /* kana_NA ナ KATAKANA LETTER NA */
+ { 0x04c6, 0x30cb }, /* kana_NI ニ KATAKANA LETTER NI */
+ { 0x04c7, 0x30cc }, /* kana_NU ヌ KATAKANA LETTER NU */
+ { 0x04c8, 0x30cd }, /* kana_NE ネ KATAKANA LETTER NE */
+ { 0x04c9, 0x30ce }, /* kana_NO ノ KATAKANA LETTER NO */
+ { 0x04ca, 0x30cf }, /* kana_HA ハ KATAKANA LETTER HA */
+ { 0x04cb, 0x30d2 }, /* kana_HI ヒ KATAKANA LETTER HI */
+ { 0x04cc, 0x30d5 }, /* kana_FU フ KATAKANA LETTER HU */
+ { 0x04cd, 0x30d8 }, /* kana_HE ヘ KATAKANA LETTER HE */
+ { 0x04ce, 0x30db }, /* kana_HO ホ KATAKANA LETTER HO */
+ { 0x04cf, 0x30de }, /* kana_MA マ KATAKANA LETTER MA */
+ { 0x04d0, 0x30df }, /* kana_MI ミ KATAKANA LETTER MI */
+ { 0x04d1, 0x30e0 }, /* kana_MU ム KATAKANA LETTER MU */
+ { 0x04d2, 0x30e1 }, /* kana_ME メ KATAKANA LETTER ME */
+ { 0x04d3, 0x30e2 }, /* kana_MO モ KATAKANA LETTER MO */
+ { 0x04ac, 0x30e3 }, /* kana_ya ャ KATAKANA LETTER SMALL YA */
+ { 0x04d4, 0x30e4 }, /* kana_YA ヤ KATAKANA LETTER YA */
+ { 0x04ad, 0x30e5 }, /* kana_yu ュ KATAKANA LETTER SMALL YU */
+ { 0x04d5, 0x30e6 }, /* kana_YU ユ KATAKANA LETTER YU */
+ { 0x04ae, 0x30e7 }, /* kana_yo ョ KATAKANA LETTER SMALL YO */
+ { 0x04d6, 0x30e8 }, /* kana_YO ヨ KATAKANA LETTER YO */
+ { 0x04d7, 0x30e9 }, /* kana_RA ラ KATAKANA LETTER RA */
+ { 0x04d8, 0x30ea }, /* kana_RI リ KATAKANA LETTER RI */
+ { 0x04d9, 0x30eb }, /* kana_RU ル KATAKANA LETTER RU */
+ { 0x04da, 0x30ec }, /* kana_RE レ KATAKANA LETTER RE */
+ { 0x04db, 0x30ed }, /* kana_RO ロ KATAKANA LETTER RO */
+ { 0x04dc, 0x30ef }, /* kana_WA ワ KATAKANA LETTER WA */
+ { 0x04a6, 0x30f2 }, /* kana_WO ヲ KATAKANA LETTER WO */
+ { 0x04dd, 0x30f3 }, /* kana_N ン KATAKANA LETTER N */
+ { 0x04a5, 0x30fb }, /* kana_conjunctive ・ KATAKANA MIDDLE DOT */
+ { 0x04b0, 0x30fc }, /* prolongedsound ー KATAKANA-HIRAGANA PROLONGED SOUND MARK */
+ { 0x0ea1, 0x3131 }, /* Hangul_Kiyeog ㄱ HANGUL LETTER KIYEOK */
+ { 0x0ea2, 0x3132 }, /* Hangul_SsangKiyeog ㄲ HANGUL LETTER SSANGKIYEOK */
+ { 0x0ea3, 0x3133 }, /* Hangul_KiyeogSios ㄳ HANGUL LETTER KIYEOK-SIOS */
+ { 0x0ea4, 0x3134 }, /* Hangul_Nieun ㄴ HANGUL LETTER NIEUN */
+ { 0x0ea5, 0x3135 }, /* Hangul_NieunJieuj ㄵ HANGUL LETTER NIEUN-CIEUC */
+ { 0x0ea6, 0x3136 }, /* Hangul_NieunHieuh ㄶ HANGUL LETTER NIEUN-HIEUH */
+ { 0x0ea7, 0x3137 }, /* Hangul_Dikeud ㄷ HANGUL LETTER TIKEUT */
+ { 0x0ea8, 0x3138 }, /* Hangul_SsangDikeud ㄸ HANGUL LETTER SSANGTIKEUT */
+ { 0x0ea9, 0x3139 }, /* Hangul_Rieul ㄹ HANGUL LETTER RIEUL */
+ { 0x0eaa, 0x313a }, /* Hangul_RieulKiyeog ㄺ HANGUL LETTER RIEUL-KIYEOK */
+ { 0x0eab, 0x313b }, /* Hangul_RieulMieum ㄻ HANGUL LETTER RIEUL-MIEUM */
+ { 0x0eac, 0x313c }, /* Hangul_RieulPieub ㄼ HANGUL LETTER RIEUL-PIEUP */
+ { 0x0ead, 0x313d }, /* Hangul_RieulSios ㄽ HANGUL LETTER RIEUL-SIOS */
+ { 0x0eae, 0x313e }, /* Hangul_RieulTieut ㄾ HANGUL LETTER RIEUL-THIEUTH */
+ { 0x0eaf, 0x313f }, /* Hangul_RieulPhieuf ㄿ HANGUL LETTER RIEUL-PHIEUPH */
+ { 0x0eb0, 0x3140 }, /* Hangul_RieulHieuh ㅀ HANGUL LETTER RIEUL-HIEUH */
+ { 0x0eb1, 0x3141 }, /* Hangul_Mieum ㅁ HANGUL LETTER MIEUM */
+ { 0x0eb2, 0x3142 }, /* Hangul_Pieub ㅂ HANGUL LETTER PIEUP */
+ { 0x0eb3, 0x3143 }, /* Hangul_SsangPieub ㅃ HANGUL LETTER SSANGPIEUP */
+ { 0x0eb4, 0x3144 }, /* Hangul_PieubSios ㅄ HANGUL LETTER PIEUP-SIOS */
+ { 0x0eb5, 0x3145 }, /* Hangul_Sios ㅅ HANGUL LETTER SIOS */
+ { 0x0eb6, 0x3146 }, /* Hangul_SsangSios ㅆ HANGUL LETTER SSANGSIOS */
+ { 0x0eb7, 0x3147 }, /* Hangul_Ieung ㅇ HANGUL LETTER IEUNG */
+ { 0x0eb8, 0x3148 }, /* Hangul_Jieuj ㅈ HANGUL LETTER CIEUC */
+ { 0x0eb9, 0x3149 }, /* Hangul_SsangJieuj ㅉ HANGUL LETTER SSANGCIEUC */
+ { 0x0eba, 0x314a }, /* Hangul_Cieuc ㅊ HANGUL LETTER CHIEUCH */
+ { 0x0ebb, 0x314b }, /* Hangul_Khieuq ㅋ HANGUL LETTER KHIEUKH */
+ { 0x0ebc, 0x314c }, /* Hangul_Tieut ㅌ HANGUL LETTER THIEUTH */
+ { 0x0ebd, 0x314d }, /* Hangul_Phieuf ㅍ HANGUL LETTER PHIEUPH */
+ { 0x0ebe, 0x314e }, /* Hangul_Hieuh ㅎ HANGUL LETTER HIEUH */
+ { 0x0ebf, 0x314f }, /* Hangul_A ㅏ HANGUL LETTER A */
+ { 0x0ec0, 0x3150 }, /* Hangul_AE ㅐ HANGUL LETTER AE */
+ { 0x0ec1, 0x3151 }, /* Hangul_YA ㅑ HANGUL LETTER YA */
+ { 0x0ec2, 0x3152 }, /* Hangul_YAE ㅒ HANGUL LETTER YAE */
+ { 0x0ec3, 0x3153 }, /* Hangul_EO ㅓ HANGUL LETTER EO */
+ { 0x0ec4, 0x3154 }, /* Hangul_E ㅔ HANGUL LETTER E */
+ { 0x0ec5, 0x3155 }, /* Hangul_YEO ㅕ HANGUL LETTER YEO */
+ { 0x0ec6, 0x3156 }, /* Hangul_YE ㅖ HANGUL LETTER YE */
+ { 0x0ec7, 0x3157 }, /* Hangul_O ㅗ HANGUL LETTER O */
+ { 0x0ec8, 0x3158 }, /* Hangul_WA ㅘ HANGUL LETTER WA */
+ { 0x0ec9, 0x3159 }, /* Hangul_WAE ㅙ HANGUL LETTER WAE */
+ { 0x0eca, 0x315a }, /* Hangul_OE ㅚ HANGUL LETTER OE */
+ { 0x0ecb, 0x315b }, /* Hangul_YO ㅛ HANGUL LETTER YO */
+ { 0x0ecc, 0x315c }, /* Hangul_U ㅜ HANGUL LETTER U */
+ { 0x0ecd, 0x315d }, /* Hangul_WEO ㅝ HANGUL LETTER WEO */
+ { 0x0ece, 0x315e }, /* Hangul_WE ㅞ HANGUL LETTER WE */
+ { 0x0ecf, 0x315f }, /* Hangul_WI ㅟ HANGUL LETTER WI */
+ { 0x0ed0, 0x3160 }, /* Hangul_YU ㅠ HANGUL LETTER YU */
+ { 0x0ed1, 0x3161 }, /* Hangul_EU ㅡ HANGUL LETTER EU */
+ { 0x0ed2, 0x3162 }, /* Hangul_YI ㅢ HANGUL LETTER YI */
+ { 0x0ed3, 0x3163 }, /* Hangul_I ㅣ HANGUL LETTER I */
+ { 0x0eef, 0x316d }, /* Hangul_RieulYeorinHieuh ㅭ HANGUL LETTER RIEUL-YEORINHIEUH */
+ { 0x0ef0, 0x3171 }, /* Hangul_SunkyeongeumMieum ㅱ HANGUL LETTER KAPYEOUNMIEUM */
+ { 0x0ef1, 0x3178 }, /* Hangul_SunkyeongeumPieub ㅸ HANGUL LETTER KAPYEOUNPIEUP */
+ { 0x0ef2, 0x317f }, /* Hangul_PanSios ㅿ HANGUL LETTER PANSIOS */
+ { 0x0ef4, 0x3184 }, /* Hangul_SunkyeongeumPhieuf ㆄ HANGUL LETTER KAPYEOUNPHIEUPH */
+ { 0x0ef5, 0x3186 }, /* Hangul_YeorinHieuh ㆆ HANGUL LETTER YEORINHIEUH */
+ { 0x0ef6, 0x318d }, /* Hangul_AraeA ㆍ HANGUL LETTER ARAEA */
+ { 0x0ef7, 0x318e }, /* Hangul_AraeAE ㆎ HANGUL LETTER ARAEAE */
+};
+
+static const int clutter_unicode_to_keysym_tab_size =
+ G_N_ELEMENTS (clutter_unicode_to_keysym_tab);
+
+/**
+ * clutter_unicode_to_keysym:
+ * @wc: a ISO10646 encoded character
+ *
+ * Convert from a ISO10646 character to a key symbol.
+ *
+ * Return value: the corresponding Clutter key symbol, if one exists.
+ * or, if there is no corresponding symbol, wc | 0x01000000
+ *
+ * Since: 1.10
+ */
+guint
+clutter_unicode_to_keyval (guint32 wc)
+{
+ int min = 0;
+ int max = clutter_unicode_to_keysym_tab_size - 1;
+ int mid;
+
+ /* First check for Latin-1 characters (1:1 mapping) */
+ if ((wc >= 0x0020 && wc <= 0x007e) ||
+ (wc >= 0x00a0 && wc <= 0x00ff))
+ return wc;
+
+ /* Binary search in table */
+ while (max >= min)
+ {
+ mid = (min + max) / 2;
+
+ if (clutter_unicode_to_keysym_tab[mid].ucs < wc)
+ min = mid + 1;
+ else if (clutter_unicode_to_keysym_tab[mid].ucs > wc)
+ max = mid - 1;
+ else
+ {
+ /* found it */
+ return clutter_unicode_to_keysym_tab[mid].keysym;
+ }
+ }
+
+ /* No matching keysym value found, return Unicode value plus 0x01000000
+ * (a convention introduced in the UTF-8 work on xterm).
+ */
+ return wc | 0x01000000;
+}
diff --git a/clutter/clutter-main.c b/clutter/clutter-main.c
index 461c87db9..834731e22 100644
--- a/clutter/clutter-main.c
+++ b/clutter/clutter-main.c
@@ -34,7 +34,7 @@
* Clutter is thread-aware: all operations
* performed by Clutter are assumed to be under the big Clutter lock,
* which is created when the threading is initialized through
- * clutter_threads_init().
+ * clutter_init().
*
* Thread Initialization
* The code below shows how to correctly initialize Clutter
@@ -44,12 +44,6 @@
* int
* main (int argc, char *argv[])
* {
- * /* initialize GLib's threading support */
- * g_thread_init (NULL);
- *
- * /* initialize Clutter's threading support */
- * clutter_threads_init ();
- *
* /* initialize Clutter */
* clutter_init (&argc, &argv);
*
@@ -119,7 +113,7 @@ static ClutterMainContext *ClutterCntx = NULL;
G_LOCK_DEFINE_STATIC (ClutterCntx);
/* main lock and locking/unlocking functions */
-static GMutex *clutter_threads_mutex = NULL;
+static GMutex clutter_threads_mutex;
static GCallback clutter_threads_lock = NULL;
static GCallback clutter_threads_unlock = NULL;
@@ -195,6 +189,30 @@ static const GDebugKey clutter_profile_keys[] = {
};
#endif /* CLUTTER_ENABLE_DEBUG */
+static void
+clutter_threads_impl_lock (void)
+{
+ g_mutex_lock (&clutter_threads_mutex);
+}
+
+static void
+clutter_threads_impl_unlock (void)
+{
+ g_mutex_unlock (&clutter_threads_mutex);
+}
+
+static inline void
+clutter_threads_init_default (void)
+{
+ g_mutex_init (&clutter_threads_mutex);
+
+ if (clutter_threads_lock == NULL)
+ clutter_threads_lock = clutter_threads_impl_lock;
+
+ if (clutter_threads_unlock == NULL)
+ clutter_threads_unlock = clutter_threads_impl_unlock;
+}
+
/**
* clutter_get_show_fps:
*
@@ -691,20 +709,6 @@ clutter_main (void)
CLUTTER_TIMER_STOP (uprof_get_mainloop_context (), mainloop_timer);
}
-static void
-clutter_threads_impl_lock (void)
-{
- if (G_LIKELY (clutter_threads_mutex != NULL))
- g_mutex_lock (clutter_threads_mutex);
-}
-
-static void
-clutter_threads_impl_unlock (void)
-{
- if (G_LIKELY (clutter_threads_mutex != NULL))
- g_mutex_unlock (clutter_threads_mutex);
-}
-
/**
* clutter_threads_init:
*
@@ -719,23 +723,13 @@ clutter_threads_impl_unlock (void)
* It is safe to call this function multiple times.
*
* Since: 0.4
+ *
+ * Deprecated: 1.10: This function does not do anything. Threading support
+ * is initialized when Clutter is initialized.
*/
void
clutter_threads_init (void)
{
- if (!g_thread_supported ())
- g_error ("g_thread_init() must be called before clutter_threads_init()");
-
- if (clutter_threads_mutex != NULL)
- return;
-
- clutter_threads_mutex = g_mutex_new ();
-
- if (!clutter_threads_lock)
- clutter_threads_lock = clutter_threads_impl_lock;
-
- if (!clutter_threads_unlock)
- clutter_threads_unlock = clutter_threads_impl_unlock;
}
/**
@@ -2366,6 +2360,9 @@ clutter_base_init (void)
/* initialise GLib type system */
g_type_init ();
+
+ /* initialise the Big Clutter Lock™ if necessary */
+ clutter_threads_init_default ();
}
}
diff --git a/clutter/clutter-main.h b/clutter/clutter-main.h
index f2d821eb7..a99a69400 100644
--- a/clutter/clutter-main.h
+++ b/clutter/clutter-main.h
@@ -107,7 +107,10 @@ gulong clutter_get_timestamp (void);
gboolean clutter_get_accessibility_enabled (void);
/* Threading functions */
+#ifndef CLUTTER_DISABLE_DEPRECATED
void clutter_threads_init (void);
+#endif
+
void clutter_threads_enter (void);
void clutter_threads_leave (void);
void clutter_threads_set_lock_functions (GCallback enter_fn,
diff --git a/clutter/clutter-state.c b/clutter/clutter-state.c
index adb80a454..17885c903 100644
--- a/clutter/clutter-state.c
+++ b/clutter/clutter-state.c
@@ -895,7 +895,7 @@ get_property_from_object (GObject *gobject,
/**
* clutter_state_set:
* @state: a #ClutterState instance.
- * @source_state_name: the name of the source state keys are being added for
+ * @source_state_name: (allow-none): the name of the source state keys are being added for
* @target_state_name: the name of the target state keys are being added for
* @first_object: a #GObject
* @first_property_name: a property of @first_object to specify a key for
@@ -921,7 +921,7 @@ get_property_from_object (GObject *gobject,
* NULL);
* ]|
*
- * will create a transition from any state (a @source_state_name of NULL is
+ * will create a transition from any state (a @source_state_name or NULL is
* treated as a wildcard) and a state named "hover"; the
* button object will have the #ClutterActor:opacity
* property animated to a value of 255 using %CLUTTER_LINEAR as the animation
diff --git a/clutter/clutter-texture.c b/clutter/clutter-texture.c
index 2c3c4e769..3e7516dad 100644
--- a/clutter/clutter-texture.c
+++ b/clutter/clutter-texture.c
@@ -167,7 +167,7 @@ static int texture_signals[LAST_SIGNAL] = { 0 };
static GThreadPool *async_thread_pool = NULL;
static guint repaint_upload_func = 0;
static GList *upload_list = NULL;
-static GMutex upload_list_mutex = G_MUTEX_INIT;
+static GMutex upload_list_mutex;
static CoglMaterial *texture_template_material = NULL;
@@ -1941,7 +1941,7 @@ clutter_texture_async_load (ClutterTexture *self,
priv->async_data = data;
- if (g_thread_supported ())
+ if (1)
{
if (G_UNLIKELY (async_thread_pool == NULL))
{
diff --git a/po/es.po b/po/es.po
index 8086a8414..e870c84fa 100644
--- a/po/es.po
+++ b/po/es.po
@@ -1,809 +1,821 @@
# Spanish translation for clutter.
# Copyright (C) 2011 clutter's COPYRIGHT HOLDER
# This file is distributed under the same license as the clutter package.
-# Daniel Mustieles , 2011.
# Jorge González , 2011.
+# Daniel Mustieles , 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: clutter master\n"
-"Report-Msgid-Bugs-To: http://bugzilla.clutter-project.org/enter_bug.cgi?"
-"product=clutter\n"
-"POT-Creation-Date: 2011-09-12 13:51+0100\n"
-"PO-Revision-Date: 2011-09-11 11:40+0200\n"
-"Last-Translator: Jorge González \n"
-"Language-Team: Español; Castellano \n"
-"Language: \n"
+"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
+"product=clutter&keywords=I18N+L10N&component=general\n"
+"POT-Creation-Date: 2011-10-04 09:34+0000\n"
+"PO-Revision-Date: 2011-10-07 10:02+0200\n"
+"Last-Translator: Daniel Mustieles \n"
+"Language-Team: Español \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+"Language: \n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: clutter/clutter-actor.c:3852
+#: ../clutter/clutter-actor.c:3875
msgid "X coordinate"
msgstr "Coordenada X"
-#: clutter/clutter-actor.c:3853
+#: ../clutter/clutter-actor.c:3876
msgid "X coordinate of the actor"
msgstr "Coordenada X del actor"
-#: clutter/clutter-actor.c:3868
+#: ../clutter/clutter-actor.c:3891
msgid "Y coordinate"
msgstr "Coordenada Y"
-#: clutter/clutter-actor.c:3869
+#: ../clutter/clutter-actor.c:3892
msgid "Y coordinate of the actor"
msgstr "Coordenada Y del actor"
-#: clutter/clutter-actor.c:3884 clutter/clutter-behaviour-ellipse.c:477
+#: ../clutter/clutter-actor.c:3907 ../clutter/clutter-behaviour-ellipse.c:477
msgid "Width"
msgstr "Anchura"
-#: clutter/clutter-actor.c:3885
+#: ../clutter/clutter-actor.c:3908
msgid "Width of the actor"
msgstr "Anchura del actor"
-#: clutter/clutter-actor.c:3899 clutter/clutter-behaviour-ellipse.c:493
+#: ../clutter/clutter-actor.c:3922 ../clutter/clutter-behaviour-ellipse.c:493
msgid "Height"
msgstr "Altura"
-#: clutter/clutter-actor.c:3900
+#: ../clutter/clutter-actor.c:3923
msgid "Height of the actor"
msgstr "Altura del actor"
-#: clutter/clutter-actor.c:3918
+#: ../clutter/clutter-actor.c:3941
msgid "Fixed X"
msgstr "X fija"
-#: clutter/clutter-actor.c:3919
+#: ../clutter/clutter-actor.c:3942
msgid "Forced X position of the actor"
msgstr "Posición X forzada del actor"
-#: clutter/clutter-actor.c:3937
+#: ../clutter/clutter-actor.c:3960
msgid "Fixed Y"
msgstr "Y fija"
-#: clutter/clutter-actor.c:3938
+#: ../clutter/clutter-actor.c:3961
msgid "Forced Y position of the actor"
msgstr "Posición Y forzada del actor"
-#: clutter/clutter-actor.c:3954
+#: ../clutter/clutter-actor.c:3977
msgid "Fixed position set"
msgstr "Posición fija establecida"
-#: clutter/clutter-actor.c:3955
+#: ../clutter/clutter-actor.c:3978
msgid "Whether to use fixed positioning for the actor"
msgstr "Indica si se usa una posición fija para el actor"
-#: clutter/clutter-actor.c:3977
+#: ../clutter/clutter-actor.c:4000
msgid "Min Width"
msgstr "Anchura mínima"
-#: clutter/clutter-actor.c:3978
+#: ../clutter/clutter-actor.c:4001
msgid "Forced minimum width request for the actor"
msgstr "Solicitud de anchura mínima forzada para el actor"
-#: clutter/clutter-actor.c:3997
+#: ../clutter/clutter-actor.c:4020
msgid "Min Height"
msgstr "Altura mínima"
-#: clutter/clutter-actor.c:3998
+#: ../clutter/clutter-actor.c:4021
msgid "Forced minimum height request for the actor"
msgstr "Solicitud de altura mínima forzada para el actor"
-#: clutter/clutter-actor.c:4017
+#: ../clutter/clutter-actor.c:4040
msgid "Natural Width"
msgstr "Anchura natural"
-#: clutter/clutter-actor.c:4018
+#: ../clutter/clutter-actor.c:4041
msgid "Forced natural width request for the actor"
msgstr "Solicitud de anchura natural forzada para el actor"
-#: clutter/clutter-actor.c:4037
+#: ../clutter/clutter-actor.c:4060
msgid "Natural Height"
msgstr "Altura natural"
-#: clutter/clutter-actor.c:4038
+#: ../clutter/clutter-actor.c:4061
msgid "Forced natural height request for the actor"
msgstr "Solicitud de altura natural forzada para el actor"
-#: clutter/clutter-actor.c:4054
+#: ../clutter/clutter-actor.c:4077
msgid "Minimum width set"
msgstr "Anchura mínima establecida"
-#: clutter/clutter-actor.c:4055
+#: ../clutter/clutter-actor.c:4078
msgid "Whether to use the min-width property"
msgstr "Indica si se usa la propiedad «anchura mínima»"
-#: clutter/clutter-actor.c:4070
+#: ../clutter/clutter-actor.c:4093
msgid "Minimum height set"
msgstr "Altura mínima establecida"
-#: clutter/clutter-actor.c:4071
+#: ../clutter/clutter-actor.c:4094
msgid "Whether to use the min-height property"
msgstr "Indica si se usa la propiedad «altura mínima»"
-#: clutter/clutter-actor.c:4086
+#: ../clutter/clutter-actor.c:4109
msgid "Natural width set"
msgstr "Anchura natural establecida"
-#: clutter/clutter-actor.c:4087
+#: ../clutter/clutter-actor.c:4110
msgid "Whether to use the natural-width property"
msgstr "Indica si se usa la propiedad «anchura natural»"
-#: clutter/clutter-actor.c:4104
+#: ../clutter/clutter-actor.c:4127
msgid "Natural height set"
msgstr "Altura natural establecida"
-#: clutter/clutter-actor.c:4105
+#: ../clutter/clutter-actor.c:4128
msgid "Whether to use the natural-height property"
msgstr "Indica si se usa la propiedad «altura natural»"
-#: clutter/clutter-actor.c:4124
+#: ../clutter/clutter-actor.c:4147
msgid "Allocation"
msgstr "Asignación"
-#: clutter/clutter-actor.c:4125
+#: ../clutter/clutter-actor.c:4148
msgid "The actor's allocation"
msgstr "La asignación del actor"
-#: clutter/clutter-actor.c:4181
+#: ../clutter/clutter-actor.c:4204
msgid "Request Mode"
msgstr "Modo de solicitud"
-#: clutter/clutter-actor.c:4182
+#: ../clutter/clutter-actor.c:4205
msgid "The actor's request mode"
msgstr "El modo de solicitud del actor"
-#: clutter/clutter-actor.c:4197
+#: ../clutter/clutter-actor.c:4220
msgid "Depth"
msgstr "Profundidad"
-#: clutter/clutter-actor.c:4198
+#: ../clutter/clutter-actor.c:4221
msgid "Position on the Z axis"
msgstr "Posición en el eje Z"
-#: clutter/clutter-actor.c:4212
+#: ../clutter/clutter-actor.c:4235
msgid "Opacity"
msgstr "Opacidad"
-#: clutter/clutter-actor.c:4213
+#: ../clutter/clutter-actor.c:4236
msgid "Opacity of an actor"
msgstr "Opacidad de un actor"
-#: clutter/clutter-actor.c:4232
+#: ../clutter/clutter-actor.c:4255
msgid "Offscreen redirect"
msgstr "Redirección fuera de la pantalla"
-#: clutter/clutter-actor.c:4233
+#: ../clutter/clutter-actor.c:4256
msgid "Flags controlling when to flatten the actor into a single image"
msgstr "Opciones que controlan si se debe aplanar el actor en una única imagen"
-#: clutter/clutter-actor.c:4251
+#: ../clutter/clutter-actor.c:4274
msgid "Visible"
msgstr "Visible"
-#: clutter/clutter-actor.c:4252
+#: ../clutter/clutter-actor.c:4275
msgid "Whether the actor is visible or not"
msgstr "Indica si el actor es visible o no"
-#: clutter/clutter-actor.c:4267
+#: ../clutter/clutter-actor.c:4290
msgid "Mapped"
msgstr "Mapeado"
-#: clutter/clutter-actor.c:4268
+#: ../clutter/clutter-actor.c:4291
msgid "Whether the actor will be painted"
msgstr "Indica si se dibujará el actor"
-#: clutter/clutter-actor.c:4282
+#: ../clutter/clutter-actor.c:4305
msgid "Realized"
msgstr "Realizado"
-#: clutter/clutter-actor.c:4283
+#: ../clutter/clutter-actor.c:4306
msgid "Whether the actor has been realized"
msgstr "Indica si el actor se ha realizado"
-#: clutter/clutter-actor.c:4299
+#: ../clutter/clutter-actor.c:4322
msgid "Reactive"
msgstr "Reactivo"
-#: clutter/clutter-actor.c:4300
+#: ../clutter/clutter-actor.c:4323
msgid "Whether the actor is reactive to events"
msgstr "Indica si el actor es reactivo a eventos"
-#: clutter/clutter-actor.c:4312
+#: ../clutter/clutter-actor.c:4335
msgid "Has Clip"
msgstr "Tiene recorte"
-#: clutter/clutter-actor.c:4313
+#: ../clutter/clutter-actor.c:4336
msgid "Whether the actor has a clip set"
msgstr "Indica si el actor tiene un conjunto de recortes"
-#: clutter/clutter-actor.c:4328
+#: ../clutter/clutter-actor.c:4351
msgid "Clip"
msgstr "Recortar"
-#: clutter/clutter-actor.c:4329
+#: ../clutter/clutter-actor.c:4352
msgid "The clip region for the actor"
msgstr "La región de recorte del actor"
-#: clutter/clutter-actor.c:4343 clutter/clutter-actor-meta.c:207
-#: clutter/clutter-binding-pool.c:319 clutter/clutter-input-device.c:236
+#: ../clutter/clutter-actor.c:4366 ../clutter/clutter-actor-meta.c:207
+#: ../clutter/clutter-binding-pool.c:319 ../clutter/clutter-input-device.c:236
msgid "Name"
msgstr "Nombre"
-#: clutter/clutter-actor.c:4344
+#: ../clutter/clutter-actor.c:4367
msgid "Name of the actor"
msgstr "Nombre del actor"
-#: clutter/clutter-actor.c:4358
+#: ../clutter/clutter-actor.c:4381
msgid "Scale X"
msgstr "Escala en X"
-#: clutter/clutter-actor.c:4359
+#: ../clutter/clutter-actor.c:4382
msgid "Scale factor on the X axis"
msgstr "Factor de escala en el eje X"
-#: clutter/clutter-actor.c:4374
+#: ../clutter/clutter-actor.c:4397
msgid "Scale Y"
msgstr "Escala en Y"
-#: clutter/clutter-actor.c:4375
+#: ../clutter/clutter-actor.c:4398
msgid "Scale factor on the Y axis"
msgstr "Factor de escala en el eje Y"
-#: clutter/clutter-actor.c:4390
+#: ../clutter/clutter-actor.c:4413
msgid "Scale Center X"
msgstr "Centro X del escalado"
-#: clutter/clutter-actor.c:4391
+#: ../clutter/clutter-actor.c:4414
msgid "Horizontal scale center"
msgstr "Centro de la escala horizontal"
-#: clutter/clutter-actor.c:4406
+#: ../clutter/clutter-actor.c:4429
msgid "Scale Center Y"
msgstr "Centro Y del escalado"
-#: clutter/clutter-actor.c:4407
+#: ../clutter/clutter-actor.c:4430
msgid "Vertical scale center"
msgstr "Centro de la escala vertical"
-#: clutter/clutter-actor.c:4422
+#: ../clutter/clutter-actor.c:4445
msgid "Scale Gravity"
msgstr "Gravedad del escalado"
-#: clutter/clutter-actor.c:4423
+#: ../clutter/clutter-actor.c:4446
msgid "The center of scaling"
msgstr "El centro del escalado"
-#: clutter/clutter-actor.c:4440
+#: ../clutter/clutter-actor.c:4463
msgid "Rotation Angle X"
msgstr "Ángulo de rotación X"
-#: clutter/clutter-actor.c:4441
+#: ../clutter/clutter-actor.c:4464
msgid "The rotation angle on the X axis"
msgstr "El ángulo de rotación en el eje X"
-#: clutter/clutter-actor.c:4456
+#: ../clutter/clutter-actor.c:4479
msgid "Rotation Angle Y"
msgstr "Ángulo de rotación Y"
-#: clutter/clutter-actor.c:4457
+#: ../clutter/clutter-actor.c:4480
msgid "The rotation angle on the Y axis"
msgstr "El ángulo de rotación en el eje Y"
-#: clutter/clutter-actor.c:4472
+#: ../clutter/clutter-actor.c:4495
msgid "Rotation Angle Z"
msgstr "Ángulo de rotación Z"
-#: clutter/clutter-actor.c:4473
+#: ../clutter/clutter-actor.c:4496
msgid "The rotation angle on the Z axis"
msgstr "El ángulo de rotación en el eje Z"
-#: clutter/clutter-actor.c:4488
+#: ../clutter/clutter-actor.c:4511
msgid "Rotation Center X"
msgstr "Centro de rotación X"
-#: clutter/clutter-actor.c:4489
+#: ../clutter/clutter-actor.c:4512
msgid "The rotation center on the X axis"
msgstr "El ángulo de rotación en el eje Y"
-#: clutter/clutter-actor.c:4505
+#: ../clutter/clutter-actor.c:4528
msgid "Rotation Center Y"
msgstr "Centro de rotación Y"
-#: clutter/clutter-actor.c:4506
+#: ../clutter/clutter-actor.c:4529
msgid "The rotation center on the Y axis"
msgstr "En centro de la rotación en el eje Y"
-#: clutter/clutter-actor.c:4522
+#: ../clutter/clutter-actor.c:4545
msgid "Rotation Center Z"
msgstr "Centro de rotación Z"
-#: clutter/clutter-actor.c:4523
+#: ../clutter/clutter-actor.c:4546
msgid "The rotation center on the Z axis"
msgstr "El ángulo de rotación en el eje Z"
-#: clutter/clutter-actor.c:4539
+#: ../clutter/clutter-actor.c:4562
msgid "Rotation Center Z Gravity"
msgstr "Gravedad del centro de rotación Z"
-#: clutter/clutter-actor.c:4540
+#: ../clutter/clutter-actor.c:4563
msgid "Center point for rotation around the Z axis"
msgstr "Punto central de la rotación alrededor del eje Z"
-#: clutter/clutter-actor.c:4558
+#: ../clutter/clutter-actor.c:4581
msgid "Anchor X"
msgstr "Ancla X"
-#: clutter/clutter-actor.c:4559
+#: ../clutter/clutter-actor.c:4582
msgid "X coordinate of the anchor point"
msgstr "Coordenada X del punto de anclado"
-#: clutter/clutter-actor.c:4575
+#: ../clutter/clutter-actor.c:4598
msgid "Anchor Y"
msgstr "Ancla Y"
-#: clutter/clutter-actor.c:4576
+#: ../clutter/clutter-actor.c:4599
msgid "Y coordinate of the anchor point"
msgstr "Coordenada Y del punto de anclado"
-#: clutter/clutter-actor.c:4591
+#: ../clutter/clutter-actor.c:4614
msgid "Anchor Gravity"
msgstr "Gravedad del ancla"
-#: clutter/clutter-actor.c:4592
+#: ../clutter/clutter-actor.c:4615
msgid "The anchor point as a ClutterGravity"
msgstr "El punto de anclado como un «ClutterGravity»"
-#: clutter/clutter-actor.c:4611
+#: ../clutter/clutter-actor.c:4634
msgid "Show on set parent"
msgstr "Mostrar en el conjunto padre"
-#: clutter/clutter-actor.c:4612
+#: ../clutter/clutter-actor.c:4635
msgid "Whether the actor is shown when parented"
msgstr "Indica si el actor se muestra cuando tiene padre"
-#: clutter/clutter-actor.c:4632
+#: ../clutter/clutter-actor.c:4655
msgid "Clip to Allocation"
msgstr "Recortar a la asignación"
-#: clutter/clutter-actor.c:4633
+#: ../clutter/clutter-actor.c:4656
msgid "Sets the clip region to track the actor's allocation"
msgstr "Configura la región de recorte para seguir la ubicación del actor"
-#: clutter/clutter-actor.c:4643
+#: ../clutter/clutter-actor.c:4666
msgid "Text Direction"
msgstr "Dirección del texto"
-#: clutter/clutter-actor.c:4644
+#: ../clutter/clutter-actor.c:4667
msgid "Direction of the text"
msgstr "Dirección del texto"
-#: clutter/clutter-actor.c:4662
+#: ../clutter/clutter-actor.c:4685
msgid "Has Pointer"
msgstr "Tiene puntero"
-#: clutter/clutter-actor.c:4663
+#: ../clutter/clutter-actor.c:4686
msgid "Whether the actor contains the pointer of an input device"
msgstr "Indica si el actor contiene un puntero a un dispositivo de entrada"
-#: clutter/clutter-actor.c:4680
+#: ../clutter/clutter-actor.c:4703
msgid "Actions"
msgstr "Acciones"
-#: clutter/clutter-actor.c:4681
+#: ../clutter/clutter-actor.c:4704
msgid "Adds an action to the actor"
msgstr "Añade una acción al actor"
-#: clutter/clutter-actor.c:4695
+#: ../clutter/clutter-actor.c:4718
msgid "Constraints"
msgstr "Restricciones"
-#: clutter/clutter-actor.c:4696
+#: ../clutter/clutter-actor.c:4719
msgid "Adds a constraint to the actor"
msgstr "Añade una restricción al actor"
-#: clutter/clutter-actor-meta.c:193 clutter/clutter-child-meta.c:142
+#: ../clutter/clutter-actor.c:4733
+#| msgid "Offset"
+msgid "Effect"
+msgstr "Efecto"
+
+#: ../clutter/clutter-actor.c:4734
+#| msgid "Adds an action to the actor"
+msgid "Add an effect to be applied on the actor"
+msgstr "Añadir un efecto que aplicar al actor"
+
+#: ../clutter/clutter-actor-meta.c:193 ../clutter/clutter-child-meta.c:142
msgid "Actor"
msgstr "Actor"
-#: clutter/clutter-actor-meta.c:194
+#: ../clutter/clutter-actor-meta.c:194
msgid "The actor attached to the meta"
msgstr "El actor adjunto a la meta"
-#: clutter/clutter-actor-meta.c:208
+#: ../clutter/clutter-actor-meta.c:208
msgid "The name of the meta"
msgstr "El nombre de la meta"
-#: clutter/clutter-actor-meta.c:221 clutter/clutter-input-device.c:315
-#: clutter/clutter-shader.c:307
+#: ../clutter/clutter-actor-meta.c:221 ../clutter/clutter-input-device.c:315
+#: ../clutter/clutter-shader.c:307
msgid "Enabled"
msgstr "Activada"
-#: clutter/clutter-actor-meta.c:222
+#: ../clutter/clutter-actor-meta.c:222
msgid "Whether the meta is enabled"
msgstr "Indica si la meta está activada"
-#: clutter/clutter-align-constraint.c:270
-#: clutter/clutter-bind-constraint.c:349 clutter/clutter-clone.c:340
-#: clutter/clutter-snap-constraint.c:321
+#: ../clutter/clutter-align-constraint.c:270
+#: ../clutter/clutter-bind-constraint.c:349 ../clutter/clutter-clone.c:340
+#: ../clutter/clutter-snap-constraint.c:321
msgid "Source"
msgstr "Fuente"
-#: clutter/clutter-align-constraint.c:271
+#: ../clutter/clutter-align-constraint.c:271
msgid "The source of the alignment"
msgstr "La fuente de la alineación"
-#: clutter/clutter-align-constraint.c:284
+#: ../clutter/clutter-align-constraint.c:284
msgid "Align Axis"
msgstr "Alinear ejes"
-#: clutter/clutter-align-constraint.c:285
+#: ../clutter/clutter-align-constraint.c:285
msgid "The axis to align the position to"
msgstr "El eje al que alinear la posición"
-#: clutter/clutter-align-constraint.c:304
-#: clutter/clutter-desaturate-effect.c:304
+#: ../clutter/clutter-align-constraint.c:304
+#: ../clutter/clutter-desaturate-effect.c:304
msgid "Factor"
msgstr "Factor"
-#: clutter/clutter-align-constraint.c:305
+#: ../clutter/clutter-align-constraint.c:305
msgid "The alignment factor, between 0.0 and 1.0"
msgstr "El factor de alineación, entre 0.0 y 1.0"
-#: clutter/clutter-alpha.c:345 clutter/clutter-animation.c:538
-#: clutter/clutter-animator.c:1802
+#: ../clutter/clutter-alpha.c:345 ../clutter/clutter-animation.c:538
+#: ../clutter/clutter-animator.c:1802
msgid "Timeline"
msgstr "Línea de tiempo"
-#: clutter/clutter-alpha.c:346
+#: ../clutter/clutter-alpha.c:346
msgid "Timeline used by the alpha"
msgstr "Línea de tiempo usada por el alfa"
-#: clutter/clutter-alpha.c:361
+#: ../clutter/clutter-alpha.c:361
msgid "Alpha value"
msgstr "Valor alfa"
-#: clutter/clutter-alpha.c:362
+#: ../clutter/clutter-alpha.c:362
msgid "Alpha value as computed by the alpha"
msgstr "Valor alfa calculado por el alfa"
-#: clutter/clutter-alpha.c:382 clutter/clutter-animation.c:494
+#: ../clutter/clutter-alpha.c:382 ../clutter/clutter-animation.c:494
msgid "Mode"
msgstr "Modo"
-#: clutter/clutter-alpha.c:383
+#: ../clutter/clutter-alpha.c:383
msgid "Progress mode"
msgstr "Modo de progreso"
-#: clutter/clutter-animation.c:478
+#: ../clutter/clutter-animation.c:478
msgid "Object"
msgstr "Objeto"
-#: clutter/clutter-animation.c:479
+#: ../clutter/clutter-animation.c:479
msgid "Object to which the animation applies"
msgstr "Objeto al que se aplica la animación"
-#: clutter/clutter-animation.c:495
+#: ../clutter/clutter-animation.c:495
msgid "The mode of the animation"
msgstr "El modo de la animación"
-#: clutter/clutter-animation.c:509 clutter/clutter-animator.c:1786
-#: clutter/clutter-media.c:194 clutter/clutter-state.c:1486
-#: clutter/clutter-timeline.c:294
+#: ../clutter/clutter-animation.c:509 ../clutter/clutter-animator.c:1786
+#: ../clutter/clutter-media.c:194 ../clutter/clutter-state.c:1486
+#: ../clutter/clutter-timeline.c:294
msgid "Duration"
msgstr "Duración"
-#: clutter/clutter-animation.c:510
+#: ../clutter/clutter-animation.c:510
msgid "Duration of the animation, in milliseconds"
msgstr "Duración de la animación, en milisegundos"
-#: clutter/clutter-animation.c:524 clutter/clutter-timeline.c:263
+#: ../clutter/clutter-animation.c:524 ../clutter/clutter-timeline.c:263
msgid "Loop"
msgstr "Bucle"
-#: clutter/clutter-animation.c:525
+#: ../clutter/clutter-animation.c:525
msgid "Whether the animation should loop"
msgstr "Indica si la animación debería ser un bucle"
-#: clutter/clutter-animation.c:539
+#: ../clutter/clutter-animation.c:539
msgid "The timeline used by the animation"
msgstr "La línea de tiempo usada por la animación"
-#: clutter/clutter-animation.c:552 clutter/clutter-behaviour.c:304
+#: ../clutter/clutter-animation.c:552 ../clutter/clutter-behaviour.c:304
msgid "Alpha"
msgstr "Alfa"
-#: clutter/clutter-animation.c:553
+#: ../clutter/clutter-animation.c:553
msgid "The alpha used by the animation"
msgstr "El alfa usado por la animación"
-#: clutter/clutter-animator.c:1787
+#: ../clutter/clutter-animator.c:1787
msgid "The duration of the animation"
msgstr "La duración de la animación"
-#: clutter/clutter-animator.c:1803
+#: ../clutter/clutter-animator.c:1803
msgid "The timeline of the animation"
msgstr "La línea de tiempo de la animación"
-#: clutter/clutter-behaviour.c:305
+#: ../clutter/clutter-behaviour.c:305
msgid "Alpha Object to drive the behaviour"
msgstr "Objeto alfa para dirigir el comportamiento"
-#: clutter/clutter-behaviour-depth.c:178
+#: ../clutter/clutter-behaviour-depth.c:178
msgid "Start Depth"
msgstr "Profundidad inicial"
-#: clutter/clutter-behaviour-depth.c:179
+#: ../clutter/clutter-behaviour-depth.c:179
msgid "Initial depth to apply"
msgstr "Profundidad inicial que aplicar"
-#: clutter/clutter-behaviour-depth.c:194
+#: ../clutter/clutter-behaviour-depth.c:194
msgid "End Depth"
msgstr "Profundidad final"
-#: clutter/clutter-behaviour-depth.c:195
+#: ../clutter/clutter-behaviour-depth.c:195
msgid "Final depth to apply"
msgstr "Profundidad final que aplicar"
-#: clutter/clutter-behaviour-ellipse.c:397
+#: ../clutter/clutter-behaviour-ellipse.c:397
msgid "Start Angle"
msgstr "Ángulo inicial"
-#: clutter/clutter-behaviour-ellipse.c:398
-#: clutter/clutter-behaviour-rotate.c:280
+#: ../clutter/clutter-behaviour-ellipse.c:398
+#: ../clutter/clutter-behaviour-rotate.c:280
msgid "Initial angle"
msgstr "Ángulo inicial"
-#: clutter/clutter-behaviour-ellipse.c:413
+#: ../clutter/clutter-behaviour-ellipse.c:413
msgid "End Angle"
msgstr "Ángulo final"
-#: clutter/clutter-behaviour-ellipse.c:414
-#: clutter/clutter-behaviour-rotate.c:298
+#: ../clutter/clutter-behaviour-ellipse.c:414
+#: ../clutter/clutter-behaviour-rotate.c:298
msgid "Final angle"
msgstr "Ángulo final"
-#: clutter/clutter-behaviour-ellipse.c:429
+#: ../clutter/clutter-behaviour-ellipse.c:429
msgid "Angle x tilt"
msgstr "Inclinación X del ángulo"
-#: clutter/clutter-behaviour-ellipse.c:430
+#: ../clutter/clutter-behaviour-ellipse.c:430
msgid "Tilt of the ellipse around x axis"
msgstr "Inclinación de la elipse sobre el eje X"
-#: clutter/clutter-behaviour-ellipse.c:445
+#: ../clutter/clutter-behaviour-ellipse.c:445
msgid "Angle y tilt"
msgstr "Inclinación Y del ángulo"
-#: clutter/clutter-behaviour-ellipse.c:446
+#: ../clutter/clutter-behaviour-ellipse.c:446
msgid "Tilt of the ellipse around y axis"
msgstr "Inclinación de la elipse sobre el eje Y"
-#: clutter/clutter-behaviour-ellipse.c:461
+#: ../clutter/clutter-behaviour-ellipse.c:461
msgid "Angle z tilt"
msgstr "Inclinación Z del ángulo"
-#: clutter/clutter-behaviour-ellipse.c:462
+#: ../clutter/clutter-behaviour-ellipse.c:462
msgid "Tilt of the ellipse around z axis"
msgstr "Inclinación de la elipse sobre el eje Z"
-#: clutter/clutter-behaviour-ellipse.c:478
+#: ../clutter/clutter-behaviour-ellipse.c:478
msgid "Width of the ellipse"
msgstr "Anchura de la elipse"
-#: clutter/clutter-behaviour-ellipse.c:494
+#: ../clutter/clutter-behaviour-ellipse.c:494
msgid "Height of ellipse"
msgstr "Altura de la elipse"
-#: clutter/clutter-behaviour-ellipse.c:509
+#: ../clutter/clutter-behaviour-ellipse.c:509
msgid "Center"
msgstr "Centro"
-#: clutter/clutter-behaviour-ellipse.c:510
+#: ../clutter/clutter-behaviour-ellipse.c:510
msgid "Center of ellipse"
msgstr "Centro de la elipse"
-#: clutter/clutter-behaviour-ellipse.c:524
-#: clutter/clutter-behaviour-rotate.c:333 clutter/clutter-timeline.c:310
+#: ../clutter/clutter-behaviour-ellipse.c:524
+#: ../clutter/clutter-behaviour-rotate.c:333 ../clutter/clutter-timeline.c:310
msgid "Direction"
msgstr "Dirección"
-#: clutter/clutter-behaviour-ellipse.c:525
-#: clutter/clutter-behaviour-rotate.c:334
+#: ../clutter/clutter-behaviour-ellipse.c:525
+#: ../clutter/clutter-behaviour-rotate.c:334
msgid "Direction of rotation"
msgstr "Dirección de la rotación"
-#: clutter/clutter-behaviour-opacity.c:181
+#: ../clutter/clutter-behaviour-opacity.c:181
msgid "Opacity Start"
msgstr "Opacidad inicial"
-#: clutter/clutter-behaviour-opacity.c:182
+#: ../clutter/clutter-behaviour-opacity.c:182
msgid "Initial opacity level"
msgstr "Nivel inicial de opacidad"
-#: clutter/clutter-behaviour-opacity.c:199
+#: ../clutter/clutter-behaviour-opacity.c:199
msgid "Opacity End"
msgstr "Opacidad final"
-#: clutter/clutter-behaviour-opacity.c:200
+#: ../clutter/clutter-behaviour-opacity.c:200
msgid "Final opacity level"
msgstr "Nivel final de opacidad"
-#: clutter/clutter-behaviour-path.c:222 clutter/clutter-path-constraint.c:212
+#: ../clutter/clutter-behaviour-path.c:222
+#: ../clutter/clutter-path-constraint.c:212
msgid "Path"
msgstr "Ruta"
-#: clutter/clutter-behaviour-path.c:223
+#: ../clutter/clutter-behaviour-path.c:223
msgid "The ClutterPath object representing the path to animate along"
msgstr "El objeto «ClutterPath» que representa la ruta sobre la que animar"
-#: clutter/clutter-behaviour-rotate.c:279
+#: ../clutter/clutter-behaviour-rotate.c:279
msgid "Angle Begin"
msgstr "Ángulo inicial"
-#: clutter/clutter-behaviour-rotate.c:297
+#: ../clutter/clutter-behaviour-rotate.c:297
msgid "Angle End"
msgstr "Ángulo final"
-#: clutter/clutter-behaviour-rotate.c:315
+#: ../clutter/clutter-behaviour-rotate.c:315
msgid "Axis"
msgstr "Eje"
-#: clutter/clutter-behaviour-rotate.c:316
+#: ../clutter/clutter-behaviour-rotate.c:316
msgid "Axis of rotation"
msgstr "Eje de rotación"
-#: clutter/clutter-behaviour-rotate.c:351
+#: ../clutter/clutter-behaviour-rotate.c:351
msgid "Center X"
msgstr "Centro X"
-#: clutter/clutter-behaviour-rotate.c:352
+#: ../clutter/clutter-behaviour-rotate.c:352
msgid "X coordinate of the center of rotation"
msgstr "Coordenada X del centro de rotación"
-#: clutter/clutter-behaviour-rotate.c:369
+#: ../clutter/clutter-behaviour-rotate.c:369
msgid "Center Y"
msgstr "Centro Y"
-#: clutter/clutter-behaviour-rotate.c:370
+#: ../clutter/clutter-behaviour-rotate.c:370
msgid "Y coordinate of the center of rotation"
msgstr "Coordenada Y del centro de rotación"
-#: clutter/clutter-behaviour-rotate.c:387
+#: ../clutter/clutter-behaviour-rotate.c:387
msgid "Center Z"
msgstr "Centro Z"
-#: clutter/clutter-behaviour-rotate.c:388
+#: ../clutter/clutter-behaviour-rotate.c:388
msgid "Z coordinate of the center of rotation"
msgstr "Coordenada Z del centro de rotación"
-#: clutter/clutter-behaviour-scale.c:222
+#: ../clutter/clutter-behaviour-scale.c:222
msgid "X Start Scale"
msgstr "Escala X inicial"
-#: clutter/clutter-behaviour-scale.c:223
+#: ../clutter/clutter-behaviour-scale.c:223
msgid "Initial scale on the X axis"
msgstr "Escala inicial en el eje X"
-#: clutter/clutter-behaviour-scale.c:241
+#: ../clutter/clutter-behaviour-scale.c:241
msgid "X End Scale"
msgstr "Escala X final"
-#: clutter/clutter-behaviour-scale.c:242
+#: ../clutter/clutter-behaviour-scale.c:242
msgid "Final scale on the X axis"
msgstr "Escala final en el eje X"
-#: clutter/clutter-behaviour-scale.c:260
+#: ../clutter/clutter-behaviour-scale.c:260
msgid "Y Start Scale"
msgstr "Escala Y inicial"
-#: clutter/clutter-behaviour-scale.c:261
+#: ../clutter/clutter-behaviour-scale.c:261
msgid "Initial scale on the Y axis"
msgstr "Escala inicial en el eje Y"
-#: clutter/clutter-behaviour-scale.c:279
+#: ../clutter/clutter-behaviour-scale.c:279
msgid "Y End Scale"
msgstr "Escala Y final"
-#: clutter/clutter-behaviour-scale.c:280
+#: ../clutter/clutter-behaviour-scale.c:280
msgid "Final scale on the Y axis"
msgstr "Escala final en el eje Y"
-#: clutter/clutter-bind-constraint.c:350
+#: ../clutter/clutter-bind-constraint.c:350
msgid "The source of the binding"
msgstr "El origen de la asociación"
-#: clutter/clutter-bind-constraint.c:363
+#: ../clutter/clutter-bind-constraint.c:363
msgid "Coordinate"
msgstr "Coordenada"
-#: clutter/clutter-bind-constraint.c:364
+#: ../clutter/clutter-bind-constraint.c:364
msgid "The coordinate to bind"
msgstr "La coordenada que asociar"
-#: clutter/clutter-bind-constraint.c:378 clutter/clutter-path-constraint.c:226
-#: clutter/clutter-snap-constraint.c:366
+#: ../clutter/clutter-bind-constraint.c:378
+#: ../clutter/clutter-path-constraint.c:226
+#: ../clutter/clutter-snap-constraint.c:366
msgid "Offset"
msgstr "Desplazamiento"
-#: clutter/clutter-bind-constraint.c:379
+#: ../clutter/clutter-bind-constraint.c:379
msgid "The offset in pixels to apply to the binding"
msgstr "El desplazamiento en píxeles que aplicar a la asociación"
-#: clutter/clutter-binding-pool.c:320
+#: ../clutter/clutter-binding-pool.c:320
msgid "The unique name of the binding pool"
msgstr "El nombre único de la asociación de la agrupación"
-#: clutter/clutter-bin-layout.c:261 clutter/clutter-bin-layout.c:585
-#: clutter/clutter-box-layout.c:395 clutter/clutter-table-layout.c:652
+#: ../clutter/clutter-bin-layout.c:261 ../clutter/clutter-bin-layout.c:585
+#: ../clutter/clutter-box-layout.c:395 ../clutter/clutter-table-layout.c:652
msgid "Horizontal Alignment"
msgstr "Alineación horizontal"
-#: clutter/clutter-bin-layout.c:262
+#: ../clutter/clutter-bin-layout.c:262
msgid "Horizontal alignment for the actor inside the layout manager"
msgstr "Alineación horizontal del actor dentro del gestor de distribución"
-#: clutter/clutter-bin-layout.c:270 clutter/clutter-bin-layout.c:602
-#: clutter/clutter-box-layout.c:404 clutter/clutter-table-layout.c:667
+#: ../clutter/clutter-bin-layout.c:270 ../clutter/clutter-bin-layout.c:602
+#: ../clutter/clutter-box-layout.c:404 ../clutter/clutter-table-layout.c:667
msgid "Vertical Alignment"
msgstr "Alineación vertical"
-#: clutter/clutter-bin-layout.c:271
+#: ../clutter/clutter-bin-layout.c:271
msgid "Vertical alignment for the actor inside the layout manager"
msgstr "Alineación vertical del actor dentro del gestor de distribución"
-#: clutter/clutter-bin-layout.c:586
+#: ../clutter/clutter-bin-layout.c:586
msgid "Default horizontal alignment for the actors inside the layout manager"
msgstr ""
"Alineación horizontal predeterminada de los actores dentro del gestor de "
"distribución"
-#: clutter/clutter-bin-layout.c:603
+#: ../clutter/clutter-bin-layout.c:603
msgid "Default vertical alignment for the actors inside the layout manager"
msgstr ""
"Alineación vertical predeterminada de los actores dentro del gestor de "
"distribución"
-#: clutter/clutter-box.c:544
+#: ../clutter/clutter-box.c:544
msgid "Layout Manager"
msgstr "Gestor de distribución"
-#: clutter/clutter-box.c:545
+#: ../clutter/clutter-box.c:545
msgid "The layout manager used by the box"
msgstr "El gestor de distribución usado por la caja"
-#: clutter/clutter-box.c:564 clutter/clutter-rectangle.c:267
-#: clutter/clutter-stage.c:1765
+#: ../clutter/clutter-box.c:564 ../clutter/clutter-rectangle.c:267
+#: ../clutter/clutter-stage.c:1790
msgid "Color"
msgstr "Color"
-#: clutter/clutter-box.c:565
+#: ../clutter/clutter-box.c:565
msgid "The background color of the box"
msgstr "El color de fondo de la caja"
-#: clutter/clutter-box.c:579
+#: ../clutter/clutter-box.c:579
msgid "Color Set"
msgstr "Conjunto de colores"
-#: clutter/clutter-box.c:580
+#: ../clutter/clutter-box.c:580
msgid "Whether the background color is set"
msgstr "Indica si el color de fondo está establecido"
-#: clutter/clutter-box-layout.c:370
+#: ../clutter/clutter-box-layout.c:370
msgid "Expand"
msgstr "Expandir"
-#: clutter/clutter-box-layout.c:371
+#: ../clutter/clutter-box-layout.c:371
msgid "Allocate extra space for the child"
msgstr "Asignar espacio adicional para el hijo"
-#: clutter/clutter-box-layout.c:377 clutter/clutter-table-layout.c:631
+#: ../clutter/clutter-box-layout.c:377 ../clutter/clutter-table-layout.c:631
msgid "Horizontal Fill"
msgstr "Relleno horizontal"
-#: clutter/clutter-box-layout.c:378 clutter/clutter-table-layout.c:632
+#: ../clutter/clutter-box-layout.c:378 ../clutter/clutter-table-layout.c:632
msgid ""
"Whether the child should receive priority when the container is allocating "
"spare space on the horizontal axis"
@@ -811,11 +823,11 @@ msgstr ""
"Indica si el hijo debe tener prioridad cuando el contenedor reserve espacio "
"libre en el eje horizontal"
-#: clutter/clutter-box-layout.c:386 clutter/clutter-table-layout.c:638
+#: ../clutter/clutter-box-layout.c:386 ../clutter/clutter-table-layout.c:638
msgid "Vertical Fill"
msgstr "Relleno vertical"
-#: clutter/clutter-box-layout.c:387 clutter/clutter-table-layout.c:639
+#: ../clutter/clutter-box-layout.c:387 ../clutter/clutter-table-layout.c:639
msgid ""
"Whether the child should receive priority when the container is allocating "
"spare space on the vertical axis"
@@ -823,577 +835,585 @@ msgstr ""
"Indica si el hijo debe tener prioridad cuando el contenedor reserve espacio "
"libre en el eje vertical"
-#: clutter/clutter-box-layout.c:396 clutter/clutter-table-layout.c:653
+#: ../clutter/clutter-box-layout.c:396 ../clutter/clutter-table-layout.c:653
msgid "Horizontal alignment of the actor within the cell"
msgstr "Alineación horizontal del actor en la celda"
-#: clutter/clutter-box-layout.c:405 clutter/clutter-table-layout.c:668
+#: ../clutter/clutter-box-layout.c:405 ../clutter/clutter-table-layout.c:668
msgid "Vertical alignment of the actor within the cell"
msgstr "Alineación vertical del actor en la celda"
-#: clutter/clutter-box-layout.c:1305
+#: ../clutter/clutter-box-layout.c:1305
msgid "Vertical"
msgstr "Vertical"
-#: clutter/clutter-box-layout.c:1306
+#: ../clutter/clutter-box-layout.c:1306
msgid "Whether the layout should be vertical, rather than horizontal"
msgstr "Indica si la distribución debe ser vertical, en lugar de horizontal"
-#: clutter/clutter-box-layout.c:1321 clutter/clutter-flow-layout.c:901
+#: ../clutter/clutter-box-layout.c:1321 ../clutter/clutter-flow-layout.c:901
msgid "Homogeneous"
msgstr "Homogénea"
-#: clutter/clutter-box-layout.c:1322
+#: ../clutter/clutter-box-layout.c:1322
msgid ""
"Whether the layout should be homogeneous, i.e. all childs get the same size"
msgstr ""
"Indica si la distribución debe ser homogénea, ej. todos los hijos tienen el "
"mismo tamaño"
-#: clutter/clutter-box-layout.c:1337
+#: ../clutter/clutter-box-layout.c:1337
msgid "Pack Start"
msgstr "Empaquetar al principio"
-#: clutter/clutter-box-layout.c:1338
+#: ../clutter/clutter-box-layout.c:1338
msgid "Whether to pack items at the start of the box"
msgstr "Indica si se empaquetan los elementos al principio de la caja"
-#: clutter/clutter-box-layout.c:1351
+#: ../clutter/clutter-box-layout.c:1351
msgid "Spacing"
msgstr "Espaciado"
-#: clutter/clutter-box-layout.c:1352
+#: ../clutter/clutter-box-layout.c:1352
msgid "Spacing between children"
msgstr "Espaciado entre hijos"
-#: clutter/clutter-box-layout.c:1366 clutter/clutter-table-layout.c:1742
+#: ../clutter/clutter-box-layout.c:1366 ../clutter/clutter-table-layout.c:1742
msgid "Use Animations"
msgstr "Usar animaciones"
-#: clutter/clutter-box-layout.c:1367 clutter/clutter-table-layout.c:1743
+#: ../clutter/clutter-box-layout.c:1367 ../clutter/clutter-table-layout.c:1743
msgid "Whether layout changes should be animated"
msgstr "Indica si se deben animar lo cambios en la distribución"
-#: clutter/clutter-box-layout.c:1388 clutter/clutter-table-layout.c:1764
+#: ../clutter/clutter-box-layout.c:1388 ../clutter/clutter-table-layout.c:1764
msgid "Easing Mode"
msgstr "Modo de desaceleración"
-#: clutter/clutter-box-layout.c:1389 clutter/clutter-table-layout.c:1765
+#: ../clutter/clutter-box-layout.c:1389 ../clutter/clutter-table-layout.c:1765
msgid "The easing mode of the animations"
msgstr "El modo de desaceleración de las animaciones"
-#: clutter/clutter-box-layout.c:1406 clutter/clutter-table-layout.c:1782
+#: ../clutter/clutter-box-layout.c:1406 ../clutter/clutter-table-layout.c:1782
msgid "Easing Duration"
msgstr "Duración de la desaceleración"
-#: clutter/clutter-box-layout.c:1407 clutter/clutter-table-layout.c:1783
+#: ../clutter/clutter-box-layout.c:1407 ../clutter/clutter-table-layout.c:1783
msgid "The duration of the animations"
msgstr "La duración de las animaciones"
-#: clutter/clutter-cairo-texture.c:582
+#: ../clutter/clutter-cairo-texture.c:582
msgid "Surface Width"
msgstr "Anchura de la superficie"
-#: clutter/clutter-cairo-texture.c:583
+#: ../clutter/clutter-cairo-texture.c:583
msgid "The width of the Cairo surface"
msgstr "La anchura de la superficie Cairo"
-#: clutter/clutter-cairo-texture.c:597
+#: ../clutter/clutter-cairo-texture.c:597
msgid "Surface Height"
msgstr "Altura de la superficie"
-#: clutter/clutter-cairo-texture.c:598
+#: ../clutter/clutter-cairo-texture.c:598
msgid "The height of the Cairo surface"
msgstr "La altura de la superficie Cairo"
-#: clutter/clutter-cairo-texture.c:615
+#: ../clutter/clutter-cairo-texture.c:615
msgid "Auto Resize"
msgstr "Redimensionar automáticamente"
-#: clutter/clutter-cairo-texture.c:616
+#: ../clutter/clutter-cairo-texture.c:616
msgid "Whether the surface should match the allocation"
msgstr "Indica si la superficie debe coincidir con la asignación"
-#: clutter/clutter-child-meta.c:127
+#: ../clutter/clutter-child-meta.c:127
msgid "Container"
msgstr "Contenedor"
-#: clutter/clutter-child-meta.c:128
+#: ../clutter/clutter-child-meta.c:128
msgid "The container that created this data"
msgstr "El contenedor que creó estos datos"
-#: clutter/clutter-child-meta.c:143
+#: ../clutter/clutter-child-meta.c:143
msgid "The actor wrapped by this data"
msgstr "El actor envuelto por estos datos"
-#: clutter/clutter-click-action.c:542
+#: ../clutter/clutter-click-action.c:542
msgid "Pressed"
msgstr "Pulsado"
-#: clutter/clutter-click-action.c:543
+#: ../clutter/clutter-click-action.c:543
msgid "Whether the clickable should be in pressed state"
msgstr "Indica si el pulsable debe estar en estado «pulsado»"
-#: clutter/clutter-click-action.c:556
+#: ../clutter/clutter-click-action.c:556
msgid "Held"
msgstr "Retenido"
-#: clutter/clutter-click-action.c:557
+#: ../clutter/clutter-click-action.c:557
msgid "Whether the clickable has a grab"
msgstr "Indica si el dispositivo tiene un tirador"
-#: clutter/clutter-click-action.c:574 clutter/clutter-settings.c:573
+#: ../clutter/clutter-click-action.c:574 ../clutter/clutter-settings.c:585
msgid "Long Press Duration"
msgstr "Duración de la pulsación larga"
-#: clutter/clutter-click-action.c:575
+#: ../clutter/clutter-click-action.c:575
msgid "The minimum duration of a long press to recognize the gesture"
msgstr "La duración mínima de una pulsación larga para reconocer el gesto"
-#: clutter/clutter-click-action.c:593
+#: ../clutter/clutter-click-action.c:593
msgid "Long Press Threshold"
msgstr "Umbral de la pulsación larga"
-#: clutter/clutter-click-action.c:594
+#: ../clutter/clutter-click-action.c:594
msgid "The maximum threshold before a long press is cancelled"
msgstr "El umbral máximo antes de cancelar una pulsación larga"
-#: clutter/clutter-clone.c:341
+#: ../clutter/clutter-clone.c:341
msgid "Specifies the actor to be cloned"
msgstr "Especifica qué actor clonar"
-#: clutter/clutter-colorize-effect.c:307
+#: ../clutter/clutter-colorize-effect.c:307
msgid "Tint"
msgstr "Matiz"
-#: clutter/clutter-colorize-effect.c:308
+#: ../clutter/clutter-colorize-effect.c:308
msgid "The tint to apply"
msgstr "El matiz que aplicar"
-#: clutter/clutter-deform-effect.c:527
+#: ../clutter/clutter-deform-effect.c:547
msgid "Horizontal Tiles"
msgstr "Cuadros horizontales"
-#: clutter/clutter-deform-effect.c:528
+#: ../clutter/clutter-deform-effect.c:548
msgid "The number of horizontal tiles"
msgstr "El número de cuadros horizontales"
-#: clutter/clutter-deform-effect.c:543
+#: ../clutter/clutter-deform-effect.c:563
msgid "Vertical Tiles"
msgstr "Cuadros verticales"
-#: clutter/clutter-deform-effect.c:544
+#: ../clutter/clutter-deform-effect.c:564
msgid "The number of vertical tiles"
msgstr "El número de cuadros verticales"
-#: clutter/clutter-deform-effect.c:561
+#: ../clutter/clutter-deform-effect.c:581
msgid "Back Material"
msgstr "Material trasero"
-#: clutter/clutter-deform-effect.c:562
+#: ../clutter/clutter-deform-effect.c:582
msgid "The material to be used when painting the back of the actor"
msgstr "El material que usar para pintar la parte trasera del actor"
-#: clutter/clutter-desaturate-effect.c:305
+#: ../clutter/clutter-desaturate-effect.c:305
msgid "The desaturation factor"
msgstr "El factor de desaturación"
-#: clutter/clutter-device-manager.c:131 clutter/clutter-input-device.c:344
-#: clutter/x11/clutter-keymap-x11.c:316
+#: ../clutter/clutter-device-manager.c:131
+#: ../clutter/clutter-input-device.c:344
+#: ../clutter/x11/clutter-keymap-x11.c:316
msgid "Backend"
msgstr "Backend"
-#: clutter/clutter-device-manager.c:132
+#: ../clutter/clutter-device-manager.c:132
msgid "The ClutterBackend of the device manager"
msgstr "El «ClutterBackend» del gestor de dispositivos"
-#: clutter/clutter-drag-action.c:596
+#: ../clutter/clutter-drag-action.c:596
msgid "Horizontal Drag Threshold"
msgstr "Umbral de arrastre horizontal"
-#: clutter/clutter-drag-action.c:597
+#: ../clutter/clutter-drag-action.c:597
msgid "The horizontal amount of pixels required to start dragging"
msgstr ""
"La cantidad de píxeles horizontales requeridos para empezar a arrastrar"
-#: clutter/clutter-drag-action.c:624
+#: ../clutter/clutter-drag-action.c:624
msgid "Vertical Drag Threshold"
msgstr "Umbral de arrastre vertical"
-#: clutter/clutter-drag-action.c:625
+#: ../clutter/clutter-drag-action.c:625
msgid "The vertical amount of pixels required to start dragging"
msgstr "La cantidad de píxeles verticales requeridos para empezar a arrastrar"
-#: clutter/clutter-drag-action.c:646
+#: ../clutter/clutter-drag-action.c:646
msgid "Drag Handle"
msgstr "Arrastrar el tirador"
-#: clutter/clutter-drag-action.c:647
+#: ../clutter/clutter-drag-action.c:647
msgid "The actor that is being dragged"
msgstr "El actor que se está arrastrando"
-#: clutter/clutter-drag-action.c:660
+#: ../clutter/clutter-drag-action.c:660
msgid "Drag Axis"
msgstr "Arrastrar ejes"
-#: clutter/clutter-drag-action.c:661
+#: ../clutter/clutter-drag-action.c:661
msgid "Constraints the dragging to an axis"
msgstr "Restringe el arrastrado a un eje"
-#: clutter/clutter-flow-layout.c:885
+#: ../clutter/clutter-flow-layout.c:885
msgid "Orientation"
msgstr "Orientación"
-#: clutter/clutter-flow-layout.c:886
+#: ../clutter/clutter-flow-layout.c:886
msgid "The orientation of the layout"
msgstr "La orientación de la disposición"
-#: clutter/clutter-flow-layout.c:902
+#: ../clutter/clutter-flow-layout.c:902
msgid "Whether each item should receive the same allocation"
msgstr "Indica si cada elemento debe recibir la misma asignación"
-#: clutter/clutter-flow-layout.c:917 clutter/clutter-table-layout.c:1713
+#: ../clutter/clutter-flow-layout.c:917 ../clutter/clutter-table-layout.c:1713
msgid "Column Spacing"
msgstr "Espaciado entre columnas"
-#: clutter/clutter-flow-layout.c:918
+#: ../clutter/clutter-flow-layout.c:918
msgid "The spacing between columns"
msgstr "El espaciado entre columnas"
-#: clutter/clutter-flow-layout.c:934 clutter/clutter-table-layout.c:1727
+#: ../clutter/clutter-flow-layout.c:934 ../clutter/clutter-table-layout.c:1727
msgid "Row Spacing"
msgstr "Espaciado entre filas"
-#: clutter/clutter-flow-layout.c:935
+#: ../clutter/clutter-flow-layout.c:935
msgid "The spacing between rows"
msgstr "El espaciado entre filas"
-#: clutter/clutter-flow-layout.c:949
+#: ../clutter/clutter-flow-layout.c:949
msgid "Minimum Column Width"
msgstr "Anchura mínima de la columna"
-#: clutter/clutter-flow-layout.c:950
+#: ../clutter/clutter-flow-layout.c:950
msgid "Minimum width for each column"
msgstr "Anchura mínima de cada columna"
-#: clutter/clutter-flow-layout.c:965
+#: ../clutter/clutter-flow-layout.c:965
msgid "Maximum Column Width"
msgstr "Anchura máxima de la columna"
-#: clutter/clutter-flow-layout.c:966
+#: ../clutter/clutter-flow-layout.c:966
msgid "Maximum width for each column"
msgstr "Anchura máxima de cada columna"
-#: clutter/clutter-flow-layout.c:980
+#: ../clutter/clutter-flow-layout.c:980
msgid "Minimum Row Height"
msgstr "Altura mínima de la fila"
-#: clutter/clutter-flow-layout.c:981
+#: ../clutter/clutter-flow-layout.c:981
msgid "Minimum height for each row"
msgstr "Altura mínima de cada fila"
-#: clutter/clutter-flow-layout.c:996
+#: ../clutter/clutter-flow-layout.c:996
msgid "Maximum Row Height"
msgstr "Altura máxima de la fila"
-#: clutter/clutter-flow-layout.c:997
+#: ../clutter/clutter-flow-layout.c:997
msgid "Maximum height for each row"
msgstr "Altura máxima de cada fila"
-#: clutter/clutter-input-device.c:220
+#: ../clutter/clutter-input-device.c:220
msgid "Id"
msgstr "ID"
-#: clutter/clutter-input-device.c:221
+#: ../clutter/clutter-input-device.c:221
msgid "Unique identifier of the device"
msgstr "Identificador único del dispositivo"
-#: clutter/clutter-input-device.c:237
+#: ../clutter/clutter-input-device.c:237
msgid "The name of the device"
msgstr "El nombre del dispositivo"
-#: clutter/clutter-input-device.c:251
+#: ../clutter/clutter-input-device.c:251
msgid "Device Type"
msgstr "Tipo de dispositivo"
-#: clutter/clutter-input-device.c:252
+#: ../clutter/clutter-input-device.c:252
msgid "The type of the device"
msgstr "El tipo del dispositivo"
-#: clutter/clutter-input-device.c:267
+#: ../clutter/clutter-input-device.c:267
msgid "Device Manager"
msgstr "Administrador de dispositivos"
-#: clutter/clutter-input-device.c:268
+#: ../clutter/clutter-input-device.c:268
msgid "The device manager instance"
msgstr "La instancia del gestor de dispositivos"
-#: clutter/clutter-input-device.c:281
+#: ../clutter/clutter-input-device.c:281
msgid "Device Mode"
msgstr "Modo del dispositivo"
-#: clutter/clutter-input-device.c:282
+#: ../clutter/clutter-input-device.c:282
msgid "The mode of the device"
msgstr "El modo del dispositivo"
-#: clutter/clutter-input-device.c:296
+#: ../clutter/clutter-input-device.c:296
msgid "Has Cursor"
msgstr "Tiene cursor"
-#: clutter/clutter-input-device.c:297
+#: ../clutter/clutter-input-device.c:297
msgid "Whether the device has a cursor"
msgstr "Indica si el dispositivo tiene un cursor"
-#: clutter/clutter-input-device.c:316
+#: ../clutter/clutter-input-device.c:316
msgid "Whether the device is enabled"
msgstr "indica si el dispositivo está activado"
-#: clutter/clutter-input-device.c:329
+#: ../clutter/clutter-input-device.c:329
msgid "Number of Axes"
msgstr "Número de ejes"
-#: clutter/clutter-input-device.c:330
+#: ../clutter/clutter-input-device.c:330
msgid "The number of axes on the device"
msgstr "El número de ejes en el dispositivo"
-#: clutter/clutter-input-device.c:345
+#: ../clutter/clutter-input-device.c:345
msgid "The backend instance"
msgstr "La instancia del backend"
-#: clutter/clutter-interval.c:397
+#: ../clutter/clutter-interval.c:397
msgid "Value Type"
msgstr "Tipo de valor"
-#: clutter/clutter-interval.c:398
+#: ../clutter/clutter-interval.c:398
msgid "The type of the values in the interval"
msgstr "El tipo de valores en el intervalo"
-#: clutter/clutter-layout-meta.c:117
+#: ../clutter/clutter-layout-meta.c:117
msgid "Manager"
msgstr "Gestor"
-#: clutter/clutter-layout-meta.c:118
+#: ../clutter/clutter-layout-meta.c:118
msgid "The manager that created this data"
msgstr "El gestor que ha creado este dato"
-#: clutter/clutter-main.c:490
+#. Translators: Leave this UNTRANSLATED if your language is
+#. * left-to-right. If your language is right-to-left
+#. * (e.g. Hebrew, Arabic), translate it to "default:RTL".
+#. *
+#. * Do NOT translate it to non-English e.g. "predefinito:LTR"! If
+#. * it isn't default:LTR or default:RTL it will not work.
+#.
+#: ../clutter/clutter-main.c:494
msgid "default:LTR"
msgstr "default:LTR"
-#: clutter/clutter-main.c:1321
+#: ../clutter/clutter-main.c:1325
msgid "Show frames per second"
msgstr "Mostrar fotogramas por segundo"
-#: clutter/clutter-main.c:1323
+#: ../clutter/clutter-main.c:1327
msgid "Default frame rate"
msgstr "Velocidad de fotogramas predeterminada"
-#: clutter/clutter-main.c:1325
+#: ../clutter/clutter-main.c:1329
msgid "Make all warnings fatal"
msgstr "Hacer que todos los avisos actúen como errores"
-#: clutter/clutter-main.c:1328
+#: ../clutter/clutter-main.c:1332
msgid "Direction for the text"
msgstr "Dirección del texto"
-#: clutter/clutter-main.c:1331
+#: ../clutter/clutter-main.c:1335
msgid "Disable mipmapping on text"
msgstr "Desactivar «mipmapping» en el texto"
-#: clutter/clutter-main.c:1334
+#: ../clutter/clutter-main.c:1338
msgid "Use 'fuzzy' picking"
msgstr "Usar selección «difusa»"
-#: clutter/clutter-main.c:1337
+#: ../clutter/clutter-main.c:1341
msgid "Clutter debugging flags to set"
msgstr "Opciones de depuración de Clutter que establecer"
-#: clutter/clutter-main.c:1339
+#: ../clutter/clutter-main.c:1343
msgid "Clutter debugging flags to unset"
msgstr "Opciones de depuración de Clutter que no establecer"
-#: clutter/clutter-main.c:1343
+#: ../clutter/clutter-main.c:1347
msgid "Clutter profiling flags to set"
msgstr "Opciones de perfil de Clutter que establecer"
-#: clutter/clutter-main.c:1345
+#: ../clutter/clutter-main.c:1349
msgid "Clutter profiling flags to unset"
msgstr "Opciones de perfil de Clutter que no establecer"
-#: clutter/clutter-main.c:1348
+#: ../clutter/clutter-main.c:1352
msgid "Enable accessibility"
msgstr "Activar accesibilidad"
-#: clutter/clutter-main.c:1530
+#: ../clutter/clutter-main.c:1534
msgid "Clutter Options"
msgstr "Opciones de Clutter"
-#: clutter/clutter-main.c:1531
+#: ../clutter/clutter-main.c:1535
msgid "Show Clutter Options"
msgstr "Mostrar las opciones de Clutter"
-#: clutter/clutter-media.c:77
+#: ../clutter/clutter-media.c:77
msgid "URI"
msgstr "URI"
-#: clutter/clutter-media.c:78
+#: ../clutter/clutter-media.c:78
msgid "URI of a media file"
msgstr "URI de un archivo multimedia"
-#: clutter/clutter-media.c:91
+#: ../clutter/clutter-media.c:91
msgid "Playing"
msgstr "Reproduciendo"
-#: clutter/clutter-media.c:92
+#: ../clutter/clutter-media.c:92
msgid "Whether the actor is playing"
msgstr "Indica si el actor se está reproduciendo"
-#: clutter/clutter-media.c:106
+#: ../clutter/clutter-media.c:106
msgid "Progress"
msgstr "Progreso"
-#: clutter/clutter-media.c:107
+#: ../clutter/clutter-media.c:107
msgid "Current progress of the playback"
msgstr "Progreso actual de la reproducción"
-#: clutter/clutter-media.c:120
+#: ../clutter/clutter-media.c:120
msgid "Subtitle URI"
msgstr "URI del subtítulo"
-#: clutter/clutter-media.c:121
+#: ../clutter/clutter-media.c:121
msgid "URI of a subtitle file"
msgstr "URI de un archivo de subtítulos"
-#: clutter/clutter-media.c:136
+#: ../clutter/clutter-media.c:136
msgid "Subtitle Font Name"
msgstr "Nombre de la tipografía de los subtítulos"
-#: clutter/clutter-media.c:137
+#: ../clutter/clutter-media.c:137
msgid "The font used to display subtitles"
msgstr "La tipografía usada para mostrar subtítulos"
-#: clutter/clutter-media.c:151
+#: ../clutter/clutter-media.c:151
msgid "Audio Volume"
msgstr "Volumen del sonido"
-#: clutter/clutter-media.c:152
+#: ../clutter/clutter-media.c:152
msgid "The volume of the audio"
msgstr "El volumen del sonido"
-#: clutter/clutter-media.c:165
+#: ../clutter/clutter-media.c:165
msgid "Can Seek"
msgstr "Puede buscar"
-#: clutter/clutter-media.c:166
+#: ../clutter/clutter-media.c:166
msgid "Whether the current stream is seekable"
msgstr "Indica si flujo actual se puede buscar"
-#: clutter/clutter-media.c:180
+#: ../clutter/clutter-media.c:180
msgid "Buffer Fill"
msgstr "Llenado del búfer"
-#: clutter/clutter-media.c:181
+#: ../clutter/clutter-media.c:181
msgid "The fill level of the buffer"
msgstr "El nivel de llenado del búfer"
-#: clutter/clutter-media.c:195
+#: ../clutter/clutter-media.c:195
msgid "The duration of the stream, in seconds"
msgstr "La duración del flujo, en segundos"
-#: clutter/clutter-path-constraint.c:213
+#: ../clutter/clutter-path-constraint.c:213
msgid "The path used to constrain an actor"
msgstr "La ruta usada para restringir a un actor"
-#: clutter/clutter-path-constraint.c:227
+#: ../clutter/clutter-path-constraint.c:227
msgid "The offset along the path, between -1.0 and 2.0"
msgstr "El desplazamiento sobre la ruta, entre -1.0 y 2.0"
-#: clutter/clutter-rectangle.c:268
+#: ../clutter/clutter-rectangle.c:268
msgid "The color of the rectangle"
msgstr "El color del rectángulo"
-#: clutter/clutter-rectangle.c:281
+#: ../clutter/clutter-rectangle.c:281
msgid "Border Color"
msgstr "Color del borde"
-#: clutter/clutter-rectangle.c:282
+#: ../clutter/clutter-rectangle.c:282
msgid "The color of the border of the rectangle"
msgstr "El color del borde del rectángulo"
-#: clutter/clutter-rectangle.c:297
+#: ../clutter/clutter-rectangle.c:297
msgid "Border Width"
msgstr "Anchura del borde"
-#: clutter/clutter-rectangle.c:298
+#: ../clutter/clutter-rectangle.c:298
msgid "The width of the border of the rectangle"
msgstr "La anchura del borde del rectángulo"
-#: clutter/clutter-rectangle.c:312
+#: ../clutter/clutter-rectangle.c:312
msgid "Has Border"
msgstr "Tiene borde"
-#: clutter/clutter-rectangle.c:313
+#: ../clutter/clutter-rectangle.c:313
msgid "Whether the rectangle should have a border"
msgstr "Indica si el rectángulo debe tener borde"
-#: clutter/clutter-script.c:434
+#: ../clutter/clutter-script.c:434
msgid "Filename Set"
msgstr "Conjunto de nombres de archivo"
-#: clutter/clutter-script.c:435
+#: ../clutter/clutter-script.c:435
msgid "Whether the :filename property is set"
msgstr "Indica si la propiedad «:filename» está establecida"
-#: clutter/clutter-script.c:449 clutter/clutter-texture.c:1081
+#: ../clutter/clutter-script.c:449 ../clutter/clutter-texture.c:1067
msgid "Filename"
msgstr "Nombre de archivo"
-#: clutter/clutter-script.c:450
+#: ../clutter/clutter-script.c:450
msgid "The path of the currently parsed file"
msgstr "La ruta del archivo analizado actualmente"
-#: clutter/clutter-settings.c:414
+#: ../clutter/clutter-settings.c:426
msgid "Double Click Time"
msgstr "Tiempo de la doble pulsación"
-#: clutter/clutter-settings.c:415
+#: ../clutter/clutter-settings.c:427
msgid "The time between clicks necessary to detect a multiple click"
msgstr ""
"El tiempo necesario entre pulsaciones para detectar una pulsación múltiple"
-#: clutter/clutter-settings.c:430
+#: ../clutter/clutter-settings.c:442
msgid "Double Click Distance"
msgstr "Distancia de la doble pulsación"
-#: clutter/clutter-settings.c:431
+#: ../clutter/clutter-settings.c:443
msgid "The distance between clicks necessary to detect a multiple click"
msgstr ""
"La distancia necesaria entre pulsaciones para detectar una pulsación múltiple"
-#: clutter/clutter-settings.c:446
+#: ../clutter/clutter-settings.c:458
msgid "Drag Threshold"
msgstr "Umbral de arrastre"
-#: clutter/clutter-settings.c:447
+#: ../clutter/clutter-settings.c:459
msgid "The distance the cursor should travel before starting to drag"
msgstr "La distancia que el cursor debe recorrer antes de empezar a arrastrar"
-#: clutter/clutter-settings.c:462 clutter/clutter-text.c:2939
+#: ../clutter/clutter-settings.c:474 ../clutter/clutter-text.c:2995
msgid "Font Name"
msgstr "Nombre de la tipografía"
-#: clutter/clutter-settings.c:463
+#: ../clutter/clutter-settings.c:475
msgid ""
"The description of the default font, as one that could be parsed by Pango"
msgstr ""
"La descripción de la tipografía predeterminada, como una que Pango pueda "
"analizar"
-#: clutter/clutter-settings.c:478
+#: ../clutter/clutter-settings.c:490
msgid "Font Antialias"
msgstr "Alisado de la tipografía"
-#: clutter/clutter-settings.c:479
+#: ../clutter/clutter-settings.c:491
msgid ""
"Whether to use antialiasing (1 to enable, 0 to disable, and -1 to use the "
"default)"
@@ -1401,517 +1421,526 @@ msgstr ""
"Indica si se debe usar alisado (1 para activar, 0 para desactivar y -1 para "
"usar la opción predeterminada)"
-#: clutter/clutter-settings.c:495
+#: ../clutter/clutter-settings.c:507
msgid "Font DPI"
msgstr "PPP de la tipografía"
-#: clutter/clutter-settings.c:496
+#: ../clutter/clutter-settings.c:508
msgid ""
"The resolution of the font, in 1024 * dots/inch, or -1 to use the default"
msgstr ""
"La resolución de la tipografía, en 1024 * puntos/pulgada, o -1 para usar la "
"predeterminada"
-#: clutter/clutter-settings.c:512
+#: ../clutter/clutter-settings.c:524
msgid "Font Hinting"
msgstr "Contorno de la tipografía"
-#: clutter/clutter-settings.c:513
+#: ../clutter/clutter-settings.c:525
msgid ""
"Whether to use hinting (1 to enable, 0 to disable and -1 to use the default)"
msgstr ""
"Indica si se debe usar contorno (1 para activar, 0 para desactivar y -1 para "
"usar la opción predeterminada)"
-#: clutter/clutter-settings.c:534
+#: ../clutter/clutter-settings.c:546
msgid "Font Hint Style"
msgstr "Estilo de contorno de la tipografía"
-#: clutter/clutter-settings.c:535
+#: ../clutter/clutter-settings.c:547
msgid "The style of hinting (hintnone, hintslight, hintmedium, hintfull)"
msgstr ""
"El estilo del contorno («hintnone», «hintslight», «hintmedium», «hintfull»)"
-#: clutter/clutter-settings.c:556
+#: ../clutter/clutter-settings.c:568
msgid "Font Subpixel Order"
msgstr "Orden de tipografías del subpíxel"
-#: clutter/clutter-settings.c:557
+#: ../clutter/clutter-settings.c:569
msgid "The type of subpixel antialiasing (none, rgb, bgr, vrgb, vbgr)"
-msgstr ""
-"El tipo de suavizado del subpíxel («none», «rgb», «bgr», «vrgb», «vbgr»)"
+msgstr "El tipo de suavizado del subpíxel («none», «rgb», «bgr», «vrgb», «vbgr»)"
-#: clutter/clutter-settings.c:574
+#: ../clutter/clutter-settings.c:586
msgid "The minimum duration for a long press gesture to be recognized"
msgstr "La duración mínima de una pulsación larga para reconocer el gesto"
-#: clutter/clutter-settings.c:581
+#: ../clutter/clutter-settings.c:593
msgid "Fontconfig configuration timestamp"
msgstr "Configuración de la marca de tiempo de fontconfig"
-#: clutter/clutter-settings.c:582
+#: ../clutter/clutter-settings.c:594
msgid "Timestamp of the current fontconfig configuration"
msgstr "Marca de tiempo de la configuración actual de fontconfig"
-#: clutter/clutter-shader.c:255
+#: ../clutter/clutter-settings.c:611
+#, fuzzy
+#| msgid "Password Character"
+msgid "Password Hint Time"
+msgstr "Carácter de la contraseña"
+
+#: ../clutter/clutter-settings.c:612
+msgid "How long to show the last input character in hidden entries"
+msgstr "Cuánto tiempo mostrar el último carácter en entradas ocultas"
+
+#: ../clutter/clutter-shader.c:255
msgid "Vertex Source"
msgstr "Origen del vértice"
-#: clutter/clutter-shader.c:256
+#: ../clutter/clutter-shader.c:256
msgid "Source of vertex shader"
msgstr "Origen del sombreado del vértice"
-#: clutter/clutter-shader.c:272
+#: ../clutter/clutter-shader.c:272
msgid "Fragment Source"
msgstr "Origen del fragmento"
-#: clutter/clutter-shader.c:273
+#: ../clutter/clutter-shader.c:273
msgid "Source of fragment shader"
msgstr "Origen del sombreado del fragmento"
-#: clutter/clutter-shader.c:290
+#: ../clutter/clutter-shader.c:290
msgid "Compiled"
msgstr "Compilado"
-#: clutter/clutter-shader.c:291
+#: ../clutter/clutter-shader.c:291
msgid "Whether the shader is compiled and linked"
msgstr "Indica si el sombreado está compilado y enlazado"
-#: clutter/clutter-shader.c:308
+#: ../clutter/clutter-shader.c:308
msgid "Whether the shader is enabled"
msgstr "Indica si el sombreado está activado"
-#: clutter/clutter-shader.c:519
+#: ../clutter/clutter-shader.c:519
#, c-format
msgid "%s compilation failed: %s"
msgstr "falló la compilación de %s: %s"
-#: clutter/clutter-shader.c:520
+#: ../clutter/clutter-shader.c:520
msgid "Vertex shader"
msgstr "Sombreado del vértice"
-#: clutter/clutter-shader.c:521
+#: ../clutter/clutter-shader.c:521
msgid "Fragment shader"
msgstr "Sombreado del fragmento"
-#: clutter/clutter-shader-effect.c:415
+#: ../clutter/clutter-shader-effect.c:482
msgid "Shader Type"
msgstr "Tipo de sombreado"
-#: clutter/clutter-shader-effect.c:416
+#: ../clutter/clutter-shader-effect.c:483
msgid "The type of shader used"
msgstr "El tipo de sombreado usado"
-#: clutter/clutter-snap-constraint.c:322
+#: ../clutter/clutter-snap-constraint.c:322
msgid "The source of the constraint"
msgstr "La fuente de la restricción"
-#: clutter/clutter-snap-constraint.c:335
+#: ../clutter/clutter-snap-constraint.c:335
msgid "From Edge"
msgstr "Desde el borde"
-#: clutter/clutter-snap-constraint.c:336
+#: ../clutter/clutter-snap-constraint.c:336
msgid "The edge of the actor that should be snapped"
msgstr "El borde del actor que debería romperse"
-#: clutter/clutter-snap-constraint.c:350
+#: ../clutter/clutter-snap-constraint.c:350
msgid "To Edge"
msgstr "Al borde"
-#: clutter/clutter-snap-constraint.c:351
+#: ../clutter/clutter-snap-constraint.c:351
msgid "The edge of the source that should be snapped"
msgstr "El borde de la fuente que se debe romper"
-#: clutter/clutter-snap-constraint.c:367
+#: ../clutter/clutter-snap-constraint.c:367
msgid "The offset in pixels to apply to the constraint"
msgstr "El desplazamiento en píxeles que aplicar a la restricción"
-#: clutter/clutter-stage.c:1707
+#: ../clutter/clutter-stage.c:1732
msgid "Fullscreen Set"
msgstr "Conjunto a pantalla completa"
-#: clutter/clutter-stage.c:1708
+#: ../clutter/clutter-stage.c:1733
msgid "Whether the main stage is fullscreen"
msgstr "Indica si el escenario principal está a pantalla completa"
-#: clutter/clutter-stage.c:1724
+#: ../clutter/clutter-stage.c:1749
msgid "Offscreen"
msgstr "Fuera de la pantalla"
-#: clutter/clutter-stage.c:1725
+#: ../clutter/clutter-stage.c:1750
msgid "Whether the main stage should be rendered offscreen"
msgstr ""
"Indica si el escenario principal se debe renderizar fuera de la pantalla"
-#: clutter/clutter-stage.c:1737 clutter/clutter-text.c:3052
+#: ../clutter/clutter-stage.c:1762 ../clutter/clutter-text.c:3108
msgid "Cursor Visible"
msgstr "Cursor visible"
-#: clutter/clutter-stage.c:1738
+#: ../clutter/clutter-stage.c:1763
msgid "Whether the mouse pointer is visible on the main stage"
msgstr "Indica si el puntero del ratón es visible en el escenario principal"
-#: clutter/clutter-stage.c:1752
+#: ../clutter/clutter-stage.c:1777
msgid "User Resizable"
msgstr "Redimensionable por el usuario"
-#: clutter/clutter-stage.c:1753
+#: ../clutter/clutter-stage.c:1778
msgid "Whether the stage is able to be resized via user interaction"
msgstr ""
"Indica si el escenario se puede redimensionar mediante interacción del "
"usuario"
-#: clutter/clutter-stage.c:1766
+#: ../clutter/clutter-stage.c:1791
msgid "The color of the stage"
msgstr "El color del escenario"
-#: clutter/clutter-stage.c:1780
+#: ../clutter/clutter-stage.c:1805
msgid "Perspective"
msgstr "Perspectiva"
-#: clutter/clutter-stage.c:1781
+#: ../clutter/clutter-stage.c:1806
msgid "Perspective projection parameters"
msgstr "Parámetros de proyección de perspectiva"
-#: clutter/clutter-stage.c:1796
+#: ../clutter/clutter-stage.c:1821
msgid "Title"
msgstr "Título"
-#: clutter/clutter-stage.c:1797
+#: ../clutter/clutter-stage.c:1822
msgid "Stage Title"
msgstr "Título del escenario"
-#: clutter/clutter-stage.c:1812
+#: ../clutter/clutter-stage.c:1837
msgid "Use Fog"
msgstr "Usar niebla"
-#: clutter/clutter-stage.c:1813
+#: ../clutter/clutter-stage.c:1838
msgid "Whether to enable depth cueing"
msgstr "Indica si activar el indicador de profundidad"
-#: clutter/clutter-stage.c:1827
+#: ../clutter/clutter-stage.c:1852
msgid "Fog"
msgstr "Niebla"
-#: clutter/clutter-stage.c:1828
+#: ../clutter/clutter-stage.c:1853
msgid "Settings for the depth cueing"
msgstr "Configuración para el indicador de profundidad"
-#: clutter/clutter-stage.c:1844
+#: ../clutter/clutter-stage.c:1869
msgid "Use Alpha"
msgstr "Usar alfa"
-#: clutter/clutter-stage.c:1845
+#: ../clutter/clutter-stage.c:1870
msgid "Whether to honour the alpha component of the stage color"
msgstr "Indica si se usa la componente alfa del color del escenario"
-#: clutter/clutter-stage.c:1861
+#: ../clutter/clutter-stage.c:1886
msgid "Key Focus"
msgstr "Foco de la tecla"
-#: clutter/clutter-stage.c:1862
+#: ../clutter/clutter-stage.c:1887
msgid "The currently key focused actor"
msgstr "El actor que actualmente tiene el foco"
-#: clutter/clutter-stage.c:1878
+#: ../clutter/clutter-stage.c:1903
msgid "No Clear Hint"
msgstr "No limpiar el contorno"
-#: clutter/clutter-stage.c:1879
+#: ../clutter/clutter-stage.c:1904
msgid "Whether the stage should clear its contents"
msgstr "Indica si el escenario debe limpiar su contenido"
-#: clutter/clutter-stage.c:1892
+#: ../clutter/clutter-stage.c:1917
msgid "Accept Focus"
msgstr "Aceptar foco"
-#: clutter/clutter-stage.c:1893
+#: ../clutter/clutter-stage.c:1918
msgid "Whether the stage should accept focus on show"
msgstr "Indica si el escenario debe aceptar el foco al mostrarse"
-#: clutter/clutter-state.c:1472
+#: ../clutter/clutter-state.c:1472
msgid "State"
msgstr "Estado"
-#: clutter/clutter-state.c:1473
+#: ../clutter/clutter-state.c:1473
msgid "Currently set state, (transition to this state might not be complete)"
msgstr ""
"Estado establecido actualmente, (la transición a este estado puede no estar "
"completa)"
-#: clutter/clutter-state.c:1487
+#: ../clutter/clutter-state.c:1487
msgid "Default transition duration"
msgstr "Duración de la transición predeterminada"
-#: clutter/clutter-table-layout.c:585
+#: ../clutter/clutter-table-layout.c:585
msgid "Column Number"
msgstr "Número de columna"
-#: clutter/clutter-table-layout.c:586
+#: ../clutter/clutter-table-layout.c:586
msgid "The column the widget resides in"
msgstr "La columna en la que está en widget"
-#: clutter/clutter-table-layout.c:593
+#: ../clutter/clutter-table-layout.c:593
msgid "Row Number"
msgstr "Número de fila"
-#: clutter/clutter-table-layout.c:594
+#: ../clutter/clutter-table-layout.c:594
msgid "The row the widget resides in"
msgstr "La fila en la que está en widget"
-#: clutter/clutter-table-layout.c:601
+#: ../clutter/clutter-table-layout.c:601
msgid "Column Span"
msgstr "Espaciado entre columnas"
-#: clutter/clutter-table-layout.c:602
+#: ../clutter/clutter-table-layout.c:602
msgid "The number of columns the widget should span"
msgstr "El número de columnas que el widget debe expandirse"
-#: clutter/clutter-table-layout.c:609
+#: ../clutter/clutter-table-layout.c:609
msgid "Row Span"
msgstr "Espaciado entre filas"
-#: clutter/clutter-table-layout.c:610
+#: ../clutter/clutter-table-layout.c:610
msgid "The number of rows the widget should span"
msgstr "El número de filas que el widget debe expandirse"
-#: clutter/clutter-table-layout.c:617
+#: ../clutter/clutter-table-layout.c:617
msgid "Horizontal Expand"
msgstr "Expansión horizontal"
-#: clutter/clutter-table-layout.c:618
+#: ../clutter/clutter-table-layout.c:618
msgid "Allocate extra space for the child in horizontal axis"
msgstr "Asignar espacio adicional para el hijo en el eje horizontal"
-#: clutter/clutter-table-layout.c:624
+#: ../clutter/clutter-table-layout.c:624
msgid "Vertical Expand"
msgstr "Expansión vertical"
-#: clutter/clutter-table-layout.c:625
+#: ../clutter/clutter-table-layout.c:625
msgid "Allocate extra space for the child in vertical axis"
msgstr "Asignar espacio adicional para el hijo en el eje vertical"
-#: clutter/clutter-table-layout.c:1714
+#: ../clutter/clutter-table-layout.c:1714
msgid "Spacing between columns"
msgstr "Espaciado entre columnas"
-#: clutter/clutter-table-layout.c:1728
+#: ../clutter/clutter-table-layout.c:1728
msgid "Spacing between rows"
msgstr "Espaciado entre filas"
-#: clutter/clutter-text.c:2940
+#: ../clutter/clutter-text.c:2996
msgid "The font to be used by the text"
msgstr "La tipografía usada para el texto"
-#: clutter/clutter-text.c:2957
+#: ../clutter/clutter-text.c:3013
msgid "Font Description"
msgstr "Descripción de la tipografía"
-#: clutter/clutter-text.c:2958
+#: ../clutter/clutter-text.c:3014
msgid "The font description to be used"
msgstr "La descripción de la tipografía que usar"
-#: clutter/clutter-text.c:2974
+#: ../clutter/clutter-text.c:3030
msgid "Text"
msgstr "Texto"
-#: clutter/clutter-text.c:2975
+#: ../clutter/clutter-text.c:3031
msgid "The text to render"
msgstr "El texto que renderizar"
-#: clutter/clutter-text.c:2989
+#: ../clutter/clutter-text.c:3045
msgid "Font Color"
msgstr "Color de la tipografía"
-#: clutter/clutter-text.c:2990
+#: ../clutter/clutter-text.c:3046
msgid "Color of the font used by the text"
msgstr "Color de la tipografía usada por el texto"
-#: clutter/clutter-text.c:3004
+#: ../clutter/clutter-text.c:3060
msgid "Editable"
msgstr "Editable"
-#: clutter/clutter-text.c:3005
+#: ../clutter/clutter-text.c:3061
msgid "Whether the text is editable"
msgstr "Indica si el texto es editable"
-#: clutter/clutter-text.c:3020
+#: ../clutter/clutter-text.c:3076
msgid "Selectable"
msgstr "Seleccionable"
-#: clutter/clutter-text.c:3021
+#: ../clutter/clutter-text.c:3077
msgid "Whether the text is selectable"
msgstr "Indica si el texto es seleccionable"
-#: clutter/clutter-text.c:3035
+#: ../clutter/clutter-text.c:3091
msgid "Activatable"
msgstr "Activable"
-#: clutter/clutter-text.c:3036
+#: ../clutter/clutter-text.c:3092
msgid "Whether pressing return causes the activate signal to be emitted"
msgstr "Indica si al pulsar «Intro» hace que se emita la señal de activación"
-#: clutter/clutter-text.c:3053
+#: ../clutter/clutter-text.c:3109
msgid "Whether the input cursor is visible"
msgstr "Indica si el cursor de entrada es visible"
-#: clutter/clutter-text.c:3067 clutter/clutter-text.c:3068
+#: ../clutter/clutter-text.c:3123 ../clutter/clutter-text.c:3124
msgid "Cursor Color"
msgstr "Color del cursor"
-#: clutter/clutter-text.c:3082
+#: ../clutter/clutter-text.c:3138
msgid "Cursor Color Set"
msgstr "Conjunto de colores del cursor"
-#: clutter/clutter-text.c:3083
+#: ../clutter/clutter-text.c:3139
msgid "Whether the cursor color has been set"
msgstr "Indica si se ha establecido el color del cursor"
-#: clutter/clutter-text.c:3098
+#: ../clutter/clutter-text.c:3154
msgid "Cursor Size"
msgstr "Tamaño del cursor"
-#: clutter/clutter-text.c:3099
+#: ../clutter/clutter-text.c:3155
msgid "The width of the cursor, in pixels"
msgstr "La anchura del cursor, en píxeles"
-#: clutter/clutter-text.c:3113
+#: ../clutter/clutter-text.c:3169
msgid "Cursor Position"
msgstr "Posición del cursor"
-#: clutter/clutter-text.c:3114
+#: ../clutter/clutter-text.c:3170
msgid "The cursor position"
msgstr "La posición del cursor"
-#: clutter/clutter-text.c:3129
+#: ../clutter/clutter-text.c:3185
msgid "Selection-bound"
msgstr "Destino de la selección"
-#: clutter/clutter-text.c:3130
+#: ../clutter/clutter-text.c:3186
msgid "The cursor position of the other end of the selection"
msgstr "La posición del cursor del otro final de la selección"
-#: clutter/clutter-text.c:3145 clutter/clutter-text.c:3146
+#: ../clutter/clutter-text.c:3201 ../clutter/clutter-text.c:3202
msgid "Selection Color"
msgstr "Selección de color"
-#: clutter/clutter-text.c:3160
+#: ../clutter/clutter-text.c:3216
msgid "Selection Color Set"
msgstr "Conjunto de selección de colores"
-#: clutter/clutter-text.c:3161
+#: ../clutter/clutter-text.c:3217
msgid "Whether the selection color has been set"
msgstr "Indica si se ha establecido el color de la selección"
-#: clutter/clutter-text.c:3176
+#: ../clutter/clutter-text.c:3232
msgid "Attributes"
msgstr "Atributos"
-#: clutter/clutter-text.c:3177
+#: ../clutter/clutter-text.c:3233
msgid "A list of style attributes to apply to the contents of the actor"
msgstr ""
"Una lista de atributos de estilo que aplicar a los contenidos del actor"
-#: clutter/clutter-text.c:3199
+#: ../clutter/clutter-text.c:3255
msgid "Use markup"
msgstr "Usar marcado"
-#: clutter/clutter-text.c:3200
+#: ../clutter/clutter-text.c:3256
msgid "Whether or not the text includes Pango markup"
msgstr "Indica si el texto incluye o no el marcado de Pango"
-#: clutter/clutter-text.c:3216
+#: ../clutter/clutter-text.c:3272
msgid "Line wrap"
msgstr "Ajuste de línea"
-#: clutter/clutter-text.c:3217
+#: ../clutter/clutter-text.c:3273
msgid "If set, wrap the lines if the text becomes too wide"
msgstr ""
"Si está definido, ajustar las líneas si el texto se vuelve demasiado ancho"
-#: clutter/clutter-text.c:3232
+#: ../clutter/clutter-text.c:3288
msgid "Line wrap mode"
msgstr "Modo de ajuste de línea"
-#: clutter/clutter-text.c:3233
+#: ../clutter/clutter-text.c:3289
msgid "Control how line-wrapping is done"
msgstr "Controlar cómo se hace el ajuste de línea"
-#: clutter/clutter-text.c:3248
+#: ../clutter/clutter-text.c:3304
msgid "Ellipsize"
msgstr "Crear elipse"
-#: clutter/clutter-text.c:3249
+#: ../clutter/clutter-text.c:3305
msgid "The preferred place to ellipsize the string"
msgstr "El lugar preferido para crear la cadena elíptica"
-#: clutter/clutter-text.c:3265
+#: ../clutter/clutter-text.c:3321
msgid "Line Alignment"
msgstr "Alineación de línea"
-#: clutter/clutter-text.c:3266
+#: ../clutter/clutter-text.c:3322
msgid "The preferred alignment for the string, for multi-line text"
msgstr "La alineación preferida para la cadena, para texto multilínea"
-#: clutter/clutter-text.c:3282
+#: ../clutter/clutter-text.c:3338
msgid "Justify"
msgstr "Justificar"
-#: clutter/clutter-text.c:3283
+#: ../clutter/clutter-text.c:3339
msgid "Whether the text should be justified"
msgstr "Indica si el texto se debe justificar"
-#: clutter/clutter-text.c:3298
+#: ../clutter/clutter-text.c:3354
msgid "Password Character"
msgstr "Carácter de la contraseña"
-#: clutter/clutter-text.c:3299
+#: ../clutter/clutter-text.c:3355
msgid "If non-zero, use this character to display the actor's contents"
msgstr "Si no es cero, usar este carácter para mostrar el contenido del actor"
-#: clutter/clutter-text.c:3313
+#: ../clutter/clutter-text.c:3369
msgid "Max Length"
msgstr "Longitud máxima"
-#: clutter/clutter-text.c:3314
+#: ../clutter/clutter-text.c:3370
msgid "Maximum length of the text inside the actor"
msgstr "Longitud máxima del texto dentro del actor"
-#: clutter/clutter-text.c:3337
+#: ../clutter/clutter-text.c:3393
msgid "Single Line Mode"
msgstr "Modo de línea única"
-#: clutter/clutter-text.c:3338
+#: ../clutter/clutter-text.c:3394
msgid "Whether the text should be a single line"
msgstr "Indica si el texto debe estar en una única línea"
-#: clutter/clutter-text.c:3352 clutter/clutter-text.c:3353
+#: ../clutter/clutter-text.c:3408 ../clutter/clutter-text.c:3409
msgid "Selected Text Color"
msgstr "Color del texto seleccionado"
-#: clutter/clutter-text.c:3367
+#: ../clutter/clutter-text.c:3423
msgid "Selected Text Color Set"
msgstr "Conjunto de colores del texto seleccionado"
-#: clutter/clutter-text.c:3368
+#: ../clutter/clutter-text.c:3424
msgid "Whether the selected text color has been set"
msgstr "Indica si se ha establecido el color del texto seleccionado"
-#: clutter/clutter-texture.c:995
+#: ../clutter/clutter-texture.c:981
msgid "Sync size of actor"
msgstr "Sincronizar tamaño del actor"
-#: clutter/clutter-texture.c:996
+#: ../clutter/clutter-texture.c:982
msgid "Auto sync size of actor to underlying pixbuf dimensions"
msgstr ""
-"Sincronizar automáticamente el tamaño del actor a las dimensiones de "
-"«pixbuf» subyacente"
+"Sincronizar automáticamente el tamaño del actor a las dimensiones de «pixbuf» "
+"subyacente"
-#: clutter/clutter-texture.c:1003
+#: ../clutter/clutter-texture.c:989
msgid "Disable Slicing"
msgstr "Desactivar troceado"
-#: clutter/clutter-texture.c:1004
+#: ../clutter/clutter-texture.c:990
msgid ""
"Forces the underlying texture to be singular and not made of smaller space "
"saving individual textures"
@@ -1919,71 +1948,71 @@ msgstr ""
"Fuerza a la textura subyacente a ser singular y a que no esté hecha de un "
"espacio menor guardando texturas individuales"
-#: clutter/clutter-texture.c:1013
+#: ../clutter/clutter-texture.c:999
msgid "Tile Waste"
msgstr "Cuadrado sobrante"
-#: clutter/clutter-texture.c:1014
+#: ../clutter/clutter-texture.c:1000
msgid "Maximum waste area of a sliced texture"
msgstr "Área máxima sobrante de una textura troceada"
-#: clutter/clutter-texture.c:1022
+#: ../clutter/clutter-texture.c:1008
msgid "Horizontal repeat"
msgstr "Repetición horizontal"
-#: clutter/clutter-texture.c:1023
+#: ../clutter/clutter-texture.c:1009
msgid "Repeat the contents rather than scaling them horizontally"
msgstr "Repite el contenido en vez de escalarlo horizontalmente"
-#: clutter/clutter-texture.c:1030
+#: ../clutter/clutter-texture.c:1016
msgid "Vertical repeat"
msgstr "Repetición vertical"
-#: clutter/clutter-texture.c:1031
+#: ../clutter/clutter-texture.c:1017
msgid "Repeat the contents rather than scaling them vertically"
msgstr "Repite el contenido en vez de escalarlo verticalmente"
-#: clutter/clutter-texture.c:1038
+#: ../clutter/clutter-texture.c:1024
msgid "Filter Quality"
msgstr "Calidad del filtro"
-#: clutter/clutter-texture.c:1039
+#: ../clutter/clutter-texture.c:1025
msgid "Rendering quality used when drawing the texture"
msgstr "Calidad de renderizado usada al dibujar la textura"
-#: clutter/clutter-texture.c:1047
+#: ../clutter/clutter-texture.c:1033
msgid "Pixel Format"
msgstr "Formato del píxel"
-#: clutter/clutter-texture.c:1048
+#: ../clutter/clutter-texture.c:1034
msgid "The Cogl pixel format to use"
msgstr "El formato de píxel Cogl que usar"
-#: clutter/clutter-texture.c:1056
+#: ../clutter/clutter-texture.c:1042
msgid "Cogl Texture"
msgstr "Textura de Cogl"
-#: clutter/clutter-texture.c:1057
+#: ../clutter/clutter-texture.c:1043
msgid "The underlying Cogl texture handle used to draw this actor"
msgstr "La textura Cogl subyacente usada para dibujar este actor"
-#: clutter/clutter-texture.c:1064
+#: ../clutter/clutter-texture.c:1050
msgid "Cogl Material"
msgstr "Material de Cogl"
-#: clutter/clutter-texture.c:1065
+#: ../clutter/clutter-texture.c:1051
msgid "The underlying Cogl material handle used to draw this actor"
msgstr "El material de Cogl subyacente usado para dibujar este actor"
-#: clutter/clutter-texture.c:1082
+#: ../clutter/clutter-texture.c:1068
msgid "The path of the file containing the image data"
msgstr "La ruta del archivo que contiene los datos de la imagen"
-#: clutter/clutter-texture.c:1089
+#: ../clutter/clutter-texture.c:1075
msgid "Keep Aspect Ratio"
msgstr "Mantener proporción de aspecto"
-#: clutter/clutter-texture.c:1090
+#: ../clutter/clutter-texture.c:1076
msgid ""
"Keep the aspect ratio of the texture when requesting the preferred width or "
"height"
@@ -1991,22 +2020,22 @@ msgstr ""
"Mantener la relación de aspecto de la textura al solicitar la anchura o la "
"altura preferidas"
-#: clutter/clutter-texture.c:1116
+#: ../clutter/clutter-texture.c:1102
msgid "Load asynchronously"
msgstr "Cargar de forma asíncrona"
-#: clutter/clutter-texture.c:1117
+#: ../clutter/clutter-texture.c:1103
msgid ""
"Load files inside a thread to avoid blocking when loading images from disk"
msgstr ""
"Cargar archivos en un hilo para evitar bloqueos al cargar imágenes desde el "
"disco"
-#: clutter/clutter-texture.c:1133
+#: ../clutter/clutter-texture.c:1119
msgid "Load data asynchronously"
msgstr "Cargar datos de forma asíncrona"
-#: clutter/clutter-texture.c:1134
+#: ../clutter/clutter-texture.c:1120
msgid ""
"Decode image data files inside a thread to reduce blocking when loading "
"images from disk"
@@ -2014,190 +2043,193 @@ msgstr ""
"Decodificar los archivos de datos de imágenes en un hilo para reducir los "
"bloqueos al cargar imágenes desde el disco"
-#: clutter/clutter-texture.c:1158
+#: ../clutter/clutter-texture.c:1144
msgid "Pick With Alpha"
msgstr "Seleccionar con alfa"
-#: clutter/clutter-texture.c:1159
+#: ../clutter/clutter-texture.c:1145
msgid "Shape actor with alpha channel when picking"
msgstr "Dar forma al actor con canal alfa al seleccionarlo"
-#: clutter/clutter-texture.c:1557 clutter/clutter-texture.c:1967
-#: clutter/clutter-texture.c:2062 clutter/clutter-texture.c:2343
+#: ../clutter/clutter-texture.c:1543 ../clutter/clutter-texture.c:1926
+#: ../clutter/clutter-texture.c:2020 ../clutter/clutter-texture.c:2301
+#, c-format
msgid "Failed to load the image data"
msgstr "Fallo al cargar los datos de la imagen"
-#: clutter/clutter-texture.c:1703
+#: ../clutter/clutter-texture.c:1689
+#, c-format
msgid "YUV textures are not supported"
msgstr "Las texturas YUV no están soportadas"
-#: clutter/clutter-texture.c:1712
+#: ../clutter/clutter-texture.c:1698
+#, c-format
msgid "YUV2 textues are not supported"
msgstr "Las texturas YUV2 no están soportadas"
-#: clutter/clutter-timeline.c:264
+#: ../clutter/clutter-timeline.c:264
msgid "Should the timeline automatically restart"
msgstr "Indica si la línea de tiempo se debe reiniciar automáticamente"
-#: clutter/clutter-timeline.c:278
+#: ../clutter/clutter-timeline.c:278
msgid "Delay"
msgstr "Retardo"
-#: clutter/clutter-timeline.c:279
+#: ../clutter/clutter-timeline.c:279
msgid "Delay before start"
msgstr "Retardo antes de empezar"
-#: clutter/clutter-timeline.c:295
+#: ../clutter/clutter-timeline.c:295
msgid "Duration of the timeline in milliseconds"
msgstr "Duración de la línea de tiempo, en milisegundos"
-#: clutter/clutter-timeline.c:311
+#: ../clutter/clutter-timeline.c:311
msgid "Direction of the timeline"
msgstr "Dirección de la línea de tiempo"
-#: clutter/clutter-timeline.c:326
+#: ../clutter/clutter-timeline.c:326
msgid "Auto Reverse"
msgstr "Invertir automáticamente"
-#: clutter/clutter-timeline.c:327
+#: ../clutter/clutter-timeline.c:327
msgid "Whether the direction should be reversed when reaching the end"
msgstr "Indica si se debe invertir la dirección al llegar al final"
-#: clutter/evdev/clutter-input-device-evdev.c:147
+#: ../clutter/evdev/clutter-input-device-evdev.c:147
msgid "sysfs Path"
msgstr "Ruta de sysfs"
-#: clutter/evdev/clutter-input-device-evdev.c:148
+#: ../clutter/evdev/clutter-input-device-evdev.c:148
msgid "Path of the device in sysfs"
msgstr "Ruta del dispositivo en sysfs"
-#: clutter/evdev/clutter-input-device-evdev.c:163
+#: ../clutter/evdev/clutter-input-device-evdev.c:163
msgid "Device Path"
msgstr "Ruta del dispositivo"
-#: clutter/evdev/clutter-input-device-evdev.c:164
+#: ../clutter/evdev/clutter-input-device-evdev.c:164
msgid "Path of the device node"
msgstr "Ruta al nodo del dispositivo"
-#: clutter/x11/clutter-backend-x11.c:483
+#: ../clutter/x11/clutter-backend-x11.c:483
msgid "X display to use"
msgstr "Pantalla X que usar"
-#: clutter/x11/clutter-backend-x11.c:489
+#: ../clutter/x11/clutter-backend-x11.c:489
msgid "X screen to use"
msgstr "Pantalla (screen) X que usar"
-#: clutter/x11/clutter-backend-x11.c:494
+#: ../clutter/x11/clutter-backend-x11.c:494
msgid "Make X calls synchronous"
msgstr "Hacer llamadas a X síncronas"
-#: clutter/x11/clutter-backend-x11.c:501
+#: ../clutter/x11/clutter-backend-x11.c:501
msgid "Enable XInput support"
msgstr "Activar soporte XInput"
-#: clutter/x11/clutter-keymap-x11.c:317
+#: ../clutter/x11/clutter-keymap-x11.c:317
msgid "The Clutter backend"
msgstr "El backend de Clutter"
-#: clutter/x11/clutter-x11-texture-pixmap.c:545
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:545
msgid "Pixmap"
msgstr "Mapa de píxeles"
-#: clutter/x11/clutter-x11-texture-pixmap.c:546
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:546
msgid "The X11 Pixmap to be bound"
msgstr "EL mapa de píxeles X11 que asociar"
-#: clutter/x11/clutter-x11-texture-pixmap.c:554
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:554
msgid "Pixmap width"
msgstr "Anchura del mapa de píxeles"
-#: clutter/x11/clutter-x11-texture-pixmap.c:555
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:555
msgid "The width of the pixmap bound to this texture"
msgstr "La anchura del mapa de píxeles asociado a esta textura"
-#: clutter/x11/clutter-x11-texture-pixmap.c:563
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:563
msgid "Pixmap height"
msgstr "Altura del mapa de píxeles"
-#: clutter/x11/clutter-x11-texture-pixmap.c:564
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:564
msgid "The height of the pixmap bound to this texture"
msgstr "La altura del mapa de píxeles asociado a esta textura"
-#: clutter/x11/clutter-x11-texture-pixmap.c:572
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:572
msgid "Pixmap Depth"
msgstr "Profundidad del mapa de píxeles"
-#: clutter/x11/clutter-x11-texture-pixmap.c:573
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:573
msgid "The depth (in number of bits) of the pixmap bound to this texture"
msgstr ""
"La profundidad (en número de bits) del mapa de píxeles asociado a esta "
"textura"
-#: clutter/x11/clutter-x11-texture-pixmap.c:581
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:581
msgid "Automatic Updates"
msgstr "Actualizaciones automáticas"
-#: clutter/x11/clutter-x11-texture-pixmap.c:582
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:582
msgid "If the texture should be kept in sync with any pixmap changes."
msgstr ""
"Indica si la textura se debe sincronizar con cualquier cambio en el mapa de "
"píxeles."
-#: clutter/x11/clutter-x11-texture-pixmap.c:590
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:590
msgid "Window"
msgstr "Ventana"
-#: clutter/x11/clutter-x11-texture-pixmap.c:591
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:591
msgid "The X11 Window to be bound"
msgstr "La ventana X11 que asociar"
-#: clutter/x11/clutter-x11-texture-pixmap.c:599
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:599
msgid "Window Redirect Automatic"
msgstr "Redirección automática de la ventana"
-#: clutter/x11/clutter-x11-texture-pixmap.c:600
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:600
msgid "If composite window redirects are set to Automatic (or Manual if false)"
msgstr ""
"Indica si la redirección de la ventana compuesta está establecida a "
"«Automática» (o «Manual» si es falso)"
-#: clutter/x11/clutter-x11-texture-pixmap.c:610
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:610
msgid "Window Mapped"
msgstr "Ventana mapeada"
-#: clutter/x11/clutter-x11-texture-pixmap.c:611
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:611
msgid "If window is mapped"
msgstr "Indica si la ventana está mapeada"
-#: clutter/x11/clutter-x11-texture-pixmap.c:620
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:620
msgid "Destroyed"
msgstr "Destruida"
-#: clutter/x11/clutter-x11-texture-pixmap.c:621
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:621
msgid "If window has been destroyed"
msgstr "Indica si se ha destruido la ventana"
-#: clutter/x11/clutter-x11-texture-pixmap.c:629
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:629
msgid "Window X"
msgstr "Ventana X"
-#: clutter/x11/clutter-x11-texture-pixmap.c:630
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:630
msgid "X position of window on screen according to X11"
msgstr "Posición X de la ventana en la pantalla, de acuerdo con X11"
-#: clutter/x11/clutter-x11-texture-pixmap.c:638
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:638
msgid "Window Y"
msgstr "Ventana Y"
-#: clutter/x11/clutter-x11-texture-pixmap.c:639
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:639
msgid "Y position of window on screen according to X11"
msgstr "Posición Y de la ventana en la pantalla, de acuerdo con X11"
-#: clutter/x11/clutter-x11-texture-pixmap.c:646
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:646
msgid "Window Override Redirect"
msgstr "Omitir redirección de la ventana"
-#: clutter/x11/clutter-x11-texture-pixmap.c:647
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:647
msgid "If this is an override-redirect window"
msgstr "Indica si esta es una ventana que omite la redirección"
diff --git a/po/lt.po b/po/lt.po
index 8cf260bfb..406f6a79d 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -2,2171 +2,2210 @@
# Copyright (C) 2011 clutter's COPYRIGHT HOLDER
# This file is distributed under the same license as the clutter package.
# Aurimas Černius , 2011.
+# Algimantas Margevičius , 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: clutter master\n"
-"Report-Msgid-Bugs-To: http://bugzilla.clutter-project.org/enter_bug.cgi?"
-"product=clutter\n"
-"POT-Creation-Date: 2011-09-12 13:51+0100\n"
-"PO-Revision-Date: 2011-09-14 20:07+0300\n"
+"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=clutter&keywords=I18N+L10N&component=general\n"
+"POT-Creation-Date: 2011-10-07 16:00+0000\n"
+"PO-Revision-Date: 2011-10-09 00:53+0300\n"
"Last-Translator: Aurimas Černius \n"
-"Language-Team: Lithuanian \n"
-"Language: lt\n"
+"Language-Team: Lietuvių <>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
-"%100<10 || n%100>=20) ? 1 : 2);\n"
+"Language: lt\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
-#: clutter/clutter-actor.c:3852
+#: ../clutter/clutter-actor.c:3875
msgid "X coordinate"
msgstr "X koordinatė"
-#: clutter/clutter-actor.c:3853
+#: ../clutter/clutter-actor.c:3876
msgid "X coordinate of the actor"
msgstr "Aktoriaus X koordinatė"
-#: clutter/clutter-actor.c:3868
+#: ../clutter/clutter-actor.c:3891
msgid "Y coordinate"
msgstr "Y koordinatė"
-#: clutter/clutter-actor.c:3869
+#: ../clutter/clutter-actor.c:3892
msgid "Y coordinate of the actor"
msgstr "Aktoriaus Y koordinatė"
-#: clutter/clutter-actor.c:3884 clutter/clutter-behaviour-ellipse.c:477
+#: ../clutter/clutter-actor.c:3907
+#: ../clutter/clutter-behaviour-ellipse.c:477
msgid "Width"
msgstr "Plotis"
-#: clutter/clutter-actor.c:3885
+#: ../clutter/clutter-actor.c:3908
msgid "Width of the actor"
msgstr "Aktoriaus plotis"
-#: clutter/clutter-actor.c:3899 clutter/clutter-behaviour-ellipse.c:493
+#: ../clutter/clutter-actor.c:3922
+#: ../clutter/clutter-behaviour-ellipse.c:493
msgid "Height"
msgstr "Aukštis"
-#: clutter/clutter-actor.c:3900
+#: ../clutter/clutter-actor.c:3923
msgid "Height of the actor"
msgstr "Aktoriaus aukštis"
-#: clutter/clutter-actor.c:3918
+#: ../clutter/clutter-actor.c:3941
msgid "Fixed X"
msgstr "Fiksuota X"
-#: clutter/clutter-actor.c:3919
+#: ../clutter/clutter-actor.c:3942
msgid "Forced X position of the actor"
msgstr "Aktoriaus priverstinė X padėtis"
-#: clutter/clutter-actor.c:3937
+#: ../clutter/clutter-actor.c:3960
msgid "Fixed Y"
msgstr "Fiksuota Y"
-#: clutter/clutter-actor.c:3938
+#: ../clutter/clutter-actor.c:3961
msgid "Forced Y position of the actor"
msgstr "Aktoriaus priverstinė Y padėtis"
-#: clutter/clutter-actor.c:3954
+#: ../clutter/clutter-actor.c:3977
msgid "Fixed position set"
msgstr "Fiksuota padėties aibė"
-#: clutter/clutter-actor.c:3955
+#: ../clutter/clutter-actor.c:3978
msgid "Whether to use fixed positioning for the actor"
msgstr "Ar naudoti fiksuotą aktoriaus padėtį"
-#: clutter/clutter-actor.c:3977
+#: ../clutter/clutter-actor.c:4000
msgid "Min Width"
msgstr "Mažiausias plotis"
-#: clutter/clutter-actor.c:3978
+#: ../clutter/clutter-actor.c:4001
msgid "Forced minimum width request for the actor"
msgstr "Priverstinis mažiausias pločio prašymas aktoriui"
-#: clutter/clutter-actor.c:3997
+#: ../clutter/clutter-actor.c:4020
msgid "Min Height"
msgstr "Mažiausias aukštis"
-#: clutter/clutter-actor.c:3998
+#: ../clutter/clutter-actor.c:4021
msgid "Forced minimum height request for the actor"
msgstr "Priverstinis mažiausias aukščio prašymas aktoriui"
-#: clutter/clutter-actor.c:4017
+#: ../clutter/clutter-actor.c:4040
msgid "Natural Width"
msgstr "Natūralusis plotis"
-#: clutter/clutter-actor.c:4018
+#: ../clutter/clutter-actor.c:4041
msgid "Forced natural width request for the actor"
msgstr "Priverstinis natūralusis pločio prašymas aktoriui"
-#: clutter/clutter-actor.c:4037
+#: ../clutter/clutter-actor.c:4060
msgid "Natural Height"
msgstr "Natūralusis aukštis"
-#: clutter/clutter-actor.c:4038
+#: ../clutter/clutter-actor.c:4061
msgid "Forced natural height request for the actor"
msgstr "Priverstinis natūralusis aukščio prašymas aktoriui"
-#: clutter/clutter-actor.c:4054
+#: ../clutter/clutter-actor.c:4077
msgid "Minimum width set"
msgstr "Mažiausiais plotis nustatytas"
-#: clutter/clutter-actor.c:4055
+#: ../clutter/clutter-actor.c:4078
msgid "Whether to use the min-width property"
msgstr "Ar naudoti min-width savybę"
-#: clutter/clutter-actor.c:4070
+#: ../clutter/clutter-actor.c:4093
msgid "Minimum height set"
msgstr "Mažiausias aukštis nustatytas"
-#: clutter/clutter-actor.c:4071
+#: ../clutter/clutter-actor.c:4094
msgid "Whether to use the min-height property"
msgstr "Ar naudoti min-height savybę"
-#: clutter/clutter-actor.c:4086
+#: ../clutter/clutter-actor.c:4109
msgid "Natural width set"
msgstr "Natūralusis plotis nustatytas"
-#: clutter/clutter-actor.c:4087
+#: ../clutter/clutter-actor.c:4110
msgid "Whether to use the natural-width property"
msgstr "Ar naudoti natural-width savybę"
-#: clutter/clutter-actor.c:4104
+#: ../clutter/clutter-actor.c:4127
msgid "Natural height set"
msgstr "Natūralusis aukštis nustatytas"
-#: clutter/clutter-actor.c:4105
+#: ../clutter/clutter-actor.c:4128
msgid "Whether to use the natural-height property"
msgstr "Ar naudoti natural-height savybę"
-#: clutter/clutter-actor.c:4124
+#: ../clutter/clutter-actor.c:4147
msgid "Allocation"
msgstr "Išskyrimas"
-#: clutter/clutter-actor.c:4125
+#: ../clutter/clutter-actor.c:4148
msgid "The actor's allocation"
msgstr "Aktoriaus išskyrimas"
-#: clutter/clutter-actor.c:4181
+#: ../clutter/clutter-actor.c:4204
msgid "Request Mode"
msgstr "Prašymo veiksena"
-#: clutter/clutter-actor.c:4182
+#: ../clutter/clutter-actor.c:4205
msgid "The actor's request mode"
msgstr "Aktoriaus prašymo veiksena"
-#: clutter/clutter-actor.c:4197
+#: ../clutter/clutter-actor.c:4220
msgid "Depth"
msgstr "Gylis"
-#: clutter/clutter-actor.c:4198
+#: ../clutter/clutter-actor.c:4221
msgid "Position on the Z axis"
msgstr "Padėtis Z ašyje"
-#: clutter/clutter-actor.c:4212
+#: ../clutter/clutter-actor.c:4235
msgid "Opacity"
msgstr "Nepermatomumas"
-#: clutter/clutter-actor.c:4213
+#: ../clutter/clutter-actor.c:4236
msgid "Opacity of an actor"
msgstr "Aktoriaus nepermatomumas"
-#: clutter/clutter-actor.c:4232
+#: ../clutter/clutter-actor.c:4255
msgid "Offscreen redirect"
msgstr "Nukreipimas už ekrano"
-#: clutter/clutter-actor.c:4233
+#: ../clutter/clutter-actor.c:4256
msgid "Flags controlling when to flatten the actor into a single image"
msgstr "Požymiai, valdantys, kada projektuoti aktorių į vieną paveikslėlį"
-#: clutter/clutter-actor.c:4251
+#: ../clutter/clutter-actor.c:4274
msgid "Visible"
msgstr "Matomas"
-#: clutter/clutter-actor.c:4252
+#: ../clutter/clutter-actor.c:4275
msgid "Whether the actor is visible or not"
msgstr "Ar aktorius yra matomas"
-#: clutter/clutter-actor.c:4267
+#: ../clutter/clutter-actor.c:4290
msgid "Mapped"
msgstr "Patalpintas"
-#: clutter/clutter-actor.c:4268
+#: ../clutter/clutter-actor.c:4291
msgid "Whether the actor will be painted"
msgstr "Ar aktorius bus piešiamas"
-#: clutter/clutter-actor.c:4282
+#: ../clutter/clutter-actor.c:4305
msgid "Realized"
msgstr "Realizuotas"
-#: clutter/clutter-actor.c:4283
+#: ../clutter/clutter-actor.c:4306
msgid "Whether the actor has been realized"
msgstr "Ar aktorius buvo realizuotas"
-#: clutter/clutter-actor.c:4299
+#: ../clutter/clutter-actor.c:4322
msgid "Reactive"
msgstr "Reaktyvus"
-#: clutter/clutter-actor.c:4300
+#: ../clutter/clutter-actor.c:4323
msgid "Whether the actor is reactive to events"
msgstr "Ar aktorius reaguoja į įvykius"
-#: clutter/clutter-actor.c:4312
+#: ../clutter/clutter-actor.c:4335
msgid "Has Clip"
msgstr "Turi įkirpimą"
-#: clutter/clutter-actor.c:4313
+#: ../clutter/clutter-actor.c:4336
msgid "Whether the actor has a clip set"
msgstr "Ar aktorius turi nustatytą įkirpimą"
-#: clutter/clutter-actor.c:4328
+#: ../clutter/clutter-actor.c:4351
msgid "Clip"
msgstr "Įkirpimas"
-#: clutter/clutter-actor.c:4329
+#: ../clutter/clutter-actor.c:4352
msgid "The clip region for the actor"
msgstr "Aktoriaus įkirpimo sritis"
-#: clutter/clutter-actor.c:4343 clutter/clutter-actor-meta.c:207
-#: clutter/clutter-binding-pool.c:319 clutter/clutter-input-device.c:236
+#: ../clutter/clutter-actor.c:4366
+#: ../clutter/clutter-actor-meta.c:207
+#: ../clutter/clutter-binding-pool.c:319
+#: ../clutter/clutter-input-device.c:236
msgid "Name"
msgstr "Vardas"
-#: clutter/clutter-actor.c:4344
+#: ../clutter/clutter-actor.c:4367
msgid "Name of the actor"
msgstr "Aktoriaus vardas"
-#: clutter/clutter-actor.c:4358
+#: ../clutter/clutter-actor.c:4381
msgid "Scale X"
msgstr "X plėtimasis"
-#: clutter/clutter-actor.c:4359
+#: ../clutter/clutter-actor.c:4382
msgid "Scale factor on the X axis"
msgstr "Plėtimosi faktorius X ašyje"
-#: clutter/clutter-actor.c:4374
+#: ../clutter/clutter-actor.c:4397
msgid "Scale Y"
msgstr "Y plėtimasis"
-#: clutter/clutter-actor.c:4375
+#: ../clutter/clutter-actor.c:4398
msgid "Scale factor on the Y axis"
msgstr "Plėtimosi faktorius Y ašyje"
-#: clutter/clutter-actor.c:4390
+#: ../clutter/clutter-actor.c:4413
msgid "Scale Center X"
msgstr "X centruotas plėtimasis"
-#: clutter/clutter-actor.c:4391
+#: ../clutter/clutter-actor.c:4414
msgid "Horizontal scale center"
msgstr "Horizontalus centruotas plėtimasis"
-#: clutter/clutter-actor.c:4406
+#: ../clutter/clutter-actor.c:4429
msgid "Scale Center Y"
msgstr "Y centruotas plėtimasis"
-#: clutter/clutter-actor.c:4407
+#: ../clutter/clutter-actor.c:4430
msgid "Vertical scale center"
msgstr "Vertikalus centruotas plėtimasis"
-#: clutter/clutter-actor.c:4422
+#: ../clutter/clutter-actor.c:4445
msgid "Scale Gravity"
msgstr "Plėtimosi trauka"
-#: clutter/clutter-actor.c:4423
+#: ../clutter/clutter-actor.c:4446
msgid "The center of scaling"
msgstr "Plėtimosi centras"
-#: clutter/clutter-actor.c:4440
+#: ../clutter/clutter-actor.c:4463
msgid "Rotation Angle X"
msgstr "X posūkio kampas"
-#: clutter/clutter-actor.c:4441
+#: ../clutter/clutter-actor.c:4464
msgid "The rotation angle on the X axis"
msgstr "Posūkio kampas X ašyje"
-#: clutter/clutter-actor.c:4456
+#: ../clutter/clutter-actor.c:4479
msgid "Rotation Angle Y"
msgstr "Y posūkio kampas"
-#: clutter/clutter-actor.c:4457
+#: ../clutter/clutter-actor.c:4480
msgid "The rotation angle on the Y axis"
msgstr "Posūkio kampas Y ašyje"
-#: clutter/clutter-actor.c:4472
+#: ../clutter/clutter-actor.c:4495
msgid "Rotation Angle Z"
msgstr "Z posūkio kampas"
-#: clutter/clutter-actor.c:4473
+#: ../clutter/clutter-actor.c:4496
msgid "The rotation angle on the Z axis"
msgstr "Posūkio kampas Z ašyje"
-#: clutter/clutter-actor.c:4488
+#: ../clutter/clutter-actor.c:4511
msgid "Rotation Center X"
msgstr "X posūkio centras"
-#: clutter/clutter-actor.c:4489
+#: ../clutter/clutter-actor.c:4512
msgid "The rotation center on the X axis"
msgstr "Posūkio centras X ašyje"
-#: clutter/clutter-actor.c:4505
+#: ../clutter/clutter-actor.c:4528
msgid "Rotation Center Y"
msgstr "Y posūkio centras"
-#: clutter/clutter-actor.c:4506
+#: ../clutter/clutter-actor.c:4529
msgid "The rotation center on the Y axis"
msgstr "Posūkio centras Y ašyje"
-#: clutter/clutter-actor.c:4522
+#: ../clutter/clutter-actor.c:4545
msgid "Rotation Center Z"
msgstr "Z posūkio centras"
-#: clutter/clutter-actor.c:4523
+#: ../clutter/clutter-actor.c:4546
msgid "The rotation center on the Z axis"
msgstr "Posūkio centras Z ašyje"
-#: clutter/clutter-actor.c:4539
+#: ../clutter/clutter-actor.c:4562
msgid "Rotation Center Z Gravity"
msgstr "Posūkio centro Z trauka"
-#: clutter/clutter-actor.c:4540
+#: ../clutter/clutter-actor.c:4563
msgid "Center point for rotation around the Z axis"
msgstr "Centrinis taškas posūkiui apie Z ašį"
-#: clutter/clutter-actor.c:4558
+#: ../clutter/clutter-actor.c:4581
msgid "Anchor X"
msgstr "Inkaro X"
-#: clutter/clutter-actor.c:4559
+#: ../clutter/clutter-actor.c:4582
msgid "X coordinate of the anchor point"
msgstr "Inkaro taško X koordinatė"
-#: clutter/clutter-actor.c:4575
+#: ../clutter/clutter-actor.c:4598
msgid "Anchor Y"
msgstr "Inkaro Y"
-#: clutter/clutter-actor.c:4576
+#: ../clutter/clutter-actor.c:4599
msgid "Y coordinate of the anchor point"
msgstr "Inkaro taško Y koordinatė"
-#: clutter/clutter-actor.c:4591
+#: ../clutter/clutter-actor.c:4614
msgid "Anchor Gravity"
msgstr "Inkaro trauka"
-#: clutter/clutter-actor.c:4592
+#: ../clutter/clutter-actor.c:4615
msgid "The anchor point as a ClutterGravity"
msgstr "Inkaro taškas kaip ClutterGravity"
-#: clutter/clutter-actor.c:4611
+#: ../clutter/clutter-actor.c:4634
msgid "Show on set parent"
msgstr "Rodyti nustačius tėvą"
-#: clutter/clutter-actor.c:4612
+#: ../clutter/clutter-actor.c:4635
msgid "Whether the actor is shown when parented"
msgstr "Ar aktorius yra rodomas kai turi tėvą"
-#: clutter/clutter-actor.c:4632
+#: ../clutter/clutter-actor.c:4655
msgid "Clip to Allocation"
msgstr "Iškirpimas į iškyrimą"
-#: clutter/clutter-actor.c:4633
+#: ../clutter/clutter-actor.c:4656
msgid "Sets the clip region to track the actor's allocation"
msgstr "Nustato iškirpimo regioną aktoriaus išskyrimo sekimui"
-#: clutter/clutter-actor.c:4643
+#: ../clutter/clutter-actor.c:4666
msgid "Text Direction"
msgstr "Teksto kryptis"
-#: clutter/clutter-actor.c:4644
+#: ../clutter/clutter-actor.c:4667
msgid "Direction of the text"
msgstr "Teksto kryptis"
-#: clutter/clutter-actor.c:4662
+#: ../clutter/clutter-actor.c:4685
msgid "Has Pointer"
msgstr "Turi žymeklį"
-#: clutter/clutter-actor.c:4663
+#: ../clutter/clutter-actor.c:4686
msgid "Whether the actor contains the pointer of an input device"
msgstr "Ar aktorius turi įvesties įrenginio žymeklį"
-#: clutter/clutter-actor.c:4680
+#: ../clutter/clutter-actor.c:4703
msgid "Actions"
msgstr "Veiksmai"
-#: clutter/clutter-actor.c:4681
+#: ../clutter/clutter-actor.c:4704
msgid "Adds an action to the actor"
msgstr "Prideda aktoriui veiksmą"
-#: clutter/clutter-actor.c:4695
+#: ../clutter/clutter-actor.c:4718
msgid "Constraints"
msgstr "Ribojimai"
-#: clutter/clutter-actor.c:4696
+#: ../clutter/clutter-actor.c:4719
msgid "Adds a constraint to the actor"
msgstr "Prideda aktoriui ribojimą"
-#: clutter/clutter-actor-meta.c:193 clutter/clutter-child-meta.c:142
+#: ../clutter/clutter-actor.c:4733
+msgid "Effect"
+msgstr "Efektas"
+
+#: ../clutter/clutter-actor.c:4734
+msgid "Add an effect to be applied on the actor"
+msgstr "Prideda efektą, kuris bus pritaikytas aktoriui"
+
+#: ../clutter/clutter-actor-meta.c:193
+#: ../clutter/clutter-child-meta.c:142
msgid "Actor"
msgstr "Aktorius"
-#: clutter/clutter-actor-meta.c:194
+#: ../clutter/clutter-actor-meta.c:194
msgid "The actor attached to the meta"
msgstr "Aktorius susietas su meta"
-#: clutter/clutter-actor-meta.c:208
+#: ../clutter/clutter-actor-meta.c:208
msgid "The name of the meta"
msgstr "Meta vardas"
-#: clutter/clutter-actor-meta.c:221 clutter/clutter-input-device.c:315
-#: clutter/clutter-shader.c:307
+#: ../clutter/clutter-actor-meta.c:221
+#: ../clutter/clutter-input-device.c:315
+#: ../clutter/clutter-shader.c:307
msgid "Enabled"
msgstr "Leista"
-#: clutter/clutter-actor-meta.c:222
+#: ../clutter/clutter-actor-meta.c:222
msgid "Whether the meta is enabled"
msgstr "Ar meta yra leista"
-#: clutter/clutter-align-constraint.c:270
-#: clutter/clutter-bind-constraint.c:349 clutter/clutter-clone.c:340
-#: clutter/clutter-snap-constraint.c:321
+#: ../clutter/clutter-align-constraint.c:270
+#: ../clutter/clutter-bind-constraint.c:349
+#: ../clutter/clutter-clone.c:340
+#: ../clutter/clutter-snap-constraint.c:321
msgid "Source"
msgstr "Šaltinis"
-#: clutter/clutter-align-constraint.c:271
+#: ../clutter/clutter-align-constraint.c:271
msgid "The source of the alignment"
msgstr "Lygiavimo šaltinis"
-#: clutter/clutter-align-constraint.c:284
+#: ../clutter/clutter-align-constraint.c:284
msgid "Align Axis"
msgstr "Lygiavimo ašis"
-#: clutter/clutter-align-constraint.c:285
+#: ../clutter/clutter-align-constraint.c:285
msgid "The axis to align the position to"
msgstr "Ašis, pagal kurią lygiuoti padėtį"
-#: clutter/clutter-align-constraint.c:304
-#: clutter/clutter-desaturate-effect.c:304
+#: ../clutter/clutter-align-constraint.c:304
+#: ../clutter/clutter-desaturate-effect.c:304
msgid "Factor"
msgstr "Faktorius"
-#: clutter/clutter-align-constraint.c:305
+#: ../clutter/clutter-align-constraint.c:305
msgid "The alignment factor, between 0.0 and 1.0"
msgstr "Lygiavimo faktorius, tarp 0.0 ir 1.0"
-#: clutter/clutter-alpha.c:345 clutter/clutter-animation.c:538
-#: clutter/clutter-animator.c:1802
+#: ../clutter/clutter-alpha.c:345
+#: ../clutter/clutter-animation.c:538
+#: ../clutter/clutter-animator.c:1802
msgid "Timeline"
msgstr "Laiko linija"
-#: clutter/clutter-alpha.c:346
+#: ../clutter/clutter-alpha.c:346
msgid "Timeline used by the alpha"
msgstr "Alfa naudojama laiko linija"
-#: clutter/clutter-alpha.c:361
+#: ../clutter/clutter-alpha.c:361
msgid "Alpha value"
msgstr "Alfa reikšmė"
-#: clutter/clutter-alpha.c:362
+#: ../clutter/clutter-alpha.c:362
msgid "Alpha value as computed by the alpha"
msgstr "Alfa reikšmė, kaip ją apskaičiavo alfa"
-#: clutter/clutter-alpha.c:382 clutter/clutter-animation.c:494
+#: ../clutter/clutter-alpha.c:382
+#: ../clutter/clutter-animation.c:494
msgid "Mode"
msgstr "Būsena"
-#: clutter/clutter-alpha.c:383
+#: ../clutter/clutter-alpha.c:383
msgid "Progress mode"
msgstr "Progreso būsena"
-#: clutter/clutter-animation.c:478
+#: ../clutter/clutter-animation.c:478
msgid "Object"
msgstr "Objektas"
-#: clutter/clutter-animation.c:479
+#: ../clutter/clutter-animation.c:479
msgid "Object to which the animation applies"
msgstr "Objektas, kuriam taikoma animacija"
-#: clutter/clutter-animation.c:495
+#: ../clutter/clutter-animation.c:495
msgid "The mode of the animation"
msgstr "Animacijos veiksena"
-#: clutter/clutter-animation.c:509 clutter/clutter-animator.c:1786
-#: clutter/clutter-media.c:194 clutter/clutter-state.c:1486
-#: clutter/clutter-timeline.c:294
+#: ../clutter/clutter-animation.c:509
+#: ../clutter/clutter-animator.c:1786
+#: ../clutter/clutter-media.c:194
+#: ../clutter/clutter-state.c:1486
+#: ../clutter/clutter-timeline.c:294
msgid "Duration"
msgstr "Trukmė"
-#: clutter/clutter-animation.c:510
+#: ../clutter/clutter-animation.c:510
msgid "Duration of the animation, in milliseconds"
msgstr "Animacijos trukmė milisekundėmis"
-#: clutter/clutter-animation.c:524 clutter/clutter-timeline.c:263
+#: ../clutter/clutter-animation.c:524
+#: ../clutter/clutter-timeline.c:263
msgid "Loop"
msgstr "Ciklas"
-#: clutter/clutter-animation.c:525
+#: ../clutter/clutter-animation.c:525
msgid "Whether the animation should loop"
msgstr "Ar animacija yra ciklinė"
-#: clutter/clutter-animation.c:539
+#: ../clutter/clutter-animation.c:539
msgid "The timeline used by the animation"
msgstr "Animacijos naudojama laiko linija"
-#: clutter/clutter-animation.c:552 clutter/clutter-behaviour.c:304
+#: ../clutter/clutter-animation.c:552
+#: ../clutter/clutter-behaviour.c:304
msgid "Alpha"
msgstr "Alfa"
-#: clutter/clutter-animation.c:553
+#: ../clutter/clutter-animation.c:553
msgid "The alpha used by the animation"
msgstr "Animacijos naudojama alfa"
-#: clutter/clutter-animator.c:1787
+#: ../clutter/clutter-animator.c:1787
msgid "The duration of the animation"
msgstr "Animacijos trukmė"
-#: clutter/clutter-animator.c:1803
+#: ../clutter/clutter-animator.c:1803
msgid "The timeline of the animation"
msgstr "Animacijos laiko linija"
-#: clutter/clutter-behaviour.c:305
+#: ../clutter/clutter-behaviour.c:305
msgid "Alpha Object to drive the behaviour"
msgstr "Alfa objektas, valdantis elgseną"
-#: clutter/clutter-behaviour-depth.c:178
+#: ../clutter/clutter-behaviour-depth.c:178
msgid "Start Depth"
msgstr "Pradžios gylis"
-#: clutter/clutter-behaviour-depth.c:179
+#: ../clutter/clutter-behaviour-depth.c:179
msgid "Initial depth to apply"
msgstr "Pradinis taikomas gylis"
-#: clutter/clutter-behaviour-depth.c:194
+#: ../clutter/clutter-behaviour-depth.c:194
msgid "End Depth"
msgstr "Pabaigos gylis"
-#: clutter/clutter-behaviour-depth.c:195
+#: ../clutter/clutter-behaviour-depth.c:195
msgid "Final depth to apply"
msgstr "Galutinis taikomas gylis"
-#: clutter/clutter-behaviour-ellipse.c:397
+#: ../clutter/clutter-behaviour-ellipse.c:397
msgid "Start Angle"
msgstr "Pradžios kampas"
-#: clutter/clutter-behaviour-ellipse.c:398
-#: clutter/clutter-behaviour-rotate.c:280
+#: ../clutter/clutter-behaviour-ellipse.c:398
+#: ../clutter/clutter-behaviour-rotate.c:280
msgid "Initial angle"
msgstr "Pradinis kampas"
-#: clutter/clutter-behaviour-ellipse.c:413
+#: ../clutter/clutter-behaviour-ellipse.c:413
msgid "End Angle"
msgstr "Pabaigos kampas"
-#: clutter/clutter-behaviour-ellipse.c:414
-#: clutter/clutter-behaviour-rotate.c:298
+#: ../clutter/clutter-behaviour-ellipse.c:414
+#: ../clutter/clutter-behaviour-rotate.c:298
msgid "Final angle"
msgstr "Galutinis kampas"
-#: clutter/clutter-behaviour-ellipse.c:429
+#: ../clutter/clutter-behaviour-ellipse.c:429
msgid "Angle x tilt"
msgstr "Kampo x pakrypimas"
-#: clutter/clutter-behaviour-ellipse.c:430
+#: ../clutter/clutter-behaviour-ellipse.c:430
msgid "Tilt of the ellipse around x axis"
msgstr "Elipsės pakrypimas apie x ašį"
-#: clutter/clutter-behaviour-ellipse.c:445
+#: ../clutter/clutter-behaviour-ellipse.c:445
msgid "Angle y tilt"
msgstr "Kampo y pakrypimas"
-#: clutter/clutter-behaviour-ellipse.c:446
+#: ../clutter/clutter-behaviour-ellipse.c:446
msgid "Tilt of the ellipse around y axis"
msgstr "Elipsės pakrypimas apie y ašį"
-#: clutter/clutter-behaviour-ellipse.c:461
+#: ../clutter/clutter-behaviour-ellipse.c:461
msgid "Angle z tilt"
msgstr "Kampo z pakrypimas"
-#: clutter/clutter-behaviour-ellipse.c:462
+#: ../clutter/clutter-behaviour-ellipse.c:462
msgid "Tilt of the ellipse around z axis"
msgstr "Elipsės pakrypimas apie z ašį"
-#: clutter/clutter-behaviour-ellipse.c:478
+#: ../clutter/clutter-behaviour-ellipse.c:478
msgid "Width of the ellipse"
msgstr "Elipsės plotis"
-#: clutter/clutter-behaviour-ellipse.c:494
+#: ../clutter/clutter-behaviour-ellipse.c:494
msgid "Height of ellipse"
msgstr "Elipsės aukštis"
-#: clutter/clutter-behaviour-ellipse.c:509
+#: ../clutter/clutter-behaviour-ellipse.c:509
msgid "Center"
msgstr "Centras"
-#: clutter/clutter-behaviour-ellipse.c:510
+#: ../clutter/clutter-behaviour-ellipse.c:510
msgid "Center of ellipse"
msgstr "Elipsės centras"
-#: clutter/clutter-behaviour-ellipse.c:524
-#: clutter/clutter-behaviour-rotate.c:333 clutter/clutter-timeline.c:310
+#: ../clutter/clutter-behaviour-ellipse.c:524
+#: ../clutter/clutter-behaviour-rotate.c:333
+#: ../clutter/clutter-timeline.c:310
msgid "Direction"
msgstr "Kryptis"
-#: clutter/clutter-behaviour-ellipse.c:525
-#: clutter/clutter-behaviour-rotate.c:334
+#: ../clutter/clutter-behaviour-ellipse.c:525
+#: ../clutter/clutter-behaviour-rotate.c:334
msgid "Direction of rotation"
msgstr "Sukimosi kryptis"
-#: clutter/clutter-behaviour-opacity.c:181
+#: ../clutter/clutter-behaviour-opacity.c:181
msgid "Opacity Start"
msgstr "Neaiškumo pradžia"
-#: clutter/clutter-behaviour-opacity.c:182
+#: ../clutter/clutter-behaviour-opacity.c:182
msgid "Initial opacity level"
msgstr "Pradinis neaiškumo lygis"
-#: clutter/clutter-behaviour-opacity.c:199
+#: ../clutter/clutter-behaviour-opacity.c:199
msgid "Opacity End"
msgstr "Neaiškumo pabaiga"
-#: clutter/clutter-behaviour-opacity.c:200
+#: ../clutter/clutter-behaviour-opacity.c:200
msgid "Final opacity level"
msgstr "Galutinis neaiškumo lygis"
-#: clutter/clutter-behaviour-path.c:222 clutter/clutter-path-constraint.c:212
+#: ../clutter/clutter-behaviour-path.c:222
+#: ../clutter/clutter-path-constraint.c:212
msgid "Path"
msgstr "Kelias"
-#: clutter/clutter-behaviour-path.c:223
+#: ../clutter/clutter-behaviour-path.c:223
msgid "The ClutterPath object representing the path to animate along"
msgstr "ClutterPath objektas, reprezentuojantis animacijos kelią"
-#: clutter/clutter-behaviour-rotate.c:279
+#: ../clutter/clutter-behaviour-rotate.c:279
msgid "Angle Begin"
msgstr "Kampo pradžia"
-#: clutter/clutter-behaviour-rotate.c:297
+#: ../clutter/clutter-behaviour-rotate.c:297
msgid "Angle End"
msgstr "Kampo pabaiga"
-#: clutter/clutter-behaviour-rotate.c:315
+#: ../clutter/clutter-behaviour-rotate.c:315
msgid "Axis"
msgstr "Ašis"
-#: clutter/clutter-behaviour-rotate.c:316
+#: ../clutter/clutter-behaviour-rotate.c:316
msgid "Axis of rotation"
msgstr "Sukimosi ašis"
-#: clutter/clutter-behaviour-rotate.c:351
+#: ../clutter/clutter-behaviour-rotate.c:351
msgid "Center X"
msgstr "Centro X"
-#: clutter/clutter-behaviour-rotate.c:352
+#: ../clutter/clutter-behaviour-rotate.c:352
msgid "X coordinate of the center of rotation"
msgstr "Sūkimosi centro X koordinatė"
-#: clutter/clutter-behaviour-rotate.c:369
+#: ../clutter/clutter-behaviour-rotate.c:369
msgid "Center Y"
msgstr "Centro Y"
-#: clutter/clutter-behaviour-rotate.c:370
+#: ../clutter/clutter-behaviour-rotate.c:370
msgid "Y coordinate of the center of rotation"
msgstr "Sukimosi centro Y koordinatė"
-#: clutter/clutter-behaviour-rotate.c:387
+#: ../clutter/clutter-behaviour-rotate.c:387
msgid "Center Z"
msgstr "Centro Z"
-#: clutter/clutter-behaviour-rotate.c:388
+#: ../clutter/clutter-behaviour-rotate.c:388
msgid "Z coordinate of the center of rotation"
msgstr "Sukimosi centro Y koordinatė"
-#: clutter/clutter-behaviour-scale.c:222
+#: ../clutter/clutter-behaviour-scale.c:222
msgid "X Start Scale"
msgstr "X pradinė skalė"
-#: clutter/clutter-behaviour-scale.c:223
+#: ../clutter/clutter-behaviour-scale.c:223
msgid "Initial scale on the X axis"
msgstr "Pradinė skalė X ašyje"
-#: clutter/clutter-behaviour-scale.c:241
+#: ../clutter/clutter-behaviour-scale.c:241
msgid "X End Scale"
msgstr "X galutinė skalė"
-#: clutter/clutter-behaviour-scale.c:242
+#: ../clutter/clutter-behaviour-scale.c:242
msgid "Final scale on the X axis"
msgstr "Galutinė skalė X ašyje"
-#: clutter/clutter-behaviour-scale.c:260
+#: ../clutter/clutter-behaviour-scale.c:260
msgid "Y Start Scale"
msgstr "X pradinė skalė"
-#: clutter/clutter-behaviour-scale.c:261
+#: ../clutter/clutter-behaviour-scale.c:261
msgid "Initial scale on the Y axis"
msgstr "Pradinė skalė Y ašyje"
-#: clutter/clutter-behaviour-scale.c:279
+#: ../clutter/clutter-behaviour-scale.c:279
msgid "Y End Scale"
msgstr "Y galutinė skalė"
-#: clutter/clutter-behaviour-scale.c:280
+#: ../clutter/clutter-behaviour-scale.c:280
msgid "Final scale on the Y axis"
msgstr "Galutinė skalė Y ašyje"
-#: clutter/clutter-bind-constraint.c:350
+#: ../clutter/clutter-bind-constraint.c:350
msgid "The source of the binding"
msgstr "Pririšimo šaltinis"
-#: clutter/clutter-bind-constraint.c:363
+#: ../clutter/clutter-bind-constraint.c:363
msgid "Coordinate"
msgstr "Koordinatė"
-#: clutter/clutter-bind-constraint.c:364
+#: ../clutter/clutter-bind-constraint.c:364
msgid "The coordinate to bind"
msgstr "Pririšimo koordinatė"
-#: clutter/clutter-bind-constraint.c:378 clutter/clutter-path-constraint.c:226
-#: clutter/clutter-snap-constraint.c:366
+#: ../clutter/clutter-bind-constraint.c:378
+#: ../clutter/clutter-path-constraint.c:226
+#: ../clutter/clutter-snap-constraint.c:366
msgid "Offset"
msgstr "Poslinkis"
-#: clutter/clutter-bind-constraint.c:379
+#: ../clutter/clutter-bind-constraint.c:379
msgid "The offset in pixels to apply to the binding"
msgstr "Poslinkis pikseliais, taikomas pririšimui"
-#: clutter/clutter-binding-pool.c:320
+#: ../clutter/clutter-binding-pool.c:320
msgid "The unique name of the binding pool"
msgstr "Unikalus pririšimo vardas"
-#: clutter/clutter-bin-layout.c:261 clutter/clutter-bin-layout.c:585
-#: clutter/clutter-box-layout.c:395 clutter/clutter-table-layout.c:652
+#: ../clutter/clutter-bin-layout.c:261
+#: ../clutter/clutter-bin-layout.c:585
+#: ../clutter/clutter-box-layout.c:395
+#: ../clutter/clutter-table-layout.c:652
msgid "Horizontal Alignment"
msgstr "Horizontalus lygiavimas"
-#: clutter/clutter-bin-layout.c:262
+#: ../clutter/clutter-bin-layout.c:262
msgid "Horizontal alignment for the actor inside the layout manager"
msgstr "Aktoriaus horizontalus lygiavimas lygiavimo tvarkyklėje"
-#: clutter/clutter-bin-layout.c:270 clutter/clutter-bin-layout.c:602
-#: clutter/clutter-box-layout.c:404 clutter/clutter-table-layout.c:667
+#: ../clutter/clutter-bin-layout.c:270
+#: ../clutter/clutter-bin-layout.c:602
+#: ../clutter/clutter-box-layout.c:404
+#: ../clutter/clutter-table-layout.c:667
msgid "Vertical Alignment"
msgstr "Vertikalus lygiavimas"
-#: clutter/clutter-bin-layout.c:271
+#: ../clutter/clutter-bin-layout.c:271
msgid "Vertical alignment for the actor inside the layout manager"
msgstr "Aktoriaus vertikalus lygiavimas lygiavimo tvarkyklėje"
-#: clutter/clutter-bin-layout.c:586
+#: ../clutter/clutter-bin-layout.c:586
msgid "Default horizontal alignment for the actors inside the layout manager"
msgstr "Aktoriaus numatytasis horizontalus lygiavimas lygiavimo tvarkyklėje"
-#: clutter/clutter-bin-layout.c:603
+#: ../clutter/clutter-bin-layout.c:603
msgid "Default vertical alignment for the actors inside the layout manager"
msgstr "Aktoriaus numatytasis vertikalus lygiavimas lygiavimo tvarkyklėje"
-#: clutter/clutter-box.c:544
+#: ../clutter/clutter-box.c:544
msgid "Layout Manager"
msgstr "Lygiavimų tvarkyklė"
-#: clutter/clutter-box.c:545
+#: ../clutter/clutter-box.c:545
msgid "The layout manager used by the box"
msgstr "Dėžutės naudojama lygiavimų tvarkyklė"
-#: clutter/clutter-box.c:564 clutter/clutter-rectangle.c:267
-#: clutter/clutter-stage.c:1765
+#: ../clutter/clutter-box.c:564
+#: ../clutter/clutter-rectangle.c:267
+#: ../clutter/clutter-stage.c:1790
msgid "Color"
msgstr "Spalva"
-#: clutter/clutter-box.c:565
+#: ../clutter/clutter-box.c:565
msgid "The background color of the box"
msgstr "Dėžutės fono spalva"
-#: clutter/clutter-box.c:579
+#: ../clutter/clutter-box.c:579
msgid "Color Set"
msgstr "Spalva nustatyta"
-#: clutter/clutter-box.c:580
+#: ../clutter/clutter-box.c:580
msgid "Whether the background color is set"
msgstr "Ar fono spalva nustatyta"
-#: clutter/clutter-box-layout.c:370
+#: ../clutter/clutter-box-layout.c:370
msgid "Expand"
msgstr "Išplėsti"
-#: clutter/clutter-box-layout.c:371
+#: ../clutter/clutter-box-layout.c:371
msgid "Allocate extra space for the child"
msgstr "Išskirti papildomai vietos vaikui"
-#: clutter/clutter-box-layout.c:377 clutter/clutter-table-layout.c:631
+#: ../clutter/clutter-box-layout.c:377
+#: ../clutter/clutter-table-layout.c:631
msgid "Horizontal Fill"
msgstr "Horizontalus užpildas"
-#: clutter/clutter-box-layout.c:378 clutter/clutter-table-layout.c:632
-msgid ""
-"Whether the child should receive priority when the container is allocating "
-"spare space on the horizontal axis"
-msgstr ""
-"Ar laikas turi gauti prioritetą, kai konteineris išskiria laisvą vietą "
-"horizontalioje ašyje"
+#: ../clutter/clutter-box-layout.c:378
+#: ../clutter/clutter-table-layout.c:632
+msgid "Whether the child should receive priority when the container is allocating spare space on the horizontal axis"
+msgstr "Ar laikas turi gauti prioritetą, kai konteineris išskiria laisvą vietą horizontalioje ašyje"
-#: clutter/clutter-box-layout.c:386 clutter/clutter-table-layout.c:638
+#: ../clutter/clutter-box-layout.c:386
+#: ../clutter/clutter-table-layout.c:638
msgid "Vertical Fill"
msgstr "Vertikalus užpildas"
-#: clutter/clutter-box-layout.c:387 clutter/clutter-table-layout.c:639
-msgid ""
-"Whether the child should receive priority when the container is allocating "
-"spare space on the vertical axis"
-msgstr ""
-"Ar laikas turi gauti prioritetą, kai konteineris išskiria laisvą vietą "
-"vertikalioje ašyje"
+#: ../clutter/clutter-box-layout.c:387
+#: ../clutter/clutter-table-layout.c:639
+msgid "Whether the child should receive priority when the container is allocating spare space on the vertical axis"
+msgstr "Ar laikas turi gauti prioritetą, kai konteineris išskiria laisvą vietą vertikalioje ašyje"
-#: clutter/clutter-box-layout.c:396 clutter/clutter-table-layout.c:653
+#: ../clutter/clutter-box-layout.c:396
+#: ../clutter/clutter-table-layout.c:653
msgid "Horizontal alignment of the actor within the cell"
msgstr "Horizontalus aktoriaus lygiavimas ląstelėje"
-#: clutter/clutter-box-layout.c:405 clutter/clutter-table-layout.c:668
+#: ../clutter/clutter-box-layout.c:405
+#: ../clutter/clutter-table-layout.c:668
msgid "Vertical alignment of the actor within the cell"
msgstr "Vertikalus aktoriaus lygiavimas ląstelėje"
-#: clutter/clutter-box-layout.c:1305
+#: ../clutter/clutter-box-layout.c:1303
msgid "Vertical"
msgstr "Vertikalus"
-#: clutter/clutter-box-layout.c:1306
+#: ../clutter/clutter-box-layout.c:1304
msgid "Whether the layout should be vertical, rather than horizontal"
msgstr "Ar išdėstymas turi būti vertikalus, užuot buvęs horizontalus"
-#: clutter/clutter-box-layout.c:1321 clutter/clutter-flow-layout.c:901
+#: ../clutter/clutter-box-layout.c:1319
+#: ../clutter/clutter-flow-layout.c:901
msgid "Homogeneous"
msgstr "Vienalytis"
-#: clutter/clutter-box-layout.c:1322
-msgid ""
-"Whether the layout should be homogeneous, i.e. all childs get the same size"
-msgstr ""
-"Ar išdėstymas turi būti vienalytis, t. y. visi vaikai yra to paties dydžio"
+#: ../clutter/clutter-box-layout.c:1320
+msgid "Whether the layout should be homogeneous, i.e. all childs get the same size"
+msgstr "Ar išdėstymas turi būti vienalytis, t. y. visi vaikai yra to paties dydžio"
-#: clutter/clutter-box-layout.c:1337
+#: ../clutter/clutter-box-layout.c:1335
msgid "Pack Start"
msgstr "Pakuoti pradžioje"
-#: clutter/clutter-box-layout.c:1338
+#: ../clutter/clutter-box-layout.c:1336
msgid "Whether to pack items at the start of the box"
msgstr "Ar pakuoti elementus dėžutės pradžioje"
-#: clutter/clutter-box-layout.c:1351
+#: ../clutter/clutter-box-layout.c:1349
msgid "Spacing"
msgstr "Tarpai"
-#: clutter/clutter-box-layout.c:1352
+#: ../clutter/clutter-box-layout.c:1350
msgid "Spacing between children"
msgstr "Tarpai tarp vaikų"
-#: clutter/clutter-box-layout.c:1366 clutter/clutter-table-layout.c:1742
+#: ../clutter/clutter-box-layout.c:1364
+#: ../clutter/clutter-table-layout.c:1742
msgid "Use Animations"
msgstr "Naudoti animacijas"
-#: clutter/clutter-box-layout.c:1367 clutter/clutter-table-layout.c:1743
+#: ../clutter/clutter-box-layout.c:1365
+#: ../clutter/clutter-table-layout.c:1743
msgid "Whether layout changes should be animated"
msgstr "Ar išdėstymo pasikeitimai turi būti animuoti"
-#: clutter/clutter-box-layout.c:1388 clutter/clutter-table-layout.c:1764
+#: ../clutter/clutter-box-layout.c:1386
+#: ../clutter/clutter-table-layout.c:1764
msgid "Easing Mode"
msgstr "Lengvinimo veiksena"
-#: clutter/clutter-box-layout.c:1389 clutter/clutter-table-layout.c:1765
+#: ../clutter/clutter-box-layout.c:1387
+#: ../clutter/clutter-table-layout.c:1765
msgid "The easing mode of the animations"
msgstr "Lengvinimo veiksena animacijoms"
-#: clutter/clutter-box-layout.c:1406 clutter/clutter-table-layout.c:1782
+#: ../clutter/clutter-box-layout.c:1404
+#: ../clutter/clutter-table-layout.c:1782
msgid "Easing Duration"
msgstr "Lengvinimo trukmė"
-#: clutter/clutter-box-layout.c:1407 clutter/clutter-table-layout.c:1783
+#: ../clutter/clutter-box-layout.c:1405
+#: ../clutter/clutter-table-layout.c:1783
msgid "The duration of the animations"
msgstr "Animacijų trukmė"
-#: clutter/clutter-cairo-texture.c:582
+#: ../clutter/clutter-cairo-texture.c:582
msgid "Surface Width"
msgstr "Paviršiaus plotis"
-#: clutter/clutter-cairo-texture.c:583
+#: ../clutter/clutter-cairo-texture.c:583
msgid "The width of the Cairo surface"
msgstr "Cairo paviršiaus plotis"
-#: clutter/clutter-cairo-texture.c:597
+#: ../clutter/clutter-cairo-texture.c:597
msgid "Surface Height"
msgstr "Paviršiaus aukštis"
-#: clutter/clutter-cairo-texture.c:598
+#: ../clutter/clutter-cairo-texture.c:598
msgid "The height of the Cairo surface"
msgstr "Cairo paviršiaus aukštis"
-#: clutter/clutter-cairo-texture.c:615
+#: ../clutter/clutter-cairo-texture.c:615
msgid "Auto Resize"
msgstr "Automatinis dydžio keitimas"
-#: clutter/clutter-cairo-texture.c:616
+#: ../clutter/clutter-cairo-texture.c:616
msgid "Whether the surface should match the allocation"
msgstr "Ar paviršius turi atitikti išskyrimą"
-#: clutter/clutter-child-meta.c:127
+#: ../clutter/clutter-child-meta.c:127
msgid "Container"
msgstr "Konteineris"
-#: clutter/clutter-child-meta.c:128
+#: ../clutter/clutter-child-meta.c:128
msgid "The container that created this data"
msgstr "Konteineris, kuris sukūrė šiuos duomenis"
-#: clutter/clutter-child-meta.c:143
+#: ../clutter/clutter-child-meta.c:143
msgid "The actor wrapped by this data"
msgstr "Aktorius, apvilktas šiais duomenimis"
-#: clutter/clutter-click-action.c:542
+#: ../clutter/clutter-click-action.c:542
msgid "Pressed"
msgstr "Nuspaustas"
-#: clutter/clutter-click-action.c:543
+#: ../clutter/clutter-click-action.c:543
msgid "Whether the clickable should be in pressed state"
msgstr "Ar paspaudžiamas elementas turi būti nuspaustos būsenos"
-#: clutter/clutter-click-action.c:556
+#: ../clutter/clutter-click-action.c:556
msgid "Held"
msgstr "Laikomas"
-#: clutter/clutter-click-action.c:557
+#: ../clutter/clutter-click-action.c:557
msgid "Whether the clickable has a grab"
msgstr "Ar nuspaudžiamas elementas turi pagriebimą"
-#: clutter/clutter-click-action.c:574 clutter/clutter-settings.c:573
+#: ../clutter/clutter-click-action.c:574
+#: ../clutter/clutter-settings.c:585
msgid "Long Press Duration"
msgstr "Ilgo paspaudimo trukmė"
-#: clutter/clutter-click-action.c:575
+#: ../clutter/clutter-click-action.c:575
msgid "The minimum duration of a long press to recognize the gesture"
msgstr "Ilgo paspaudimo mažiausia trukmė gesto atpažinimui"
-#: clutter/clutter-click-action.c:593
+#: ../clutter/clutter-click-action.c:593
msgid "Long Press Threshold"
msgstr "Ilgo paspaudimo užlaikymas"
-#: clutter/clutter-click-action.c:594
+#: ../clutter/clutter-click-action.c:594
msgid "The maximum threshold before a long press is cancelled"
msgstr "Ilgiausias užlaikymas iki ilgo paspaudimo atšaukimo"
-#: clutter/clutter-clone.c:341
+#: ../clutter/clutter-clone.c:341
msgid "Specifies the actor to be cloned"
msgstr "Nurodo klonuojamą aktorių"
-#: clutter/clutter-colorize-effect.c:307
+#: ../clutter/clutter-colorize-effect.c:307
msgid "Tint"
msgstr "Atspalvis"
-#: clutter/clutter-colorize-effect.c:308
+#: ../clutter/clutter-colorize-effect.c:308
msgid "The tint to apply"
msgstr "Taikomas atspalvis"
-#: clutter/clutter-deform-effect.c:527
+#: ../clutter/clutter-deform-effect.c:547
msgid "Horizontal Tiles"
msgstr "Horizontalūs kokliai"
-#: clutter/clutter-deform-effect.c:528
+#: ../clutter/clutter-deform-effect.c:548
msgid "The number of horizontal tiles"
msgstr "Horizontalių koklių skaičius"
-#: clutter/clutter-deform-effect.c:543
+#: ../clutter/clutter-deform-effect.c:563
msgid "Vertical Tiles"
msgstr "Vertikalūs kokliai"
-#: clutter/clutter-deform-effect.c:544
+#: ../clutter/clutter-deform-effect.c:564
msgid "The number of vertical tiles"
msgstr "Vertikalių koklių skaičius"
-#: clutter/clutter-deform-effect.c:561
+#: ../clutter/clutter-deform-effect.c:581
msgid "Back Material"
msgstr "Fono medžiaga"
-#: clutter/clutter-deform-effect.c:562
+#: ../clutter/clutter-deform-effect.c:582
msgid "The material to be used when painting the back of the actor"
msgstr "Medžiaga, naudojama piešiant aktoriaus foną"
-#: clutter/clutter-desaturate-effect.c:305
+#: ../clutter/clutter-desaturate-effect.c:305
msgid "The desaturation factor"
msgstr "Nesodrinimo faktorius"
-#: clutter/clutter-device-manager.c:131 clutter/clutter-input-device.c:344
-#: clutter/x11/clutter-keymap-x11.c:316
+#: ../clutter/clutter-device-manager.c:131
+#: ../clutter/clutter-input-device.c:344
+#: ../clutter/x11/clutter-keymap-x11.c:316
msgid "Backend"
msgstr "Realizacija"
-#: clutter/clutter-device-manager.c:132
+#: ../clutter/clutter-device-manager.c:132
msgid "The ClutterBackend of the device manager"
msgstr "Įrenginių tvarkyklės ClutterBackend"
-#: clutter/clutter-drag-action.c:596
+#: ../clutter/clutter-drag-action.c:596
msgid "Horizontal Drag Threshold"
msgstr "Horizontalaus tempimo užlaikymas"
-#: clutter/clutter-drag-action.c:597
+#: ../clutter/clutter-drag-action.c:597
msgid "The horizontal amount of pixels required to start dragging"
msgstr "Horizontalus pikselių skaičius, būtinas tempimo pradėjimui"
-#: clutter/clutter-drag-action.c:624
+#: ../clutter/clutter-drag-action.c:624
msgid "Vertical Drag Threshold"
msgstr "Vertikalaus tempimo užlaikymas"
-#: clutter/clutter-drag-action.c:625
+#: ../clutter/clutter-drag-action.c:625
msgid "The vertical amount of pixels required to start dragging"
msgstr "Vertikalus pikselių skaičius, būtinas tempimo pradėjimui"
-#: clutter/clutter-drag-action.c:646
+#: ../clutter/clutter-drag-action.c:646
msgid "Drag Handle"
msgstr "Tempimo rankenėlė"
-#: clutter/clutter-drag-action.c:647
+#: ../clutter/clutter-drag-action.c:647
msgid "The actor that is being dragged"
msgstr "Tempiamas inkaras"
-#: clutter/clutter-drag-action.c:660
+#: ../clutter/clutter-drag-action.c:660
msgid "Drag Axis"
msgstr "Tempimo ašis"
-#: clutter/clutter-drag-action.c:661
+#: ../clutter/clutter-drag-action.c:661
msgid "Constraints the dragging to an axis"
msgstr "Apriboja tempimą ašimi"
-#: clutter/clutter-flow-layout.c:885
+#: ../clutter/clutter-flow-layout.c:885
msgid "Orientation"
msgstr "Orientacija"
-#: clutter/clutter-flow-layout.c:886
+#: ../clutter/clutter-flow-layout.c:886
msgid "The orientation of the layout"
msgstr "Išdėstymo orientacija"
-#: clutter/clutter-flow-layout.c:902
+#: ../clutter/clutter-flow-layout.c:902
msgid "Whether each item should receive the same allocation"
msgstr "Ar kiekvienas elementas turi gauti tą patį išskyrimą"
-#: clutter/clutter-flow-layout.c:917 clutter/clutter-table-layout.c:1713
+#: ../clutter/clutter-flow-layout.c:917
+#: ../clutter/clutter-table-layout.c:1713
msgid "Column Spacing"
msgstr "Stulpelių tarpai"
-#: clutter/clutter-flow-layout.c:918
+#: ../clutter/clutter-flow-layout.c:918
msgid "The spacing between columns"
msgstr "Tarpai tarp stulpelių"
-#: clutter/clutter-flow-layout.c:934 clutter/clutter-table-layout.c:1727
+#: ../clutter/clutter-flow-layout.c:934
+#: ../clutter/clutter-table-layout.c:1727
msgid "Row Spacing"
msgstr "Eilučių tarpai"
-#: clutter/clutter-flow-layout.c:935
+#: ../clutter/clutter-flow-layout.c:935
msgid "The spacing between rows"
msgstr "Tarpai tarp eilučių"
-#: clutter/clutter-flow-layout.c:949
+#: ../clutter/clutter-flow-layout.c:949
msgid "Minimum Column Width"
msgstr "Mažiausias stulpelio plotis"
-#: clutter/clutter-flow-layout.c:950
+#: ../clutter/clutter-flow-layout.c:950
msgid "Minimum width for each column"
msgstr "Kiekvieno stulpelio mažiausias plotis"
-#: clutter/clutter-flow-layout.c:965
+#: ../clutter/clutter-flow-layout.c:965
msgid "Maximum Column Width"
msgstr "Didžiausias stulpelio plotis"
-#: clutter/clutter-flow-layout.c:966
+#: ../clutter/clutter-flow-layout.c:966
msgid "Maximum width for each column"
msgstr "Kiekvieno stulpelio didžiausias plotis"
-#: clutter/clutter-flow-layout.c:980
+#: ../clutter/clutter-flow-layout.c:980
msgid "Minimum Row Height"
msgstr "Mažiausias eilutės aukštis"
-#: clutter/clutter-flow-layout.c:981
+#: ../clutter/clutter-flow-layout.c:981
msgid "Minimum height for each row"
msgstr "Kiekvienos eilutės mažiausias aukštis"
-#: clutter/clutter-flow-layout.c:996
+#: ../clutter/clutter-flow-layout.c:996
msgid "Maximum Row Height"
msgstr "Didžiausias eilutės aukštis"
-#: clutter/clutter-flow-layout.c:997
+#: ../clutter/clutter-flow-layout.c:997
msgid "Maximum height for each row"
msgstr "Kiekvienos didžiausias eilutės aukštis"
-#: clutter/clutter-input-device.c:220
+#: ../clutter/clutter-input-device.c:220
msgid "Id"
msgstr "Id"
-#: clutter/clutter-input-device.c:221
+#: ../clutter/clutter-input-device.c:221
msgid "Unique identifier of the device"
msgstr "Unikalus įrenginio identifikatorius"
-#: clutter/clutter-input-device.c:237
+#: ../clutter/clutter-input-device.c:237
msgid "The name of the device"
msgstr "Įrenginio pavadinimas"
-#: clutter/clutter-input-device.c:251
+#: ../clutter/clutter-input-device.c:251
msgid "Device Type"
msgstr "Įrenginio tipas"
-#: clutter/clutter-input-device.c:252
+#: ../clutter/clutter-input-device.c:252
msgid "The type of the device"
msgstr "Įrenginio tipas"
-#: clutter/clutter-input-device.c:267
+#: ../clutter/clutter-input-device.c:267
msgid "Device Manager"
msgstr "Įrenginių tvarkyklė"
-#: clutter/clutter-input-device.c:268
+#: ../clutter/clutter-input-device.c:268
msgid "The device manager instance"
msgstr "Įrenginių tvarkyklės egzempliorius"
-#: clutter/clutter-input-device.c:281
+#: ../clutter/clutter-input-device.c:281
msgid "Device Mode"
msgstr "Įrenginio veiksena"
-#: clutter/clutter-input-device.c:282
+#: ../clutter/clutter-input-device.c:282
msgid "The mode of the device"
msgstr "Įrenginio veiksena"
-#: clutter/clutter-input-device.c:296
+#: ../clutter/clutter-input-device.c:296
msgid "Has Cursor"
msgstr "Turi žymeklį"
-#: clutter/clutter-input-device.c:297
+#: ../clutter/clutter-input-device.c:297
msgid "Whether the device has a cursor"
msgstr "Ar įrenginys turi žymeklį"
-#: clutter/clutter-input-device.c:316
+#: ../clutter/clutter-input-device.c:316
msgid "Whether the device is enabled"
msgstr "Ar įrenginys yra jungtas"
-#: clutter/clutter-input-device.c:329
+#: ../clutter/clutter-input-device.c:329
msgid "Number of Axes"
msgstr "Ašių skaičius"
-#: clutter/clutter-input-device.c:330
+#: ../clutter/clutter-input-device.c:330
msgid "The number of axes on the device"
msgstr "Įrenginio ašių skaičius"
-#: clutter/clutter-input-device.c:345
+#: ../clutter/clutter-input-device.c:345
msgid "The backend instance"
msgstr "Realizacijos egzempliorius"
-#: clutter/clutter-interval.c:397
+#: ../clutter/clutter-interval.c:397
msgid "Value Type"
msgstr "Reikšmės tipas"
-#: clutter/clutter-interval.c:398
+#: ../clutter/clutter-interval.c:398
msgid "The type of the values in the interval"
msgstr "Reikšmių tipas intervale"
-#: clutter/clutter-layout-meta.c:117
+#: ../clutter/clutter-layout-meta.c:117
msgid "Manager"
msgstr "Tvarkyklė"
-#: clutter/clutter-layout-meta.c:118
+#: ../clutter/clutter-layout-meta.c:118
msgid "The manager that created this data"
msgstr "Tvarkyklė, sukūrusi šiuos duomenis"
-#: clutter/clutter-main.c:490
+#. Translators: Leave this UNTRANSLATED if your language is
+#. * left-to-right. If your language is right-to-left
+#. * (e.g. Hebrew, Arabic), translate it to "default:RTL".
+#. *
+#. * Do NOT translate it to non-English e.g. "predefinito:LTR"! If
+#. * it isn't default:LTR or default:RTL it will not work.
+#.
+#: ../clutter/clutter-main.c:512
msgid "default:LTR"
msgstr "default:LTR"
-#: clutter/clutter-main.c:1321
+#: ../clutter/clutter-main.c:1319
msgid "Show frames per second"
msgstr "Rodyti kadrus per sekundę"
-#: clutter/clutter-main.c:1323
+#: ../clutter/clutter-main.c:1321
msgid "Default frame rate"
msgstr "Numatytasis kadrų dažnis"
-#: clutter/clutter-main.c:1325
+#: ../clutter/clutter-main.c:1323
msgid "Make all warnings fatal"
msgstr "Paversti visus įspėjimus lemtingais"
-#: clutter/clutter-main.c:1328
+#: ../clutter/clutter-main.c:1326
msgid "Direction for the text"
msgstr "Teksto kryptis"
-#: clutter/clutter-main.c:1331
+#: ../clutter/clutter-main.c:1329
msgid "Disable mipmapping on text"
msgstr "Drausti teksto miniatiūras"
-#: clutter/clutter-main.c:1334
+#: ../clutter/clutter-main.c:1332
msgid "Use 'fuzzy' picking"
msgstr "Naudoti „neaiškų“ pasirinkimą"
-#: clutter/clutter-main.c:1337
+#: ../clutter/clutter-main.c:1335
msgid "Clutter debugging flags to set"
msgstr "Nustatomi clutter derinimo požymiai"
-#: clutter/clutter-main.c:1339
+#: ../clutter/clutter-main.c:1337
msgid "Clutter debugging flags to unset"
msgstr "Išjungiami clutter derinimo požymiai"
-#: clutter/clutter-main.c:1343
+#: ../clutter/clutter-main.c:1341
msgid "Clutter profiling flags to set"
msgstr "Nustatomi clutter profiliavimo požymiai"
-#: clutter/clutter-main.c:1345
+#: ../clutter/clutter-main.c:1343
msgid "Clutter profiling flags to unset"
msgstr "Išjungiami clutter profiliavimo požymiai"
-#: clutter/clutter-main.c:1348
+#: ../clutter/clutter-main.c:1346
msgid "Enable accessibility"
msgstr "Įjungti pritaikymą neįgaliesiems"
-#: clutter/clutter-main.c:1530
+#: ../clutter/clutter-main.c:1528
msgid "Clutter Options"
msgstr "Clutter parinktys"
-#: clutter/clutter-main.c:1531
+#: ../clutter/clutter-main.c:1529
msgid "Show Clutter Options"
msgstr "Rodyti Clutter parinktis"
-#: clutter/clutter-media.c:77
+#: ../clutter/clutter-media.c:77
msgid "URI"
msgstr "URI"
-#: clutter/clutter-media.c:78
+#: ../clutter/clutter-media.c:78
msgid "URI of a media file"
msgstr "Daugialypės terpės failo URI"
-#: clutter/clutter-media.c:91
+#: ../clutter/clutter-media.c:91
msgid "Playing"
msgstr "Grojama"
-#: clutter/clutter-media.c:92
+#: ../clutter/clutter-media.c:92
msgid "Whether the actor is playing"
msgstr "Ar aktorius groja"
-#: clutter/clutter-media.c:106
+#: ../clutter/clutter-media.c:106
msgid "Progress"
msgstr "Eiga"
-#: clutter/clutter-media.c:107
+#: ../clutter/clutter-media.c:107
msgid "Current progress of the playback"
msgstr "Dabartinė grojimo eiga"
-#: clutter/clutter-media.c:120
+#: ../clutter/clutter-media.c:120
msgid "Subtitle URI"
msgstr "Subtitrų URI"
-#: clutter/clutter-media.c:121
+#: ../clutter/clutter-media.c:121
msgid "URI of a subtitle file"
msgstr "Subtitrų failo URI"
-#: clutter/clutter-media.c:136
+#: ../clutter/clutter-media.c:136
msgid "Subtitle Font Name"
msgstr "Subtitrų šrifto vardas"
-#: clutter/clutter-media.c:137
+#: ../clutter/clutter-media.c:137
msgid "The font used to display subtitles"
msgstr "Subtitrų rodymui naudojamas šriftas"
-#: clutter/clutter-media.c:151
+#: ../clutter/clutter-media.c:151
msgid "Audio Volume"
msgstr "Garso garsumas"
-#: clutter/clutter-media.c:152
+#: ../clutter/clutter-media.c:152
msgid "The volume of the audio"
msgstr "Garso garsumas"
-#: clutter/clutter-media.c:165
+#: ../clutter/clutter-media.c:165
msgid "Can Seek"
msgstr "Gali ieškoti"
-#: clutter/clutter-media.c:166
+#: ../clutter/clutter-media.c:166
msgid "Whether the current stream is seekable"
msgstr "Ar dabartiniame sraute galima ieškoti"
-#: clutter/clutter-media.c:180
+#: ../clutter/clutter-media.c:180
msgid "Buffer Fill"
msgstr "Buferio užpildymas"
-#: clutter/clutter-media.c:181
+#: ../clutter/clutter-media.c:181
msgid "The fill level of the buffer"
msgstr "Buferio užpildymo lygis"
-#: clutter/clutter-media.c:195
+#: ../clutter/clutter-media.c:195
msgid "The duration of the stream, in seconds"
msgstr "Srauto trukmė sekundėmis"
-#: clutter/clutter-path-constraint.c:213
+#: ../clutter/clutter-path-constraint.c:213
msgid "The path used to constrain an actor"
msgstr "Kelias, naudojamas aktoriaus ribojimams"
-#: clutter/clutter-path-constraint.c:227
+#: ../clutter/clutter-path-constraint.c:227
msgid "The offset along the path, between -1.0 and 2.0"
msgstr "Poslinkis kelyje, tarp -1.0 ir 2.0"
-#: clutter/clutter-rectangle.c:268
+#: ../clutter/clutter-rectangle.c:268
msgid "The color of the rectangle"
msgstr "Stačiakampio spalva"
-#: clutter/clutter-rectangle.c:281
+#: ../clutter/clutter-rectangle.c:281
msgid "Border Color"
msgstr "Rėmelio spalva"
-#: clutter/clutter-rectangle.c:282
+#: ../clutter/clutter-rectangle.c:282
msgid "The color of the border of the rectangle"
msgstr "Stačiakampio rėmelio spalva"
-#: clutter/clutter-rectangle.c:297
+#: ../clutter/clutter-rectangle.c:297
msgid "Border Width"
msgstr "Rėmelio plotis"
-#: clutter/clutter-rectangle.c:298
+#: ../clutter/clutter-rectangle.c:298
msgid "The width of the border of the rectangle"
msgstr "Stačiakampio rėmelio plotis"
-#: clutter/clutter-rectangle.c:312
+#: ../clutter/clutter-rectangle.c:312
msgid "Has Border"
msgstr "Turi rėmelį"
-#: clutter/clutter-rectangle.c:313
+#: ../clutter/clutter-rectangle.c:313
msgid "Whether the rectangle should have a border"
msgstr "Ar stačiakampis turi rėmelį"
-#: clutter/clutter-script.c:434
+#: ../clutter/clutter-script.c:434
msgid "Filename Set"
msgstr "Failo vardas nustatytas"
-#: clutter/clutter-script.c:435
+#: ../clutter/clutter-script.c:435
msgid "Whether the :filename property is set"
msgstr "Ar savybė :filename yra nustatyta"
-#: clutter/clutter-script.c:449 clutter/clutter-texture.c:1081
+#: ../clutter/clutter-script.c:449
+#: ../clutter/clutter-texture.c:1067
msgid "Filename"
msgstr "Failo vardas"
-#: clutter/clutter-script.c:450
+#: ../clutter/clutter-script.c:450
msgid "The path of the currently parsed file"
msgstr "Šiuo metu skaitomo failo vardas"
-#: clutter/clutter-settings.c:414
+#: ../clutter/clutter-settings.c:426
msgid "Double Click Time"
msgstr "Dvigubo paspaudimo laikas"
-#: clutter/clutter-settings.c:415
+#: ../clutter/clutter-settings.c:427
msgid "The time between clicks necessary to detect a multiple click"
msgstr "Laikas tarp paspaudimų, reikalingas dvigubo paspaudimo aptikimui"
-#: clutter/clutter-settings.c:430
+#: ../clutter/clutter-settings.c:442
msgid "Double Click Distance"
msgstr "Dvigubo paspaudimo atstumas"
-#: clutter/clutter-settings.c:431
+#: ../clutter/clutter-settings.c:443
msgid "The distance between clicks necessary to detect a multiple click"
msgstr "Atstumas tarp paspaudimų, reikalingas dvigubo paspaudimo aptikimui"
-#: clutter/clutter-settings.c:446
+#: ../clutter/clutter-settings.c:458
msgid "Drag Threshold"
msgstr "Tempimo užlaikymas"
-#: clutter/clutter-settings.c:447
+#: ../clutter/clutter-settings.c:459
msgid "The distance the cursor should travel before starting to drag"
msgstr "Atstumas, kurį turi nueiti žymeklis prieš pradedant tempimą"
-#: clutter/clutter-settings.c:462 clutter/clutter-text.c:2939
+#: ../clutter/clutter-settings.c:474
+#: ../clutter/clutter-text.c:2995
msgid "Font Name"
msgstr "Šrifto vardas"
-#: clutter/clutter-settings.c:463
-msgid ""
-"The description of the default font, as one that could be parsed by Pango"
+#: ../clutter/clutter-settings.c:475
+msgid "The description of the default font, as one that could be parsed by Pango"
msgstr "Numatytojo šrifto aprašymas, kurį gali perskaityti Pango"
-#: clutter/clutter-settings.c:478
+#: ../clutter/clutter-settings.c:490
msgid "Font Antialias"
msgstr "Šrifto glotninimas"
-#: clutter/clutter-settings.c:479
-msgid ""
-"Whether to use antialiasing (1 to enable, 0 to disable, and -1 to use the "
-"default)"
-msgstr ""
-"Ar naudoti glotninimą (1 naudojimui, 0 draudimui, -1 numatytai veiksenai)"
+#: ../clutter/clutter-settings.c:491
+msgid "Whether to use antialiasing (1 to enable, 0 to disable, and -1 to use the default)"
+msgstr "Ar naudoti glotninimą (1 naudojimui, 0 draudimui, -1 numatytai veiksenai)"
-#: clutter/clutter-settings.c:495
+#: ../clutter/clutter-settings.c:507
msgid "Font DPI"
msgstr "Šrifto DPI"
-#: clutter/clutter-settings.c:496
-msgid ""
-"The resolution of the font, in 1024 * dots/inch, or -1 to use the default"
+#: ../clutter/clutter-settings.c:508
+msgid "The resolution of the font, in 1024 * dots/inch, or -1 to use the default"
msgstr "Šrifto raiška, 1024 * taškai colyje arba -1 numatytajai reikšmei"
-#: clutter/clutter-settings.c:512
+#: ../clutter/clutter-settings.c:524
msgid "Font Hinting"
msgstr "Šrifto patarimai"
-#: clutter/clutter-settings.c:513
-msgid ""
-"Whether to use hinting (1 to enable, 0 to disable and -1 to use the default)"
-msgstr ""
-"Ar naudoti patarimus (1 įjungimui, 0 išjungimui ir -1 numatytai veiksenai)"
+#: ../clutter/clutter-settings.c:525
+msgid "Whether to use hinting (1 to enable, 0 to disable and -1 to use the default)"
+msgstr "Ar naudoti patarimus (1 įjungimui, 0 išjungimui ir -1 numatytai veiksenai)"
-#: clutter/clutter-settings.c:534
+#: ../clutter/clutter-settings.c:546
msgid "Font Hint Style"
msgstr "Šrifto patarimo stilius"
-#: clutter/clutter-settings.c:535
+#: ../clutter/clutter-settings.c:547
msgid "The style of hinting (hintnone, hintslight, hintmedium, hintfull)"
msgstr "Patarimo stilius (hintnone, hintslight, hintmedium, hintfull)"
-#: clutter/clutter-settings.c:556
+#: ../clutter/clutter-settings.c:568
msgid "Font Subpixel Order"
msgstr "Šrifto subpikselių tvarka"
-#: clutter/clutter-settings.c:557
+#: ../clutter/clutter-settings.c:569
msgid "The type of subpixel antialiasing (none, rgb, bgr, vrgb, vbgr)"
msgstr "Subpikselių glotninimo tipas (none, rgb, bgr, vrgb, vbgr)"
-#: clutter/clutter-settings.c:574
+#: ../clutter/clutter-settings.c:586
msgid "The minimum duration for a long press gesture to be recognized"
msgstr "Mažiausia atpažįstama ilgo paspaudimo gesto trukmė"
-#: clutter/clutter-settings.c:581
+#: ../clutter/clutter-settings.c:593
msgid "Fontconfig configuration timestamp"
msgstr "Fontconfig konfigūracijos data ir laikas"
-#: clutter/clutter-settings.c:582
+#: ../clutter/clutter-settings.c:594
msgid "Timestamp of the current fontconfig configuration"
msgstr "Dabartinės fontconfig konfigūracijos data ir laikas"
-#: clutter/clutter-shader.c:255
+#: ../clutter/clutter-settings.c:611
+msgid "Password Hint Time"
+msgstr "Slaptažodžio priminimo laikas"
+
+#: ../clutter/clutter-settings.c:612
+msgid "How long to show the last input character in hidden entries"
+msgstr "Kaip ilgai rodyti paskutinį įvestą simbolį paslėptose įvestyse"
+
+#: ../clutter/clutter-shader.c:255
msgid "Vertex Source"
msgstr "Viršūnės šaltinis"
-#: clutter/clutter-shader.c:256
+#: ../clutter/clutter-shader.c:256
msgid "Source of vertex shader"
msgstr "Viršūnės piešėjo šaltinis"
-#: clutter/clutter-shader.c:272
+#: ../clutter/clutter-shader.c:272
msgid "Fragment Source"
msgstr "Fragmento šaltinis"
-#: clutter/clutter-shader.c:273
+#: ../clutter/clutter-shader.c:273
msgid "Source of fragment shader"
msgstr "Fragmento piešėjo šaltinis"
-#: clutter/clutter-shader.c:290
+#: ../clutter/clutter-shader.c:290
msgid "Compiled"
msgstr "Kompiliuotas"
-#: clutter/clutter-shader.c:291
+#: ../clutter/clutter-shader.c:291
msgid "Whether the shader is compiled and linked"
msgstr "Ar piešėjas yra kompiliuotas ir surištas"
-#: clutter/clutter-shader.c:308
+#: ../clutter/clutter-shader.c:308
msgid "Whether the shader is enabled"
msgstr "Ar piešėjas yra įjungtas"
-#: clutter/clutter-shader.c:519
+#: ../clutter/clutter-shader.c:519
#, c-format
msgid "%s compilation failed: %s"
msgstr "%s kompiliavimas nepavyko: %s"
-#: clutter/clutter-shader.c:520
+#: ../clutter/clutter-shader.c:520
msgid "Vertex shader"
msgstr "Viršūnės piešėjas"
-#: clutter/clutter-shader.c:521
+#: ../clutter/clutter-shader.c:521
msgid "Fragment shader"
msgstr "Fragmento piešėjas"
-#: clutter/clutter-shader-effect.c:415
+#: ../clutter/clutter-shader-effect.c:482
msgid "Shader Type"
msgstr "Piešėjo tipas"
-#: clutter/clutter-shader-effect.c:416
+#: ../clutter/clutter-shader-effect.c:483
msgid "The type of shader used"
msgstr "Naudojamo piešėjo tipas"
-#: clutter/clutter-snap-constraint.c:322
+#: ../clutter/clutter-snap-constraint.c:322
msgid "The source of the constraint"
msgstr "Ribojimo šaltinis"
-#: clutter/clutter-snap-constraint.c:335
+#: ../clutter/clutter-snap-constraint.c:335
msgid "From Edge"
msgstr "Nuo krašto"
-#: clutter/clutter-snap-constraint.c:336
+#: ../clutter/clutter-snap-constraint.c:336
msgid "The edge of the actor that should be snapped"
msgstr "Aktoriaus kraštas, kuri turi būti prikabintas"
-#: clutter/clutter-snap-constraint.c:350
+#: ../clutter/clutter-snap-constraint.c:350
msgid "To Edge"
msgstr "Iki krašto"
-#: clutter/clutter-snap-constraint.c:351
+#: ../clutter/clutter-snap-constraint.c:351
msgid "The edge of the source that should be snapped"
msgstr "Šaltinio kraštas, prie kurio turi būti kabinama"
-#: clutter/clutter-snap-constraint.c:367
+#: ../clutter/clutter-snap-constraint.c:367
msgid "The offset in pixels to apply to the constraint"
msgstr "Poslinkis pikseliais ribojimo pritaikymui"
-#: clutter/clutter-stage.c:1707
+#: ../clutter/clutter-stage.c:1732
msgid "Fullscreen Set"
msgstr "Visas ekranas nustatytas"
-#: clutter/clutter-stage.c:1708
+#: ../clutter/clutter-stage.c:1733
msgid "Whether the main stage is fullscreen"
msgstr "Ar pagrindinė scena yra visame ekrane"
-#: clutter/clutter-stage.c:1724
+#: ../clutter/clutter-stage.c:1749
msgid "Offscreen"
msgstr "Už ekrano"
-#: clutter/clutter-stage.c:1725
+#: ../clutter/clutter-stage.c:1750
msgid "Whether the main stage should be rendered offscreen"
msgstr "Ar pagrindinė scena turi būti piešiama už ekrano"
-#: clutter/clutter-stage.c:1737 clutter/clutter-text.c:3052
+#: ../clutter/clutter-stage.c:1762
+#: ../clutter/clutter-text.c:3108
msgid "Cursor Visible"
msgstr "Žymeklis matomas"
-#: clutter/clutter-stage.c:1738
+#: ../clutter/clutter-stage.c:1763
msgid "Whether the mouse pointer is visible on the main stage"
msgstr "Ar pelės žymeklis yra matomas pagrindinėje scenoje"
-#: clutter/clutter-stage.c:1752
+#: ../clutter/clutter-stage.c:1777
msgid "User Resizable"
msgstr "Naudotojo keičiamas dydis"
-#: clutter/clutter-stage.c:1753
+#: ../clutter/clutter-stage.c:1778
msgid "Whether the stage is able to be resized via user interaction"
msgstr "Ar naudotojas gali keisti scenos dydį"
-#: clutter/clutter-stage.c:1766
+#: ../clutter/clutter-stage.c:1791
msgid "The color of the stage"
msgstr "Scenos spalva"
-#: clutter/clutter-stage.c:1780
+#: ../clutter/clutter-stage.c:1805
msgid "Perspective"
msgstr "Perspektyva"
-#: clutter/clutter-stage.c:1781
+#: ../clutter/clutter-stage.c:1806
msgid "Perspective projection parameters"
msgstr "Perspektyvos projekcijos parametrai"
-#: clutter/clutter-stage.c:1796
+#: ../clutter/clutter-stage.c:1821
msgid "Title"
msgstr "Pavadinimas"
-#: clutter/clutter-stage.c:1797
+#: ../clutter/clutter-stage.c:1822
msgid "Stage Title"
msgstr "Scenos pavadinimas"
-#: clutter/clutter-stage.c:1812
+#: ../clutter/clutter-stage.c:1837
msgid "Use Fog"
msgstr "Naudoti rūką"
-#: clutter/clutter-stage.c:1813
+#: ../clutter/clutter-stage.c:1838
msgid "Whether to enable depth cueing"
msgstr "Ar įjungti gylio replikavimą"
-#: clutter/clutter-stage.c:1827
+#: ../clutter/clutter-stage.c:1852
msgid "Fog"
msgstr "Rūkas"
-#: clutter/clutter-stage.c:1828
+#: ../clutter/clutter-stage.c:1853
msgid "Settings for the depth cueing"
msgstr "Gylio replikavimo nustatymai"
-#: clutter/clutter-stage.c:1844
+#: ../clutter/clutter-stage.c:1869
msgid "Use Alpha"
msgstr "Naudoti alfą"
-#: clutter/clutter-stage.c:1845
+#: ../clutter/clutter-stage.c:1870
msgid "Whether to honour the alpha component of the stage color"
msgstr "Ar naudoti scenos spalvos alfa komponentą"
-#: clutter/clutter-stage.c:1861
+#: ../clutter/clutter-stage.c:1886
msgid "Key Focus"
msgstr "Klavišo klausymas"
-#: clutter/clutter-stage.c:1862
+#: ../clutter/clutter-stage.c:1887
msgid "The currently key focused actor"
msgstr "Šiuo metu klavišų klausantis aktorius"
-#: clutter/clutter-stage.c:1878
+#: ../clutter/clutter-stage.c:1903
msgid "No Clear Hint"
msgstr "Nevalymo patarimas"
-#: clutter/clutter-stage.c:1879
+#: ../clutter/clutter-stage.c:1904
msgid "Whether the stage should clear its contents"
msgstr "Ar scena turi valyti savo turinį"
-#: clutter/clutter-stage.c:1892
+#: ../clutter/clutter-stage.c:1917
msgid "Accept Focus"
msgstr "Tapti aktyvia"
-#: clutter/clutter-stage.c:1893
+#: ../clutter/clutter-stage.c:1918
msgid "Whether the stage should accept focus on show"
msgstr "Ar scena turi tapti aktyvia parodymo metu"
-#: clutter/clutter-state.c:1472
+#: ../clutter/clutter-state.c:1472
msgid "State"
msgstr "Būsena"
-#: clutter/clutter-state.c:1473
+#: ../clutter/clutter-state.c:1473
msgid "Currently set state, (transition to this state might not be complete)"
msgstr "Dabartinė būsena (perėjimas į šią būseną gali būti neužbaigtas)"
-#: clutter/clutter-state.c:1487
+#: ../clutter/clutter-state.c:1487
msgid "Default transition duration"
msgstr "Numatyta perėjimo trukmė"
-#: clutter/clutter-table-layout.c:585
+#: ../clutter/clutter-table-layout.c:585
msgid "Column Number"
msgstr "Stulpelio numeris"
-#: clutter/clutter-table-layout.c:586
+#: ../clutter/clutter-table-layout.c:586
msgid "The column the widget resides in"
msgstr "Stulpelis, kuriame yra elementas"
-#: clutter/clutter-table-layout.c:593
+#: ../clutter/clutter-table-layout.c:593
msgid "Row Number"
msgstr "Eilutės numeris"
-#: clutter/clutter-table-layout.c:594
+#: ../clutter/clutter-table-layout.c:594
msgid "The row the widget resides in"
msgstr "Eilutė, kurioje yra elementas"
-#: clutter/clutter-table-layout.c:601
+#: ../clutter/clutter-table-layout.c:601
msgid "Column Span"
msgstr "Stulpelių apimtis"
-#: clutter/clutter-table-layout.c:602
+#: ../clutter/clutter-table-layout.c:602
msgid "The number of columns the widget should span"
msgstr "Elemento apimamų stulpelių skaičius"
-#: clutter/clutter-table-layout.c:609
+#: ../clutter/clutter-table-layout.c:609
msgid "Row Span"
msgstr "Eilučių apimtis"
-#: clutter/clutter-table-layout.c:610
+#: ../clutter/clutter-table-layout.c:610
msgid "The number of rows the widget should span"
msgstr "Elemento apimamų eilučių skaičius"
-#: clutter/clutter-table-layout.c:617
+#: ../clutter/clutter-table-layout.c:617
msgid "Horizontal Expand"
msgstr "Horizontalus plėtimasis"
-#: clutter/clutter-table-layout.c:618
+#: ../clutter/clutter-table-layout.c:618
msgid "Allocate extra space for the child in horizontal axis"
msgstr "Išskirti papildomai vietos vaikui horizontalioje ašyje"
-#: clutter/clutter-table-layout.c:624
+#: ../clutter/clutter-table-layout.c:624
msgid "Vertical Expand"
msgstr "Vertikalus plėtimasis"
-#: clutter/clutter-table-layout.c:625
+#: ../clutter/clutter-table-layout.c:625
msgid "Allocate extra space for the child in vertical axis"
msgstr "Išskirti papildomai vietos vaikui vertikalioje ašyje"
-#: clutter/clutter-table-layout.c:1714
+#: ../clutter/clutter-table-layout.c:1714
msgid "Spacing between columns"
msgstr "Tarpai tarp stulpelių"
-#: clutter/clutter-table-layout.c:1728
+#: ../clutter/clutter-table-layout.c:1728
msgid "Spacing between rows"
msgstr "Tarpai tarp eilučių"
-#: clutter/clutter-text.c:2940
+#: ../clutter/clutter-text.c:2996
msgid "The font to be used by the text"
msgstr "Tekstui naudojamas šriftas"
-#: clutter/clutter-text.c:2957
+#: ../clutter/clutter-text.c:3013
msgid "Font Description"
msgstr "Šrifto aprašymas"
-#: clutter/clutter-text.c:2958
+#: ../clutter/clutter-text.c:3014
msgid "The font description to be used"
msgstr "Naudotinas šrifto aprašymas"
-#: clutter/clutter-text.c:2974
+#: ../clutter/clutter-text.c:3030
msgid "Text"
msgstr "Tekstas"
-#: clutter/clutter-text.c:2975
+#: ../clutter/clutter-text.c:3031
msgid "The text to render"
msgstr "Piešiamas tekstas"
-#: clutter/clutter-text.c:2989
+#: ../clutter/clutter-text.c:3045
msgid "Font Color"
msgstr "Šrifto spalva"
-#: clutter/clutter-text.c:2990
+#: ../clutter/clutter-text.c:3046
msgid "Color of the font used by the text"
msgstr "Teksto naudojamo šrifto spalva"
-#: clutter/clutter-text.c:3004
+#: ../clutter/clutter-text.c:3060
msgid "Editable"
msgstr "Redaguojamas"
-#: clutter/clutter-text.c:3005
+#: ../clutter/clutter-text.c:3061
msgid "Whether the text is editable"
msgstr "Ar tekstas yra redaguojamas"
-#: clutter/clutter-text.c:3020
+#: ../clutter/clutter-text.c:3076
msgid "Selectable"
msgstr "Žymimas"
-#: clutter/clutter-text.c:3021
+#: ../clutter/clutter-text.c:3077
msgid "Whether the text is selectable"
msgstr "Ar tekstas leidžia žymėjimus"
-#: clutter/clutter-text.c:3035
+#: ../clutter/clutter-text.c:3091
msgid "Activatable"
msgstr "Aktyvuojamas"
-#: clutter/clutter-text.c:3036
+#: ../clutter/clutter-text.c:3092
msgid "Whether pressing return causes the activate signal to be emitted"
msgstr "Ar enter paspaudimas sukelia aktyvavimo signalo siuntimą"
-#: clutter/clutter-text.c:3053
+#: ../clutter/clutter-text.c:3109
msgid "Whether the input cursor is visible"
msgstr "Ar įvesties žymeklis yra matomas"
-#: clutter/clutter-text.c:3067 clutter/clutter-text.c:3068
+#: ../clutter/clutter-text.c:3123
+#: ../clutter/clutter-text.c:3124
msgid "Cursor Color"
msgstr "Žymeklio spalva"
-#: clutter/clutter-text.c:3082
+#: ../clutter/clutter-text.c:3138
msgid "Cursor Color Set"
msgstr "Žymeklio spalva nustatyta"
-#: clutter/clutter-text.c:3083
+#: ../clutter/clutter-text.c:3139
msgid "Whether the cursor color has been set"
msgstr "Ar žymeklio spalva nustatyta"
-#: clutter/clutter-text.c:3098
+#: ../clutter/clutter-text.c:3154
msgid "Cursor Size"
msgstr "Žymeklio dydis"
-#: clutter/clutter-text.c:3099
+#: ../clutter/clutter-text.c:3155
msgid "The width of the cursor, in pixels"
msgstr "Žymeklio plotis pikseliais"
-#: clutter/clutter-text.c:3113
+#: ../clutter/clutter-text.c:3169
msgid "Cursor Position"
msgstr "Žymeklio padėtis"
-#: clutter/clutter-text.c:3114
+#: ../clutter/clutter-text.c:3170
msgid "The cursor position"
msgstr "Žymeklio padėtis"
-#: clutter/clutter-text.c:3129
+#: ../clutter/clutter-text.c:3185
msgid "Selection-bound"
msgstr "Žymėjimo riba"
-#: clutter/clutter-text.c:3130
+#: ../clutter/clutter-text.c:3186
msgid "The cursor position of the other end of the selection"
msgstr "Žymeklio padėtis kitame pažymėjimo gale"
-#: clutter/clutter-text.c:3145 clutter/clutter-text.c:3146
+#: ../clutter/clutter-text.c:3201
+#: ../clutter/clutter-text.c:3202
msgid "Selection Color"
msgstr "Žymėjimo spalva"
-#: clutter/clutter-text.c:3160
+#: ../clutter/clutter-text.c:3216
msgid "Selection Color Set"
msgstr "Žymėjimo spalva nustatyta"
-#: clutter/clutter-text.c:3161
+#: ../clutter/clutter-text.c:3217
msgid "Whether the selection color has been set"
msgstr "Ar žymėjimo spalva buvo nustatyta"
-#: clutter/clutter-text.c:3176
+#: ../clutter/clutter-text.c:3232
msgid "Attributes"
msgstr "Atributai"
-#: clutter/clutter-text.c:3177
+#: ../clutter/clutter-text.c:3233
msgid "A list of style attributes to apply to the contents of the actor"
msgstr "Aktoriaus turiniui taikomų stiliaus atributų sąrašas"
-#: clutter/clutter-text.c:3199
+#: ../clutter/clutter-text.c:3255
msgid "Use markup"
msgstr "Naudoti žymėjimą"
-#: clutter/clutter-text.c:3200
+#: ../clutter/clutter-text.c:3256
msgid "Whether or not the text includes Pango markup"
msgstr "Ar tektas turi Pango žymėjimus"
-#: clutter/clutter-text.c:3216
+#: ../clutter/clutter-text.c:3272
msgid "Line wrap"
msgstr "Eilučių laužymas"
-#: clutter/clutter-text.c:3217
+#: ../clutter/clutter-text.c:3273
msgid "If set, wrap the lines if the text becomes too wide"
msgstr "Jei nustatyta, eilutės laužomos, kai tekstas tampa per platus"
-#: clutter/clutter-text.c:3232
+#: ../clutter/clutter-text.c:3288
msgid "Line wrap mode"
msgstr "Eilučių laužymo veiksena"
-#: clutter/clutter-text.c:3233
+#: ../clutter/clutter-text.c:3289
msgid "Control how line-wrapping is done"
msgstr "Valdyti, kaip atliekamas eilučių laužymas"
-#: clutter/clutter-text.c:3248
+#: ../clutter/clutter-text.c:3304
msgid "Ellipsize"
msgstr "Daugtaškis"
-#: clutter/clutter-text.c:3249
+#: ../clutter/clutter-text.c:3305
msgid "The preferred place to ellipsize the string"
msgstr "Pageidaujama vieta daugtaškiui eilutėje"
-#: clutter/clutter-text.c:3265
+#: ../clutter/clutter-text.c:3321
msgid "Line Alignment"
msgstr "Eilutės lygiavimas"
-#: clutter/clutter-text.c:3266
+#: ../clutter/clutter-text.c:3322
msgid "The preferred alignment for the string, for multi-line text"
msgstr "Pageidaujamas eilučių lygiavimas daugelio eilučių tekstui"
-#: clutter/clutter-text.c:3282
+#: ../clutter/clutter-text.c:3338
msgid "Justify"
msgstr "Abi pusės"
-#: clutter/clutter-text.c:3283
+#: ../clutter/clutter-text.c:3339
msgid "Whether the text should be justified"
msgstr "Ar tekstas turi būti lygiuojamos"
-#: clutter/clutter-text.c:3298
+#: ../clutter/clutter-text.c:3354
msgid "Password Character"
msgstr "Slaptažodžio simbolis"
-#: clutter/clutter-text.c:3299
+#: ../clutter/clutter-text.c:3355
msgid "If non-zero, use this character to display the actor's contents"
msgstr "Jei ne nulis, naudoti šį simbolį aktoriaus turiniui parodyti"
-#: clutter/clutter-text.c:3313
+#: ../clutter/clutter-text.c:3369
msgid "Max Length"
msgstr "Didžiausias ilgis"
-#: clutter/clutter-text.c:3314
+#: ../clutter/clutter-text.c:3370
msgid "Maximum length of the text inside the actor"
msgstr "Didžiausias teksto ilgis aktoriuje"
-#: clutter/clutter-text.c:3337
+#: ../clutter/clutter-text.c:3393
msgid "Single Line Mode"
msgstr "Vienos eilutės veiksena"
-#: clutter/clutter-text.c:3338
+#: ../clutter/clutter-text.c:3394
msgid "Whether the text should be a single line"
msgstr "Ar tekstas turi būti viena eilutė"
-#: clutter/clutter-text.c:3352 clutter/clutter-text.c:3353
+#: ../clutter/clutter-text.c:3408
+#: ../clutter/clutter-text.c:3409
msgid "Selected Text Color"
msgstr "Pažymėto teksto spalva"
-#: clutter/clutter-text.c:3367
+#: ../clutter/clutter-text.c:3423
msgid "Selected Text Color Set"
msgstr "Pažymėto teksto spalva nustatyta"
-#: clutter/clutter-text.c:3368
+#: ../clutter/clutter-text.c:3424
msgid "Whether the selected text color has been set"
msgstr "Ar pažymėto teksto spalva buvo nustatyta"
-#: clutter/clutter-texture.c:995
+#: ../clutter/clutter-texture.c:981
msgid "Sync size of actor"
msgstr "Sinchronizuoti aktoriaus dydį"
-#: clutter/clutter-texture.c:996
+#: ../clutter/clutter-texture.c:982
msgid "Auto sync size of actor to underlying pixbuf dimensions"
-msgstr ""
-"Automatiškai sinchronizuoti aktoriaus dydį į pikselių buferio dimensijas"
+msgstr "Automatiškai sinchronizuoti aktoriaus dydį į pikselių buferio dimensijas"
-#: clutter/clutter-texture.c:1003
+#: ../clutter/clutter-texture.c:989
msgid "Disable Slicing"
msgstr "Išjungti dalinimą"
-#: clutter/clutter-texture.c:1004
-msgid ""
-"Forces the underlying texture to be singular and not made of smaller space "
-"saving individual textures"
-msgstr ""
-"Verčia tekstūrą būti vientisa ir nesudaryta iš mažesnių vietą taupančių "
-"atskirų tekstūrų"
+#: ../clutter/clutter-texture.c:990
+msgid "Forces the underlying texture to be singular and not made of smaller space saving individual textures"
+msgstr "Verčia tekstūrą būti vientisa ir nesudaryta iš mažesnių vietą taupančių atskirų tekstūrų"
-#: clutter/clutter-texture.c:1013
+#: ../clutter/clutter-texture.c:999
msgid "Tile Waste"
msgstr "Koklių šiukšlinė"
-#: clutter/clutter-texture.c:1014
+#: ../clutter/clutter-texture.c:1000
msgid "Maximum waste area of a sliced texture"
msgstr "Didžiausia šiukšlių viena padalintoms tekstūroms"
-#: clutter/clutter-texture.c:1022
+#: ../clutter/clutter-texture.c:1008
msgid "Horizontal repeat"
msgstr "Horizontalus pasikartojimas"
-#: clutter/clutter-texture.c:1023
+#: ../clutter/clutter-texture.c:1009
msgid "Repeat the contents rather than scaling them horizontally"
msgstr "Pakartoti turinį užuot jį didinus horizontaliai"
-#: clutter/clutter-texture.c:1030
+#: ../clutter/clutter-texture.c:1016
msgid "Vertical repeat"
msgstr "Vertikalus pakartojimas"
-#: clutter/clutter-texture.c:1031
+#: ../clutter/clutter-texture.c:1017
msgid "Repeat the contents rather than scaling them vertically"
msgstr "Pakartoti turinį užuot jį didinus vertikaliai"
-#: clutter/clutter-texture.c:1038
+#: ../clutter/clutter-texture.c:1024
msgid "Filter Quality"
msgstr "Filtro kokybė"
-#: clutter/clutter-texture.c:1039
+#: ../clutter/clutter-texture.c:1025
msgid "Rendering quality used when drawing the texture"
msgstr "Piešimo kokybė piešiant tekstūrą"
-#: clutter/clutter-texture.c:1047
+#: ../clutter/clutter-texture.c:1033
msgid "Pixel Format"
msgstr "Pikselių formatas"
-#: clutter/clutter-texture.c:1048
+#: ../clutter/clutter-texture.c:1034
msgid "The Cogl pixel format to use"
msgstr "Naudotinas Cogl pikselių formatas"
-#: clutter/clutter-texture.c:1056
+#: ../clutter/clutter-texture.c:1042
msgid "Cogl Texture"
msgstr "Cogl tekstūra"
-#: clutter/clutter-texture.c:1057
+#: ../clutter/clutter-texture.c:1043
msgid "The underlying Cogl texture handle used to draw this actor"
msgstr "Šiam aktoriui piešti naudojamos Cogl tekstūros deskriptorius"
-#: clutter/clutter-texture.c:1064
+#: ../clutter/clutter-texture.c:1050
msgid "Cogl Material"
msgstr "Cogl medžiaga"
-#: clutter/clutter-texture.c:1065
+#: ../clutter/clutter-texture.c:1051
msgid "The underlying Cogl material handle used to draw this actor"
msgstr "Šiam aktoriui piešti naudojamos Cogl medžiagos deskriptorius"
-#: clutter/clutter-texture.c:1082
+#: ../clutter/clutter-texture.c:1068
msgid "The path of the file containing the image data"
msgstr "Failo, turinčio paveikslėlio duomenis, kelias"
-#: clutter/clutter-texture.c:1089
+#: ../clutter/clutter-texture.c:1075
msgid "Keep Aspect Ratio"
msgstr "Išlaikyti proporcijas"
-#: clutter/clutter-texture.c:1090
-msgid ""
-"Keep the aspect ratio of the texture when requesting the preferred width or "
-"height"
+#: ../clutter/clutter-texture.c:1076
+msgid "Keep the aspect ratio of the texture when requesting the preferred width or height"
msgstr "Išlaikyti tekstūros proporcijas prašant pageidaujamo pločio ir aukščio"
-#: clutter/clutter-texture.c:1116
+#: ../clutter/clutter-texture.c:1102
msgid "Load asynchronously"
msgstr "Įkelti asinchroniškai"
-#: clutter/clutter-texture.c:1117
-msgid ""
-"Load files inside a thread to avoid blocking when loading images from disk"
-msgstr ""
-"Įkelti failus gijoje išvengiant blokavimo įkeliant paveikslėlius iš disko"
+#: ../clutter/clutter-texture.c:1103
+msgid "Load files inside a thread to avoid blocking when loading images from disk"
+msgstr "Įkelti failus gijoje išvengiant blokavimo įkeliant paveikslėlius iš disko"
-#: clutter/clutter-texture.c:1133
+#: ../clutter/clutter-texture.c:1119
msgid "Load data asynchronously"
msgstr "Įkelti duomenis asinchroniškai"
-#: clutter/clutter-texture.c:1134
-msgid ""
-"Decode image data files inside a thread to reduce blocking when loading "
-"images from disk"
-msgstr ""
-"Dekoduoti paveikslėlių failus gijoje sumažinant blokavimą įkeliant "
-"paveikslėlius iš disko"
+#: ../clutter/clutter-texture.c:1120
+msgid "Decode image data files inside a thread to reduce blocking when loading images from disk"
+msgstr "Dekoduoti paveikslėlių failus gijoje sumažinant blokavimą įkeliant paveikslėlius iš disko"
-#: clutter/clutter-texture.c:1158
+#: ../clutter/clutter-texture.c:1144
msgid "Pick With Alpha"
msgstr "Parinkti su alfa"
-#: clutter/clutter-texture.c:1159
+#: ../clutter/clutter-texture.c:1145
msgid "Shape actor with alpha channel when picking"
msgstr "Sudaryti aktorių su alfa kanalu parinkimo metu"
-#: clutter/clutter-texture.c:1557 clutter/clutter-texture.c:1967
-#: clutter/clutter-texture.c:2062 clutter/clutter-texture.c:2343
+#: ../clutter/clutter-texture.c:1543
+#: ../clutter/clutter-texture.c:1926
+#: ../clutter/clutter-texture.c:2020
+#: ../clutter/clutter-texture.c:2301
+#, c-format
msgid "Failed to load the image data"
msgstr "Nepavyko įkelti paveikslėlio duomenų"
-#: clutter/clutter-texture.c:1703
+#: ../clutter/clutter-texture.c:1689
+#, c-format
msgid "YUV textures are not supported"
msgstr "YUV tekstūros nepalaikomos"
-#: clutter/clutter-texture.c:1712
+#: ../clutter/clutter-texture.c:1698
+#, c-format
msgid "YUV2 textues are not supported"
msgstr "YUV2 tekstūros nepalaikomos"
-#: clutter/clutter-timeline.c:264
+#: ../clutter/clutter-timeline.c:264
msgid "Should the timeline automatically restart"
msgstr "Ar laiko linija turi automatiškai prasidėti iš naujo"
-#: clutter/clutter-timeline.c:278
+#: ../clutter/clutter-timeline.c:278
msgid "Delay"
msgstr "Delsa"
-#: clutter/clutter-timeline.c:279
+#: ../clutter/clutter-timeline.c:279
msgid "Delay before start"
msgstr "Delsa prieš pradžią"
-#: clutter/clutter-timeline.c:295
+#: ../clutter/clutter-timeline.c:295
msgid "Duration of the timeline in milliseconds"
msgstr "Laiko linijos trukmė milisekundėmis"
-#: clutter/clutter-timeline.c:311
+#: ../clutter/clutter-timeline.c:311
msgid "Direction of the timeline"
msgstr "Laiko linijos kryptis"
-#: clutter/clutter-timeline.c:326
+#: ../clutter/clutter-timeline.c:326
msgid "Auto Reverse"
msgstr "Automatinis apsukimas"
-#: clutter/clutter-timeline.c:327
+#: ../clutter/clutter-timeline.c:327
msgid "Whether the direction should be reversed when reaching the end"
msgstr "Ar kryptis turi būti apsukta pasiekus pabaigą"
-#: clutter/evdev/clutter-input-device-evdev.c:147
+#: ../clutter/evdev/clutter-input-device-evdev.c:147
msgid "sysfs Path"
msgstr "sysfs kelias"
-#: clutter/evdev/clutter-input-device-evdev.c:148
+#: ../clutter/evdev/clutter-input-device-evdev.c:148
msgid "Path of the device in sysfs"
msgstr "sysfs įrenginio kelias"
-#: clutter/evdev/clutter-input-device-evdev.c:163
+#: ../clutter/evdev/clutter-input-device-evdev.c:163
msgid "Device Path"
msgstr "Įrenginio kelias"
-#: clutter/evdev/clutter-input-device-evdev.c:164
+#: ../clutter/evdev/clutter-input-device-evdev.c:164
msgid "Path of the device node"
msgstr "Įrenginio viršūnės kelias"
-#: clutter/x11/clutter-backend-x11.c:483
+#: ../clutter/x11/clutter-backend-x11.c:483
msgid "X display to use"
msgstr "Naudojamas X vaizduoklis"
-#: clutter/x11/clutter-backend-x11.c:489
+#: ../clutter/x11/clutter-backend-x11.c:489
msgid "X screen to use"
msgstr "Naudojamas X ekranas"
-#: clutter/x11/clutter-backend-x11.c:494
+#: ../clutter/x11/clutter-backend-x11.c:494
msgid "Make X calls synchronous"
msgstr "Naudoti sinchroninius X kvietimus"
-#: clutter/x11/clutter-backend-x11.c:501
+#: ../clutter/x11/clutter-backend-x11.c:501
msgid "Enable XInput support"
msgstr "Įjungti XInput palaikymą"
-#: clutter/x11/clutter-keymap-x11.c:317
+#: ../clutter/x11/clutter-keymap-x11.c:317
msgid "The Clutter backend"
msgstr "Clutter realizacija"
-#: clutter/x11/clutter-x11-texture-pixmap.c:545
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:545
msgid "Pixmap"
msgstr "Pikselių žemėlapis"
-#: clutter/x11/clutter-x11-texture-pixmap.c:546
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:546
msgid "The X11 Pixmap to be bound"
msgstr "Ribojamas X11 pikselių žemėlapis"
-#: clutter/x11/clutter-x11-texture-pixmap.c:554
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:554
msgid "Pixmap width"
msgstr "Pikselių žemėlapio plotis"
-#: clutter/x11/clutter-x11-texture-pixmap.c:555
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:555
msgid "The width of the pixmap bound to this texture"
msgstr "Pikselių žemėlapio, ribojamo šia tekstūra, plotis"
-#: clutter/x11/clutter-x11-texture-pixmap.c:563
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:563
msgid "Pixmap height"
msgstr "Pikselių žemėlapio aukštis"
-#: clutter/x11/clutter-x11-texture-pixmap.c:564
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:564
msgid "The height of the pixmap bound to this texture"
msgstr "Pikselių žemėlapio, ribojamo šia tekstūra, aukštis"
-#: clutter/x11/clutter-x11-texture-pixmap.c:572
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:572
msgid "Pixmap Depth"
msgstr "Pikselių žemėlapio gylis"
-#: clutter/x11/clutter-x11-texture-pixmap.c:573
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:573
msgid "The depth (in number of bits) of the pixmap bound to this texture"
msgstr "Šios tekstūros ribojamo pikselių žemėlapio gylis (bitų skaičiumi)"
-#: clutter/x11/clutter-x11-texture-pixmap.c:581
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:581
msgid "Automatic Updates"
msgstr "Automatiniai atnaujinimai"
-#: clutter/x11/clutter-x11-texture-pixmap.c:582
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:582
msgid "If the texture should be kept in sync with any pixmap changes."
-msgstr ""
-"Ar tekstūra turi būti sinchroniška su pikselių žemėlapio pasikeitimais."
+msgstr "Ar tekstūra turi būti sinchroniška su pikselių žemėlapio pasikeitimais."
-#: clutter/x11/clutter-x11-texture-pixmap.c:590
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:590
msgid "Window"
msgstr "Langas"
-#: clutter/x11/clutter-x11-texture-pixmap.c:591
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:591
msgid "The X11 Window to be bound"
msgstr "Ribojamas X11 langas"
-#: clutter/x11/clutter-x11-texture-pixmap.c:599
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:599
msgid "Window Redirect Automatic"
msgstr "Automatinis lango nukreipimas"
-#: clutter/x11/clutter-x11-texture-pixmap.c:600
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:600
msgid "If composite window redirects are set to Automatic (or Manual if false)"
-msgstr ""
-"Ar komponavimo lango nukreipimai yra nustatyti į automatinius (priešingu "
-"atveju priverstiniai)"
+msgstr "Ar komponavimo lango nukreipimai yra nustatyti į automatinius (priešingu atveju priverstiniai)"
-#: clutter/x11/clutter-x11-texture-pixmap.c:610
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:610
msgid "Window Mapped"
msgstr "Langas pavaizduotas"
-#: clutter/x11/clutter-x11-texture-pixmap.c:611
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:611
msgid "If window is mapped"
msgstr "Ar langas yra pavaizduotas"
-#: clutter/x11/clutter-x11-texture-pixmap.c:620
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:620
msgid "Destroyed"
msgstr "Sunaikintas"
-#: clutter/x11/clutter-x11-texture-pixmap.c:621
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:621
msgid "If window has been destroyed"
msgstr "Ar langas buvo sunaikintas"
-#: clutter/x11/clutter-x11-texture-pixmap.c:629
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:629
msgid "Window X"
msgstr "Lango X"
-#: clutter/x11/clutter-x11-texture-pixmap.c:630
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:630
msgid "X position of window on screen according to X11"
msgstr "Lango X padėtis ekrane pagal X11"
-#: clutter/x11/clutter-x11-texture-pixmap.c:638
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:638
msgid "Window Y"
msgstr "Lango Y"
-#: clutter/x11/clutter-x11-texture-pixmap.c:639
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:639
msgid "Y position of window on screen according to X11"
msgstr "Lango Y padėtis ekrane pagal X11"
-#: clutter/x11/clutter-x11-texture-pixmap.c:646
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:646
msgid "Window Override Redirect"
msgstr "Langas nepaiso nukreipimo"
-#: clutter/x11/clutter-x11-texture-pixmap.c:647
+#: ../clutter/x11/clutter-x11-texture-pixmap.c:647
msgid "If this is an override-redirect window"
msgstr "Ar langas nepaiso nukreipimo"
+
diff --git a/tests/interactive/test-texture-async.c b/tests/interactive/test-texture-async.c
index a69690b27..20d802b24 100644
--- a/tests/interactive/test-texture-async.c
+++ b/tests/interactive/test-texture-async.c
@@ -120,9 +120,6 @@ test_texture_async_main (int argc, char *argv[])
{
gchar *path;
- g_thread_init (NULL);
- clutter_threads_init ();
-
if (clutter_init (&argc, &argv) != CLUTTER_INIT_SUCCESS)
return 1;
@@ -141,7 +138,9 @@ test_texture_async_main (int argc, char *argv[])
task, path,
cleanup_task);
+ clutter_threads_enter ();
clutter_main ();
+ clutter_threads_leave ();
g_free (path);
diff --git a/tests/interactive/test-texture-material.c b/tests/interactive/test-texture-material.c
index 867711f79..4886ce03a 100644
--- a/tests/interactive/test-texture-material.c
+++ b/tests/interactive/test-texture-material.c
@@ -10,8 +10,6 @@ test_texture_material_main (int argc, char *argv[])
ClutterLayoutManager *manager;
int i;
- g_thread_init (NULL);
- clutter_threads_init ();
if (clutter_init (&argc, &argv) != CLUTTER_INIT_SUCCESS)
return 1;
diff --git a/tests/interactive/test-threads.c b/tests/interactive/test-threads.c
index dd7a2f85f..fd73eafea 100644
--- a/tests/interactive/test-threads.c
+++ b/tests/interactive/test-threads.c
@@ -188,8 +188,6 @@ test_threads_main (int argc, char *argv[])
{ 400, 150 }
};
- g_thread_init (NULL);
- clutter_threads_init ();
if (clutter_init (&argc, &argv) != CLUTTER_INIT_SUCCESS)
return 1;