diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2022-04-01 08:44:11 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-01 08:44:11 +0200 |
| commit | f3fe2631da1602df9312a4cd64c7b68d2f94f08a (patch) | |
| tree | 7d8bf0bd5046f452c50cb7f0e828d96d92d52c61 /scene/gui/control.cpp | |
| parent | 0e8caf1a4e238b9bdd59da9121d3947d9b9062b7 (diff) | |
| parent | 2f20ff0ed6a9eae45b2c3045a2abd8deed032f89 (diff) | |
Merge pull request #59771 from timothyqiu/i18n-theme-props
Extract theme property names for localization
Diffstat (limited to 'scene/gui/control.cpp')
| -rw-r--r-- | scene/gui/control.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp index 2f96ee675f..96d2b29fc1 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -367,7 +367,7 @@ bool Control::_get(const StringName &p_name, Variant &r_ret) const { void Control::_get_property_list(List<PropertyInfo> *p_list) const { Ref<Theme> theme = Theme::get_default(); - p_list->push_back(PropertyInfo(Variant::NIL, "Theme Overrides", PROPERTY_HINT_NONE, "theme_override_", PROPERTY_USAGE_GROUP)); + p_list->push_back(PropertyInfo(Variant::NIL, TTRC("Theme Overrides"), PROPERTY_HINT_NONE, "theme_override_", PROPERTY_USAGE_GROUP)); { List<StringName> names; |