[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [54820] trunk/blender: Some UI messages fixes...

Bastien Montagne montagne29 at wanadoo.fr
Sun Feb 24 19:04:10 CET 2013


Revision: 54820
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=54820
Author:   mont29
Date:     2013-02-24 18:04:10 +0000 (Sun, 24 Feb 2013)
Log Message:
-----------
Some UI messages fixes...

Modified Paths:
--------------
    trunk/blender/release/scripts/startup/bl_operators/rigidbody.py
    trunk/blender/source/blender/editors/animation/anim_channels_defines.c
    trunk/blender/source/blender/editors/space_image/image_ops.c
    trunk/blender/source/blender/makesrna/intern/rna_rigidbody.c

Modified: trunk/blender/release/scripts/startup/bl_operators/rigidbody.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_operators/rigidbody.py	2013-02-24 16:01:30 UTC (rev 54819)
+++ trunk/blender/release/scripts/startup/bl_operators/rigidbody.py	2013-02-24 18:04:10 UTC (rev 54820)
@@ -216,8 +216,8 @@
     connection_pattern = EnumProperty(
         name="Connection Pattern",
         description="Pattern used to connect objects",
-        items=(('SELECTED_TO_ACTIVE', "Selected to Active", "Connects selected objects to the active object"),
-               ('CHAIN_DISTANCE', "Chain by Distance", "Connects objects as a chain based on distance, starting at the active object")),
+        items=(('SELECTED_TO_ACTIVE', "Selected to Active", "Connect selected objects to the active object"),
+               ('CHAIN_DISTANCE', "Chain by Distance", "Connect objects as a chain based on distance, starting at the active object")),
         default='SELECTED_TO_ACTIVE',)
 
     @classmethod

Modified: trunk/blender/source/blender/editors/animation/anim_channels_defines.c
===================================================================
--- trunk/blender/source/blender/editors/animation/anim_channels_defines.c	2013-02-24 16:01:30 UTC (rev 54819)
+++ trunk/blender/source/blender/editors/animation/anim_channels_defines.c	2013-02-24 18:04:10 UTC (rev 54820)
@@ -3260,7 +3260,7 @@
 			if (ale->type == ANIMTYPE_FCURVE)
 				tooltip = TIP_("Channel is visible in Graph Editor for editing");
 			else
-				tooltip = TIP_("Channel(s) are visible in Graph Editor for editing");
+				tooltip = TIP_("Channels are visible in Graph Editor for editing");
 			break;
 			
 		case ACHANNEL_SETTING_EXPAND: /* expanded triangle */

Modified: trunk/blender/source/blender/editors/space_image/image_ops.c
===================================================================
--- trunk/blender/source/blender/editors/space_image/image_ops.c	2013-02-24 16:01:30 UTC (rev 54819)
+++ trunk/blender/source/blender/editors/space_image/image_ops.c	2013-02-24 18:04:10 UTC (rev 54820)
@@ -1961,7 +1961,7 @@
 	if (!as_png && (ibuf && (ibuf->userflags & IB_BITMAPDIRTY))) {
 		pup = uiPupMenuBegin(C, IFACE_("OK"), ICON_QUESTION);
 		layout = uiPupMenuLayout(pup);
-		uiItemBooleanO(layout, IFACE_("Can't pack edited image from disk. Pack as internal PNG?"), ICON_NONE,
+		uiItemBooleanO(layout, IFACE_("Can't pack edited image from disk, pack as internal PNG?"), ICON_NONE,
 		               op->idname, "as_png", 1);
 		uiPupMenuEnd(C, pup);
 

Modified: trunk/blender/source/blender/makesrna/intern/rna_rigidbody.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_rigidbody.c	2013-02-24 16:01:30 UTC (rev 54819)
+++ trunk/blender/source/blender/makesrna/intern/rna_rigidbody.c	2013-02-24 18:04:10 UTC (rev 54820)
@@ -964,13 +964,13 @@
 	prop = RNA_def_property(srna, "use_motor_lin", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", RBC_FLAG_USE_MOTOR_LIN);
 	RNA_def_property_boolean_funcs(prop, NULL, "rna_RigidBodyCon_use_motor_lin_set");
-	RNA_def_property_ui_text(prop, "Linear Motor", "Enables linear motor");
+	RNA_def_property_ui_text(prop, "Linear Motor", "Enable linear motor");
 	RNA_def_property_update(prop, NC_OBJECT, "rna_RigidBodyOb_reset");
 
 	prop = RNA_def_property(srna, "use_motor_ang", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", RBC_FLAG_USE_MOTOR_ANG);
 	RNA_def_property_boolean_funcs(prop, NULL, "rna_RigidBodyCon_use_motor_ang_set");
-	RNA_def_property_ui_text(prop, "Angular Motor", "Enables angular motor");
+	RNA_def_property_ui_text(prop, "Angular Motor", "Enable angular motor");
 	RNA_def_property_update(prop, NC_OBJECT, "rna_RigidBodyOb_reset");
 
 	prop = RNA_def_property(srna, "limit_lin_x_lower", PROP_FLOAT, PROP_UNIT_LENGTH);




More information about the Bf-blender-cvs mailing list