Skip to content

Commit f8f278d

Browse files
yairm210OuazSmashfanfulPCPandaStyle
authored
Version rollout (#14467)
* Bump version and create initial changelog entry * Update French.properties (#14460) * Update Italian.properties (#14459) * Update German.properties (#14458) * Update German.properties revised commit, compared with an older version of the file. * add missing "requires translation" in the comments at the top --------- Co-authored-by: yairm210 <yairm210@users.noreply.github.com> Co-authored-by: Ouaz <Ouaz@users.noreply.github.com> Co-authored-by: Giuseppe D'Addio <41149920+Smashfanful@users.noreply.github.com> Co-authored-by: PCPandaStyle <81259139+PCPandaStyle@users.noreply.github.com>
1 parent 84b1c5e commit f8f278d

File tree

7 files changed

+88
-74
lines changed

7 files changed

+88
-74
lines changed

android/assets/jsons/translations/French.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ Your Golden Age has ended. = Votre Âge d'Or a pris fin.
10231023
[cityName] has been razed to the ground! = [cityName] a été rasée !
10241024
We have conquered the city of [cityName]! = Nous avons conquis la ville de [cityName] !
10251025
# Requires translation!
1026-
We have destroyed the city of [cityName]! =
1026+
We have destroyed the city of [cityName]! = Nous avons détruit la ville de [cityName] !
10271027
Your citizens are revolting due to very high unhappiness! = Vos citoyens se révoltent en raison du très fort mécontentement !
10281028
Connect road cancelled! = Connecter une route a été annulé !
10291029

@@ -1976,7 +1976,7 @@ Chimes = Carillon
19761976
Choir = Chœur
19771977
[unit] Attack Sound = [unit] (Son d'attaque)
19781978
# Requires translation!
1979-
URL must start with http:// or https:// =
1979+
URL must start with http:// or https:// = L'URL doit commencer par http:// ou https://
19801980

19811981
# Mods
19821982

@@ -2430,7 +2430,7 @@ when espionage is disabled = quand l'espionnage est désactivé
24302430
when nuclear weapons are enabled = quand les armes nucléaires sont activées
24312431
when nuclear weapons are disabled = quand les armes nucléaires sont désactivées
24322432
with [nonNegativeAmount]% chance = avec [nonNegativeAmount]% de chances
2433-
for [civFilter] Civilizations = pour [civFilter] civilisations
2433+
for [civFilter] Civilizations = pour les civilisations [civFilter]
24342434
when at war = quand en guerre
24352435
when not at war = quand en paix
24362436
during a Golden Age = durant un Âge d'Or
@@ -2882,15 +2882,15 @@ year = année
28822882
[stat/resource] Per Turn = [stat/resource] par tour
28832883
Completed Policy branches = Branches de doctrines complétées
28842884
[cityFilter] Cities = Villes [cityFilter]
2885-
[buildingFilter] Buildings by [civFilter] Civilizations = Bâtiments [buildingFilter] par les civilisations [civFilter]
2885+
[buildingFilter] Buildings by [civFilter] Civilizations = Bâtiments [buildingFilter] des civilisations [civFilter]
28862886
Adopted [policyFilter] Policies = Doctrines [policyFilter] adoptées
28872887
Adopted [policyFilter] Policies by [civFilter] Civilizations = Doctrines [policyFilter] adoptées par les civilisations [civFilter]
28882888
Researched [techFilter] Technologies = Technologies [techFilter] recherchées
28892889
Remaining [civFilter] Civilizations = Civilisations [civFilter] restantes
28902890
Owned [tileFilter] Tiles = Cases [tileFilter] possédées
28912891
[tileFilter] Tiles = Cases [tileFilter]
28922892
# Requires translation!
2893-
[resourceFilter] resource of [civFilter] Civilizations =
2893+
[resourceFilter] resource of [civFilter] Civilizations = Ressource [resourceFilter] des civilisations [civFilter]
28942894
Era number = Nombre de l'ère
28952895
Speed modifier for [stat] = Modificateur de vitesse pour [stat]
28962896

android/assets/jsons/translations/German.properties

Lines changed: 16 additions & 16 deletions
Large diffs are not rendered by default.

android/assets/jsons/translations/Italian.properties

Lines changed: 25 additions & 50 deletions
Large diffs are not rendered by default.

buildSrc/src/main/kotlin/BuildConfig.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package com.unciv.build
33

44
object BuildConfig {
55
const val appName = "Unciv"
6-
const val appCodeNumber = 1192
7-
const val appVersion = "4.19.5"
6+
const val appCodeNumber = 1193
7+
const val appVersion = "4.19.6"
88
const val identifier = "com.unciv.app"
99
}

changelog.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 4.19.6
2+
3+
fix detekt
4+
5+
Resolved - Fixed crash on unit wander
6+
7+
When loading a game, auto-download
8+
9+
By SomeTroglodyte:
10+
- Redo Notification log page in empire overview
11+
- Fix links to Translation wiki
12+
- Options reworked - faster opening
13+
14+
By RobLoach:
15+
- Add Remaining Civilopedia Sub-Categories
16+
- Fix notification of perpetrual stat conversion
17+
- Fix Resource Production Modifier Calculations
18+
19+
Carrying conditional and countable - By PhiRite
20+
121
## 4.19.5
222

323
Add `[resource] of [civ] Civilizations` Countable - By RobLoach

core/src/com/unciv/UncivGame.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ open class UncivGame(val isConsoleMode: Boolean = false) : Game(), PlatformSpeci
470470

471471
companion object {
472472
//region AUTOMATICALLY GENERATED VERSION DATA - DO NOT CHANGE THIS REGION, INCLUDING THIS COMMENT
473-
val VERSION = Version("4.19.5", 1192)
473+
val VERSION = Version("4.19.6", 1193)
474474
//endregion
475475

476476
/** Global reference to the one Gdx.Game instance created by the platform launchers - do not use without checking [isCurrentInitialized] first. */
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
3+
fix detekt
4+
5+
Resolved - Fixed crash on unit wander
6+
7+
When loading a game, auto-download
8+
9+
By SomeTroglodyte:
10+
- Redo Notification log page in empire overview
11+
- Fix links to Translation wiki
12+
- Options reworked - faster opening
13+
14+
By RobLoach:
15+
- Add Remaining Civilopedia Sub-Categories
16+
- Fix notification of perpetrual stat conversion
17+
- Fix Resource Production Modifier Calculations
18+
19+
Carrying conditional and countable - By PhiRite

0 commit comments

Comments
 (0)