Add more translatable text for editor plugins.

This commit is contained in:
geequlim 2017-12-23 22:40:15 +08:00
parent 59ec417e4a
commit 52ad2e5418
8 changed files with 23 additions and 23 deletions

View file

@ -840,7 +840,7 @@ SpriteFramesEditorPlugin::SpriteFramesEditorPlugin(EditorNode *p_node) {
editor = p_node;
frames_editor = memnew(SpriteFramesEditor);
frames_editor->set_custom_minimum_size(Size2(0, 300) * EDSCALE);
button = editor->add_bottom_panel_item("SpriteFrames", frames_editor);
button = editor->add_bottom_panel_item(TTR("SpriteFrames"), frames_editor);
button->hide();
}