i18n: Fix another %i in vformat

This commit is contained in:
Rémi Verschelde 2016-05-21 16:53:23 +02:00
parent be053e6286
commit 21f965f249
2 changed files with 2 additions and 2 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 %d, val %i."), i, 1<<i));
checks20[i]->set_tooltip(vformat(TTR("Bit %d, val %d."), i, 1<<i));
}
text_edit = memnew( TextEdit );

View file

@ -2008,7 +2008,7 @@ msgid "Couldn't load image"
msgstr ""
#: tools/editor/property_editor.cpp:1735
msgid "Bit %d, val %i."
msgid "Bit %d, val %d."
msgstr ""
#: tools/editor/property_editor.cpp:2770