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 <b.mont29@gmail.com>2020-02-17 15:00:01 +0300
committerBastien Montagne <b.mont29@gmail.com>2020-02-17 15:01:07 +0300
commitd119e163d0a867fe0263d751231b838c57b95b31 (patch)
treecc271d14cd6b0f12d56498f0a906b8d32dc37e24 /source/blender/blenloader
parent2d1b05a15fa2d53894efd5198784ddde6bfa63a3 (diff)
Fix many typos and other issues in UI messages.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c6
-rw-r--r--source/blender/blenloader/intern/versioning_defaults.c2
2 files changed, 3 insertions, 5 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 48416736ce3..51e8f080b15 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -5391,8 +5391,7 @@ static void direct_link_modifiers(FileData *fd, ListBase *lb, Object *ob)
blo_reportf_wrap(
fd->reports,
RPT_WARNING,
- TIP_(
- "Possible data loss when saving this file! %s modifier is deprecated (Object: %s)."),
+ TIP_("Possible data loss when saving this file! %s modifier is deprecated (Object: %s)"),
md->name,
ob->id.name + 2);
md = modifier_replace_with_fluid(fd, ob, lb, md);
@@ -5402,8 +5401,7 @@ static void direct_link_modifiers(FileData *fd, ListBase *lb, Object *ob)
blo_reportf_wrap(
fd->reports,
RPT_WARNING,
- TIP_(
- "Possible data loss when saving this file! %s modifier is deprecated (Object: %s)."),
+ TIP_("Possible data loss when saving this file! %s modifier is deprecated (Object: %s)"),
md->name,
ob->id.name + 2);
md = modifier_replace_with_fluid(fd, ob, lb, md);
diff --git a/source/blender/blenloader/intern/versioning_defaults.c b/source/blender/blenloader/intern/versioning_defaults.c
index 41bf2dfe578..3e484281f3b 100644
--- a/source/blender/blenloader/intern/versioning_defaults.c
+++ b/source/blender/blenloader/intern/versioning_defaults.c
@@ -534,7 +534,7 @@ void BLO_update_defaults_startup_blend(Main *bmain, const char *app_template)
brush->sculpt_tool = SCULPT_TOOL_POSE;
}
- brush_name = "Multiplane Scrape";
+ brush_name = "Multi-plane Scrape";
brush = BLI_findstring(&bmain->brushes, brush_name, offsetof(ID, name) + 2);
if (!brush) {
brush = BKE_brush_add(bmain, brush_name, OB_MODE_SCULPT);