[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [40318] trunk/blender/source/blender/ editors: Minor: Other UI strings typos and tweaks.

Bastien Montagne montagne29 at wanadoo.fr
Sun Sep 18 11:38:43 CEST 2011


Revision: 40318
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=40318
Author:   mont29
Date:     2011-09-18 09:38:43 +0000 (Sun, 18 Sep 2011)
Log Message:
-----------
Minor: Other UI strings typos and tweaks.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_nla/nla_edit.c
    trunk/blender/source/blender/editors/space_nla/nla_select.c
    trunk/blender/source/blender/editors/space_node/node_edit.c
    trunk/blender/source/blender/editors/space_node/node_select.c

Modified: trunk/blender/source/blender/editors/space_nla/nla_edit.c
===================================================================
--- trunk/blender/source/blender/editors/space_nla/nla_edit.c	2011-09-18 08:40:37 UTC (rev 40317)
+++ trunk/blender/source/blender/editors/space_nla/nla_edit.c	2011-09-18 09:38:43 UTC (rev 40318)
@@ -1619,7 +1619,7 @@
 	/* identifiers */
 	ot->name= "Sync Action Length";
 	ot->idname= "NLA_OT_action_sync_length";
-	ot->description= "Synchronise the length of the referenced Action with the lengths used in the strip";
+	ot->description= "Synchronise the length of the referenced Action with the length used in the strip.";
 	
 	/* api callbacks */
 	ot->exec= nlaedit_sync_actlen_exec;
@@ -2042,7 +2042,7 @@
 	/* identifiers */
 	ot->name= "Add F-Modifier";
 	ot->idname= "NLA_OT_fmodifier_add";
-	ot->description= "Add F-Modifier of the specified type to the selected NLA-Strips";
+	ot->description= "Add a F-Modifier of the specified type to the selected NLA-Strips.";
 	
 	/* api callbacks */
 	ot->invoke= nla_fmodifier_add_invoke;
@@ -2054,7 +2054,7 @@
 	
 	/* id-props */
 	ot->prop= RNA_def_enum(ot->srna, "type", fmodifier_type_items, 0, "Type", "");
-	RNA_def_boolean(ot->srna, "only_active", 0, "Only Active", "Only add F-Modifier of the specified type to the active strip.");
+	RNA_def_boolean(ot->srna, "only_active", 0, "Only Active", "Only add a F-Modifier of the specified type to the active strip.");
 }
 
 /* ******************** Copy F-Modifiers Operator *********************** */

Modified: trunk/blender/source/blender/editors/space_nla/nla_select.c
===================================================================
--- trunk/blender/source/blender/editors/space_nla/nla_select.c	2011-09-18 08:40:37 UTC (rev 40317)
+++ trunk/blender/source/blender/editors/space_nla/nla_select.c	2011-09-18 09:38:43 UTC (rev 40318)
@@ -479,7 +479,7 @@
 	/* identifiers */
 	ot->name= "Select Left/Right";
 	ot->idname= "NLA_OT_select_leftright";
-	ot->description= "Select strips to the left or the right of the current frame ";
+	ot->description= "Select strips to the left or the right of the current frame.";
 	
 	/* api callbacks  */
 	ot->invoke= nlaedit_select_leftright_invoke;

Modified: trunk/blender/source/blender/editors/space_node/node_edit.c
===================================================================
--- trunk/blender/source/blender/editors/space_node/node_edit.c	2011-09-18 08:40:37 UTC (rev 40317)
+++ trunk/blender/source/blender/editors/space_node/node_edit.c	2011-09-18 09:38:43 UTC (rev 40318)
@@ -983,7 +983,7 @@
 {
 	/* identifiers */
 	ot->name = "Remove Group Socket";
-	ot->description = "Removed node group socket";
+	ot->description = "Remove a node group socket.";
 	ot->idname = "NODE_OT_group_socket_remove";
 	
 	/* api callbacks */

Modified: trunk/blender/source/blender/editors/space_node/node_select.c
===================================================================
--- trunk/blender/source/blender/editors/space_node/node_select.c	2011-09-18 08:40:37 UTC (rev 40317)
+++ trunk/blender/source/blender/editors/space_node/node_select.c	2011-09-18 09:38:43 UTC (rev 40318)
@@ -141,7 +141,7 @@
 	/* identifiers */
 	ot->name= "Select";
 	ot->idname= "NODE_OT_select";
-	ot->description= "Select node under cursor";
+	ot->description= "Select the node under the cursor.";
 	
 	/* api callbacks */
 	ot->invoke= node_select_invoke;
@@ -379,7 +379,7 @@
 {
 	/* identifiers */
 	ot->name = "Select Same Type";
-	ot->description = "Select all the same type";
+	ot->description = "Select all the nodes of the same type.";
 	ot->idname = "NODE_OT_select_same_type";
 	
 	/* api callbacks */




More information about the Bf-blender-cvs mailing list