i18n: Fix another %i in vformat
This commit is contained in:
parent
be053e6286
commit
21f965f249
2 changed files with 2 additions and 2 deletions
|
@ -1732,7 +1732,7 @@ CustomPropertyEditor::CustomPropertyEditor() {
|
||||||
add_child(checks20[i]);
|
add_child(checks20[i]);
|
||||||
checks20[i]->hide();
|
checks20[i]->hide();
|
||||||
checks20[i]->connect("pressed",this,"_action_pressed",make_binds(i));
|
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 );
|
text_edit = memnew( TextEdit );
|
||||||
|
|
|
@ -2008,7 +2008,7 @@ msgid "Couldn't load image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/editor/property_editor.cpp:1735
|
#: tools/editor/property_editor.cpp:1735
|
||||||
msgid "Bit %d, val %i."
|
msgid "Bit %d, val %d."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/editor/property_editor.cpp:2770
|
#: tools/editor/property_editor.cpp:2770
|
||||||
|
|
Loading…
Reference in a new issue