Improve app name and system permission message localization.
Add localizable string (Dictionary<Lang Code, String>) property editor and property hint.
Add localized "app name" property to the project settings.
Add localized permission and copyright properties to the macOS and iOS export settings.
Remove some duplicated ("app name") and deprecated ("info") macOS and iOS export properties.
This commit is contained in:
parent
bb8c4acdc9
commit
12cb6386f6
14 changed files with 423 additions and 43 deletions
|
|
@ -3738,8 +3738,13 @@ EditorProperty *EditorInspectorDefaultPlugin::get_editor_for_property(Object *p_
|
|||
|
||||
} break;
|
||||
case Variant::DICTIONARY: {
|
||||
EditorPropertyDictionary *editor = memnew(EditorPropertyDictionary);
|
||||
return editor;
|
||||
if (p_hint == PROPERTY_HINT_LOCALIZABLE_STRING) {
|
||||
EditorPropertyLocalizableString *editor = memnew(EditorPropertyLocalizableString);
|
||||
return editor;
|
||||
} else {
|
||||
EditorPropertyDictionary *editor = memnew(EditorPropertyDictionary);
|
||||
return editor;
|
||||
}
|
||||
} break;
|
||||
case Variant::ARRAY: {
|
||||
EditorPropertyArray *editor = memnew(EditorPropertyArray);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue