i18n: Fix another %i in vformat
This commit is contained in:
parent
be053e6286
commit
21f965f249
|
@ -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 );
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue