diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-05-21 16:34:56 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-05-21 16:34:56 +0200 |
commit | be053e62860a6b9d712e6ece4cde025569ff2efb (patch) | |
tree | 74da8d8fd753cffb9ec7009c2eee13741a0ffb3b /tools/editor/code_editor.cpp | |
parent | a65a66b2a3b44ae93258cbdab7388752d1a05fad (diff) | |
download | redot-engine-be053e62860a6b9d712e6ece4cde025569ff2efb.tar.gz |
i18n: Use %d instead of %i in vformat
Fixes #4742.
Diffstat (limited to 'tools/editor/code_editor.cpp')
-rw-r--r-- | tools/editor/code_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/code_editor.cpp b/tools/editor/code_editor.cpp index 24c763a58f..c92b40628c 100644 --- a/tools/editor/code_editor.cpp +++ b/tools/editor/code_editor.cpp @@ -216,7 +216,7 @@ void FindReplaceDialog::_replace() { text_edit->set_v_scroll(vsval); // text_edit->set_h_scroll(hsval); - error_label->set_text(vformat(TTR("Replaced %i ocurrence(s)."),rc)); + error_label->set_text(vformat(TTR("Replaced %d ocurrence(s)."),rc)); //hide(); |