mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-13 09:06:07 +00:00
10 lines
298 B
TypeScript
10 lines
298 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const growth: SimpleTranslationEntries = {
|
||
|
"Erratic": "Errático",
|
||
|
"Fast": "Rápido",
|
||
|
"Medium_Fast": "Medio Rápido",
|
||
|
"Medium_Slow": "Medio Lento",
|
||
|
"Slow": "Lento",
|
||
|
"Fluctuating": "Fluctuante"
|
||
|
} as const;
|