mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-06 00:09:23 +07:00
Fixed Polish translations
Removed unnecessary (and breaking) unit unique translation tests
This commit is contained in:
@ -371,7 +371,7 @@ It looks like your saved game can't be loaded! = Wygląda na to, że zapis gry n
|
|||||||
If you could copy your game data ("Copy saved game to clipboard" - = Jeśli możesz skopiować dane gry ("Skopiuj zapisaną grę do schowka"),
|
If you could copy your game data ("Copy saved game to clipboard" - = Jeśli możesz skopiować dane gry ("Skopiuj zapisaną grę do schowka"),
|
||||||
paste into an email to yairm210@hotmail.com) = wyślij je na email yairm210@hotmail.com
|
paste into an email to yairm210@hotmail.com) = wyślij je na email yairm210@hotmail.com
|
||||||
I could maybe help you figure out what went wrong, since this isn't supposed to happen! = Może mógłbym pomóc ci dowiedzieć się, co poszło nie tak, ponieważ tak się nie powinno stać!
|
I could maybe help you figure out what went wrong, since this isn't supposed to happen! = Może mógłbym pomóc ci dowiedzieć się, co poszło nie tak, ponieważ tak się nie powinno stać!
|
||||||
Missing mods: [mods] = Brakujące mody:
|
Missing mods: [mods] = Brakujące mody: [mods]
|
||||||
|
|
||||||
# Options
|
# Options
|
||||||
|
|
||||||
@ -715,7 +715,7 @@ Resources = Zasoby
|
|||||||
Terrains = Tereny
|
Terrains = Tereny
|
||||||
Tile Improvements = Ulepszenia Pól
|
Tile Improvements = Ulepszenia Pól
|
||||||
Unique to [civName], replaces [unitName] = Unikatowa jednostka dla [civName], zastępuje [unitName]
|
Unique to [civName], replaces [unitName] = Unikatowa jednostka dla [civName], zastępuje [unitName]
|
||||||
Unique to [civName] = Unikalne dla:
|
Unique to [civName] = Unikalne dla: [civName]
|
||||||
Tutorials = Samouczki
|
Tutorials = Samouczki
|
||||||
Cost = Koszt
|
Cost = Koszt
|
||||||
May contain [listOfResources] = Może zawierać [listOfResources]
|
May contain [listOfResources] = Może zawierać [listOfResources]
|
||||||
|
@ -38,17 +38,6 @@ class TranslationTests {
|
|||||||
allUnitsHaveTranslation)
|
allUnitsHaveTranslation)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
fun allUnitUniquesHaveTranslation() {
|
|
||||||
val strings: MutableSet<String> = HashSet()
|
|
||||||
for (unit in ruleset.units.values) for (unique in unit.uniques) if (!unique.startsWith("Bonus")
|
|
||||||
&& !unique.startsWith("Penalty")
|
|
||||||
&& !unique.contains("[")) // templates
|
|
||||||
strings.add(unique)
|
|
||||||
val allStringsHaveTranslation = allStringAreTranslated(strings)
|
|
||||||
Assert.assertTrue("This test will only pass when there is a translation for all units uniques",
|
|
||||||
allStringsHaveTranslation)
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
fun allUnitActionsHaveTranslation() {
|
fun allUnitActionsHaveTranslation() {
|
||||||
|
Reference in New Issue
Block a user