mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-29 04:07:09 +00:00
12 lines
318 B
TypeScript
12 lines
318 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const pokemonInfoContainer: SimpleTranslationEntries = {
|
||
|
"moveset": "Attacken",
|
||
|
"gender": "Geschlecht:",
|
||
|
"ability": "Fähigkeit:",
|
||
|
"nature": "Wesen:",
|
||
|
"epic": "Episch",
|
||
|
"rare": "Selten",
|
||
|
"common": "Gewöhnlich"
|
||
|
} as const;
|