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:
authorBastien Montagne <bastien@blender.org>2021-02-22 17:48:54 +0300
committerBastien Montagne <bastien@blender.org>2021-02-22 17:48:54 +0300
commitdd2e0150ae00b91a8e8da3def7aeb247ad7ff101 (patch)
tree910a86aca9131c3b7deb214b6d9554d9593b1a7e /source/blender
parentbc851700a61b49005d010e7cc6063d8a4f74c873 (diff)
Various UI messages fixes and tweaks.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/animation/fmodifier_ui.c2
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c2
-rw-r--r--source/blender/makesrna/intern/rna_scene.c6
3 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/animation/fmodifier_ui.c b/source/blender/editors/animation/fmodifier_ui.c
index 0821cfbd282..b344e67f62d 100644
--- a/source/blender/editors/animation/fmodifier_ui.c
+++ b/source/blender/editors/animation/fmodifier_ui.c
@@ -795,7 +795,7 @@ static void limits_panel_draw(const bContext *C, Panel *panel)
/* Minimums. */
col = uiLayoutColumn(layout, false);
- row = uiLayoutRowWithHeading(col, true, IFACE_("Minumum X"));
+ row = uiLayoutRowWithHeading(col, true, IFACE_("Minimum X"));
uiItemR(row, ptr, "use_min_x", 0, "", ICON_NONE);
sub = uiLayoutColumn(row, true);
uiLayoutSetActive(sub, RNA_boolean_get(ptr, "use_min_x"));
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 65de8c479b8..46fdfe4a862 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -9078,7 +9078,7 @@ static void def_geo_collection_info(StructRNA *srna)
0,
"Relative",
"Bring the input collection geometry into the modified object, maintaining the relative "
- "position between the objects in the scene."},
+ "position between the objects in the scene"},
{0, NULL, 0, NULL, NULL},
};
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 7f3d470372a..0ad11aa9538 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -7277,16 +7277,16 @@ static void rna_def_scene_eevee(BlenderRNA *brna)
RNA_def_property_boolean_sdna(prop, NULL, "flag", SCE_EEVEE_DOF_JITTER);
RNA_def_property_ui_text(prop,
"Jitter Camera",
- "Jitter camera position to create accurate bluring "
+ "Jitter camera position to create accurate blurring "
"using render samples");
RNA_def_property_override_flag(prop, PROPOVERRIDE_OVERRIDABLE_LIBRARY);
RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL);
prop = RNA_def_property(srna, "bokeh_overblur", PROP_FLOAT, PROP_PERCENTAGE);
RNA_def_property_ui_text(prop,
- "Overblur",
+ "Over-blur",
"Apply blur to each jittered sample to reduce "
- "undersampling artifacts");
+ "under-sampling artifacts");
RNA_def_property_range(prop, 0, 100);
RNA_def_property_ui_range(prop, 0.0f, 20.0f, 1, 1);
RNA_def_property_override_flag(prop, PROPOVERRIDE_OVERRIDABLE_LIBRARY);