فهرست منبع

Make string inside TTR() single-line

(cherry picked from commit 1348f868c9bef6bca1d04d6ec8623f2a57b2ad83)
Haoyu Qiu 3 سال پیش
والد
کامیت
fbd74ae941
1فایلهای تغییر یافته به همراه1 افزوده شده و 3 حذف شده
  1. 1 3
      platform/android/export/export_plugin.cpp

+ 1 - 3
platform/android/export/export_plugin.cpp

@@ -2204,9 +2204,7 @@ bool EditorExportPlatformAndroid::can_export(const Ref<EditorExportPreset> &p_pr
 		bool godot_google_play_billing_enabled = p_preset->get("plugins/GodotGooglePlayBilling");
 		if (!godot_google_play_billing_enabled) {
 			valid = false;
-			err += TTR("Invalid \"GodotPaymentV3\" module included in the \"android/modules\" project setting (changed in Godot 3.2.2).\n"
-					   "Replace it with the first-party \"GodotGooglePlayBilling\" plugin.\n"
-					   "Note that the singleton was also renamed from \"GodotPayments\" to \"GodotGooglePlayBilling\".");
+			err += TTR("Invalid \"GodotPaymentV3\" module included in the \"android/modules\" project setting (changed in Godot 3.2.2).\nReplace it with the first-party \"GodotGooglePlayBilling\" plugin.\nNote that the singleton was also renamed from \"GodotPayments\" to \"GodotGooglePlayBilling\".");
 			err += "\n";
 		}
 	}