mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-10 19:07:47 +00:00
c7bd99b345
* Added missing menu translations * Added missing translations to other languages --------- Co-authored-by: Raphael van der Woude <raphael.van.der.woude@dias.nl>
15 lines
511 B
TypeScript
15 lines
511 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const menu: SimpleTranslationEntries = {
|
|
"cancel": "Annulla",
|
|
"continue": "Continua",
|
|
"newGame": "Nuova Partita",
|
|
"loadGame": "Carica Partita",
|
|
"dailyRun": "Corsa Giornaliera (Beta)",
|
|
"selectGameMode": "Seleziona una modalità di gioco.",
|
|
"rankings": "Rankings",
|
|
"dailyRankings": "Daily Rankings",
|
|
"noRankings": "No Rankings",
|
|
"loading": "Loading…",
|
|
"playersOnline": "Players Online"
|
|
} as const; |