mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-06 18:09:10 +00:00
11 lines
297 B
TypeScript
11 lines
297 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const growth: SimpleTranslationEntries = {
|
|
"Erratic": "Muito Rápido",
|
|
"Fast": "Rápido",
|
|
"Medium_Fast": "Meio Rápido",
|
|
"Medium_Slow": "Meio Lento",
|
|
"Slow": "Lento",
|
|
"Fluctuating": "Muito Lento",
|
|
} as const;
|