From 42e2dd2178f87153e2f4db25f75727065472542b Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Mon, 21 Dec 2020 10:49:33 +0100 Subject: [PATCH] Fix some UI messages and update i18n spellcheck utils. --- release/scripts/modules/bl_i18n_utils/utils_spell_check.py | 1 + source/blender/editors/space_file/file_draw.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/release/scripts/modules/bl_i18n_utils/utils_spell_check.py b/release/scripts/modules/bl_i18n_utils/utils_spell_check.py index b1f72408a45..751e7a0ab51 100644 --- a/release/scripts/modules/bl_i18n_utils/utils_spell_check.py +++ b/release/scripts/modules/bl_i18n_utils/utils_spell_check.py @@ -38,6 +38,7 @@ class SpellChecker: "boolean", "booleans", "chamfer", "couldn", # couldn't + "customizable", "decrement", "derivate", "deterministically", diff --git a/source/blender/editors/space_file/file_draw.c b/source/blender/editors/space_file/file_draw.c index f2f7f9d82f9..8e9093151ba 100644 --- a/source/blender/editors/space_file/file_draw.c +++ b/source/blender/editors/space_file/file_draw.c @@ -1039,7 +1039,7 @@ static void file_draw_invalid_library_hint(const SpaceFile *sfile, const ARegion UI_icon_draw(sx, sy - UI_UNIT_Y, ICON_INFO); const char *suggestion = TIP_( - "Set up the library or edit libraries in the Preferences, File Paths section."); + "Set up the library or edit libraries in the Preferences, File Paths section"); file_draw_string_multiline( sx + UI_UNIT_X, sy, suggestion, width - UI_UNIT_X, line_height, text_col, NULL, NULL); }