[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [3577] trunk/py/scripts/addons: More spell checking.

Bastien Montagne montagne29 at wanadoo.fr
Wed Jul 4 17:05:50 CEST 2012


Revision: 3577
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=3577
Author:   mont29
Date:     2012-07-04 15:05:50 +0000 (Wed, 04 Jul 2012)
Log Message:
-----------
More spell checking.

Modified Paths:
--------------
    trunk/py/scripts/addons/add_curve_sapling/__init__.py
    trunk/py/scripts/addons/io_mesh_pdb/import_pdb.py
    trunk/py/scripts/addons/io_scene_3ds/__init__.py
    trunk/py/scripts/addons/io_scene_fbx/__init__.py
    trunk/py/scripts/addons/io_scene_obj/__init__.py

Modified: trunk/py/scripts/addons/add_curve_sapling/__init__.py
===================================================================
--- trunk/py/scripts/addons/add_curve_sapling/__init__.py	2012-07-04 12:20:22 UTC (rev 3576)
+++ trunk/py/scripts/addons/add_curve_sapling/__init__.py	2012-07-04 15:05:50 UTC (rev 3577)
@@ -169,7 +169,7 @@
         items=settings,
         default='0', update=no_update_tree)
     bevel = BoolProperty(name='Bevel',
-        description='Whether the curve is bevelled',
+        description='Whether the curve is beveled',
         default=False, update=update_tree)
     prune = BoolProperty(name='Prune',
         description='Whether the tree is pruned',

Modified: trunk/py/scripts/addons/io_mesh_pdb/import_pdb.py
===================================================================
--- trunk/py/scripts/addons/io_mesh_pdb/import_pdb.py	2012-07-04 12:20:22 UTC (rev 3576)
+++ trunk/py/scripts/addons/io_mesh_pdb/import_pdb.py	2012-07-04 15:05:50 UTC (rev 3577)
@@ -950,7 +950,7 @@
     # ... and the average is taken. This gives the center of the object.
     object_center_vec = sum_vec / Number_of_total_atoms
 
-    # Now, we determine the size.The farest atom from the object center is
+    # Now, we determine the size.The farthest atom from the object center is
     # taken as a measure. The size is used to place well the camera and light
     # into the scene.
     object_size_vec = [atom.location - object_center_vec for atom in all_atoms]

Modified: trunk/py/scripts/addons/io_scene_3ds/__init__.py
===================================================================
--- trunk/py/scripts/addons/io_scene_3ds/__init__.py	2012-07-04 12:20:22 UTC (rev 3576)
+++ trunk/py/scripts/addons/io_scene_3ds/__init__.py	2012-07-04 15:05:50 UTC (rev 3577)
@@ -60,7 +60,7 @@
 
     constrain_size = FloatProperty(
             name="Size Constraint",
-            description="Scale the model by 10 until it reaches the " \
+            description="Scale the model by 10 until it reaches the "
                         "size constraint (0 to disable)",
             min=0.0, max=1000.0,
             soft_min=0.0, soft_max=1000.0,
@@ -68,13 +68,13 @@
             )
     use_image_search = BoolProperty(
             name="Image Search",
-            description="Search subdirectories for any assosiated images " \
+            description="Search subdirectories for any associated images "
                         "(Warning, may be slow)",
             default=True,
             )
     use_apply_transform = BoolProperty(
             name="Apply Transform",
-            description="Workaround for object transformations " \
+            description="Workaround for object transformations "
                         "importing incorrectly",
             default=True,
             )

Modified: trunk/py/scripts/addons/io_scene_fbx/__init__.py
===================================================================
--- trunk/py/scripts/addons/io_scene_fbx/__init__.py	2012-07-04 12:20:22 UTC (rev 3576)
+++ trunk/py/scripts/addons/io_scene_fbx/__init__.py	2012-07-04 15:05:50 UTC (rev 3577)
@@ -162,7 +162,7 @@
             )
     anim_optimize_precision = FloatProperty(
             name="Precision",
-            description=("Tolerence for comparing double keyframes "
+            description=("Tolerance for comparing double keyframes "
                         "(higher for greater accuracy)"),
             min=1, max=16,
             soft_min=1, soft_max=16,

Modified: trunk/py/scripts/addons/io_scene_obj/__init__.py
===================================================================
--- trunk/py/scripts/addons/io_scene_obj/__init__.py	2012-07-04 12:20:22 UTC (rev 3576)
+++ trunk/py/scripts/addons/io_scene_obj/__init__.py	2012-07-04 15:05:50 UTC (rev 3577)
@@ -100,7 +100,7 @@
 
     use_image_search = BoolProperty(
             name="Image Search",
-            description="Search subdirs for any assosiated images " \
+            description="Search subdirs for any associated images "
                         "(Warning, may be slow)",
             default=True,
             )



More information about the Bf-extensions-cvs mailing list