You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 13:20:55 +00:00
i18n: Fix another %i in vformat
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user