summaryrefslogtreecommitdiff
path: root/core/config
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-03-11 10:45:02 +0100
committerGitHub <noreply@github.com>2022-03-11 10:45:02 +0100
commit952b71a42556be32132cfeb11e18c5d775b339d2 (patch)
treec575f4611e51ee48a6fae88d16e67cf84433c56e /core/config
parent259114e9e0d5bb01d023ad978e06ed14ca785b1d (diff)
parent12cb6386f6bb4e82dcc1105616181a7dc251fe02 (diff)
Merge pull request #58751 from bruvzg/loc_str_props
Diffstat (limited to 'core/config')
-rw-r--r--core/config/project_settings.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/config/project_settings.cpp b/core/config/project_settings.cpp
index 83f58311f1..676a70e53e 100644
--- a/core/config/project_settings.cpp
+++ b/core/config/project_settings.cpp
@@ -1199,6 +1199,8 @@ ProjectSettings::ProjectSettings() {
singleton = this;
GLOBAL_DEF_BASIC("application/config/name", "");
+ GLOBAL_DEF_BASIC("application/config/name_localized", Dictionary());
+ custom_prop_info["application/config/name_localized"] = PropertyInfo(Variant::DICTIONARY, "application/config/name_localized", PROPERTY_HINT_LOCALIZABLE_STRING);
GLOBAL_DEF_BASIC("application/config/description", "");
custom_prop_info["application/config/description"] = PropertyInfo(Variant::STRING, "application/config/description", PROPERTY_HINT_MULTILINE_TEXT);
GLOBAL_DEF_BASIC("application/run/main_scene", "");