diff options
| author | Noshyaar | 2017-12-24 18:28:46 +0700 |
|---|---|---|
| committer | GitHub | 2017-12-24 18:28:46 +0700 |
| commit | 83182ea4a1e6d5c34dd137fdbd7ef9b2c5f33231 (patch) | |
| tree | a1d46c740d6685026d77c91298efb39a12a0369f /editor/plugins/theme_editor_plugin.cpp | |
| parent | c899583ac1bd9c1c424ec2536988ad0790526eea (diff) | |
| parent | 52ad2e5418fc132a9534d9ef715259202a6acc08 (diff) | |
| download | godot-83182ea4a1e6d5c34dd137fdbd7ef9b2c5f33231.tar.gz godot-83182ea4a1e6d5c34dd137fdbd7ef9b2c5f33231.tar.zst godot-83182ea4a1e6d5c34dd137fdbd7ef9b2c5f33231.zip | |
Merge pull request #14982 from GodotExplorer/more-translate-text
Add more translatable text for editor plugins.
Diffstat (limited to '')
| -rw-r--r-- | editor/plugins/theme_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/theme_editor_plugin.cpp b/editor/plugins/theme_editor_plugin.cpp index 7f956b01f..38a4bfbfc 100644 --- a/editor/plugins/theme_editor_plugin.cpp +++ b/editor/plugins/theme_editor_plugin.cpp @@ -934,6 +934,6 @@ ThemeEditorPlugin::ThemeEditorPlugin(EditorNode *p_node) { theme_editor->set_custom_minimum_size(Size2(0, 200)); //p_node->get_viewport()->add_child(theme_editor); - button = editor->add_bottom_panel_item("Theme", theme_editor); + button = editor->add_bottom_panel_item(TTR("Theme"), theme_editor); button->hide(); } |
