diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-02-03 09:43:11 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-02-03 09:56:10 +0200 |
commit | 2eeff4caec00a9eec06919d35c3ea8d87322cd31 (patch) | |
tree | df7f92e9163091131d47af79d8a53dcc77571d54 /platform/osx | |
parent | 6de5bafd2fa7513cf78377b61c2606327b293d44 (diff) |
[macOS] Add empty translation files to the exported app bundle, to allow translation detection by the OS.
Diffstat (limited to 'platform/osx')
-rw-r--r-- | platform/osx/export/export_plugin.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/platform/osx/export/export_plugin.cpp b/platform/osx/export/export_plugin.cpp index 4d1f72f5c9..f0b58efb63 100644 --- a/platform/osx/export/export_plugin.cpp +++ b/platform/osx/export/export_plugin.cpp @@ -777,6 +777,24 @@ Error EditorExportPlatformOSX::export_project(const Ref<EditorExportPreset> &p_p err = tmp_app_dir->make_dir_recursive(tmp_app_path_name + "/Contents/Resources"); } + Vector<String> translations = ProjectSettings::get_singleton()->get("internationalization/locale/translations"); + if (translations.size() > 0) { + { + String fname = tmp_app_path_name + "/Contents/Resources/en.lproj"; + tmp_app_dir->make_dir_recursive(fname); + FileAccessRef f = FileAccess::open(fname + "/InfoPlist.strings", FileAccess::WRITE); + } + + for (const String &E : translations) { + Ref<Translation> tr = ResourceLoader::load(E); + if (tr.is_valid()) { + String fname = tmp_app_path_name + "/Contents/Resources/" + tr->get_locale() + ".lproj"; + tmp_app_dir->make_dir_recursive(fname); + FileAccessRef f = FileAccess::open(fname + "/InfoPlist.strings", FileAccess::WRITE); + } + } + } + // Now process our template. bool found_binary = false; Vector<String> dylibs_found; |