[Bf-blender-cvs] [78e137e] master: Motion Tracking: Grammar fixes.

Thomas Dinges noreply at git.blender.org
Wed Feb 12 15:32:43 CET 2014


Commit: 78e137efdaa8ea461063fbedba03dac8afe65ee5
Author: Thomas Dinges
Date:   Wed Feb 12 15:32:06 2014 +0100
https://developer.blender.org/rB78e137efdaa8ea461063fbedba03dac8afe65ee5

Motion Tracking: Grammar fixes.

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

M	source/blender/blenkernel/intern/tracking_solver.c
M	source/blender/editors/space_clip/tracking_ops.c

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

diff --git a/source/blender/blenkernel/intern/tracking_solver.c b/source/blender/blenkernel/intern/tracking_solver.c
index ca75bfe..5a28d8d 100644
--- a/source/blender/blenkernel/intern/tracking_solver.c
+++ b/source/blender/blenkernel/intern/tracking_solver.c
@@ -344,7 +344,7 @@ bool BKE_tracking_reconstruction_check(MovieTracking *tracking, MovieTrackingObj
 		/* automatic keyframe selection does not require any pre-process checks */
 		if (reconstruct_count_tracks_on_both_keyframes(tracking, object) < 8) {
 			BLI_strncpy(error_msg,
-			            N_("At least 8 common tracks on both of keyframes are needed for reconstruction"),
+			            N_("At least 8 common tracks on both keyframes are needed for reconstruction"),
 			            error_size);
 
 			return false;
diff --git a/source/blender/editors/space_clip/tracking_ops.c b/source/blender/editors/space_clip/tracking_ops.c
index 68bdcd7..fab33dc 100644
--- a/source/blender/editors/space_clip/tracking_ops.c
+++ b/source/blender/editors/space_clip/tracking_ops.c
@@ -2166,7 +2166,7 @@ void CLIP_OT_set_origin(wmOperatorType *ot)
 {
 	/* identifiers */
 	ot->name = "Set Origin";
-	ot->description = "Set active marker as origin by moving camera (or it's parent if present) in 3D space";
+	ot->description = "Set active marker as origin by moving camera (or its parent if present) in 3D space";
 	ot->idname = "CLIP_OT_set_origin";
 
 	/* api callbacks */
@@ -2415,7 +2415,7 @@ void CLIP_OT_set_plane(wmOperatorType *ot)
 
 	/* identifiers */
 	ot->name = "Set Plane";
-	ot->description = "Set plane based on 3 selected bundles by moving camera (or it's parent if present) in 3D space";
+	ot->description = "Set plane based on 3 selected bundles by moving camera (or its parent if present) in 3D space";
 	ot->idname = "CLIP_OT_set_plane";
 
 	/* api callbacks */
@@ -2487,7 +2487,7 @@ void CLIP_OT_set_axis(wmOperatorType *ot)
 
 	/* identifiers */
 	ot->name = "Set Axis";
-	ot->description = "Set direction of scene axis rotating camera (or it's parent if present) and assuming selected track lies on real axis joining it with the origin";
+	ot->description = "Set direction of scene axis rotating camera (or its parent if present) and assume selected track lies on real axis, joining it with the origin";
 	ot->idname = "CLIP_OT_set_axis";
 
 	/* api callbacks */
@@ -2621,7 +2621,7 @@ void CLIP_OT_set_scale(wmOperatorType *ot)
 {
 	/* identifiers */
 	ot->name = "Set Scale";
-	ot->description = "Set scale of scene by scaling camera (or it's parent if present)";
+	ot->description = "Set scale of scene by scaling camera (or its parent if present)";
 	ot->idname = "CLIP_OT_set_scale";
 
 	/* api callbacks */
@@ -3424,7 +3424,7 @@ void CLIP_OT_stabilize_2d_select(wmOperatorType *ot)
 {
 	/* identifiers */
 	ot->name = "Select Stabilization Tracks";
-	ot->description = "Select track which are used for stabilization";
+	ot->description = "Select tracks which are used for stabilization";
 	ot->idname = "CLIP_OT_stabilize_2d_select";
 
 	/* api callbacks */




More information about the Bf-blender-cvs mailing list