diff options
author | Noshyaar <poommetee@protonmail.com> | 2017-12-24 18:28:46 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-24 18:28:46 +0700 |
commit | 83182ea4a1e6d5c34dd137fdbd7ef9b2c5f33231 (patch) | |
tree | a1d46c740d6685026d77c91298efb39a12a0369f /editor/plugins/sprite_frames_editor_plugin.cpp | |
parent | c899583ac1bd9c1c424ec2536988ad0790526eea (diff) | |
parent | 52ad2e5418fc132a9534d9ef715259202a6acc08 (diff) |
Merge pull request #14982 from GodotExplorer/more-translate-text
Add more translatable text for editor plugins.
Diffstat (limited to 'editor/plugins/sprite_frames_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/sprite_frames_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/sprite_frames_editor_plugin.cpp b/editor/plugins/sprite_frames_editor_plugin.cpp index 175655119f..71c81f7111 100644 --- a/editor/plugins/sprite_frames_editor_plugin.cpp +++ b/editor/plugins/sprite_frames_editor_plugin.cpp @@ -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(); } |