"Colospace" -> "Color Space" (in UI messages).

This commit is contained in:
Bastien Montagne 2012-09-18 07:14:16 +00:00
parent c11ca1dc00
commit 3094a02e6e
3 changed files with 3 additions and 3 deletions

@ -660,7 +660,7 @@ static void rna_def_image(BlenderRNA *brna)
prop = RNA_def_property(srna, "colorspace_settings", PROP_POINTER, PROP_NONE); prop = RNA_def_property(srna, "colorspace_settings", PROP_POINTER, PROP_NONE);
RNA_def_property_pointer_sdna(prop, NULL, "colorspace_settings"); RNA_def_property_pointer_sdna(prop, NULL, "colorspace_settings");
RNA_def_property_struct_type(prop, "ColorManagedColorspaceSettings"); 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); RNA_api_image(srna);
} }

@ -304,7 +304,7 @@ static void rna_def_movieclip(BlenderRNA *brna)
prop = RNA_def_property(srna, "colorspace_settings", PROP_POINTER, PROP_NONE); prop = RNA_def_property(srna, "colorspace_settings", PROP_POINTER, PROP_NONE);
RNA_def_property_pointer_sdna(prop, NULL, "colorspace_settings"); RNA_def_property_pointer_sdna(prop, NULL, "colorspace_settings");
RNA_def_property_struct_type(prop, "ColorManagedColorspaceSettings"); 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) void RNA_def_movieclip(BlenderRNA *brna)

@ -4566,7 +4566,7 @@ void RNA_def_scene(BlenderRNA *brna)
prop = RNA_def_property(srna, "sequencer_colorspace_settings", PROP_POINTER, PROP_NONE); 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_pointer_sdna(prop, NULL, "sequencer_colorspace_settings");
RNA_def_property_struct_type(prop, "ColorManagedColorspaceSettings"); 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 */ /* Nestled Data */
rna_def_tool_settings(brna); rna_def_tool_settings(brna);