From 3094a02e6ef272f108a633c18981af593d038ee2 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Tue, 18 Sep 2012 07:14:16 +0000 Subject: [PATCH] "Colospace" -> "Color Space" (in UI messages). --- source/blender/makesrna/intern/rna_image.c | 2 +- source/blender/makesrna/intern/rna_movieclip.c | 2 +- source/blender/makesrna/intern/rna_scene.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/blender/makesrna/intern/rna_image.c b/source/blender/makesrna/intern/rna_image.c index 495d60df49c..6c8a3d2df1b 100644 --- a/source/blender/makesrna/intern/rna_image.c +++ b/source/blender/makesrna/intern/rna_image.c @@ -660,7 +660,7 @@ static void rna_def_image(BlenderRNA *brna) prop = RNA_def_property(srna, "colorspace_settings", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "colorspace_settings"); RNA_def_property_struct_type(prop, "ColorManagedColorspaceSettings"); - RNA_def_property_ui_text(prop, "Colorspace Settings", "Input color space settings"); + RNA_def_property_ui_text(prop, "Color Space Settings", "Input color space settings"); RNA_api_image(srna); } diff --git a/source/blender/makesrna/intern/rna_movieclip.c b/source/blender/makesrna/intern/rna_movieclip.c index 8d1105fd620..1dbcee424e6 100644 --- a/source/blender/makesrna/intern/rna_movieclip.c +++ b/source/blender/makesrna/intern/rna_movieclip.c @@ -304,7 +304,7 @@ static void rna_def_movieclip(BlenderRNA *brna) prop = RNA_def_property(srna, "colorspace_settings", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "colorspace_settings"); RNA_def_property_struct_type(prop, "ColorManagedColorspaceSettings"); - RNA_def_property_ui_text(prop, "Colorspace Settings", "Input color space settings"); + RNA_def_property_ui_text(prop, "Color Space Settings", "Input color space settings"); } void RNA_def_movieclip(BlenderRNA *brna) diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c index 0227d9c1554..2fb5171a2f4 100644 --- a/source/blender/makesrna/intern/rna_scene.c +++ b/source/blender/makesrna/intern/rna_scene.c @@ -4566,7 +4566,7 @@ void RNA_def_scene(BlenderRNA *brna) prop = RNA_def_property(srna, "sequencer_colorspace_settings", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "sequencer_colorspace_settings"); RNA_def_property_struct_type(prop, "ColorManagedColorspaceSettings"); - RNA_def_property_ui_text(prop, "Sequencer Colorspace Settings", "Settings of color space sequencer is working in"); + RNA_def_property_ui_text(prop, "Sequencer Color Space Settings", "Settings of color space sequencer is working in"); /* Nestled Data */ rna_def_tool_settings(brna);