mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-29 04:59:16 +01:00
11 lines
295 B
TypeScript
11 lines
295 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const growth: SimpleTranslationEntries = {
|
|
"Erratic": "Erratique",
|
|
"Fast": "Rapide",
|
|
"Medium_Fast": "Moyenne-Rapide",
|
|
"Medium_Slow": "Moyenne-Lente",
|
|
"Slow": "Lente",
|
|
"Fluctuating": "Fluctuante"
|
|
} as const;
|