diff options
-rw-r--r-- | tools/editor/property_editor.cpp | 2 | ||||
-rw-r--r-- | tools/translations/tools.pot | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/editor/property_editor.cpp b/tools/editor/property_editor.cpp index 64dccbe290..f94ca48ec2 100644 --- a/tools/editor/property_editor.cpp +++ b/tools/editor/property_editor.cpp @@ -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 ); diff --git a/tools/translations/tools.pot b/tools/translations/tools.pot index 86347d77fa..b5b6f9d467 100644 --- a/tools/translations/tools.pot +++ b/tools/translations/tools.pot @@ -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 |