summaryrefslogtreecommitdiff
path: root/editor/export
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-02-17 09:55:39 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-02-17 09:55:39 +0100
commitb2584629c801542c71aee317888b0939b1763f40 (patch)
tree75a5d9f50066b5f65b00d60ada9c3eb6253cbc6a /editor/export
parent3a7cb4a1e06a192cd450790b3243d4556d984d9b (diff)
parent84aee17901afb4c5d31081f58da39ceba5563714 (diff)
Merge pull request #73195 from timothyqiu/weblate-comments
Improvements and fixes based on Weblate comments
Diffstat (limited to 'editor/export')
-rw-r--r--editor/export/editor_export_platform.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/export/editor_export_platform.cpp b/editor/export/editor_export_platform.cpp
index 96a8cc8b91..fe3c2333ed 100644
--- a/editor/export/editor_export_platform.cpp
+++ b/editor/export/editor_export_platform.cpp
@@ -247,7 +247,8 @@ Error EditorExportPlatform::_save_pack_file(void *p_userdata, const String &p_pa
pd->file_ofs.push_back(sd);
- if (pd->ep->step(TTR("Storing File:") + " " + p_path, 2 + p_file * 100 / p_total, false)) {
+ // TRANSLATORS: This is an editor progress label describing the storing of a file.
+ if (pd->ep->step(vformat(TTR("Storing File: %s"), p_path), 2 + p_file * 100 / p_total, false)) {
return ERR_SKIP;
}