You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-26 15:46:23 +00:00
Create strings.xml files to mimic behavior of _fix_resources method
This commit is contained in:
committed by
Fredia Huya-Kouadio
parent
824f0b0569
commit
ee9127bd20
@@ -43,6 +43,7 @@
|
|||||||
#include "editor/editor_log.h"
|
#include "editor/editor_log.h"
|
||||||
#include "editor/editor_node.h"
|
#include "editor/editor_node.h"
|
||||||
#include "editor/editor_settings.h"
|
#include "editor/editor_settings.h"
|
||||||
|
#include "platform/android/export/gradle_export_util.h"
|
||||||
#include "platform/android/logo.gen.h"
|
#include "platform/android/logo.gen.h"
|
||||||
#include "platform/android/plugin/godot_plugin_config.h"
|
#include "platform/android/plugin/godot_plugin_config.h"
|
||||||
#include "platform/android/run_icon.gen.h"
|
#include "platform/android/run_icon.gen.h"
|
||||||
@@ -2363,9 +2364,10 @@ public:
|
|||||||
|
|
||||||
EditorProgress ep("export", "Exporting for Android", 105, true);
|
EditorProgress ep("export", "Exporting for Android", 105, true);
|
||||||
|
|
||||||
if (bool(p_preset->get("custom_template/use_custom_build"))) { //custom build
|
bool use_custom_build = bool(p_preset->get("custom_template/use_custom_build"));
|
||||||
//re-generate build.gradle and AndroidManifest.xml
|
|
||||||
|
|
||||||
|
if (use_custom_build) {
|
||||||
|
//re-generate build.gradle and AndroidManifest.xml
|
||||||
{ //test that installed build version is alright
|
{ //test that installed build version is alright
|
||||||
FileAccessRef f = FileAccess::open("res://android/.build_version", FileAccess::READ);
|
FileAccessRef f = FileAccess::open("res://android/.build_version", FileAccess::READ);
|
||||||
if (!f) {
|
if (!f) {
|
||||||
@@ -2378,6 +2380,14 @@ public:
|
|||||||
return ERR_UNCONFIGURED;
|
return ERR_UNCONFIGURED;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: should we use "package/name" or "application/config/name"?
|
||||||
|
String project_name = get_project_name(p_preset->get("package/name"));
|
||||||
|
// instead of calling _fix_resources
|
||||||
|
Error err = _create_project_name_strings_files(p_preset, project_name);
|
||||||
|
if (err != OK) {
|
||||||
|
EditorNode::add_io_error("Unable to overwrite res://android/build/res/*.xml files with project name");
|
||||||
|
}
|
||||||
//build project if custom build is enabled
|
//build project if custom build is enabled
|
||||||
String sdk_path = EDITOR_GET("export/android/custom_build_sdk_path");
|
String sdk_path = EDITOR_GET("export/android/custom_build_sdk_path");
|
||||||
|
|
||||||
@@ -2566,7 +2576,9 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (file == "resources.arsc") {
|
if (file == "resources.arsc") {
|
||||||
_fix_resources(p_preset, data);
|
if (!use_custom_build) {
|
||||||
|
_fix_resources(p_preset, data);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < icon_densities_count; ++i) {
|
for (int i = 0; i < icon_densities_count; ++i) {
|
||||||
|
|||||||
@@ -37,6 +37,13 @@
|
|||||||
#include "core/os/os.h"
|
#include "core/os/os.h"
|
||||||
#include "editor/editor_export.h"
|
#include "editor/editor_export.h"
|
||||||
|
|
||||||
|
const String godot_project_name_xml_string = R"(<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
|
<resources>
|
||||||
|
<string name="godot_project_name_string">%s</string>
|
||||||
|
</resources>
|
||||||
|
)";
|
||||||
|
|
||||||
// Utility method used to create a directory.
|
// Utility method used to create a directory.
|
||||||
Error create_directory(const String &p_dir) {
|
Error create_directory(const String &p_dir) {
|
||||||
if (!DirAccess::exists(p_dir)) {
|
if (!DirAccess::exists(p_dir)) {
|
||||||
@@ -98,4 +105,41 @@ Error rename_and_store_file_in_gradle_project(void *p_userdata, const String &p_
|
|||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Creates strings.xml files inside the gradle project for different locales.
|
||||||
|
Error _create_project_name_strings_files(const Ref<EditorExportPreset> &p_preset, const String &project_name) {
|
||||||
|
// Stores the string into the default values directory.
|
||||||
|
String processed_default_xml_string = vformat(godot_project_name_xml_string, project_name.xml_escape(true));
|
||||||
|
store_string_at_path("res://android/build/res/values/godot_project_name_string.xml", processed_default_xml_string);
|
||||||
|
|
||||||
|
// Searches the Gradle project res/ directory to find all supported locales
|
||||||
|
DirAccessRef da = DirAccess::open("res://android/build/res");
|
||||||
|
if (!da) {
|
||||||
|
return ERR_CANT_OPEN;
|
||||||
|
}
|
||||||
|
da->list_dir_begin();
|
||||||
|
while (true) {
|
||||||
|
String file = da->get_next();
|
||||||
|
if (file == "") {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (!file.begins_with("values-")) {
|
||||||
|
// NOTE: This assumes all directories that start with "values-" are for localization.
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
String locale = file.replace("values-", "").replace("-r", "_");
|
||||||
|
String property_name = "application/config/name_" + locale;
|
||||||
|
String locale_directory = "res://android/build/res/" + file + "/godot_project_name_string.xml";
|
||||||
|
if (ProjectSettings::get_singleton()->has_setting(property_name)) {
|
||||||
|
String locale_project_name = ProjectSettings::get_singleton()->get(property_name);
|
||||||
|
String processed_xml_string = vformat(godot_project_name_xml_string, locale_project_name.xml_escape(true));
|
||||||
|
store_string_at_path(locale_directory, processed_xml_string);
|
||||||
|
} else {
|
||||||
|
// TODO: Once the legacy build system is deprecated we don't need to have xml files for this else branch
|
||||||
|
store_string_at_path(locale_directory, processed_default_xml_string);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
da->list_dir_end();
|
||||||
|
return OK;
|
||||||
|
}
|
||||||
|
|
||||||
#endif //GODOT_GRADLE_EXPORT_UTIL_H
|
#endif //GODOT_GRADLE_EXPORT_UTIL_H
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-ar</string>
|
<string name="godot_project_name_string">godot-project-name-ar</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-bg</string>
|
<string name="godot_project_name_string">godot-project-name-bg</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-ca</string>
|
<string name="godot_project_name_string">godot-project-name-ca</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-cs</string>
|
<string name="godot_project_name_string">godot-project-name-cs</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-da</string>
|
<string name="godot_project_name_string">godot-project-name-da</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-de</string>
|
<string name="godot_project_name_string">godot-project-name-de</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-el</string>
|
<string name="godot_project_name_string">godot-project-name-el</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-en</string>
|
<string name="godot_project_name_string">godot-project-name-en</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-es_ES</string>
|
<string name="godot_project_name_string">godot-project-name-es_ES</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-es</string>
|
<string name="godot_project_name_string">godot-project-name-es</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
|
<resources>
|
||||||
|
<string name="godot_project_name_string">godot-project-name-fa</string>
|
||||||
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-fi</string>
|
<string name="godot_project_name_string">godot-project-name-fi</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-fr</string>
|
<string name="godot_project_name_string">godot-project-name-fr</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-hi</string>
|
<string name="godot_project_name_string">godot-project-name-hi</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-hr</string>
|
<string name="godot_project_name_string">godot-project-name-hr</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-hu</string>
|
<string name="godot_project_name_string">godot-project-name-hu</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
|
<resources>
|
||||||
|
<string name="godot_project_name_string">godot-project-name-in</string>
|
||||||
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-it</string>
|
<string name="godot_project_name_string">godot-project-name-it</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
|
<resources>
|
||||||
|
<string name="godot_project_name_string">godot-project-name-iw</string>
|
||||||
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-ja</string>
|
<string name="godot_project_name_string">godot-project-name-ja</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
|
<resources>
|
||||||
|
<string name="godot_project_name_string">godot-project-name-ko</string>
|
||||||
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-lt</string>
|
<string name="godot_project_name_string">godot-project-name-lt</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-lv</string>
|
<string name="godot_project_name_string">godot-project-name-lv</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-nb</string>
|
<string name="godot_project_name_string">godot-project-name-nb</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-nl</string>
|
<string name="godot_project_name_string">godot-project-name-nl</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-pl</string>
|
<string name="godot_project_name_string">godot-project-name-pl</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-pt</string>
|
<string name="godot_project_name_string">godot-project-name-pt</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-ro</string>
|
<string name="godot_project_name_string">godot-project-name-ro</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-ru</string>
|
<string name="godot_project_name_string">godot-project-name-ru</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-sk</string>
|
<string name="godot_project_name_string">godot-project-name-sk</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-sl</string>
|
<string name="godot_project_name_string">godot-project-name-sl</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-sr</string>
|
<string name="godot_project_name_string">godot-project-name-sr</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-sv</string>
|
<string name="godot_project_name_string">godot-project-name-sv</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-th</string>
|
<string name="godot_project_name_string">godot-project-name-th</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-tl</string>
|
<string name="godot_project_name_string">godot-project-name-tl</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-tr</string>
|
<string name="godot_project_name_string">godot-project-name-tr</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-uk</string>
|
<string name="godot_project_name_string">godot-project-name-uk</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-vi</string>
|
<string name="godot_project_name_string">godot-project-name-vi</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-zh_HK</string>
|
<string name="godot_project_name_string">godot-project-name-zh_HK</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-zh_TW</string>
|
<string name="godot_project_name_string">godot-project-name-zh_TW</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-zh</string>
|
<string name="godot_project_name_string">godot-project-name-zh</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- WARNING: THIS FILE WILL BE OVERWRITTEN AT BUILD TIME-->
|
||||||
|
<resources>
|
||||||
|
<string name="godot_project_name_string">godot-project-name</string>
|
||||||
|
</resources>
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-fa</string>
|
|
||||||
<string name="text_paused_cellular">آیا می خواهید بر روی اتصال داده همراه دانلود را شروع کنید؟ بر اساس نوع سطح داده شما این ممکن است برای شما هزینه مالی داشته باشد.</string>
|
<string name="text_paused_cellular">آیا می خواهید بر روی اتصال داده همراه دانلود را شروع کنید؟ بر اساس نوع سطح داده شما این ممکن است برای شما هزینه مالی داشته باشد.</string>
|
||||||
<string name="text_paused_cellular_2">اگر نمی خواهید بر روی اتصال داده همراه دانلود را شروع کنید ، دانلود به صورت خودکار در زمان دسترسی به وای-فای شروع می شود.</string>
|
<string name="text_paused_cellular_2">اگر نمی خواهید بر روی اتصال داده همراه دانلود را شروع کنید ، دانلود به صورت خودکار در زمان دسترسی به وای-فای شروع می شود.</string>
|
||||||
<string name="text_button_resume_cellular">ادامه دانلود</string>
|
<string name="text_button_resume_cellular">ادامه دانلود</string>
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<resources>
|
|
||||||
<string name="godot_project_name_string">godot-project-name-id</string>
|
|
||||||
</resources>
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<resources>
|
|
||||||
<string name="godot_project_name_string">godot-project-name-he</string>
|
|
||||||
</resources>
|
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="godot_project_name_string">godot-project-name-ko</string>
|
|
||||||
<string name="text_paused_cellular">모바일 네트워크를 사용하여 다운로드 하시겠습니까? 남은 데이터 사용량에 따라, 요금이 부과될 수 있습니다.</string>
|
<string name="text_paused_cellular">모바일 네트워크를 사용하여 다운로드 하시겠습니까? 남은 데이터 사용량에 따라, 요금이 부과될 수 있습니다.</string>
|
||||||
<string name="text_paused_cellular_2">모바일 네트워크를 사용하여 다운로드 하지 않을 경우, 와이파이 연결이 가능할 때 자동적으로 다운로드가 이루어집니다.</string>
|
<string name="text_paused_cellular_2">모바일 네트워크를 사용하여 다운로드 하지 않을 경우, 와이파이 연결이 가능할 때 자동적으로 다운로드가 이루어집니다.</string>
|
||||||
<string name="text_button_resume_cellular">다운로드 계속하기</string>
|
<string name="text_button_resume_cellular">다운로드 계속하기</string>
|
||||||
|
|||||||
Reference in New Issue
Block a user