mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-24 18:01:05 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
11 lines
293 B
TypeScript
11 lines
293 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
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;
|