[Bf-extensions-cvs] [9128155d] master: UI: Dont abbriviate location & rotation

Aaron Carlisle noreply at git.blender.org
Thu Jul 2 22:12:59 CEST 2020


Commit: 9128155de32592d84b08426a54ae1e56f02d4635
Author: Aaron Carlisle
Date:   Thu Jul 2 16:10:43 2020 -0400
Branches: master
https://developer.blender.org/rBA9128155de32592d84b08426a54ae1e56f02d4635

UI: Dont abbriviate location & rotation

This resolves one of the last few areas where we still use inappropriate 
abbreviations. Reading abbreviated words is usually slower, because 
users must parse, guess and translate the words. Using abbreviations 
such as 'rot' is also especially bad since it's a word in itself too.

The main advantage of abbreviations is that they are faster to *write*, 
which just isn't a concern for text in the UI.

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

M	archimesh/achm_kitchen_maker.py
M	precision_drawing_tools/__init__.py

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

diff --git a/archimesh/achm_kitchen_maker.py b/archimesh/achm_kitchen_maker.py
index bf17a554..28118259 100644
--- a/archimesh/achm_kitchen_maker.py
+++ b/archimesh/achm_kitchen_maker.py
@@ -345,7 +345,7 @@ class CabinetProperties(PropertyGroup):
                 ('2', "90 CCW", ""),
                 ('3', "180", ""),
                 ),
-            name="Rot",
+            name="Rotate",
             description="Rotate cabinet relative to previous one",
             )
 
diff --git a/precision_drawing_tools/__init__.py b/precision_drawing_tools/__init__.py
index 62de72b6..19b2b810 100644
--- a/precision_drawing_tools/__init__.py
+++ b/precision_drawing_tools/__init__.py
@@ -501,7 +501,7 @@ class PDTSceneProperties(PropertyGroup):
         description="Number of Vertices per Cycle (180 Degrees)")
     trig_tanmax : FloatProperty(name="Tangent Max", default=10, min=0.1,
         description="Maximum Permitted Tangent Value")
-    trig_off : FloatVectorProperty(name="Start Loc", default=(0,0,0),
+    trig_off : FloatVectorProperty(name="Start Location", default=(0,0,0),
         description="Location in World Space for Origin of Wave")
     trig_abs : BoolProperty(name="Absolute", default=False,
         description="Use Absolute Values Only")



More information about the Bf-extensions-cvs mailing list