[dconf-editor] Allow fast integer selection on small range.
- From: Arnaud Bonatti <arnaudb src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [dconf-editor] Allow fast integer selection on small range.
- Date: Thu, 26 Jan 2017 13:40:19 +0000 (UTC)
commit 47706c1e6fe3bd3c1e5efe09aba76863576b028d
Author: Arnaud Bonatti <arnaud bonatti gmail com>
Date: Thu Jan 26 01:56:38 2017 +0100
Allow fast integer selection on small range.
editor/ca.desrt.dconf-editor.gschema.xml | 4 +-
editor/dconf-model.vala | 24 ++++++++++++++++++++
editor/key-list-box-row.vala | 36 ++++++++++++++++++++++++++---
po/an.po | 2 +-
po/ar.po | 2 +-
po/as.po | 2 +-
po/be.po | 2 +-
po/bg.po | 2 +-
po/bn_IN.po | 2 +-
po/bs.po | 2 +-
po/ca.po | 4 +-
po/ca valencia po | 2 +-
po/cs.po | 4 +-
po/da.po | 4 +-
po/de.po | 4 +-
po/el.po | 4 +-
po/en_GB.po | 4 +-
po/eo.po | 2 +-
po/es.po | 4 +-
po/et.po | 2 +-
po/eu.po | 4 +-
po/fa.po | 2 +-
po/fi.po | 2 +-
po/fr.po | 4 +-
po/fur.po | 4 +-
po/gl.po | 4 +-
po/he.po | 4 +-
po/hi.po | 2 +-
po/hu.po | 4 +-
po/id.po | 6 ++--
po/is.po | 2 +-
po/it.po | 4 +-
po/ja.po | 2 +-
po/kk.po | 2 +-
po/ko.po | 6 ++--
po/lt.po | 4 +-
po/lv.po | 4 +-
po/ml.po | 2 +-
po/mr.po | 2 +-
po/nb.po | 2 +-
po/nl.po | 2 +-
po/oc.po | 4 +-
po/pa.po | 2 +-
po/pl.po | 4 +-
po/pt.po | 4 +-
po/pt_BR.po | 4 +-
po/ro.po | 2 +-
po/ru.po | 2 +-
po/sk.po | 4 +-
po/sl.po | 2 +-
po/sr.po | 4 +-
po/sr latin po | 4 +-
po/sv.po | 2 +-
po/ta.po | 2 +-
po/te.po | 2 +-
po/tg.po | 2 +-
po/th.po | 2 +-
po/tr.po | 2 +-
po/ug.po | 2 +-
po/uk.po | 2 +-
po/vi.po | 2 +-
po/zh_CN.po | 2 +-
po/zh_HK.po | 2 +-
po/zh_TW.po | 4 +-
64 files changed, 147 insertions(+), 95 deletions(-)
---
diff --git a/editor/ca.desrt.dconf-editor.gschema.xml b/editor/ca.desrt.dconf-editor.gschema.xml
index 27fd688..ba53509 100644
--- a/editor/ca.desrt.dconf-editor.gschema.xml
+++ b/editor/ca.desrt.dconf-editor.gschema.xml
@@ -188,9 +188,9 @@ If you are not interacting with D-Bus, then there is no reason to make use of th
<!-- TODO add a nullable-(unsigned-)integer -->
<key name="number-with-range" type="i">
<default>3</default>
- <range min="-5" max="9"/>
+ <range min="-2" max="10"/>
<summary>A number with range</summary>
- <description>Every numeral setting (integers and unsigned integers of every type, plus doubles) could
be limited to a custom range of values. For example, this integer could only take a value between -5 and
9.</description> <!-- TODO and handle? -->
+ <description>Every numeral setting (integers and unsigned integers of every type, plus doubles) could
be limited to a custom range of values. For example, this integer could only take a value between -2 and
10.</description> <!-- TODO and handle? -->
</key>
<key name="pair-of-integers" type="(ii)">
<default>(800, 600)</default>
diff --git a/editor/dconf-model.vala b/editor/dconf-model.vala
index f4d67f5..2c8d97b 100644
--- a/editor/dconf-model.vala
+++ b/editor/dconf-model.vala
@@ -354,6 +354,30 @@ public abstract class Key : SettingObject
{
return (type == "d" || type == "y" || type == "n" || type == "q" || type == "i" || type == "u" ||
type == "x" || type == "t");
}
+
+ public static uint64 get_variant_as_uint64 (Variant variant)
+ {
+ switch (variant.classify ())
+ {
+ case Variant.Class.BYTE: return (int64) variant.get_byte ();
+ case Variant.Class.UINT16: return (int64) variant.get_uint16 ();
+ case Variant.Class.UINT32: return (int64) variant.get_uint32 ();
+ case Variant.Class.UINT64: return variant.get_uint64 ();
+ default: assert_not_reached ();
+ }
+ }
+
+ public static int64 get_variant_as_int64 (Variant variant)
+ {
+ switch (variant.classify ())
+ {
+ case Variant.Class.INT16: return (int64) variant.get_int16 ();
+ case Variant.Class.INT32: return (int64) variant.get_int32 ();
+ case Variant.Class.INT64: return variant.get_int64 ();
+ case Variant.Class.HANDLE: return (int64) variant.get_handle ();
+ default: assert_not_reached ();
+ }
+ }
}
public class DConfKey : Key
diff --git a/editor/key-list-box-row.vala b/editor/key-list-box-row.vala
index 537b300..6031185 100644
--- a/editor/key-list-box-row.vala
+++ b/editor/key-list-box-row.vala
@@ -351,10 +351,18 @@ private class KeyListBoxRowEditable : KeyListBoxRow
popover.new_action ("customize", () => on_row_clicked ());
popover.new_copy_action (get_text ());
- if (key.type_string == "b" || key.type_string == "<enum>" || key.type_string == "mb")
+ if (key.type_string == "b" || key.type_string == "<enum>" || key.type_string == "mb"
+ || (
+ (key.type_string == "y" || key.type_string == "q" || key.type_string == "u" ||
key.type_string == "t")
+ && (((GSettingsKey) key).range_type == "range")
+ && (Key.get_variant_as_uint64 (((GSettingsKey) key).range_content.get_child_value (1)) -
Key.get_variant_as_uint64 (((GSettingsKey) key).range_content.get_child_value (0)) < 13)
+ )
+ || (
+ (key.type_string == "n" || key.type_string == "i" || key.type_string == "h" ||
key.type_string == "x")
+ && (((GSettingsKey) key).range_type == "range")
+ && (Key.get_variant_as_int64 (((GSettingsKey) key).range_content.get_child_value (1)) -
Key.get_variant_as_int64 (((GSettingsKey) key).range_content.get_child_value (0)) < 13)
+ ))
{
- string real_type_string = key.value.get_type_string ();
-
popover.new_section ();
GLib.Action action = popover.create_buttons_list (key, true, delayed_apply_menu);
@@ -364,7 +372,7 @@ private class KeyListBoxRowEditable : KeyListBoxRow
});
popover.value_changed.connect ((gvariant) => {
hide_right_click_popover ();
- action.change_state (new Variant.maybe (null, new Variant.maybe (new VariantType
(real_type_string), gvariant)));
+ action.change_state (new Variant.maybe (null, new Variant.maybe (new VariantType
(key.value.get_type_string ()), gvariant)));
set_key_value (gvariant);
});
}
@@ -621,6 +629,26 @@ private class ContextPopover : Popover
current_section.append (Key.cool_boolean_text_value (true), @"$group_dot_action(@mmmb
true)");
current_section.append (Key.cool_boolean_text_value (false), @"$group_dot_action(@mmmb
false)");
break;
+ case "y":
+ case "q":
+ case "u":
+ case "t":
+ Variant range = ((GSettingsKey) key).range_content;
+ for (uint64 number = Key.get_variant_as_uint64 (range.get_child_value (0));
+ number <= Key.get_variant_as_uint64 (range.get_child_value (1));
+ number++)
+ current_section.append (number.to_string (), @"$group_dot_action(@mm$type_string
$number)");
+ break;
+ case "n":
+ case "i":
+ case "h":
+ case "x":
+ Variant range = ((GSettingsKey) key).range_content;
+ for (int64 number = Key.get_variant_as_int64 (range.get_child_value (0));
+ number <= Key.get_variant_as_int64 (range.get_child_value (1));
+ number++)
+ current_section.append (number.to_string (), @"$group_dot_action(@mm$type_string
$number)");
+ break;
}
((GLib.ActionGroup) current_group).action_state_changed [ACTION_NAME].connect ((unknown_string,
tmp_variant) => {
diff --git a/po/an.po b/po/an.po
index 3ce29dd..c3f8434 100644
--- a/po/an.po
+++ b/po/an.po
@@ -375,7 +375,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/ar.po b/po/ar.po
index 74bccd8..474697d 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -376,7 +376,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/as.po b/po/as.po
index bc99bcc..b7741ab 100644
--- a/po/as.po
+++ b/po/as.po
@@ -374,7 +374,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/be.po b/po/be.po
index 6dc72cb..1cbfc4c 100644
--- a/po/be.po
+++ b/po/be.po
@@ -372,7 +372,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/bg.po b/po/bg.po
index 9e26c38..bb8008e 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -373,7 +373,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/bn_IN.po b/po/bn_IN.po
index 0995af2..5f310c3 100644
--- a/po/bn_IN.po
+++ b/po/bn_IN.po
@@ -374,7 +374,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/bs.po b/po/bs.po
index 387e375..9f6bbf3 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -375,7 +375,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/ca.po b/po/ca.po
index ef0730f..819b17e 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -351,11 +351,11 @@ msgstr "Un nombre amb rang"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Cada configuració de numeral (enters i enters sense signe de qualsevol "
"tipus, a més dels dobles) es podrien limitar a un rang personalitzat de "
-"valors. Per exemple, aquest enter podria prendre sols un valor entre -5 i 9."
+"valors. Per exemple, aquest enter podria prendre sols un valor entre -2 i 10."
#: ../editor/ca.desrt.dconf-editor.gschema.xml.h:66
msgid "A custom type, here ‘(ii)’"
diff --git a/po/ca valencia po b/po/ca valencia po
index 8d431fc..ea0a2ee 100644
--- a/po/ca valencia po
+++ b/po/ca valencia po
@@ -373,7 +373,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/cs.po b/po/cs.po
index c68668f..6e7fc9c 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -416,11 +416,11 @@ msgstr "Číslo s rozsahem"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Kterékoliv nastavení s číselnou hodnotou (celá čísla a celá nezáporná čísla, "
"plus čísla s dvojitou přesností) může být omezeno jen na určitý rozsah "
-"hodnot. Například, celé číslo by mohlo nabývat jen hodnot mezi -5 a 9."
+"hodnot. Například, celé číslo by mohlo nabývat jen hodnot mezi -2 a 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here ‘(ii)’"
diff --git a/po/da.po b/po/da.po
index 89b9890..f4a3d8b 100644
--- a/po/da.po
+++ b/po/da.po
@@ -443,11 +443,11 @@ msgstr "Et tal med interval"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Enhver talindstilling (heltal og heltal uden fortegn for hver type samt "
"decimaltal) kan være begrænset til et brugerdefineret område af værdier. F."
-"eks. kan dette heltal kun tage en værdi mellem -5 og 9."
+"eks. kan dette heltal kun tage en værdi mellem -2 og 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here \"(ii)\""
diff --git a/po/de.po b/po/de.po
index 964df0c..be990c1 100644
--- a/po/de.po
+++ b/po/de.po
@@ -449,12 +449,12 @@ msgstr "Eine Zahl mit Bereichsangabe"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Alle numerischen Einstellungswerte (Ganzzahlen und vorzeichenlose Ganzzahlen "
"jedes Typs sowie Gleitkommazahlen doppelter Genauigkeit) können auf einen "
"benutzerdefinierten Bereich begrenzt werden. Zum Beispiel kann diese "
-"Ganzzahl nur einen Wert zwischen -5 und 9 haben."
+"Ganzzahl nur einen Wert zwischen -2 und 10 haben."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here ‘(ii)’"
diff --git a/po/el.po b/po/el.po
index c2352ad..5b87098 100644
--- a/po/el.po
+++ b/po/el.po
@@ -442,11 +442,11 @@ msgstr "Ένας αριθμός με εύρος"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Κάθε αριθμητική επιλογή (ακέραιοι και ακέραιοι χωρίς πρόσημο κάθε τύπου, και "
"double) μπορεί να περιοριστεί σε ένα προσαρμοσμένο εύρος τιμών. Για "
-"παράδειγμα, αυτός ο ακέραιος μπορεί να πάρει μια τιμή μεταξύ -5 και 9."
+"παράδειγμα, αυτός ο ακέραιος μπορεί να πάρει μια τιμή μεταξύ -2 και 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here \"(ii)\""
diff --git a/po/en_GB.po b/po/en_GB.po
index 975a5b7..0d98ab4 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -431,11 +431,11 @@ msgstr "A number with range"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here \"(ii)\""
diff --git a/po/eo.po b/po/eo.po
index dfce065..24bc465 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -376,7 +376,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/es.po b/po/es.po
index ffc0f39..17401a4 100644
--- a/po/es.po
+++ b/po/es.po
@@ -425,11 +425,11 @@ msgstr "Un número en un rango"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Cada configuración de numeral (enteros con y sin signo de cada tipo, y "
"dobles) se puede limitar a un determinado rango de valores. Por ejemplo, "
-"este entero sólo puede tomar valores entre -5 y 9."
+"este entero sólo puede tomar valores entre -2 y 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here ‘(ii)’"
diff --git a/po/et.po b/po/et.po
index a6602eb..f7b66ca 100644
--- a/po/et.po
+++ b/po/et.po
@@ -374,7 +374,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/eu.po b/po/eu.po
index 0aaf33c..8faa94b 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -442,11 +442,11 @@ msgstr "Barrutia duen zenbaki bat"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Zenbakizko ezarpen bakoitza (edozer motatako osokoak eta zeinurik gabeko "
"osokoak baita bikoitzak ere) balioen barruti pertsonalizatu batera muga "
-"daiteke. Adibidez, osoko honek -5 eta 9 arteko balio bat har dezake soilik."
+"daiteke. Adibidez, osoko honek -2 eta 10 arteko balio bat har dezake soilik."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here \"(ii)\""
diff --git a/po/fa.po b/po/fa.po
index 212ec11..a1027bb 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -374,7 +374,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/fi.po b/po/fi.po
index 78e19e1..e9f9e4c 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -379,7 +379,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/fr.po b/po/fr.po
index 1e2e4cd..54bdee0 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -437,11 +437,11 @@ msgstr "Un nombre avec intervalle"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Chaque réglage numérique (entiers signés et non signés de chaque type, plus "
"nombres à virgule) peut être limité par un intervalle de valeurs. Par "
-"exemple, cet entier accepte uniquement des valeurs entre -5 et 9."
+"exemple, cet entier accepte uniquement des valeurs entre -2 et 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here \"(ii)\""
diff --git a/po/fur.po b/po/fur.po
index 995d239..8990db8 100644
--- a/po/fur.po
+++ b/po/fur.po
@@ -423,11 +423,11 @@ msgstr "Un numar intun interval"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Dutis lis impostazions numerichis (intîrs, intîrs cence segn di ducj i "
"gjenars e i doplis) a puedin jessi limitâts intun interval di valôrs "
-"personalizât. Par esempli, chest intîr al pues nome vê un valôr tra -5 e 9."
+"personalizât. Par esempli, chest intîr al pues nome vê un valôr tra -2 e 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here ‘(ii)’"
diff --git a/po/gl.po b/po/gl.po
index 95b4cdb..545d0d4 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -439,11 +439,11 @@ msgstr "Un número con rango"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Cada configuración numeral (enteiros e enteiros sen signo de cada tipo, "
"ademáis dos doubles) poden limitarse a un rango de valores personalizado. "
-"Por exemplo, este enteiro podería só ter valores entre -5 e 9."
+"Por exemplo, este enteiro podería só ter valores entre -2 e 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here \"(ii)\""
diff --git a/po/he.po b/po/he.po
index 54ceba1..b4ec3ca 100644
--- a/po/he.po
+++ b/po/he.po
@@ -434,11 +434,11 @@ msgstr "A number with range"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here \"(ii)\""
diff --git a/po/hi.po b/po/hi.po
index 582375e..b388f19 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -376,7 +376,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/hu.po b/po/hu.po
index 9d26e58..d00de02 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -483,11 +483,11 @@ msgstr "Egy szám egy megadott intervallumban"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Minden számszerű érték (előjeles és előjel nélküli egészek, valamint a "
"lebegőpontosok) lekorlátozható egy adott intervallumra. Például ez az egész "
-"érték csak -5 és 9 között vehet fel értékeket."
+"érték csak -2 és 10 között vehet fel értékeket."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
#| msgid "A custom type, here \"(ii)\""
diff --git a/po/id.po b/po/id.po
index bc536ca..5ccc1da 100644
--- a/po/id.po
+++ b/po/id.po
@@ -440,12 +440,12 @@ msgstr "Sebuah bilangan dengan rentang"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Setiap pengaturan numeral (bilangan bulat dan bilangan bulat tak bertanda "
"tipe apapun, dan double) dapat dibatasi ke suatu rentang nilai ubahan. "
-"Sebagai contoh, bilangan bulat ini hanya bisa menyimpan nilai antara -5 dan "
-"9."
+"Sebagai contoh, bilangan bulat ini hanya bisa menyimpan nilai antara -2 dan "
+"10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here \"(ii)\""
diff --git a/po/is.po b/po/is.po
index 72adc94..788a260 100644
--- a/po/is.po
+++ b/po/is.po
@@ -373,7 +373,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/it.po b/po/it.po
index 4f03101..0d77d86 100644
--- a/po/it.po
+++ b/po/it.po
@@ -454,11 +454,11 @@ msgstr "Un numero in un intervallo"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Tutte le impostazioni numeriche (interi, senza segno e i double) possono "
"essere limitate in un intervallo di valori personalizzato. Questo intero, "
-"per esempio, accetta solo valori tra -5 e 9."
+"per esempio, accetta solo valori tra -2 e 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here \"(ii)\""
diff --git a/po/ja.po b/po/ja.po
index bc2637c..db97206 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -373,7 +373,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/kk.po b/po/kk.po
index c6c9995..a685aea 100644
--- a/po/kk.po
+++ b/po/kk.po
@@ -375,7 +375,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/ko.po b/po/ko.po
index 4bc20c7..cbe8d08 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -418,11 +418,11 @@ msgstr "범위가 있는 수"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"모든 종류의 수치 설정(모든 타입의 정수 및 부호 없는 정수, 배정밀도 부동소수 "
-"포함)은 사용자가 설정한 범위로 한정할 수 있습니다. 예를 들어, 이 정수 값은 -5"
-"에서 9 사이의 값만 설정할 수 있습니다."
+"포함)은 사용자가 설정한 범위로 한정할 수 있습니다. 예를 들어, 이 정수 값은 -2"
+"에서 10 사이의 값만 설정할 수 있습니다."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here \"(ii)\""
diff --git a/po/lt.po b/po/lt.po
index 6da8e37..258cb47 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -441,11 +441,11 @@ msgstr "Aprėžtas skaičius"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Bet koks skaitinis nustatymas (visų tipų sveikieji skaičiai su ir be ženklo "
"bei dvigubi) gali būti apriboti tam tikro rėžio vertėmis. Pavyzdžiui, šis "
-"sveikasis skaičius gali būti nuo -5 iki 9."
+"sveikasis skaičius gali būti nuo -2 iki 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here \"(ii)\""
diff --git a/po/lv.po b/po/lv.po
index 76f65f5..0b801d9 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -433,11 +433,11 @@ msgstr "Skaitlis ar apgabalu"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Katru skaitlisko iestatījumu (visi veselie skaitļi ar un bez zīmes, kā arī "
"dubultās vērtības) var ierobežot uz kādu vērtību intervālu. Piemēram, šis "
-"veselais skaitlis var būt tikai intervālā no -5 līdz 9."
+"veselais skaitlis var būt tikai intervālā no -2 līdz 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here \"(ii)\""
diff --git a/po/ml.po b/po/ml.po
index fe1fb3f..5d832a2 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -374,7 +374,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/mr.po b/po/mr.po
index 2cad850..ac642b3 100644
--- a/po/mr.po
+++ b/po/mr.po
@@ -375,7 +375,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/nb.po b/po/nb.po
index 3ac890a..c9215e9 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -380,7 +380,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/nl.po b/po/nl.po
index dc65ecd..157f675 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -375,7 +375,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/oc.po b/po/oc.po
index 8bb15d8..858d82f 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -428,11 +428,11 @@ msgstr "Un nombre amb interval"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Cada reglatge numérique (entièrs signats e pas signats de cada tipe, plus "
"nombres a virgule) pòt èsser limité per un intervalle de valors. Per "
-"exemple, aqueste entièr accèpta unicament de valors entre -5 e 9."
+"exemple, aqueste entièr accèpta unicament de valors entre -2 e 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here \"(ii)\""
diff --git a/po/pa.po b/po/pa.po
index bd8d5a7..a3d65f7 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -374,7 +374,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/pl.po b/po/pl.po
index 0452de4..9cb8466 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -436,12 +436,12 @@ msgstr "Liczba z zakresem"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Każde ustawienie numeryczne (liczby całkowite i liczby całkowite bez znaku "
"każdego typu oraz wartości „double”) mogą być ograniczane do podanego "
"zakresu wartości. Na przykład, ta liczba całkowita może przyjmować tylko "
-"wartości między -5 a 9."
+"wartości między -2 a 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here ‘(ii)’"
diff --git a/po/pt.po b/po/pt.po
index 98a1951..3578944 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -451,11 +451,11 @@ msgstr "Um número com limite"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Cada definição numérica (inteiros, inteiros não assinados de todos os tipos "
"e duplos) pode ser limitada a um intervalo personalizado de valores. Por "
-"exemplo, este inteiro só pode ter valores entre -5 e 9."
+"exemplo, este inteiro só pode ter valores entre -2 e 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here \"(ii)\""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 115d00c..a1556cd 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -426,11 +426,11 @@ msgstr "Um número com intervalo"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Toda definição de numeral (inteiros e inteiros não assinados de todo tipo, "
"além de duplos) pode ser limitada a um intervalo de valores personalizado. "
-"Por exemplo, este inteiro poderia apenas receber um valor entre -5 e 9."
+"Por exemplo, este inteiro poderia apenas receber um valor entre -2 e 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here ‘(ii)’"
diff --git a/po/ro.po b/po/ro.po
index 6c32105..ce6f347 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -377,7 +377,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/ru.po b/po/ru.po
index 9156f60..d5060d5 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -377,7 +377,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/sk.po b/po/sk.po
index d82147d..fea19a3 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -443,11 +443,11 @@ msgstr "Číslo s rozsahom"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Každé číselné nastavenie (celočíselné, prirodzené, alebo desatinné) môže byť "
"obmedzené vlastným rozsahom hodnôt. Napríklad táto celo-číselná hodnota môže "
-"byť z rozsahu -5 až 9."
+"byť z rozsahu -2 až 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here \"(ii)\""
diff --git a/po/sl.po b/po/sl.po
index e4d74e7..bbf2a61 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -377,7 +377,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/sr.po b/po/sr.po
index 567c227..70760d4 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -431,11 +431,11 @@ msgstr "Број са опсегом"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Свако бројчано подешавање (цели бројеви и цели бројеви без знака сваке "
"врсте, и још и двоструки) могу бити ограничени на произвољни опсег "
-"вредности. На пример, овај цео број може да има вредност само између -5 и 9."
+"вредности. На пример, овај цео број може да има вредност само између -2 и 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here \"(ii)\""
diff --git a/po/sr latin po b/po/sr latin po
index 6108914..ce82e96 100644
--- a/po/sr latin po
+++ b/po/sr latin po
@@ -435,11 +435,11 @@ msgstr "Broj sa opsegom"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Svako brojčano podešavanje (celi brojevi i celi brojevi bez znaka svake "
"vrste, i još i dvostruki) mogu biti ograničeni na proizvoljni opseg "
-"vrednosti. Na primer, ovaj ceo broj može da ima vrednost samo između -5 i 9."
+"vrednosti. Na primer, ovaj ceo broj može da ima vrednost samo između -2 i 10."
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here \"(ii)\""
diff --git a/po/sv.po b/po/sv.po
index f03354e..8423c57 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -446,7 +446,7 @@ msgstr "Ett tal med intervall"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"Varje numerisk inställning (heltal med tecken och teckenlösa heltal av varje "
"typ samt dubbelprecisionsflyttal)"
diff --git a/po/ta.po b/po/ta.po
index 1ca41f5..9735be1 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -374,7 +374,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/te.po b/po/te.po
index 03d4632..e4cee10 100644
--- a/po/te.po
+++ b/po/te.po
@@ -377,7 +377,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/tg.po b/po/tg.po
index 6e72055..427485f 100644
--- a/po/tg.po
+++ b/po/tg.po
@@ -373,7 +373,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/th.po b/po/th.po
index 0f44b6b..ab2711c 100644
--- a/po/th.po
+++ b/po/th.po
@@ -375,7 +375,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/tr.po b/po/tr.po
index 6b22bec..a1b3225 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -393,7 +393,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/ug.po b/po/ug.po
index f7f7ae1..6b6af55 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -372,7 +372,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/uk.po b/po/uk.po
index 2699e13..fd7aa97 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -376,7 +376,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/vi.po b/po/vi.po
index 166ffdc..c6080b5 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -375,7 +375,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 914fa8a..32113c9 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -373,7 +373,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/zh_HK.po b/po/zh_HK.po
index c2be3b8..23843e5 100644
--- a/po/zh_HK.po
+++ b/po/zh_HK.po
@@ -373,7 +373,7 @@ msgstr ""
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
#: editor/ca.desrt.dconf-editor.gschema.xml:197
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 86e2c4c..c95b8e4 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -404,10 +404,10 @@ msgstr "數量範圍"
msgid ""
"Every numeral setting (integers and unsigned integers of every type, plus "
"doubles) could be limited to a custom range of values. For example, this "
-"integer could only take a value between -5 and 9."
+"integer could only take a value between -2 and 10."
msgstr ""
"每個位數的設定值 (每個類型的整數和無符號的整數,加上雙數) 可限制為自訂的數值"
-"範圍。例如,此整數只能使用 -5 到 9 之間的一數值。"
+"範圍。例如,此整數只能使用 -2 到 10 之間的一數值。"
#: editor/ca.desrt.dconf-editor.gschema.xml:197
msgid "A custom type, here \"(ii)\""
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]