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-08-09 15:41:30 +0300
committerBastien Montagne <bastien@blender.org>2021-08-09 15:42:47 +0300
commite2a411570e5597eb5d84743a2b658b75fe1c37e9 (patch)
treedb5ec687de3a64360c7070206a2a493fac315ef2 /source/blender/windowmanager/intern/wm_files.c
parent3886ab05b449979959dfbb4950fea9ec473ecb83 (diff)
Cleanup/fixes in UI messages.
Diffstat (limited to 'source/blender/windowmanager/intern/wm_files.c')
-rw-r--r--source/blender/windowmanager/intern/wm_files.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/windowmanager/intern/wm_files.c b/source/blender/windowmanager/intern/wm_files.c
index 92f3eb67783..abf957a6396 100644
--- a/source/blender/windowmanager/intern/wm_files.c
+++ b/source/blender/windowmanager/intern/wm_files.c
@@ -803,7 +803,7 @@ static void file_read_reports_finalize(BlendFileReadReport *bf_reports)
node_lib = node_lib->next) {
Library *library = node_lib->link;
BKE_reportf(
- bf_reports->reports, RPT_INFO, "Library %s needs overrides resync.", library->filepath);
+ bf_reports->reports, RPT_INFO, "Library %s needs overrides resync", library->filepath);
}
}
@@ -3443,7 +3443,7 @@ static uiBlock *block_create__close_file_dialog(struct bContext *C,
BLI_split_file_part(blendfile_pathpath, filename, sizeof(filename));
}
else {
- STRNCPY(filename, IFACE_("untitled.blend"));
+ STRNCPY(filename, "untitled.blend");
}
uiItemL(layout, filename, ICON_NONE);