* Add Replay feature in VictoryScreen.
* Add Replay feature in VictoryScreen.
* Support for i18n
* Extract year to text conversion into common util to be used from VictoryScreen.kt and WorldScreenTopBar.kt
* Remove ReplayMapTile and modify MinimapTile so that it can support both use cases.
* Reuse code for spreading out tiles onto tile layer between Minimap and ReplayMap by factoring it out into a new MinimapTileUtil
* Revert "Reuse code for spreading out tiles onto tile layer between Minimap and ReplayMap by factoring it out into a new MinimapTileUtil"
This reverts commit d4cddb4312.
* Add Replay feature in VictoryScreen.
* Add Replay feature in VictoryScreen.
* Support for i18n
* Extract year to text conversion into common util to be used from VictoryScreen.kt and WorldScreenTopBar.kt
* Remove ReplayMapTile and modify MinimapTile so that it can support both use cases.
* Revert some unintentional indentation changes
* Refactor some common logic of Minimap and ReplayMap into MinimapTileUtil
* Slightly increase ReplayMap size and simplify logic to calculate tile size since input is static.
* Indentation again... :|
* Unify isCityCenter & isCapital into an enum in TileHistory and shorten identifiers
* Use city.getTiles() instead of city.tiles in CityInfoConquestFunctions.kt
* Improve tileSize calculation in ReplayMap.kt
* Remove extra padding in VictoryScreen -> Replay to prevent WorldScreenTopBar from acting up on the next turn.
* Make return value of MinimapTileUtil.spreadOutMinimapTiles more useful to callers
* Cancel Replay timer when VictoryScreen is disposed or when Replay is opened again.
* Cancel replay map timer task whenever tab is switched in VictoryScreen
* Improve serialization for TileHistory by using a custom serializer. This removes the need for holding two copies of the same thing and to use String based keys.
* Add backwards compatibility for replay. The replay will start at the turn where it came into play.
* Remove debugging code :|
* Use gameInfo field rather than going throug the global UncivGame...