Merge pull request #73195 from timothyqiu/weblate-comments

Improvements and fixes based on Weblate comments
This commit is contained in:
Rémi Verschelde
2023-02-17 09:55:39 +01:00
15 changed files with 22 additions and 14 deletions

View File

@ -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;
}