1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Change ".." punctuation for "..." in editor strings (#16507)

This commit is contained in:
Hugo Locurcio
2018-04-22 19:36:01 +02:00
committed by Max Hilbrunner
parent ca25f1e6ea
commit 1c419531a0
39 changed files with 200 additions and 200 deletions

View File

@@ -595,11 +595,11 @@ bool EditorData::check_and_update_scene(int p_idx) {
pscene.instance();
EditorProgress ep("update_scene", TTR("Updating Scene"), 2);
ep.step(TTR("Storing local changes.."), 0);
ep.step(TTR("Storing local changes..."), 0);
//pack first, so it stores diffs to previous version of saved scene
Error err = pscene->pack(edited_scene[p_idx].root);
ERR_FAIL_COND_V(err != OK, false);
ep.step(TTR("Updating scene.."), 1);
ep.step(TTR("Updating scene..."), 1);
Node *new_scene = pscene->instance(PackedScene::GEN_EDIT_STATE_MAIN);
ERR_FAIL_COND_V(!new_scene, false);