mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-12 16:46:19 +00:00
7cee16cee2
* localized game-mode and save-slot-select-ui-handler * Update src/locales/de/game-mode.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> * Update src/locales/de/save-slot-select-ui-handler.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> * Update French save-slot-select-ui-handler.ts * Update French game-mode.ts * Update French game-mode.ts * Update Spanish game-mode.ts and save-slot-select-ui-handler.ts * fixes * fix 2 * Update src/locales/ko/game-mode.ts Co-authored-by: returntoice <dieandbecome@gmail.com> * Update src/locales/ko/save-slot-select-ui-handler.ts Co-authored-by: returntoice <dieandbecome@gmail.com> * fix 3 --------- Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Co-authored-by: Lugiad <adrien.grivel@hotmail.fr> Co-authored-by: GoldTra <ericpazos02@gmail.com> Co-authored-by: returntoice <dieandbecome@gmail.com>
11 lines
299 B
TypeScript
11 lines
299 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const gameMode: SimpleTranslationEntries = {
|
|
"classic": "Classique",
|
|
"endless": "Infini",
|
|
"endlessSpliced": "Infini (Fusions)",
|
|
"dailyRun": "Défi du jour",
|
|
"unknown": "Inconnu",
|
|
"challenge": "Challenge",
|
|
} as const;
|