aboutsummaryrefslogtreecommitdiff
path: root/editor/plugins/theme_editor_plugin.cpp
diff options
context:
space:
mode:
authorNoshyaar2017-12-24 18:28:46 +0700
committerGitHub2017-12-24 18:28:46 +0700
commit83182ea4a1e6d5c34dd137fdbd7ef9b2c5f33231 (patch)
treea1d46c740d6685026d77c91298efb39a12a0369f /editor/plugins/theme_editor_plugin.cpp
parentc899583ac1bd9c1c424ec2536988ad0790526eea (diff)
parent52ad2e5418fc132a9534d9ef715259202a6acc08 (diff)
downloadgodot-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.cpp2
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();
}