2024-04-22 01:53:24 +02:00
|
|
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
|
2024-05-01 18:53:48 -04:00
|
|
|
/**
|
|
|
|
* The menu namespace holds most miscellaneous text that isn't directly part of the game's
|
|
|
|
* contents or directly related to Pokemon data. This includes menu navigation, settings,
|
|
|
|
* account interactions, descriptive text, etc.
|
|
|
|
*/
|
2024-04-22 01:53:24 +02:00
|
|
|
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.",
|
2024-05-01 18:53:48 -04:00
|
|
|
"logInOrCreateAccount": "Log in or create an account to start. No email required!",
|
|
|
|
"username": "Username",
|
|
|
|
"password": "Password",
|
|
|
|
"login": "Login",
|
|
|
|
"register": "Register",
|
|
|
|
"emptyUsername": "Username must not be empty",
|
|
|
|
"invalidLoginUsername": "The provided username is invalid",
|
|
|
|
"invalidRegisterUsername": "Username must only contain letters, numbers, or underscores",
|
|
|
|
"invalidLoginPassword": "The provided password is invalid",
|
|
|
|
"invalidRegisterPassword": "Password must be 6 characters or longer",
|
|
|
|
"usernameAlreadyUsed": "The provided username is already in use",
|
|
|
|
"accountNonExistent": "The provided user does not exist",
|
|
|
|
"unmatchingPassword": "The provided password does not match",
|
|
|
|
"passwordNotMatchingConfirmPassword": "Password must match confirm password",
|
|
|
|
"confirmPassword": "Confirm Password",
|
|
|
|
"registrationAgeWarning": "By registering, you confirm you are of 13 years of age or older.",
|
|
|
|
"backToLogin": "Back to Login",
|
|
|
|
"failedToLoadSaveData": "Failed to load save data. Please reload the page.\nIf this continues, please contact the administrator.",
|
|
|
|
"sessionSuccess": "Session loaded successfully.",
|
|
|
|
"failedToLoadSession": "Your session data could not be loaded.\nIt may be corrupted.",
|
|
|
|
"boyOrGirl": "Are you a boy or a girl?",
|
|
|
|
"boy": "Boy",
|
|
|
|
"girl": "Girl",
|
2024-04-30 16:53:00 +02:00
|
|
|
"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-03 23:52:09 +02:00
|
|
|
"playersOnline": "Players Online",
|
|
|
|
"empty":"Empty",
|
|
|
|
"yes":"Yes",
|
|
|
|
"no":"No",
|
|
|
|
"confirmStartTeam":'Begin with these Pokémon?',
|
2024-04-11 20:47:03 -07:00
|
|
|
} as const;
|