mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-30 12:47:12 +00:00
c7de17a46e
* organizing, translations and achv localization * localized for all languages * minor fix * minor fix 2 * minor fix 3 * Fixed Achivment Localization, Added german localization and fixes some issues with german localization at other parts * fix pickup description * Update French achv.ts * French typo correction achv.ts * eslint fixes * added zhTW * minor fix * Achivment Bar is localized and gets bigger when using german * Changed some things to make it not as Big * The Achivment Bar now grows with the context * Updated Achivment Names in german * Update French achv.ts * Vouchers now will show the correct descrption again * minor fix * minor fixes * "sub" to "semi" * minor fix * fixes warning and organizes some files * forgot about english * korean translations * test fix --------- Co-authored-by: Jannik Tappert <tappertjannik@googlemail.com> Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Co-authored-by: Lugiad <adrien.grivel@hotmail.fr>
42 lines
944 B
TypeScript
42 lines
944 B
TypeScript
import { PokemonInfoTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const pokemonInfo: PokemonInfoTranslationEntries = {
|
|
Stat: {
|
|
"HP": "KP",
|
|
"HPshortened": "KP",
|
|
"ATK": "Angriff",
|
|
"ATKshortened": "Ang",
|
|
"DEF": "Verteidigung",
|
|
"DEFshortened": "Vert",
|
|
"SPATK": "Sp. Ang",
|
|
"SPATKshortened": "SpAng",
|
|
"SPDEF": "Sp. Vert",
|
|
"SPDEFshortened": "SpVert",
|
|
"SPD": "Initiative",
|
|
"SPDshortened": "Init",
|
|
},
|
|
|
|
Type: {
|
|
"UNKNOWN": "Unbekannt",
|
|
"NORMAL": "Normal",
|
|
"FIGHTING": "Kampf",
|
|
"FLYING": "Flug",
|
|
"POISON": "Gift",
|
|
"GROUND": "Boden",
|
|
"ROCK": "Gestein",
|
|
"BUG": "Käfer",
|
|
"GHOST": "Geist",
|
|
"STEEL": "Stahl",
|
|
"FIRE": "Feuer",
|
|
"WATER": "Wasser",
|
|
"GRASS": "Pflanze",
|
|
"ELECTRIC": "Elektro",
|
|
"PSYCHIC": "Psycho",
|
|
"ICE": "Eis",
|
|
"DRAGON": "Drache",
|
|
"DARK": "Unlicht",
|
|
"FAIRY": "Fee",
|
|
"STELLAR": "Stellar",
|
|
},
|
|
} as const;
|