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

i18n: Use %d instead of %i in vformat

Fixes #4742.
This commit is contained in:
Rémi Verschelde
2016-05-21 16:34:56 +02:00
parent a65a66b2a3
commit be053e6286
12 changed files with 80 additions and 76 deletions

View File

@@ -1732,7 +1732,7 @@ CustomPropertyEditor::CustomPropertyEditor() {
add_child(checks20[i]);
checks20[i]->hide();
checks20[i]->connect("pressed",this,"_action_pressed",make_binds(i));
checks20[i]->set_tooltip(vformat(TTR("Bit %i, val %i."), i, 1<<i));
checks20[i]->set_tooltip(vformat(TTR("Bit %d, val %i."), i, 1<<i));
}
text_edit = memnew( TextEdit );