[Bf-blender-cvs] [09e5d1bc849] id_copy_refactor: Usual i18n/UI messages fixes.

Bastien Montagne noreply at git.blender.org
Tue Jun 20 17:56:13 CEST 2017


Commit: 09e5d1bc849862f9792ba9a25d4ed0cf90fe91da
Author: Bastien Montagne
Date:   Fri Jun 16 12:50:24 2017 +0200
Branches: id_copy_refactor
https://developer.blender.org/rB09e5d1bc849862f9792ba9a25d4ed0cf90fe91da

Usual i18n/UI messages fixes.

Please do not add useless tooltips! We have enough messages to translate
already...

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

M	release/datafiles/colormanagement/config.ocio
M	source/blender/editors/gpencil/gpencil_edit.c
M	source/blender/makesrna/intern/rna_sequencer.c

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

diff --git a/release/datafiles/colormanagement/config.ocio b/release/datafiles/colormanagement/config.ocio
index 5bed23cf210..71223ea828e 100644
--- a/release/datafiles/colormanagement/config.ocio
+++ b/release/datafiles/colormanagement/config.ocio
@@ -304,7 +304,7 @@ colorspaces:
     equalitygroup:
     bitdepth: 32f
     description: |
-      Log based filmic shaper with 16.5 stops of latitude, and 25 stops of dynamic range.
+      Log based filmic shaper with 16.5 stops of latitude, and 25 stops of dynamic range
     isdata: false
     allocation: lg2
     allocationvars: [-12.473931188, 12.526068812]
diff --git a/source/blender/editors/gpencil/gpencil_edit.c b/source/blender/editors/gpencil/gpencil_edit.c
index 174feec0e22..fc6df49cf6c 100644
--- a/source/blender/editors/gpencil/gpencil_edit.c
+++ b/source/blender/editors/gpencil/gpencil_edit.c
@@ -846,7 +846,7 @@ void GPENCIL_OT_blank_frame_add(wmOperatorType *ot)
 	/* identifiers */
 	ot->name = "Insert Blank Frame";
 	ot->idname = "GPENCIL_OT_blank_frame_add";
-	ot->description = "Inserts a blank frame on the current frame "
+	ot->description = "Insert a blank frame on the current frame "
 	                  "(all subsequently existing frames, if any, are shifted right by one frame)";
 	
 	/* callbacks */
diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c
index 84b62721999..6f8aa32da86 100644
--- a/source/blender/makesrna/intern/rna_sequencer.c
+++ b/source/blender/makesrna/intern/rna_sequencer.c
@@ -1126,7 +1126,7 @@ static void rna_def_strip_crop(BlenderRNA *brna)
 	
 	prop = RNA_def_property(srna, "min_y", PROP_INT, PROP_UNSIGNED);
 	RNA_def_property_int_sdna(prop, NULL, "bottom");
-	RNA_def_property_ui_text(prop, "Bottom", "Number of pixels to crop from the buttom");
+	RNA_def_property_ui_text(prop, "Bottom", "Number of pixels to crop from the bottom");
 	RNA_def_property_ui_range(prop, 0, 4096, 1, -1);
 	RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_SequenceCrop_update");
 	
@@ -2338,7 +2338,7 @@ static void rna_def_text(StructRNA *srna)
 
 	prop = RNA_def_property(srna, "shadow_color", PROP_FLOAT, PROP_COLOR_GAMMA);
 	RNA_def_property_float_sdna(prop, NULL, "shadow_color");
-	RNA_def_property_ui_text(prop, "Shadow Color", "Shadow color");
+	RNA_def_property_ui_text(prop, "Shadow Color", "");
 	RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_update");
 
 	prop = RNA_def_property(srna, "location", PROP_FLOAT, PROP_XYZ);




More information about the Bf-blender-cvs mailing list