From 8b4bb8999501a2f7ed34de9ffa22832696e7407f Mon Sep 17 00:00:00 2001 From: OptimizedForDensity <105244635+OptimizedForDensity@users.noreply.github.com> Date: Tue, 5 Jul 2022 01:05:06 -0400 Subject: [PATCH] Fix duplicate version in string (#7374) --- android/assets/jsons/translations/template.properties | 2 +- core/src/com/unciv/logic/UncivFiles.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/android/assets/jsons/translations/template.properties b/android/assets/jsons/translations/template.properties index 2ae834f1e9..161f468cc0 100644 --- a/android/assets/jsons/translations/template.properties +++ b/android/assets/jsons/translations/template.properties @@ -632,7 +632,7 @@ Copy saved game to clipboard = Could not load game! = Could not load game from clipboard! = Could not load game from custom location! = -The save was created with an incompatible version of Unciv: [version]. Please update Unciv to at least [version] and try again. = +The save was created with an incompatible version of Unciv: [version]. Please update Unciv to this version or later and try again. = Load [saveFileName] = Are you sure you want to delete this save? = Delete save = diff --git a/core/src/com/unciv/logic/UncivFiles.kt b/core/src/com/unciv/logic/UncivFiles.kt index 50a479886d..5cfa138c7f 100644 --- a/core/src/com/unciv/logic/UncivFiles.kt +++ b/core/src/com/unciv/logic/UncivFiles.kt @@ -430,6 +430,6 @@ class IncompatibleGameInfoVersionException( cause: Throwable? = null ) : UncivShowableException( "The save was created with an incompatible version of Unciv: [${version.createdWith.toNiceString()}]. " + - "Please update Unciv to at least [${version.createdWith.toNiceString()}] and try again.", + "Please update Unciv to this version or later and try again.", cause ), HasGameInfoSerializationVersion