47 lines
2.3 KiB
TypeScript
47 lines
2.3 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
export const menu: SimpleTranslationEntries = {
|
|
"cancel": "キャンセル",
|
|
"continue": "つづきから",
|
|
"dailyRun": "Daily Run (Beta)",
|
|
"loadGame": "ロードセーブ",
|
|
"newGame": "はじめから",
|
|
"selectGameMode": "Select a game mode.",
|
|
"logInOrCreateAccount": "Log in or create an account to start. No email required!",
|
|
"username": "ユーザーめい",
|
|
"password": "パスワード",
|
|
"login": "ログイン",
|
|
"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": "ログインへ もどる",
|
|
"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": "おとこのこ?\nそれとも おんなのこ?",
|
|
"boy": "おとこ",
|
|
"girl": "おんな",
|
|
"dailyRankings": "ほんじつのランキング",
|
|
"weeklyRankings": "しゅうのランキング",
|
|
"noRankings": "ランキングなし",
|
|
"loading": "よみこみ ちゅう…",
|
|
"playersOnline": "オンラインのプレイヤー",
|
|
"empty":"なし",
|
|
"yes":"はい",
|
|
"no":"いいえ",
|
|
} as const;
|