mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-19 07:20:57 +00:00
12 lines
308 B
TypeScript
12 lines
308 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const pokemonInfoContainer: SimpleTranslationEntries = {
|
|
"moveset": "Movimientos",
|
|
"gender": "Género:",
|
|
"ability": "Habilid:",
|
|
"nature": "Natur:",
|
|
"epic": "Épico",
|
|
"rare": "Raro",
|
|
"common": "Común"
|
|
} as const;
|