[Bf-blender-cvs] [dd2e0150ae0] master: Various UI messages fixes and tweaks.

Bastien Montagne noreply at git.blender.org
Mon Feb 22 15:49:58 CET 2021


Commit: dd2e0150ae00b91a8e8da3def7aeb247ad7ff101
Author: Bastien Montagne
Date:   Mon Feb 22 15:48:54 2021 +0100
Branches: master
https://developer.blender.org/rBdd2e0150ae00b91a8e8da3def7aeb247ad7ff101

Various UI messages fixes and tweaks.

===================================================================

M	release/scripts/modules/bl_i18n_utils/settings.py
M	release/scripts/modules/bl_i18n_utils/utils_spell_check.py
M	source/blender/editors/animation/fmodifier_ui.c
M	source/blender/makesrna/intern/rna_nodetree.c
M	source/blender/makesrna/intern/rna_scene.c

===================================================================

diff --git a/release/scripts/modules/bl_i18n_utils/settings.py b/release/scripts/modules/bl_i18n_utils/settings.py
index 86070262e56..51b326fb338 100644
--- a/release/scripts/modules/bl_i18n_utils/settings.py
+++ b/release/scripts/modules/bl_i18n_utils/settings.py
@@ -353,6 +353,7 @@ WARN_MSGID_NOT_CAPITALIZED_ALLOWED = {
     "wav",
     "wmOwnerID '%s' not in workspace '%s'",
     "y",
+    "y = (Ax + B)",
     # Sub-strings.
     "available with",
     "brown fox",
diff --git a/release/scripts/modules/bl_i18n_utils/utils_spell_check.py b/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
index 49dadd422ca..6046e8e74d8 100644
--- a/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
+++ b/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
@@ -645,6 +645,7 @@ class SpellChecker:
         # Acronyms
         "aa", "msaa",
         "ao",
+        "aov", "aovs",
         "api",
         "apic",  # Affine Particle-In-Cell
         "asc", "cdl",
diff --git a/source/blender/editors/animation/fmodifier_ui.c b/source/blender/editors/animation/fmodifier_ui.c
index 0821cfbd282..b344e67f62d 100644
--- a/source/blender/editors/animation/fmodifier_ui.c
+++ b/source/blender/editors/animation/fmodifier_ui.c
@@ -795,7 +795,7 @@ static void limits_panel_draw(const bContext *C, Panel *panel)
 
   /* Minimums. */
   col = uiLayoutColumn(layout, false);
-  row = uiLayoutRowWithHeading(col, true, IFACE_("Minumum X"));
+  row = uiLayoutRowWithHeading(col, true, IFACE_("Minimum X"));
   uiItemR(row, ptr, "use_min_x", 0, "", ICON_NONE);
   sub = uiLayoutColumn(row, true);
   uiLayoutSetActive(sub, RNA_boolean_get(ptr, "use_min_x"));
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 65de8c479b8..46fdfe4a862 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -9078,7 +9078,7 @@ static void def_geo_collection_info(StructRNA *srna)
        0,
        "Relative",
        "Bring the input collection geometry into the modified object, maintaining the relative "
-       "position between the objects in the scene."},
+       "position between the objects in the scene"},
       {0, NULL, 0, NULL, NULL},
   };
 
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 7f3d470372a..0ad11aa9538 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -7277,16 +7277,16 @@ static void rna_def_scene_eevee(BlenderRNA *brna)
   RNA_def_property_boolean_sdna(prop, NULL, "flag", SCE_EEVEE_DOF_JITTER);
   RNA_def_property_ui_text(prop,
                            "Jitter Camera",
-                           "Jitter camera position to create accurate bluring "
+                           "Jitter camera position to create accurate blurring "
                            "using render samples");
   RNA_def_property_override_flag(prop, PROPOVERRIDE_OVERRIDABLE_LIBRARY);
   RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL);
 
   prop = RNA_def_property(srna, "bokeh_overblur", PROP_FLOAT, PROP_PERCENTAGE);
   RNA_def_property_ui_text(prop,
-                           "Overblur",
+                           "Over-blur",
                            "Apply blur to each jittered sample to reduce "
-                           "undersampling artifacts");
+                           "under-sampling artifacts");
   RNA_def_property_range(prop, 0, 100);
   RNA_def_property_ui_range(prop, 0.0f, 20.0f, 1, 1);
   RNA_def_property_override_flag(prop, PROPOVERRIDE_OVERRIDABLE_LIBRARY);



More information about the Bf-blender-cvs mailing list