This commit is contained in:
Yair Morgenstern 2023-05-23 20:37:51 +03:00
parent 5857301732
commit b94321f535
7 changed files with 37 additions and 501 deletions

View File

@ -574,11 +574,8 @@ You have to write an ID for your friend! = Vous devez renseigner un ID pour votr
You cannot add your own player ID in your friend list! = Vous ne pouvez pas ajouter votre propre ID de joueur à votre liste d'amis !
To add a friend, ask him to send you his player ID.\nClick the 'Add friend' button.\nInsert his player ID and a name for him.\nThen click the 'Add friend' button again.\n\nAfter that you will see him in your friends list.\n\nA new button will appear when creating a new\nmultiplayer game, which allows you to select your friend. = Pour ajouter un ami, obtenez son ID de joueur.\nCliquez sur le bouton 'Ajouter un ami'.\nEntrez l'ID de joueur et le nom de votre ami.\nPuis cliquez à nouveau sur le bouton 'Ajouter un ami'.\n\nVotre ami apparaîtra alors dans votre liste d'amis.\n\nUn nouveau bouton sera disponible lors de la création d'une nouvelle partie multijoueur, permettant de sélectionner directement votre ami pour l'ajouter à la partie.
Please input Player ID! = ID de joueur requis !
# Requires translation!
The number of players will be adjusted = Le nombre de joueurs sera ajusté
# Requires translation!
These [numberOfPlayers] players will be adjusted = Ces [numberOfPlayers] joueurs seront ajustés
# Requires translation!
[numberOfExplicitPlayersText] to [playerRange] actual players by adding random AI's or by randomly omitting AI's. = [numberOfExplicitPlayersText] à [playerRange] joueurs effectifs en ajoutant des IA aléatoires ou en retirant au hasard des IA.
Set current user = Définir l'utilisateur actuel
Player ID from clipboard = ID de joueur depuis le presse-papier

File diff suppressed because it is too large Load Diff

View File

@ -574,11 +574,8 @@ You have to write an ID for your friend! = ¡Tienes que escribir un ID para tu a
You cannot add your own player ID in your friend list! = ¡No puedes añadir tu propio ID de jugador a tu lista de amigos!
To add a friend, ask him to send you his player ID.\nClick the 'Add friend' button.\nInsert his player ID and a name for him.\nThen click the 'Add friend' button again.\n\nAfter that you will see him in your friends list.\n\nA new button will appear when creating a new\nmultiplayer game, which allows you to select your friend. = Para añadir a un amigo, pídale que le envíe su ID de jugador.\nHaga clic en en el botón 'Añadir amigo'.\nInserta su ID de jugador y un nombre para él.\nEntonces haga clic en el botón 'Añadir amigo' otra vez.\n\nDespués de eso lo verás en su lista de amigos.\n\nUn nuevo botón aparecerá cuando cree un nuevo\njuego multijugador, que le permitirá seleccionar a su amigo.
Please input Player ID! = ¡Por favor, inserte ID de jugador!
# Requires translation!
The number of players will be adjusted = El número de jugadores será ajustado
# Requires translation!
These [numberOfPlayers] players will be adjusted = Estos [numberOfPlayers] jugadores serán ajustados
# Requires translation!
[numberOfExplicitPlayersText] to [playerRange] actual players by adding random AI's or by randomly omitting AI's. = De [numberOfExplicitPlayersText] a [playerRange] jugadores actuales al sumar u omitir IAs aleatorias.
Set current user = Asignar usuario actual
Player ID from clipboard = ID de jugador desde el portapapeles

View File

@ -3,19 +3,19 @@ Italian = 99
Russian = 99
Belarusian = 2
Afrikaans = 7
German = 99
German = 100
Swedish = 87
Turkish = 70
Ukrainian = 99
Filipino = 96
French = 99
French = 100
Portuguese = 64
Indonesian = 99
Catalan = 99
Finnish = 37
Spanish = 99
Spanish = 100
Malay = 23
Brazilian_Portuguese = 99
Brazilian_Portuguese = 100
Traditional_Chinese = 97
Polish = 99
Lithuanian = 95
@ -24,7 +24,7 @@ Simplified_Chinese = 99
Bulgarian = 43
Korean = 97
Persian_(Pinglish-DIN) = 13
Japanese = 71
Japanese = 80
English = 0
Vietnamese = 95
Czech = 84

View File

@ -1,21 +1,20 @@
## 4.6.14
Resolve - city-state-owned great merchants can no longer 'conduct trade mission' on their own tiles
Resolve - don't crash for ByteBuffer byte errors
Game saves are regular json, not minimalized json
AI civilian improvement: Don't freeze when enemy is near, keep working in tiles where he can't reach
Units that can enter foreign lands without open borders are not expelled on open borders end
Population icon gets locked with doubleclick, clicks cycle between assigned and unassigned
By SomeTroglodyte:
- Fix ConcurrentModificationException when puppeting a city
- Next-Turn Progressbar
- Resolve To-do in Unit upgrade resource requirements
- Next-Turn Progressbar
- Fixed crash when puppeting city
Population icon gets locked with doubleclick, clicks cycle assigned-unassigned
Resolved crashes when clicking mod in mod management
AI civilian improvement: keep working in tiles where enemy units can't reach
Prophets are not expelled on open borders end
City-state-owned great merchants can no longer 'conduct trade mission' on their own tiles
Game saves are regular json, not libgdx-specific format
## 4.6.13

View File

@ -55,11 +55,9 @@ open class Tile : IsPartOfGameInfoSerialization {
getRoadOwner()!!.neutralRoads.remove(this.position)
}
roadOwner = city.civ.civName // only when taking control, otherwise last owner
} else {
if (roadStatus != RoadStatus.None && owningCity != null) {
// previous tile owner still owns road, add to tracker
owningCity!!.civ.neutralRoads.add(this.position)
}
} else if (roadStatus != RoadStatus.None && owningCity != null) {
// previous tile owner still owns road, add to tracker
owningCity!!.civ.neutralRoads.add(this.position)
}
owningCity = city
isCityCenterInternal = getCity()?.location == position

View File

@ -1,18 +1,15 @@
Resolve - city-state-owned great merchants can no longer 'conduct trade mission' on their own tiles
Resolve - don't crash for ByteBuffer byte errors
Game saves are regular json, not minimalized json
AI civilian improvement: Don't freeze when enemy is near, keep working in tiles where he can't reach
Units that can enter foreign lands without open borders are not expelled on open borders end
Population icon gets locked with doubleclick, clicks cycle between assigned and unassigned
By SomeTroglodyte:
- Fix ConcurrentModificationException when puppeting a city
- Next-Turn Progressbar
- Resolve To-do in Unit upgrade resource requirements
- Next-Turn Progressbar
- Fixed crash when puppeting city
Population icon gets locked with doubleclick, clicks cycle assigned-unassigned
Resolved crashes when clicking mod in mod management
AI civilian improvement: keep working in tiles where enemy units can't reach
Prophets are not expelled on open borders end
City-state-owned great merchants can no longer 'conduct trade mission' on their own tiles
Game saves are regular json, not libgdx-specific format