2024-04-22 01:53:24 +02:00
|
|
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
|
|
|
|
export const menu: SimpleTranslationEntries = {
|
2024-04-11 20:47:03 -07:00
|
|
|
"cancel": "Annulla",
|
|
|
|
"continue": "Continua",
|
|
|
|
"newGame": "Nuova Partita",
|
|
|
|
"loadGame": "Carica Partita",
|
|
|
|
"dailyRun": "Corsa Giornaliera (Beta)",
|
2024-04-30 16:53:00 +02:00
|
|
|
"selectGameMode": "Seleziona una modalità di gioco.",
|
|
|
|
"dailyRankings": "Daily Rankings",
|
2024-05-01 00:11:05 +02:00
|
|
|
"weeklyRankings": "Weekly Rankings",
|
2024-04-30 16:53:00 +02:00
|
|
|
"noRankings": "No Rankings",
|
|
|
|
"loading": "Loading…",
|
2024-05-01 22:48:58 +02:00
|
|
|
"playersOnline": "Players Online",
|
|
|
|
"hitResultCriticalHit": "A critical hit!",
|
|
|
|
"hitResultSuperEffective": "It's super effective!",
|
|
|
|
"hitResultNotVeryEffective": "It's not very effective…",
|
|
|
|
"hitResultNoEffect": "It doesn't affect {{pokemonName}}!",
|
|
|
|
"hitResultOneHitKO": "It's a one-hit KO!"
|
2024-04-11 20:47:03 -07:00
|
|
|
} as const;
|