mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-27 03:07:28 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
12 lines
324 B
TypeScript
12 lines
324 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const pokemonInfoContainer: SimpleTranslationEntries = {
|
|
"moveset": "Attacken",
|
|
"gender": "Geschlecht:",
|
|
"ability": "Fähigkeit:",
|
|
"nature": "Wesen:",
|
|
"epic": "Episch",
|
|
"rare": "Selten",
|
|
"common": "Gewöhnlich"
|
|
} as const;
|