aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/dependency_editor.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2016-05-21 16:34:56 +0200
committerRémi Verschelde2016-05-21 16:34:56 +0200
commitbe053e62860a6b9d712e6ece4cde025569ff2efb (patch)
tree74da8d8fd753cffb9ec7009c2eee13741a0ffb3b /tools/editor/dependency_editor.cpp
parenta65a66b2a3b44ae93258cbdab7388752d1a05fad (diff)
downloadgodot-be053e62860a6b9d712e6ece4cde025569ff2efb.tar.gz
godot-be053e62860a6b9d712e6ece4cde025569ff2efb.tar.zst
godot-be053e62860a6b9d712e6ece4cde025569ff2efb.zip
i18n: Use %d instead of %i in vformat
Fixes #4742.
Diffstat (limited to 'tools/editor/dependency_editor.cpp')
-rw-r--r--tools/editor/dependency_editor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/dependency_editor.cpp b/tools/editor/dependency_editor.cpp
index eeb08e8e4..633a414b0 100644
--- a/tools/editor/dependency_editor.cpp
+++ b/tools/editor/dependency_editor.cpp
@@ -523,7 +523,7 @@ void OrphanResourcesDialog::ok_pressed() {
if (paths.empty())
return;
- delete_confirm->set_text(vformat(TTR("Permanently delete %i item(s)? (No undo!)"),paths.size()));
+ delete_confirm->set_text(vformat(TTR("Permanently delete %d item(s)? (No undo!)"),paths.size()));
delete_confirm->popup_centered_minsize();
}