Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Reynish <billrey@me.com>2019-03-21 18:36:29 +0300
committerWilliam Reynish <billrey@me.com>2019-03-21 18:36:29 +0300
commitb6ad98729b219579c7bf0dce1d893081822c0b9b (patch)
treefb29efec2da52b9fb9c1017760bbc43a4a7ee615 /source/blender/makesrna/intern/rna_object_force.c
parentad8566db9b9e4e2d031100508808ce562f0934fd (diff)
UI: Spelling: fix wrong apostrophe
Diffstat (limited to 'source/blender/makesrna/intern/rna_object_force.c')
-rw-r--r--source/blender/makesrna/intern/rna_object_force.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_object_force.c b/source/blender/makesrna/intern/rna_object_force.c
index 77934b721c5..e620a8f6526 100644
--- a/source/blender/makesrna/intern/rna_object_force.c
+++ b/source/blender/makesrna/intern/rna_object_force.c
@@ -1359,12 +1359,12 @@ static void rna_def_field(BlenderRNA *brna)
prop = RNA_def_property(srna, "apply_to_location", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", PFIELD_DO_LOCATION);
- RNA_def_property_ui_text(prop, "Location", "Affect particles' location");
+ RNA_def_property_ui_text(prop, "Location", "Affect particle's location");
RNA_def_property_update(prop, 0, "rna_FieldSettings_update");
prop = RNA_def_property(srna, "apply_to_rotation", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", PFIELD_DO_ROTATION);
- RNA_def_property_ui_text(prop, "Rotation", "Affect particles' dynamic rotation");
+ RNA_def_property_ui_text(prop, "Rotation", "Affect particle's dynamic rotation");
RNA_def_property_update(prop, 0, "rna_FieldSettings_update");
prop = RNA_def_property(srna, "use_absorption", PROP_BOOLEAN, PROP_NONE);