mirror of
https://github.com/yairm210/Unciv.git
synced 2025-02-11 11:28:03 +07:00
Fix duplicate version in string (#7374)
This commit is contained in:
parent
33e5b6475a
commit
8b4bb89995
@ -632,7 +632,7 @@ Copy saved game to clipboard =
|
|||||||
Could not load game! =
|
Could not load game! =
|
||||||
Could not load game from clipboard! =
|
Could not load game from clipboard! =
|
||||||
Could not load game from custom location! =
|
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] =
|
Load [saveFileName] =
|
||||||
Are you sure you want to delete this save? =
|
Are you sure you want to delete this save? =
|
||||||
Delete save =
|
Delete save =
|
||||||
|
@ -430,6 +430,6 @@ class IncompatibleGameInfoVersionException(
|
|||||||
cause: Throwable? = null
|
cause: Throwable? = null
|
||||||
) : UncivShowableException(
|
) : UncivShowableException(
|
||||||
"The save was created with an incompatible version of Unciv: [${version.createdWith.toNiceString()}]. " +
|
"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
|
cause
|
||||||
), HasGameInfoSerializationVersion
|
), HasGameInfoSerializationVersion
|
||||||
|
Loading…
Reference in New Issue
Block a user