[dconf-editor] Revert "Fix capitalization problem of some strings."



commit e9e64a412eda33be8419f70bbe621090a66e179b
Author: Arnaud Bonatti <arnaud bonatti gmail com>
Date:   Tue Feb 12 10:14:32 2019 +0100

    Revert "Fix capitalization problem of some strings."
    
    This reverts commit 4aa9fdbb86e10525dfca56afaba34c6c42e982c1.

 editor/model-utils.vala | 64 ++++++++++++++++++++++++-------------------------
 1 file changed, 32 insertions(+), 32 deletions(-)
---
diff --git a/editor/model-utils.vala b/editor/model-utils.vala
index d62d7b7..7b809dc 100644
--- a/editor/model-utils.vala
+++ b/editor/model-utils.vala
@@ -348,98 +348,98 @@ namespace ModelUtils
     private const string _garbage_ = "";
 
     /* Translators: that's a name of a data type; capitalized (if that makes sense) */
-    private const string _desc_N_ = N_("Signed 16-bit integer");
+    private const string _desc_N_ = _("Signed 16-bit integer");
 
     /* Translators: that's a name of a data type; capitalized (if that makes sense) */
-    private const string _desc_Q_ = N_("Unsigned 16-bit integer");
+    private const string _desc_Q_ = _("Unsigned 16-bit integer");
 
     /* Translators: that's a name of a data type; capitalized (if that makes sense) */
-    private const string _desc_I_ = N_("Signed 32-bit integer");
+    private const string _desc_I_ = _("Signed 32-bit integer");
 
     /* Translators: that's a name of a data type; capitalized (if that makes sense) */
-    private const string _desc_U_ = N_("Unsigned 32-bit integer");
+    private const string _desc_U_ = _("Unsigned 32-bit integer");
 
     /* Translators: that's a name of a data type; capitalized (if that makes sense) */
-    private const string _desc_X_ = N_("Signed 64-bit integer");
+    private const string _desc_X_ = _("Signed 64-bit integer");
 
     /* Translators: that's a name of a data type; capitalized (if that makes sense) */
-    private const string _desc_T_ = N_("Unsigned 64-bit integer");
+    private const string _desc_T_ = _("Unsigned 64-bit integer");
 
     /* Translators: that's the name of a data type; capitalized (if that makes sense) */
-    private const string _B_ = N_("Boolean");
+    private const string _B_ = _("Boolean");
 
     /* Translators: that's the name of a data type; non capitalized (if that makes sense) */
-    private const string _b_ = N_("boolean");
+    private const string _b_ = _("boolean");
 
     /* Translators: that's the name of a data type; capitalized (if that makes sense) */
-    private const string _S_ = N_("String");
+    private const string _S_ = _("String");
 
     /* Translators: that's the name of a data type; non capitalized (if that makes sense) */
-    private const string _s_ = N_("string");
+    private const string _s_ = _("string");
 
     /* Translators: that's the name of a data type; capitalized (if that makes sense) */
-    private const string _As_ = N_("String array");
+    private const string _As_ = _("String array");
 
     /* Translators: that's the name of a data type; non capitalized (if that makes sense) */
-    private const string _as_ = N_("string array");
+    private const string _as_ = _("string array");
 
     /* Translators: that's the name of a data type; capitalized (if that makes sense) */
-    private const string _Enum_ = N_("Enumeration");
+    private const string _Enum_ = _("Enumeration");
 
     /* Translators: that's the name of a data type; non capitalized (if that makes sense) */
-    private const string _enum_ = N_("enumeration");
+    private const string _enum_ = _("enumeration");
 
     /* Translators: that's the name of a data type; capitalized (if that makes sense) */
-    private const string _Flags_ = N_("Flags");
+    private const string _Flags_ = _("Flags");
 
     /* Translators: that's the name of a data type; non capitalized (if that makes sense) */
-    private const string _flags_ = N_("flags");
+    private const string _flags_ = _("flags");
 
     /* Translators: that's the name of a data type; capitalized (if that makes sense) */
-    private const string _D_ = N_("Double");
+    private const string _D_ = _("Double");
 
     /* Translators: that's the name of a data type; non capitalized (if that makes sense) */
-    private const string _d_ = N_("double");
+    private const string _d_ = _("double");
 
     /* Translators: that's the name of a data type; capitalized (if that makes sense); this handle type is 
an index; you may maintain the word "handle" */
-    private const string _H_ = NC_("capitalized", "D-Bus handle type");
+    private const string _H_ = _("D-Bus handle type");
 
     /* Translators: that's the name of a data type; non capitalized (if that makes sense); this handle type 
is an index; you may maintain the word "handle" */
-    private const string _h_ = NC_("non-capitalized", "D-Bus handle type");
+    private const string _h_ = _("D-Bus handle type");
 
     /* Translators: that's the name of a data type; capitalized (if that makes sense) */
-    private const string _O_ = NC_("capitalized", "D-Bus object path");
+    private const string _O_ = _("D-Bus object path");
 
     /* Translators: that's the name of a data type; non capitalized (if that makes sense) */
-    private const string _o_ = NC_("non-capitalized", "D-Bus object path");
+    private const string _o_ = _("D-Bus object path");
 
     /* Translators: that's the name of a data type; capitalized (if that makes sense) */
-    private const string _Ao_ = NC_("capitalized", "D-Bus object path array");
+    private const string _Ao_ = _("D-Bus object path array");
 
     /* Translators: that's the name of a data type; non capitalized (if that makes sense) */
-    private const string _ao_ = NC_("non-capitalized", "D-Bus object path array");
+    private const string _ao_ = _("D-Bus object path array");
 
     /* Translators: that's the name of a data type; capitalized (if that makes sense) */
-    private const string _G_ = NC_("capitalized", "D-Bus signature");
+    private const string _G_ = _("D-Bus signature");
 
     /* Translators: that's the name of a data type; non capitalized (if that makes sense) */
-    private const string _g_ = NC_("non-capitalized", "D-Bus signature");
+    private const string _g_ = _("D-Bus signature");
 
     /* Translators: that's the name of a data type; capitalized (if that makes sense) */
-    private const string _Integer_ = N_("Integer");
+    private const string _Integer_ = _("Integer");
 
     /* Translators: that's the name of a data type; non capitalized (if that makes sense) */
-    private const string _integer_ = N_("integer");
+    private const string _integer_ = _("integer");
 
     /* Translators: that's the name of a data type; capitalized (if that makes sense) */
-    private const string _V_ = N_("Variant");
+    private const string _V_ = _("Variant");
 
     /* Translators: that's the name of a data type; non capitalized (if that makes sense) */
-    private const string _v_ = N_("variant");
+    private const string _v_ = _("variant");
 
     /* Translators: that's the name of a data type; capitalized (if that makes sense) */
-    private const string _Empty_tuple_ = N_("Empty tuple");
+    private const string _Empty_tuple_ = _("Empty tuple");
 
     /* Translators: that's the name of a data type; non capitalized (if that makes sense) */
-    private const string _empty_tuple_ = N_("empty tuple");
+    private const string _empty_tuple_ = _("empty tuple");
 }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]