[Bf-blender-cvs] [99d00a74894] blender-v3.4-release: Usual minor fixes to UI messages & i18m utils module.

Bastien Montagne noreply at git.blender.org
Mon Nov 14 16:45:40 CET 2022


Commit: 99d00a74894143c4e9bf9ec38d093515d238c691
Author: Bastien Montagne
Date:   Mon Nov 14 16:44:10 2022 +0100
Branches: blender-v3.4-release
https://developer.blender.org/rB99d00a74894143c4e9bf9ec38d093515d238c691

Usual minor fixes to UI messages & i18m utils module.

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

M	release/scripts/modules/bl_i18n_utils/utils_spell_check.py
M	source/blender/makesrna/intern/rna_nodetree.c

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

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 7fe4d0da0a4..e4b755033aa 100644
--- a/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
+++ b/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
@@ -243,6 +243,7 @@ class SpellChecker:
         "ungroup", "ungrouped",
         "unhide",
         "unindent",
+        "unitless",
         "unkeyed",
         "unlink", "unlinked",
         "unmute",
@@ -727,6 +728,7 @@ class SpellChecker:
         "lhs",
         "lmb", "mmb", "rmb",
         "lscm",
+        "lx",  # Lux light unit
         "kb",
         "mis",
         "mocap",
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index c6115711c1a..c32e5b7d4db 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -9456,7 +9456,7 @@ static void def_geo_curve_sample(StructRNA *srna)
   prop = RNA_def_property(srna, "use_all_curves", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_ui_text(prop,
                            "All Curves",
-                           "Sample lengths based on the total lengh of all curves, rather than "
+                           "Sample lengths based on the total length of all curves, rather than "
                            "using a length inside each selected curve");
   RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_socket_update");



More information about the Bf-blender-cvs mailing list