96 lines
4.0 KiB
TypeScript
96 lines
4.0 KiB
TypeScript
export const messages = {
|
|
ja: {
|
|
PeasAboutTitle: "Peasについて",
|
|
PeasAboutText: `
|
|
Peasはプロフィール共有を目的としたSNSです。<br />
|
|
ユーザーのプロフィールを登録し、共有することが出来ます。<br />
|
|
学校や職場で使用できるようなプロフィール欄も自由に作成でき、公開設定も変更できます。<br />
|
|
QRコードの印刷にも対応していて共有にも最適です。
|
|
`,
|
|
ServerAboutTitle: "このサーバーについて",
|
|
or: "または",
|
|
and: "と",
|
|
agree: "同意",
|
|
Start: "今すぐ始める",
|
|
Signin: "サインイン",
|
|
Signup: "サインアップ",
|
|
email: "メールアドレス",
|
|
password: "パスワード",
|
|
username: "ユーザー名",
|
|
idHelp: "@から始まる英数字のID(3文字以上)",
|
|
mailHelp: "メールアドレスは受信できるものを使用してください",
|
|
passwordHelp: "8文字以上のパスワードを使用してください",
|
|
signinError: "サインインに失敗しました",
|
|
mailVerify: "メール認証",
|
|
code: "コード",
|
|
submit: "送信",
|
|
codeCharacterCount: "コードは6桁で入力してください",
|
|
emailVerificationSuccess: `
|
|
メール認証に成功しました。
|
|
ログインしてください。
|
|
`,
|
|
connectionError: "通信エラー",
|
|
accountCreateSuccess: `
|
|
アカウントの作成に成功しました。
|
|
ご登録いただいたメールアドレスに確認用メールを送信しました。
|
|
確認メールをクリックしてアカウントを有効化してください。
|
|
`,
|
|
sameUsername: "同じユーザー名が既に使用されています",
|
|
termsAgreement: "利用規約とプライバシーポリシーに同意してください",
|
|
bodyRequired: "フォーム内容が送信されていません",
|
|
passwordCharacterLimit: "パスワードは8文字以上にしてください",
|
|
usernameRestriction: "ユーザー名は3文字以上の英数字のIDにしてください",
|
|
userCreationFailed: "ユーザーの作成に失敗しました",
|
|
terms: "利用規約",
|
|
privacypolicy: "プライバシーポリシー",
|
|
},
|
|
en: {
|
|
PeasAboutTitle: "About Peas",
|
|
PeasAboutText: `
|
|
Peas is a SNS designed for sharing profiles.<br />
|
|
You can register and share your user profile.<br />
|
|
You can freely create profile sections suitable for use at school or work, and also change the privacy settings.<br />
|
|
It also supports printing QR codes, making sharing easy.
|
|
`,
|
|
ServerAboutTitle: "About this server",
|
|
or: "or",
|
|
and: "and",
|
|
agree: "Agree",
|
|
Start: "Get started now",
|
|
Signin: "Sign In",
|
|
Signup: "Sign Up",
|
|
email: "Email",
|
|
password: "Password",
|
|
username: "Username",
|
|
idHelp:
|
|
"ID starting with @ and consisting of English numbers (at least 3 characters)",
|
|
mailHelp: "Use an email address that can be received",
|
|
passwordHelp: "Use a password of at least 8 characters",
|
|
signinError: "Sign in failed",
|
|
mailVerify: "Mail Verify",
|
|
code: "Code",
|
|
submit: "Submit",
|
|
codeCharacterCount: "Please enter a 6-digit code",
|
|
emailVerificationSuccess: `
|
|
Email verification successful.
|
|
Please log in.
|
|
`,
|
|
connectionError: "Connection Error",
|
|
accountCreateSuccess: `
|
|
Your account has been successfully created.
|
|
We have sent a confirmation email to the email address you registered.
|
|
Please click the confirmation email to activate your account.
|
|
`,
|
|
sameUsername: "That username is already taken",
|
|
termsAgreement: "Please agree to the Terms of Service and Privacy Policy",
|
|
bodyRequired: "Form contents have not been submitted",
|
|
passwordCharacterLimit:
|
|
"Please make your password at least 8 characters long.",
|
|
usernameRestriction:
|
|
"Please make your username an alphanumeric ID with at least 3 characters.",
|
|
userCreationFailed: "Failed to create the user.",
|
|
terms: "Terms of Service",
|
|
privacypolicy: "Privacy Policy",
|
|
},
|
|
};
|