summaryrefslogtreecommitdiffstats
path: root/platform
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-11-25 13:22:30 -0600
committerThaddeus Crews <repiteo@outlook.com>2024-11-25 13:22:30 -0600
commit6e6fbdd59376dff76cd3b8f1db4b6dc0e2f91930 (patch)
tree544dce08d9731ca383be2a59d9db24f5e88cc231 /platform
parent57125f48cebea05922bb6dc2a999c861dd0e7700 (diff)
parent796d943f14178ec1872085624bacaf4b9c18ef48 (diff)
downloadredot-engine-6e6fbdd59376dff76cd3b8f1db4b6dc0e2f91930.tar.gz
Merge pull request #99605 from Alex2782/fix_errmsg_java_sdk_path
Fix missing space after period in error message.
Diffstat (limited to 'platform')
-rw-r--r--platform/android/export/export_plugin.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp
index e20de99c2d..a7b0879056 100644
--- a/platform/android/export/export_plugin.cpp
+++ b/platform/android/export/export_plugin.cpp
@@ -2529,7 +2529,7 @@ bool EditorExportPlatformAndroid::has_valid_export_configuration(const Ref<Edito
// Check for the bin directory.
Ref<DirAccess> da = DirAccess::open(java_sdk_path.path_join("bin"), &errn);
if (errn != OK) {
- err += TTR("Invalid Java SDK path in Editor Settings.");
+ err += TTR("Invalid Java SDK path in Editor Settings.") + " ";
err += TTR("Missing 'bin' directory!");
err += "\n";
valid = false;
@@ -2537,7 +2537,7 @@ bool EditorExportPlatformAndroid::has_valid_export_configuration(const Ref<Edito
// Check for the `java` command.
String java_path = get_java_path();
if (!FileAccess::exists(java_path)) {
- err += TTR("Unable to find 'java' command using the Java SDK path.");
+ err += TTR("Unable to find 'java' command using the Java SDK path.") + " ";
err += TTR("Please check the Java SDK directory specified in Editor Settings.");
err += "\n";
valid = false;
@@ -2554,7 +2554,7 @@ bool EditorExportPlatformAndroid::has_valid_export_configuration(const Ref<Edito
// Check for the platform-tools directory.
Ref<DirAccess> da = DirAccess::open(sdk_path.path_join("platform-tools"), &errn);
if (errn != OK) {
- err += TTR("Invalid Android SDK path in Editor Settings.");
+ err += TTR("Invalid Android SDK path in Editor Settings.") + " ";
err += TTR("Missing 'platform-tools' directory!");
err += "\n";
valid = false;
@@ -2563,7 +2563,7 @@ bool EditorExportPlatformAndroid::has_valid_export_configuration(const Ref<Edito
// Validate that adb is available.
String adb_path = get_adb_path();
if (!FileAccess::exists(adb_path)) {
- err += TTR("Unable to find Android SDK platform-tools' adb command.");
+ err += TTR("Unable to find Android SDK platform-tools' adb command.") + " ";
err += TTR("Please check in the Android SDK directory specified in Editor Settings.");
err += "\n";
valid = false;
@@ -2572,7 +2572,7 @@ bool EditorExportPlatformAndroid::has_valid_export_configuration(const Ref<Edito
// Check for the build-tools directory.
Ref<DirAccess> build_tools_da = DirAccess::open(sdk_path.path_join("build-tools"), &errn);
if (errn != OK) {
- err += TTR("Invalid Android SDK path in Editor Settings.");
+ err += TTR("Invalid Android SDK path in Editor Settings.") + " ";
err += TTR("Missing 'build-tools' directory!");
err += "\n";
valid = false;
@@ -2585,7 +2585,7 @@ bool EditorExportPlatformAndroid::has_valid_export_configuration(const Ref<Edito
// Validate that apksigner is available.
String apksigner_path = get_apksigner_path(target_sdk_version.to_int());
if (!FileAccess::exists(apksigner_path)) {
- err += TTR("Unable to find Android SDK build-tools' apksigner command.");
+ err += TTR("Unable to find Android SDK build-tools' apksigner command.") + " ";
err += TTR("Please check in the Android SDK directory specified in Editor Settings.");
err += "\n";
valid = false;