mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-03 15:02:16 +02:00
11 lines
288 B
TypeScript
11 lines
288 B
TypeScript
import { SimpleTranslationEntries } from '#app/plugins/i18n';
|
|
|
|
export const growth: SimpleTranslationEntries = {
|
|
'Erratic': 'Unregelmäßig',
|
|
'Fast': 'Schnell',
|
|
'Medium_Fast': 'Schneller',
|
|
'Medium_Slow': 'Langsamer',
|
|
'Slow': 'Langsam',
|
|
'Fluctuating': 'Schwankend'
|
|
} as const;
|