mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
Merge pull request #3630 from logto-io/gao-add-ja-language
feat(phrases): add ja language
This commit is contained in:
commit
541a5a249d
113 changed files with 2270 additions and 549 deletions
6
.changeset/few-maps-knock.md
Normal file
6
.changeset/few-maps-knock.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
"@logto/phrases": minor
|
||||
"@logto/phrases-ui": minor
|
||||
---
|
||||
|
||||
add ja language
|
|
@ -16,8 +16,8 @@ export const createOpenaiApi = () => {
|
|||
headers: {
|
||||
Authorization: `Bearer ${process.env.OPENAI_API_KEY ?? ''}`,
|
||||
},
|
||||
timeout: { request: 120_000 },
|
||||
...(proxy && { agent: { https: new HttpsProxyAgent({ proxy, timeout: 120_000 }) } }),
|
||||
timeout: { request: 300_000 },
|
||||
...(proxy && { agent: { https: new HttpsProxyAgent({ proxy, timeout: 300_000 }) } }),
|
||||
});
|
||||
};
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
// https://react.i18next.com/latest/typescript#create-a-declaration-file
|
||||
|
||||
import type { LocalPhrase } from '@logto/phrases';
|
||||
import type { LocalePhrase } from '@logto/phrases';
|
||||
|
||||
declare module 'react-i18next' {
|
||||
interface CustomTypeOptions {
|
||||
allowObjectInHTMLChildren: true;
|
||||
resources: LocalPhrase;
|
||||
resources: LocalePhrase;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import en from '@logto/phrases-ui/lib/locales/en.js';
|
||||
import en from '@logto/phrases-ui/lib/locales/en/index.js';
|
||||
import { type CustomPhrase } from '@logto/schemas';
|
||||
|
||||
import { mockId } from '#src/test-utils/nanoid.js';
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import en from '@logto/phrases-ui/lib/locales/en.js';
|
||||
import en from '@logto/phrases-ui/lib/locales/en/index.js';
|
||||
import { type CustomPhrase, type SignInExperience } from '@logto/schemas';
|
||||
import { pickDefault, createMockUtils } from '@logto/shared/esm';
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import en from '@logto/phrases-ui/lib/locales/en.js';
|
||||
import en from '@logto/phrases-ui/lib/locales/en/index.js';
|
||||
import type { SignInExperience } from '@logto/schemas';
|
||||
import { pickDefault } from '@logto/shared/esm';
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import en from '@logto/phrases-ui/lib/locales/en.js';
|
||||
import en from '@logto/phrases-ui/lib/locales/en/index.js';
|
||||
import fr from '@logto/phrases-ui/lib/locales/fr.js';
|
||||
|
||||
import { isStrictlyPartial } from '#src/utils/translation.js';
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
// https://react.i18next.com/latest/typescript#create-a-declaration-file
|
||||
|
||||
import type { LocalPhrase } from '@logto/phrases';
|
||||
import type { LocalePhrase } from '@logto/phrases';
|
||||
// eslint-disable-next-line unused-imports/no-unused-imports
|
||||
import { CustomTypeOptions } from 'react-i18next';
|
||||
|
||||
declare module 'react-i18next' {
|
||||
interface CustomTypeOptions {
|
||||
allowObjectInHTMLChildren: true;
|
||||
resources: LocalPhrase;
|
||||
resources: LocalePhrase;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,8 +4,9 @@ import type { NormalizeKeyPaths } from '@silverhand/essentials';
|
|||
import { z } from 'zod';
|
||||
|
||||
import de from './locales/de.js';
|
||||
import en from './locales/en.js';
|
||||
import en from './locales/en/index.js';
|
||||
import fr from './locales/fr.js';
|
||||
import ja from './locales/ja/index.js';
|
||||
import ko from './locales/ko.js';
|
||||
import ptBR from './locales/pt-br.js';
|
||||
import ptPT from './locales/pt-pt.js';
|
||||
|
@ -28,6 +29,7 @@ export const builtInLanguages = [
|
|||
'ru',
|
||||
'tr-TR',
|
||||
'zh-CN',
|
||||
'ja',
|
||||
] as const;
|
||||
|
||||
export const builtInLanguageOptions = builtInLanguages.map((languageTag) => ({
|
||||
|
@ -51,6 +53,7 @@ const resource: Resource = {
|
|||
ru,
|
||||
'tr-TR': trTR,
|
||||
'zh-CN': zhCN,
|
||||
ja,
|
||||
};
|
||||
|
||||
export const getDefaultLanguageTag = (language: string): LanguageTag =>
|
||||
|
|
|
@ -1,131 +0,0 @@
|
|||
const translation = {
|
||||
input: {
|
||||
username: 'Username',
|
||||
password: 'Password',
|
||||
email: 'Email',
|
||||
phone_number: 'Phone number',
|
||||
confirm_password: 'Confirm password',
|
||||
search_region_code: 'Search region code',
|
||||
},
|
||||
secondary: {
|
||||
social_bind_with:
|
||||
'Already had an account? Sign in to link {{methods, list(type: disjunction;)}} with your social identity.',
|
||||
},
|
||||
action: {
|
||||
sign_in: 'Sign in',
|
||||
continue: 'Continue',
|
||||
create_account: 'Create account',
|
||||
create_account_without_linking: 'Create account without linking',
|
||||
create: 'Create',
|
||||
enter_passcode: 'Enter verification code',
|
||||
confirm: 'Confirm',
|
||||
cancel: 'Cancel',
|
||||
save_password: 'Save password',
|
||||
bind: 'Link with {{address}}',
|
||||
bind_and_continue: 'Link and continue',
|
||||
back: 'Go back',
|
||||
nav_back: 'Back',
|
||||
agree: 'Agree',
|
||||
got_it: 'Got it',
|
||||
sign_in_with: 'Continue with {{name}}',
|
||||
forgot_password: 'Forgot your password?',
|
||||
switch_to: 'Switch to {{method}}',
|
||||
sign_in_via_passcode: 'Sign in with verification code',
|
||||
sign_in_via_password: 'Sign in with password',
|
||||
change: 'Change {{method}}',
|
||||
link_another_email: 'Link another email',
|
||||
link_another_phone: 'Link another phone',
|
||||
link_another_email_or_phone: 'Link another email or phone',
|
||||
show_password: 'Show password',
|
||||
},
|
||||
description: {
|
||||
email: 'email',
|
||||
phone_number: 'phone number',
|
||||
username: 'username',
|
||||
reminder: 'Reminder',
|
||||
not_found: '404 Not Found',
|
||||
agree_with_terms: 'I have read and agree to the ',
|
||||
agree_with_terms_modal: 'To proceed, please agree to the <link></link>.',
|
||||
terms_of_use: 'Terms of Use',
|
||||
sign_in: 'Sign in',
|
||||
privacy_policy: 'Privacy Policy',
|
||||
create_account: 'Create account',
|
||||
or: 'or',
|
||||
and: 'and',
|
||||
enter_passcode: 'The verification code has been sent to your {{address}} {{target}}',
|
||||
passcode_sent: 'The verification code has been resent',
|
||||
resend_after_seconds: 'Resend after <span>{{seconds}}</span> seconds',
|
||||
resend_passcode: 'Resend verification code',
|
||||
create_account_id_exists:
|
||||
'The account with {{type}} {{value}} already exists, would you like to sign in?',
|
||||
link_account_id_exists:
|
||||
'The account with {{type}} {{value}} already exists. Would you like to link?',
|
||||
sign_in_id_does_not_exist:
|
||||
'The account with {{type}} {{value}} does not exist, would you like to create a new account?',
|
||||
sign_in_id_does_not_exist_alert: 'The account with {{type}} {{value}} does not exist.',
|
||||
create_account_id_exists_alert:
|
||||
'The account with {{type}} {{value}} is linked to another account. Please try another {{type}}.',
|
||||
social_identity_exist:
|
||||
'The {{type}} {{value}} is linked to another account. Please try another {{type}}.',
|
||||
bind_account_title: 'Link or create account',
|
||||
social_create_account: 'You can create a new account.',
|
||||
social_link_email: 'You can link another email',
|
||||
social_link_phone: 'You can link another phone',
|
||||
social_link_email_or_phone: 'You can link another email or phone',
|
||||
social_bind_with_existing: 'We find a related account, you can link it directly.',
|
||||
reset_password: 'Reset password',
|
||||
reset_password_description:
|
||||
'Enter the {{types, list(type: disjunction;)}} associated with your account, and we’ll send you the verification code to reset your password.',
|
||||
new_password: 'New password',
|
||||
set_password: 'Set password',
|
||||
password_changed: 'Password changed',
|
||||
no_account: 'No account yet? ',
|
||||
have_account: 'Already had an account?',
|
||||
enter_password: 'Enter password',
|
||||
enter_password_for: 'Sign in with the password to {{method}} {{value}}',
|
||||
enter_username: 'Set username',
|
||||
enter_username_description:
|
||||
'Username is an alternative for sign-in. Username should contain only letters, numbers, and underscores.',
|
||||
link_email: 'Link email',
|
||||
link_phone: 'Link phone',
|
||||
link_email_or_phone: 'Link email or phone',
|
||||
link_email_description: 'For added security, please link your email with the account.',
|
||||
link_phone_description: 'For added security, please link your phone with the account.',
|
||||
link_email_or_phone_description:
|
||||
'For added security, please link your email or phone with the account.',
|
||||
continue_with_more_information: 'For added security, please complete below account details.',
|
||||
create_your_account: 'Create your account',
|
||||
sign_in_to_your_account: 'Sign in to your account',
|
||||
no_region_code_found: 'No region code found',
|
||||
},
|
||||
error: {
|
||||
general_required: `{{types, list(type: disjunction;)}} is required`,
|
||||
general_invalid: `The {{types, list(type: disjunction;)}} is invalid`,
|
||||
username_required: 'Username is required',
|
||||
password_required: 'Password is required',
|
||||
username_exists: 'Username already exists',
|
||||
username_should_not_start_with_number: 'Username should not start with a number',
|
||||
username_invalid_charset: 'Username should only contain letters, numbers, or underscores.',
|
||||
invalid_email: 'The email is invalid',
|
||||
invalid_phone: 'The phone number is invalid',
|
||||
password_min_length: 'Password requires a minimum of {{min}} characters',
|
||||
invalid_password:
|
||||
'Password requires a minimum of {{min}} characters and contains a mix of letters, numbers, and symbols.',
|
||||
passwords_do_not_match: 'Your passwords don’t match. Please try again.',
|
||||
invalid_passcode: 'The verification code is invalid',
|
||||
invalid_connector_auth: 'The authorization is invalid',
|
||||
invalid_connector_request: 'The connector data is invalid',
|
||||
unknown: 'Unknown error. Please try again later.',
|
||||
invalid_session: 'Session not found. Please go back and sign in again.',
|
||||
timeout: 'Request timeout. Please try again later.',
|
||||
},
|
||||
demo_app: {
|
||||
notification: 'Tip: Create an account first to test the sign-in experience.',
|
||||
},
|
||||
};
|
||||
|
||||
const en = Object.freeze({
|
||||
translation,
|
||||
});
|
||||
|
||||
export default en;
|
29
packages/phrases-ui/src/locales/en/action.ts
Normal file
29
packages/phrases-ui/src/locales/en/action.ts
Normal file
|
@ -0,0 +1,29 @@
|
|||
const action = {
|
||||
sign_in: 'Sign in',
|
||||
continue: 'Continue',
|
||||
create_account: 'Create account',
|
||||
create_account_without_linking: 'Create account without linking',
|
||||
create: 'Create',
|
||||
enter_passcode: 'Enter verification code',
|
||||
confirm: 'Confirm',
|
||||
cancel: 'Cancel',
|
||||
save_password: 'Save password',
|
||||
bind: 'Link with {{address}}',
|
||||
bind_and_continue: 'Link and continue',
|
||||
back: 'Go back',
|
||||
nav_back: 'Back',
|
||||
agree: 'Agree',
|
||||
got_it: 'Got it',
|
||||
sign_in_with: 'Continue with {{name}}',
|
||||
forgot_password: 'Forgot your password?',
|
||||
switch_to: 'Switch to {{method}}',
|
||||
sign_in_via_passcode: 'Sign in with verification code',
|
||||
sign_in_via_password: 'Sign in with password',
|
||||
change: 'Change {{method}}',
|
||||
link_another_email: 'Link another email',
|
||||
link_another_phone: 'Link another phone',
|
||||
link_another_email_or_phone: 'Link another email or phone',
|
||||
show_password: 'Show password',
|
||||
};
|
||||
|
||||
export default action;
|
5
packages/phrases-ui/src/locales/en/demo-app.ts
Normal file
5
packages/phrases-ui/src/locales/en/demo-app.ts
Normal file
|
@ -0,0 +1,5 @@
|
|||
const demo_app = {
|
||||
notification: 'Tip: Create an account first to test the sign-in experience.',
|
||||
};
|
||||
|
||||
export default demo_app;
|
62
packages/phrases-ui/src/locales/en/description.ts
Normal file
62
packages/phrases-ui/src/locales/en/description.ts
Normal file
|
@ -0,0 +1,62 @@
|
|||
const description = {
|
||||
email: 'email',
|
||||
phone_number: 'phone number',
|
||||
username: 'username',
|
||||
reminder: 'Reminder',
|
||||
not_found: '404 Not Found',
|
||||
agree_with_terms: 'I have read and agree to the ',
|
||||
agree_with_terms_modal: 'To proceed, please agree to the <link></link>.',
|
||||
terms_of_use: 'Terms of Use',
|
||||
sign_in: 'Sign in',
|
||||
privacy_policy: 'Privacy Policy',
|
||||
create_account: 'Create account',
|
||||
or: 'or',
|
||||
and: 'and',
|
||||
enter_passcode: 'The verification code has been sent to your {{address}} {{target}}',
|
||||
passcode_sent: 'The verification code has been resent',
|
||||
resend_after_seconds: 'Resend after <span>{{seconds}}</span> seconds',
|
||||
resend_passcode: 'Resend verification code',
|
||||
create_account_id_exists:
|
||||
'The account with {{type}} {{value}} already exists, would you like to sign in?',
|
||||
link_account_id_exists:
|
||||
'The account with {{type}} {{value}} already exists. Would you like to link?',
|
||||
sign_in_id_does_not_exist:
|
||||
'The account with {{type}} {{value}} does not exist, would you like to create a new account?',
|
||||
sign_in_id_does_not_exist_alert: 'The account with {{type}} {{value}} does not exist.',
|
||||
create_account_id_exists_alert:
|
||||
'The account with {{type}} {{value}} is linked to another account. Please try another {{type}}.',
|
||||
social_identity_exist:
|
||||
'The {{type}} {{value}} is linked to another account. Please try another {{type}}.',
|
||||
bind_account_title: 'Link or create account',
|
||||
social_create_account: 'You can create a new account.',
|
||||
social_link_email: 'You can link another email',
|
||||
social_link_phone: 'You can link another phone',
|
||||
social_link_email_or_phone: 'You can link another email or phone',
|
||||
social_bind_with_existing: 'We find a related account, you can link it directly.',
|
||||
reset_password: 'Reset password',
|
||||
reset_password_description:
|
||||
'Enter the {{types, list(type: disjunction;)}} associated with your account, and we’ll send you the verification code to reset your password.',
|
||||
new_password: 'New password',
|
||||
set_password: 'Set password',
|
||||
password_changed: 'Password changed',
|
||||
no_account: 'No account yet? ',
|
||||
have_account: 'Already had an account?',
|
||||
enter_password: 'Enter password',
|
||||
enter_password_for: 'Sign in with the password to {{method}} {{value}}',
|
||||
enter_username: 'Set username',
|
||||
enter_username_description:
|
||||
'Username is an alternative for sign-in. Username should contain only letters, numbers, and underscores.',
|
||||
link_email: 'Link email',
|
||||
link_phone: 'Link phone',
|
||||
link_email_or_phone: 'Link email or phone',
|
||||
link_email_description: 'For added security, please link your email with the account.',
|
||||
link_phone_description: 'For added security, please link your phone with the account.',
|
||||
link_email_or_phone_description:
|
||||
'For added security, please link your email or phone with the account.',
|
||||
continue_with_more_information: 'For added security, please complete below account details.',
|
||||
create_your_account: 'Create your account',
|
||||
sign_in_to_your_account: 'Sign in to your account',
|
||||
no_region_code_found: 'No region code found',
|
||||
};
|
||||
|
||||
export default description;
|
23
packages/phrases-ui/src/locales/en/error.ts
Normal file
23
packages/phrases-ui/src/locales/en/error.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
const error = {
|
||||
general_required: `{{types, list(type: disjunction;)}} is required`,
|
||||
general_invalid: `The {{types, list(type: disjunction;)}} is invalid`,
|
||||
username_required: 'Username is required',
|
||||
password_required: 'Password is required',
|
||||
username_exists: 'Username already exists',
|
||||
username_should_not_start_with_number: 'Username should not start with a number',
|
||||
username_invalid_charset: 'Username should only contain letters, numbers, or underscores.',
|
||||
invalid_email: 'The email is invalid',
|
||||
invalid_phone: 'The phone number is invalid',
|
||||
password_min_length: 'Password requires a minimum of {{min}} characters',
|
||||
invalid_password:
|
||||
'Password requires a minimum of {{min}} characters and contains a mix of letters, numbers, and symbols.',
|
||||
passwords_do_not_match: 'Your passwords don’t match. Please try again.',
|
||||
invalid_passcode: 'The verification code is invalid',
|
||||
invalid_connector_auth: 'The authorization is invalid',
|
||||
invalid_connector_request: 'The connector data is invalid',
|
||||
unknown: 'Unknown error. Please try again later.',
|
||||
invalid_session: 'Session not found. Please go back and sign in again.',
|
||||
timeout: 'Request timeout. Please try again later.',
|
||||
};
|
||||
|
||||
export default error;
|
19
packages/phrases-ui/src/locales/en/index.ts
Normal file
19
packages/phrases-ui/src/locales/en/index.ts
Normal file
|
@ -0,0 +1,19 @@
|
|||
import action from './action.js';
|
||||
import demo_app from './demo-app.js';
|
||||
import description from './description.js';
|
||||
import error from './error.js';
|
||||
import input from './input.js';
|
||||
import secondary from './secondary.js';
|
||||
|
||||
const en = Object.freeze({
|
||||
translation: {
|
||||
input,
|
||||
secondary,
|
||||
action,
|
||||
description,
|
||||
error,
|
||||
demo_app,
|
||||
},
|
||||
});
|
||||
|
||||
export default en;
|
10
packages/phrases-ui/src/locales/en/input.ts
Normal file
10
packages/phrases-ui/src/locales/en/input.ts
Normal file
|
@ -0,0 +1,10 @@
|
|||
const input = {
|
||||
username: 'Username',
|
||||
password: 'Password',
|
||||
email: 'Email',
|
||||
phone_number: 'Phone number',
|
||||
confirm_password: 'Confirm password',
|
||||
search_region_code: 'Search region code',
|
||||
};
|
||||
|
||||
export default input;
|
6
packages/phrases-ui/src/locales/en/secondary.ts
Normal file
6
packages/phrases-ui/src/locales/en/secondary.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
const secondary = {
|
||||
social_bind_with:
|
||||
'Already had an account? Sign in to link {{methods, list(type: disjunction;)}} with your social identity.',
|
||||
};
|
||||
|
||||
export default secondary;
|
29
packages/phrases-ui/src/locales/ja/action.ts
Normal file
29
packages/phrases-ui/src/locales/ja/action.ts
Normal file
|
@ -0,0 +1,29 @@
|
|||
const action = {
|
||||
sign_in: 'サインイン',
|
||||
continue: '続ける',
|
||||
create_account: 'アカウントを作成する',
|
||||
create_account_without_linking: 'リンクなしでアカウントを作成する',
|
||||
create: '作成する',
|
||||
enter_passcode: '認証コードを入力してください',
|
||||
confirm: '確認する',
|
||||
cancel: 'キャンセル',
|
||||
save_password: 'パスワードを保存する',
|
||||
bind: '{{address}} とリンクする',
|
||||
bind_and_continue: 'リンクして続行する',
|
||||
back: '戻る',
|
||||
nav_back: '戻る',
|
||||
agree: '同意する',
|
||||
got_it: 'わかりました',
|
||||
sign_in_with: '{{name}} で続ける',
|
||||
forgot_password: 'パスワードを忘れましたか?',
|
||||
switch_to: '{{method}} に切り替える',
|
||||
sign_in_via_passcode: '認証コードでサインインする',
|
||||
sign_in_via_password: 'パスワードでサインインする',
|
||||
change: '{{method}} を変更する',
|
||||
link_another_email: '別のメールアドレスをリンクする',
|
||||
link_another_phone: '別の電話番号をリンクする',
|
||||
link_another_email_or_phone: '別のメールアドレスまたは電話番号をリンクする',
|
||||
show_password: 'パスワードを表示する',
|
||||
};
|
||||
|
||||
export default action;
|
5
packages/phrases-ui/src/locales/ja/demo-app.ts
Normal file
5
packages/phrases-ui/src/locales/ja/demo-app.ts
Normal file
|
@ -0,0 +1,5 @@
|
|||
const demo_app = {
|
||||
notification: 'ヒント:最初にアカウントを作成してサインイン体験をテストしてください。',
|
||||
};
|
||||
|
||||
export default demo_app;
|
63
packages/phrases-ui/src/locales/ja/description.ts
Normal file
63
packages/phrases-ui/src/locales/ja/description.ts
Normal file
|
@ -0,0 +1,63 @@
|
|||
const description = {
|
||||
email: 'メールアドレス',
|
||||
phone_number: '電話番号',
|
||||
username: 'ユーザー名',
|
||||
reminder: 'リマインダー',
|
||||
not_found: '404 Not Found',
|
||||
agree_with_terms: '以下に同意することを確認しました:',
|
||||
agree_with_terms_modal: '続行するには、<link></link>に同意してください。',
|
||||
terms_of_use: '利用規約',
|
||||
sign_in: 'サインイン',
|
||||
privacy_policy: 'プライバシーポリシー',
|
||||
create_account: 'アカウントを作成する',
|
||||
or: 'または',
|
||||
and: '及び',
|
||||
enter_passcode: '確認コードが{{address}} {{target}}に送信されました',
|
||||
passcode_sent: '確認コードを再送します',
|
||||
resend_after_seconds: '<span>{{seconds}}</span>秒後に再送信',
|
||||
resend_passcode: '確認コードを再送信します',
|
||||
create_account_id_exists:
|
||||
'{{type}} {{value}}でアカウントが既に存在しています。ログインしますか?',
|
||||
link_account_id_exists: '{{type}} {{value}}でアカウントが既に存在しています。リンクしますか?',
|
||||
sign_in_id_does_not_exist:
|
||||
'{{type}} {{value}}のアカウントは存在しません。新しいアカウントを作成しますか?',
|
||||
sign_in_id_does_not_exist_alert: '{{type}} {{value}}のアカウントは存在しません。',
|
||||
create_account_id_exists_alert:
|
||||
'{{type}} {{value}}は他のアカウントにリンクされています。他の{{type}}を試してください。',
|
||||
social_identity_exist:
|
||||
'{{type}} {{value}}は他のアカウントにリンクされています。他の{{type}}を試してください。',
|
||||
bind_account_title: 'アカウントのリンクまたは作成',
|
||||
social_create_account: '新しいアカウントを作成できます。',
|
||||
social_link_email: '別のメールアドレスをリンクできます。',
|
||||
social_link_phone: '他の電話番号にリンクできます。',
|
||||
social_link_email_or_phone: '他のメールアドレスまたは電話番号にリンクできます。',
|
||||
social_bind_with_existing: '関連するアカウントが見つかりました。それを直接リンクできます。',
|
||||
reset_password: 'パスワードを再設定する',
|
||||
reset_password_description:
|
||||
'アカウントに関連する{{types, list(type: disjunction;)}}を入力すると、パスワードの再設定に必要な確認コードが送信されます。',
|
||||
new_password: '新しいパスワード',
|
||||
set_password: 'パスワードを設定する',
|
||||
password_changed: 'パスワードが変更されました',
|
||||
no_account: 'アカウントを作成していませんか?',
|
||||
have_account: 'すでにアカウントをお持ちですか?',
|
||||
enter_password: 'パスワードを入力する',
|
||||
enter_password_for: '{{method}} {{value}}でパスワードでサインインする',
|
||||
enter_username: 'ユーザー名を入力する',
|
||||
enter_username_description:
|
||||
'ユーザー名はサインインの代替手段です。ユーザー名には、文字、数字、アンダースコアのみを含める必要があります。',
|
||||
link_email: 'メールアドレスをリンクする',
|
||||
link_phone: '電話番号をリンクする',
|
||||
link_email_or_phone: 'メールアドレスまたは電話番号をリンクする',
|
||||
link_email_description:
|
||||
'セキュリティを高めるために、アカウントにメールアドレスをリンクしてください。',
|
||||
link_phone_description: 'セキュリティを高めるために、アカウントに電話番号をリンクしてください。',
|
||||
link_email_or_phone_description:
|
||||
'セキュリティを高めるために、アカウントに別のメールアドレスまたは電話番号をリンクしてください。',
|
||||
continue_with_more_information:
|
||||
'以下にアカウントの詳細を入力して、セキュリティを高めてください。',
|
||||
create_your_account: 'アカウントを作成する',
|
||||
sign_in_to_your_account: 'アカウントにサインインする',
|
||||
no_region_code_found: '地域コードが見つかりません',
|
||||
};
|
||||
|
||||
export default description;
|
24
packages/phrases-ui/src/locales/ja/error.ts
Normal file
24
packages/phrases-ui/src/locales/ja/error.ts
Normal file
|
@ -0,0 +1,24 @@
|
|||
const error = {
|
||||
general_required: `{{types, list(type: disjunction;)}}が必要です`,
|
||||
general_invalid: `{{types, list(type: disjunction;)}}が無効です`,
|
||||
username_required: 'ユーザー名が必要です',
|
||||
password_required: 'パスワードが必要です',
|
||||
username_exists: 'ユーザー名が既に存在しています',
|
||||
username_should_not_start_with_number: 'ユーザー名は数字で始めることはできません',
|
||||
username_invalid_charset:
|
||||
'ユーザー名は文字、数字、またはアンダースコアのみを含める必要があります。',
|
||||
invalid_email: 'メールアドレスが無効です',
|
||||
invalid_phone: '電話番号が無効です',
|
||||
password_min_length: 'パスワードは{{min}}文字以上である必要があります',
|
||||
invalid_password:
|
||||
'パスワードは{{min}}文字以上で、文字、数字、および記号の組み合わせである必要があります。',
|
||||
passwords_do_not_match: 'パスワードが一致しません。もう一度お試しください。',
|
||||
invalid_passcode: '検証コードが無効です',
|
||||
invalid_connector_auth: '認証が無効です',
|
||||
invalid_connector_request: 'コネクターデータが無効です',
|
||||
unknown: '不明なエラーが発生しました。後でもう一度お試しください。',
|
||||
invalid_session: 'セッションが見つかりません。もう一度サインインしてください。',
|
||||
timeout: 'リクエストタイムアウト。後でもう一度お試しください。',
|
||||
};
|
||||
|
||||
export default error;
|
19
packages/phrases-ui/src/locales/ja/index.ts
Normal file
19
packages/phrases-ui/src/locales/ja/index.ts
Normal file
|
@ -0,0 +1,19 @@
|
|||
import action from './action.js';
|
||||
import demo_app from './demo-app.js';
|
||||
import description from './description.js';
|
||||
import error from './error.js';
|
||||
import input from './input.js';
|
||||
import secondary from './secondary.js';
|
||||
|
||||
const en = Object.freeze({
|
||||
translation: {
|
||||
input,
|
||||
secondary,
|
||||
action,
|
||||
description,
|
||||
error,
|
||||
demo_app,
|
||||
},
|
||||
});
|
||||
|
||||
export default en;
|
10
packages/phrases-ui/src/locales/ja/input.ts
Normal file
10
packages/phrases-ui/src/locales/ja/input.ts
Normal file
|
@ -0,0 +1,10 @@
|
|||
const input = {
|
||||
username: 'ユーザー名',
|
||||
password: 'パスワード',
|
||||
email: 'メールアドレス',
|
||||
phone_number: '電話番号',
|
||||
confirm_password: 'パスワード確認',
|
||||
search_region_code: '地域コード検索',
|
||||
};
|
||||
|
||||
export default input;
|
6
packages/phrases-ui/src/locales/ja/secondary.ts
Normal file
6
packages/phrases-ui/src/locales/ja/secondary.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
const secondary = {
|
||||
social_bind_with:
|
||||
'既にアカウントを持っていますか?{{methods, list(type: disjunction;)}}をソーシャルアイデンティティにリンクするためにサインインしてください。',
|
||||
};
|
||||
|
||||
export default secondary;
|
|
@ -1,3 +1,3 @@
|
|||
import type en from './locales/en.js';
|
||||
import type en from './locales/en/index.js';
|
||||
|
||||
export type LocalePhrase = typeof en;
|
||||
|
|
|
@ -6,14 +6,15 @@ import { z } from 'zod';
|
|||
import de from './locales/de/index.js';
|
||||
import en from './locales/en/index.js';
|
||||
import fr from './locales/fr/index.js';
|
||||
import ja from './locales/ja/index.js';
|
||||
import ko from './locales/ko/index.js';
|
||||
import ptBR from './locales/pt-br/index.js';
|
||||
import ptPT from './locales/pt-pt/index.js';
|
||||
import trTR from './locales/tr-tr/index.js';
|
||||
import zhCN from './locales/zh-cn/index.js';
|
||||
import type { LocalPhrase } from './types.js';
|
||||
import type { LocalePhrase } from './types.js';
|
||||
|
||||
export type { LocalPhrase } from './types.js';
|
||||
export type { LocalePhrase } from './types.js';
|
||||
|
||||
export type I18nKey = NormalizeKeyPaths<typeof en.translation>;
|
||||
|
||||
|
@ -26,6 +27,7 @@ export const builtInLanguages = [
|
|||
'pt-BR',
|
||||
'tr-TR',
|
||||
'zh-CN',
|
||||
'ja',
|
||||
] as const;
|
||||
|
||||
export const builtInLanguageOptions = builtInLanguages.map((languageTag) => ({
|
||||
|
@ -49,7 +51,7 @@ export const getDefaultLanguageTag = (languages: string): LanguageTag =>
|
|||
export const isBuiltInLanguageTag = (language: string): language is BuiltInLanguageTag =>
|
||||
builtInLanguageTagGuard.safeParse(language).success;
|
||||
|
||||
export type Resource = Record<BuiltInLanguageTag, LocalPhrase>;
|
||||
export type Resource = Record<BuiltInLanguageTag, LocalePhrase>;
|
||||
|
||||
const resource: Resource = {
|
||||
de,
|
||||
|
@ -60,6 +62,7 @@ const resource: Resource = {
|
|||
'pt-BR': ptBR,
|
||||
'tr-TR': trTR,
|
||||
'zh-CN': zhCN,
|
||||
ja,
|
||||
};
|
||||
|
||||
export default resource;
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
import type { LocalPhrase } from '../../types.js';
|
||||
import type { LocalePhrase } from '../../types.js';
|
||||
|
||||
import errors from './errors.js';
|
||||
import translation from './translation/index.js';
|
||||
|
||||
const de: LocalPhrase = Object.freeze({
|
||||
const de: LocalePhrase = Object.freeze({
|
||||
translation,
|
||||
errors,
|
||||
});
|
||||
|
|
|
@ -1,200 +0,0 @@
|
|||
const errors = {
|
||||
request: {
|
||||
invalid_input: 'Input is invalid. {{details}}',
|
||||
general: 'Request error occurred.',
|
||||
},
|
||||
auth: {
|
||||
authorization_header_missing: 'Authorization header is missing.',
|
||||
authorization_token_type_not_supported: 'Authorization type is not supported.',
|
||||
unauthorized: 'Unauthorized. Please check credentials and its scope.',
|
||||
forbidden: 'Forbidden. Please check your user roles and permissions.',
|
||||
expected_role_not_found:
|
||||
'Expected role not found. Please check your user roles and permissions.',
|
||||
jwt_sub_missing: 'Missing `sub` in JWT.',
|
||||
require_re_authentication: 'Re-authentication is required to perform a protected action.',
|
||||
},
|
||||
guard: {
|
||||
invalid_input: 'The request {{type}} is invalid.',
|
||||
invalid_pagination: 'The request pagination value is invalid.',
|
||||
can_not_get_tenant_id: 'Unable to get tenant id from request.',
|
||||
file_size_exceeded: 'File size exceeded.',
|
||||
mime_type_not_allowed: 'MIME type is not allowed.',
|
||||
},
|
||||
oidc: {
|
||||
aborted: 'The end-user aborted interaction.',
|
||||
invalid_scope: 'Scope {{scope}} is not supported.',
|
||||
invalid_scope_plural: 'Scope {{scopes}} are not supported.',
|
||||
invalid_token: 'Invalid token provided.',
|
||||
invalid_client_metadata: 'Invalid client metadata provided.',
|
||||
insufficient_scope: 'Access token missing requested scope {{scopes}}.',
|
||||
invalid_request: 'Request is invalid.',
|
||||
invalid_grant: 'Grant request is invalid.',
|
||||
invalid_redirect_uri:
|
||||
"`redirect_uri` did not match any of the client's registered `redirect_uris`.",
|
||||
access_denied: 'Access denied.',
|
||||
invalid_target: 'Invalid resource indicator.',
|
||||
unsupported_grant_type: 'Unsupported `grant_type` requested.',
|
||||
unsupported_response_mode: 'Unsupported `response_mode` requested.',
|
||||
unsupported_response_type: 'Unsupported `response_type` requested.',
|
||||
provider_error: 'OIDC Internal Error: {{message}}.',
|
||||
},
|
||||
user: {
|
||||
username_already_in_use: 'This username is already in use.',
|
||||
email_already_in_use: 'This email is associated with an existing account.',
|
||||
phone_already_in_use: 'This phone number is associated with an existing account.',
|
||||
invalid_email: 'Invalid email address.',
|
||||
invalid_phone: 'Invalid phone number.',
|
||||
email_not_exist: 'The email address has not been registered yet.',
|
||||
phone_not_exist: 'The phone number has not been registered yet.',
|
||||
identity_not_exist: 'The social account has not been registered yet.',
|
||||
identity_already_in_use: 'The social account has been associated with an existing account.',
|
||||
social_account_exists_in_profile: 'You have already associated this social account.',
|
||||
cannot_delete_self: 'You cannot delete yourself.',
|
||||
sign_up_method_not_enabled: 'This sign-up method is not enabled.',
|
||||
sign_in_method_not_enabled: 'This sign-in method is not enabled.',
|
||||
same_password: 'New password cannot be the same as your old password.',
|
||||
password_required_in_profile: 'You need to set a password before signing-in.',
|
||||
new_password_required_in_profile: 'You need to set a new password.',
|
||||
password_exists_in_profile: 'Password already exists in your profile.',
|
||||
username_required_in_profile: 'You need to set a username before signing-in.',
|
||||
username_exists_in_profile: 'Username already exists in your profile.',
|
||||
email_required_in_profile: 'You need to add an email address before signing-in.',
|
||||
email_exists_in_profile: 'Your profile has already associated with an email address.',
|
||||
phone_required_in_profile: 'You need to add a phone number before signing-in.',
|
||||
phone_exists_in_profile: 'Your profile has already associated with a phone number.',
|
||||
email_or_phone_required_in_profile:
|
||||
'You need to add an email address or phone number before signing-in.',
|
||||
suspended: 'This account is suspended.',
|
||||
user_not_exist: 'User with {{ identifier }} does not exist.',
|
||||
missing_profile: 'You need to provide additional info before signing-in.',
|
||||
role_exists: 'The role id {{roleId}} is already been added to this user',
|
||||
},
|
||||
password: {
|
||||
unsupported_encryption_method: 'The encryption method {{name}} is not supported.',
|
||||
pepper_not_found: 'Password pepper not found. Please check your core envs.',
|
||||
},
|
||||
session: {
|
||||
not_found: 'Session not found. Please go back and sign in again.',
|
||||
invalid_credentials: 'Incorrect account or password. Please check your input.',
|
||||
invalid_sign_in_method: 'Current sign-in method is not available.',
|
||||
invalid_connector_id: 'Unable to find available connector with id {{connectorId}}.',
|
||||
insufficient_info: 'Insufficient sign-in info.',
|
||||
connector_id_mismatch: 'The connectorId is mismatched with session record.',
|
||||
connector_session_not_found: 'Connector session not found. Please go back and sign in again.',
|
||||
verification_session_not_found:
|
||||
'The verification was not successful. Restart the verification flow and try again.',
|
||||
verification_expired:
|
||||
'The connection has timed out. Verify again to ensure your account safety.',
|
||||
unauthorized: 'Please sign in first.',
|
||||
unsupported_prompt_name: 'Unsupported prompt name.',
|
||||
forgot_password_not_enabled: 'Forgot password is not enabled.',
|
||||
verification_failed:
|
||||
'The verification was not successful. Restart the verification flow and try again.',
|
||||
connector_validation_session_not_found:
|
||||
'The connector session for token validation is not found.',
|
||||
identifier_not_found: 'User identifier not found. Please go back and sign in again.',
|
||||
interaction_not_found:
|
||||
'Interaction session not found. Please go back and start the session again.',
|
||||
},
|
||||
connector: {
|
||||
general: 'Error occurred in connector: {{errorDescription}}',
|
||||
not_found: 'Cannot find any available connector for type: {{type}}.',
|
||||
not_enabled: 'The connector is not enabled.',
|
||||
invalid_metadata: "The connector's metadata is invalid.",
|
||||
invalid_config_guard: "The connector's config guard is invalid.",
|
||||
unexpected_type: "The connector's type is unexpected.",
|
||||
invalid_request_parameters: 'The request is with wrong input parameter(s).',
|
||||
insufficient_request_parameters: 'The request might miss some input parameters.',
|
||||
invalid_config: "The connector's config is invalid.",
|
||||
invalid_response: "The connector's response is invalid.",
|
||||
template_not_found: 'Unable to find correct template in connector config.',
|
||||
not_implemented: '{{method}}: has not been implemented yet.',
|
||||
social_invalid_access_token: "The connector's access token is invalid.",
|
||||
invalid_auth_code: "The connector's auth code is invalid.",
|
||||
social_invalid_id_token: "The connector's id token is invalid.",
|
||||
authorization_failed: "The user's authorization process is unsuccessful.",
|
||||
social_auth_code_invalid: 'Unable to get access token, please check authorization code.',
|
||||
more_than_one_sms: 'The number of SMS connectors is larger then 1.',
|
||||
more_than_one_email: 'The number of Email connectors is larger then 1.',
|
||||
more_than_one_connector_factory:
|
||||
'Found multiple connector factories (with id {{connectorIds}}), you may uninstall unnecessary ones.', // UNTRANSLATED
|
||||
db_connector_type_mismatch: 'There is a connector in the DB that does not match the type.',
|
||||
not_found_with_connector_id: 'Can not find connector with given standard connector id.',
|
||||
multiple_instances_not_supported:
|
||||
'Can not create multiple instance with picked standard connector.',
|
||||
invalid_type_for_syncing_profile: 'You can only sync user profile with social connectors.',
|
||||
can_not_modify_target: "The connector 'target' can not be modified.",
|
||||
should_specify_target: "You should specify 'target'.",
|
||||
multiple_target_with_same_platform:
|
||||
'You can not have multiple social connectors that have same target and platform.',
|
||||
cannot_overwrite_metadata_for_non_standard_connector:
|
||||
"This connector's 'metadata' cannot be overwritten.",
|
||||
},
|
||||
verification_code: {
|
||||
phone_email_empty: 'Both phone and email are empty.',
|
||||
not_found: 'Verification code not found. Please send verification code first.',
|
||||
phone_mismatch: 'Phone mismatch. Please request a new verification code.',
|
||||
email_mismatch: 'Email mismatch. Please request a new verification code.',
|
||||
code_mismatch: 'Invalid verification code.',
|
||||
expired: 'Verification code has expired. Please request a new verification code.',
|
||||
exceed_max_try:
|
||||
'Verification code retries limitation exceeded. Please request a new verification code.',
|
||||
},
|
||||
sign_in_experiences: {
|
||||
empty_content_url_of_terms_of_use:
|
||||
'Empty "Terms of use" content URL. Please add the content URL if "Terms of use" is enabled.',
|
||||
empty_social_connectors:
|
||||
'Empty social connectors. Please add enabled social connectors when the social sign-in method is enabled.',
|
||||
enabled_connector_not_found: 'Enabled {{type}} connector not found.',
|
||||
not_one_and_only_one_primary_sign_in_method:
|
||||
'There must be one and only one primary sign-in method. Please check your input.',
|
||||
username_requires_password: 'Must enable set a password for username sign up identifier.',
|
||||
passwordless_requires_verify: 'Must enable verify for email/phone sign up identifier.',
|
||||
miss_sign_up_identifier_in_sign_in: 'Sign in methods must contain the sign up identifier.',
|
||||
password_sign_in_must_be_enabled:
|
||||
'Password sign in must be enabled when set a password is required in sign up.',
|
||||
code_sign_in_must_be_enabled:
|
||||
'Verification code sign in must be enabled when set a password is not required in sign up.',
|
||||
unsupported_default_language: 'This language - {{language}} is not supported at the moment.',
|
||||
at_least_one_authentication_factor: 'You have to select at least one authentication factor.',
|
||||
},
|
||||
localization: {
|
||||
cannot_delete_default_language:
|
||||
'{{languageTag}} is set as your default language and can’t be deleted.',
|
||||
invalid_translation_structure: 'Invalid data schemas. Please check your input and try again.',
|
||||
},
|
||||
swagger: {
|
||||
invalid_zod_type: 'Invalid Zod type. Please check route guard config.',
|
||||
not_supported_zod_type_for_params:
|
||||
'Not supported Zod type for the parameters. Please check route guard config.',
|
||||
},
|
||||
entity: {
|
||||
create_failed: 'Failed to create {{name}}.',
|
||||
not_exists: 'The {{name}} does not exist.',
|
||||
not_exists_with_id: 'The {{name}} with ID `{{id}}` does not exist.',
|
||||
not_found: 'The resource does not exist.',
|
||||
},
|
||||
log: {
|
||||
invalid_type: 'The log type is invalid.',
|
||||
},
|
||||
role: {
|
||||
name_in_use: 'This role name {{name}} is already in use',
|
||||
scope_exists: 'The scope id {{scopeId}} has already been added to this role',
|
||||
user_exists: 'The user id {{userId}} is already been added to this role',
|
||||
default_role_missing:
|
||||
'Some of the default roleNames does not exist in database, please ensure to create roles first',
|
||||
internal_role_violation:
|
||||
'You may be trying to update or delete an internal role which is forbidden by Logto. If you are creating a new role, try another name that does not start with "#internal:".',
|
||||
},
|
||||
scope: {
|
||||
name_exists: 'The scope name {{name}} is already in use',
|
||||
name_with_space: 'The name of the scope cannot contain any spaces.',
|
||||
},
|
||||
storage: {
|
||||
not_configured: 'Storage provider is not configured.',
|
||||
missing_parameter: 'Missing parameter {{parameter}} for storage provider.',
|
||||
upload_error: 'Failed to upload file to the storage provider.',
|
||||
},
|
||||
};
|
||||
|
||||
export default errors;
|
11
packages/phrases/src/locales/en/errors/auth.ts
Normal file
11
packages/phrases/src/locales/en/errors/auth.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
const auth = {
|
||||
authorization_header_missing: 'Authorization header is missing.',
|
||||
authorization_token_type_not_supported: 'Authorization type is not supported.',
|
||||
unauthorized: 'Unauthorized. Please check credentials and its scope.',
|
||||
forbidden: 'Forbidden. Please check your user roles and permissions.',
|
||||
expected_role_not_found: 'Expected role not found. Please check your user roles and permissions.',
|
||||
jwt_sub_missing: 'Missing `sub` in JWT.',
|
||||
require_re_authentication: 'Re-authentication is required to perform a protected action.',
|
||||
};
|
||||
|
||||
export default auth;
|
36
packages/phrases/src/locales/en/errors/connector.ts
Normal file
36
packages/phrases/src/locales/en/errors/connector.ts
Normal file
|
@ -0,0 +1,36 @@
|
|||
const connector = {
|
||||
general: 'Error occurred in connector: {{errorDescription}}',
|
||||
not_found: 'Cannot find any available connector for type: {{type}}.',
|
||||
not_enabled: 'The connector is not enabled.',
|
||||
invalid_metadata: "The connector's metadata is invalid.",
|
||||
invalid_config_guard: "The connector's config guard is invalid.",
|
||||
unexpected_type: "The connector's type is unexpected.",
|
||||
invalid_request_parameters: 'The request is with wrong input parameter(s).',
|
||||
insufficient_request_parameters: 'The request might miss some input parameters.',
|
||||
invalid_config: "The connector's config is invalid.",
|
||||
invalid_response: "The connector's response is invalid.",
|
||||
template_not_found: 'Unable to find correct template in connector config.',
|
||||
not_implemented: '{{method}}: has not been implemented yet.',
|
||||
social_invalid_access_token: "The connector's access token is invalid.",
|
||||
invalid_auth_code: "The connector's auth code is invalid.",
|
||||
social_invalid_id_token: "The connector's id token is invalid.",
|
||||
authorization_failed: "The user's authorization process is unsuccessful.",
|
||||
social_auth_code_invalid: 'Unable to get access token, please check authorization code.',
|
||||
more_than_one_sms: 'The number of SMS connectors is larger then 1.',
|
||||
more_than_one_email: 'The number of Email connectors is larger then 1.',
|
||||
more_than_one_connector_factory:
|
||||
'Found multiple connector factories (with id {{connectorIds}}), you may uninstall unnecessary ones.', // UNTRANSLATED
|
||||
db_connector_type_mismatch: 'There is a connector in the DB that does not match the type.',
|
||||
not_found_with_connector_id: 'Can not find connector with given standard connector id.',
|
||||
multiple_instances_not_supported:
|
||||
'Can not create multiple instance with picked standard connector.',
|
||||
invalid_type_for_syncing_profile: 'You can only sync user profile with social connectors.',
|
||||
can_not_modify_target: "The connector 'target' can not be modified.",
|
||||
should_specify_target: "You should specify 'target'.",
|
||||
multiple_target_with_same_platform:
|
||||
'You can not have multiple social connectors that have same target and platform.',
|
||||
cannot_overwrite_metadata_for_non_standard_connector:
|
||||
"This connector's 'metadata' cannot be overwritten.",
|
||||
};
|
||||
|
||||
export default connector;
|
8
packages/phrases/src/locales/en/errors/entity.ts
Normal file
8
packages/phrases/src/locales/en/errors/entity.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
const entity = {
|
||||
create_failed: 'Failed to create {{name}}.',
|
||||
not_exists: 'The {{name}} does not exist.',
|
||||
not_exists_with_id: 'The {{name}} with ID `{{id}}` does not exist.',
|
||||
not_found: 'The resource does not exist.',
|
||||
};
|
||||
|
||||
export default entity;
|
9
packages/phrases/src/locales/en/errors/guard.ts
Normal file
9
packages/phrases/src/locales/en/errors/guard.ts
Normal file
|
@ -0,0 +1,9 @@
|
|||
const guard = {
|
||||
invalid_input: 'The request {{type}} is invalid.',
|
||||
invalid_pagination: 'The request pagination value is invalid.',
|
||||
can_not_get_tenant_id: 'Unable to get tenant id from request.',
|
||||
file_size_exceeded: 'File size exceeded.',
|
||||
mime_type_not_allowed: 'MIME type is not allowed.',
|
||||
};
|
||||
|
||||
export default guard;
|
39
packages/phrases/src/locales/en/errors/index.ts
Normal file
39
packages/phrases/src/locales/en/errors/index.ts
Normal file
|
@ -0,0 +1,39 @@
|
|||
import auth from './auth.js';
|
||||
import connector from './connector.js';
|
||||
import entity from './entity.js';
|
||||
import guard from './guard.js';
|
||||
import localization from './localization.js';
|
||||
import log from './log.js';
|
||||
import oidc from './oidc.js';
|
||||
import password from './password.js';
|
||||
import request from './request.js';
|
||||
import role from './role.js';
|
||||
import scope from './scope.js';
|
||||
import session from './session.js';
|
||||
import sign_in_experiences from './sign-in-experiences.js';
|
||||
import storage from './storage.js';
|
||||
import swagger from './swagger.js';
|
||||
import user from './user.js';
|
||||
import verification_code from './verification-code.js';
|
||||
|
||||
const errors = {
|
||||
request,
|
||||
auth,
|
||||
guard,
|
||||
oidc,
|
||||
user,
|
||||
password,
|
||||
session,
|
||||
connector,
|
||||
verification_code,
|
||||
sign_in_experiences,
|
||||
localization,
|
||||
swagger,
|
||||
entity,
|
||||
log,
|
||||
role,
|
||||
scope,
|
||||
storage,
|
||||
};
|
||||
|
||||
export default errors;
|
7
packages/phrases/src/locales/en/errors/localization.ts
Normal file
7
packages/phrases/src/locales/en/errors/localization.ts
Normal file
|
@ -0,0 +1,7 @@
|
|||
const localization = {
|
||||
cannot_delete_default_language:
|
||||
'{{languageTag}} is set as your default language and can’t be deleted.',
|
||||
invalid_translation_structure: 'Invalid data schemas. Please check your input and try again.',
|
||||
};
|
||||
|
||||
export default localization;
|
5
packages/phrases/src/locales/en/errors/log.ts
Normal file
5
packages/phrases/src/locales/en/errors/log.ts
Normal file
|
@ -0,0 +1,5 @@
|
|||
const log = {
|
||||
invalid_type: 'The log type is invalid.',
|
||||
};
|
||||
|
||||
export default log;
|
20
packages/phrases/src/locales/en/errors/oidc.ts
Normal file
20
packages/phrases/src/locales/en/errors/oidc.ts
Normal file
|
@ -0,0 +1,20 @@
|
|||
const oidc = {
|
||||
aborted: 'The end-user aborted interaction.',
|
||||
invalid_scope: 'Scope {{scope}} is not supported.',
|
||||
invalid_scope_plural: 'Scope {{scopes}} are not supported.',
|
||||
invalid_token: 'Invalid token provided.',
|
||||
invalid_client_metadata: 'Invalid client metadata provided.',
|
||||
insufficient_scope: 'Access token missing requested scope {{scopes}}.',
|
||||
invalid_request: 'Request is invalid.',
|
||||
invalid_grant: 'Grant request is invalid.',
|
||||
invalid_redirect_uri:
|
||||
"`redirect_uri` did not match any of the client's registered `redirect_uris`.",
|
||||
access_denied: 'Access denied.',
|
||||
invalid_target: 'Invalid resource indicator.',
|
||||
unsupported_grant_type: 'Unsupported `grant_type` requested.',
|
||||
unsupported_response_mode: 'Unsupported `response_mode` requested.',
|
||||
unsupported_response_type: 'Unsupported `response_type` requested.',
|
||||
provider_error: 'OIDC Internal Error: {{message}}.',
|
||||
};
|
||||
|
||||
export default oidc;
|
6
packages/phrases/src/locales/en/errors/password.ts
Normal file
6
packages/phrases/src/locales/en/errors/password.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
const password = {
|
||||
unsupported_encryption_method: 'The encryption method {{name}} is not supported.',
|
||||
pepper_not_found: 'Password pepper not found. Please check your core envs.',
|
||||
};
|
||||
|
||||
export default password;
|
6
packages/phrases/src/locales/en/errors/request.ts
Normal file
6
packages/phrases/src/locales/en/errors/request.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
const request = {
|
||||
invalid_input: 'Input is invalid. {{details}}',
|
||||
general: 'Request error occurred.',
|
||||
};
|
||||
|
||||
export default request;
|
11
packages/phrases/src/locales/en/errors/role.ts
Normal file
11
packages/phrases/src/locales/en/errors/role.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
const role = {
|
||||
name_in_use: 'This role name {{name}} is already in use',
|
||||
scope_exists: 'The scope id {{scopeId}} has already been added to this role',
|
||||
user_exists: 'The user id {{userId}} is already been added to this role',
|
||||
default_role_missing:
|
||||
'Some of the default roleNames does not exist in database, please ensure to create roles first',
|
||||
internal_role_violation:
|
||||
'You may be trying to update or delete an internal role which is forbidden by Logto. If you are creating a new role, try another name that does not start with "#internal:".',
|
||||
};
|
||||
|
||||
export default role;
|
6
packages/phrases/src/locales/en/errors/scope.ts
Normal file
6
packages/phrases/src/locales/en/errors/scope.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
const scope = {
|
||||
name_exists: 'The scope name {{name}} is already in use',
|
||||
name_with_space: 'The name of the scope cannot contain any spaces.',
|
||||
};
|
||||
|
||||
export default scope;
|
24
packages/phrases/src/locales/en/errors/session.ts
Normal file
24
packages/phrases/src/locales/en/errors/session.ts
Normal file
|
@ -0,0 +1,24 @@
|
|||
const session = {
|
||||
not_found: 'Session not found. Please go back and sign in again.',
|
||||
invalid_credentials: 'Incorrect account or password. Please check your input.',
|
||||
invalid_sign_in_method: 'Current sign-in method is not available.',
|
||||
invalid_connector_id: 'Unable to find available connector with id {{connectorId}}.',
|
||||
insufficient_info: 'Insufficient sign-in info.',
|
||||
connector_id_mismatch: 'The connectorId is mismatched with session record.',
|
||||
connector_session_not_found: 'Connector session not found. Please go back and sign in again.',
|
||||
verification_session_not_found:
|
||||
'The verification was not successful. Restart the verification flow and try again.',
|
||||
verification_expired: 'The connection has timed out. Verify again to ensure your account safety.',
|
||||
unauthorized: 'Please sign in first.',
|
||||
unsupported_prompt_name: 'Unsupported prompt name.',
|
||||
forgot_password_not_enabled: 'Forgot password is not enabled.',
|
||||
verification_failed:
|
||||
'The verification was not successful. Restart the verification flow and try again.',
|
||||
connector_validation_session_not_found:
|
||||
'The connector session for token validation is not found.',
|
||||
identifier_not_found: 'User identifier not found. Please go back and sign in again.',
|
||||
interaction_not_found:
|
||||
'Interaction session not found. Please go back and start the session again.',
|
||||
};
|
||||
|
||||
export default session;
|
|
@ -0,0 +1,20 @@
|
|||
const sign_in_experiences = {
|
||||
empty_content_url_of_terms_of_use:
|
||||
'Empty "Terms of use" content URL. Please add the content URL if "Terms of use" is enabled.',
|
||||
empty_social_connectors:
|
||||
'Empty social connectors. Please add enabled social connectors when the social sign-in method is enabled.',
|
||||
enabled_connector_not_found: 'Enabled {{type}} connector not found.',
|
||||
not_one_and_only_one_primary_sign_in_method:
|
||||
'There must be one and only one primary sign-in method. Please check your input.',
|
||||
username_requires_password: 'Must enable set a password for username sign up identifier.',
|
||||
passwordless_requires_verify: 'Must enable verify for email/phone sign up identifier.',
|
||||
miss_sign_up_identifier_in_sign_in: 'Sign in methods must contain the sign up identifier.',
|
||||
password_sign_in_must_be_enabled:
|
||||
'Password sign in must be enabled when set a password is required in sign up.',
|
||||
code_sign_in_must_be_enabled:
|
||||
'Verification code sign in must be enabled when set a password is not required in sign up.',
|
||||
unsupported_default_language: 'This language - {{language}} is not supported at the moment.',
|
||||
at_least_one_authentication_factor: 'You have to select at least one authentication factor.',
|
||||
};
|
||||
|
||||
export default sign_in_experiences;
|
7
packages/phrases/src/locales/en/errors/storage.ts
Normal file
7
packages/phrases/src/locales/en/errors/storage.ts
Normal file
|
@ -0,0 +1,7 @@
|
|||
const storage = {
|
||||
not_configured: 'Storage provider is not configured.',
|
||||
missing_parameter: 'Missing parameter {{parameter}} for storage provider.',
|
||||
upload_error: 'Failed to upload file to the storage provider.',
|
||||
};
|
||||
|
||||
export default storage;
|
7
packages/phrases/src/locales/en/errors/swagger.ts
Normal file
7
packages/phrases/src/locales/en/errors/swagger.ts
Normal file
|
@ -0,0 +1,7 @@
|
|||
const swagger = {
|
||||
invalid_zod_type: 'Invalid Zod type. Please check route guard config.',
|
||||
not_supported_zod_type_for_params:
|
||||
'Not supported Zod type for the parameters. Please check route guard config.',
|
||||
};
|
||||
|
||||
export default swagger;
|
33
packages/phrases/src/locales/en/errors/user.ts
Normal file
33
packages/phrases/src/locales/en/errors/user.ts
Normal file
|
@ -0,0 +1,33 @@
|
|||
const user = {
|
||||
username_already_in_use: 'This username is already in use.',
|
||||
email_already_in_use: 'This email is associated with an existing account.',
|
||||
phone_already_in_use: 'This phone number is associated with an existing account.',
|
||||
invalid_email: 'Invalid email address.',
|
||||
invalid_phone: 'Invalid phone number.',
|
||||
email_not_exist: 'The email address has not been registered yet.',
|
||||
phone_not_exist: 'The phone number has not been registered yet.',
|
||||
identity_not_exist: 'The social account has not been registered yet.',
|
||||
identity_already_in_use: 'The social account has been associated with an existing account.',
|
||||
social_account_exists_in_profile: 'You have already associated this social account.',
|
||||
cannot_delete_self: 'You cannot delete yourself.',
|
||||
sign_up_method_not_enabled: 'This sign-up method is not enabled.',
|
||||
sign_in_method_not_enabled: 'This sign-in method is not enabled.',
|
||||
same_password: 'New password cannot be the same as your old password.',
|
||||
password_required_in_profile: 'You need to set a password before signing-in.',
|
||||
new_password_required_in_profile: 'You need to set a new password.',
|
||||
password_exists_in_profile: 'Password already exists in your profile.',
|
||||
username_required_in_profile: 'You need to set a username before signing-in.',
|
||||
username_exists_in_profile: 'Username already exists in your profile.',
|
||||
email_required_in_profile: 'You need to add an email address before signing-in.',
|
||||
email_exists_in_profile: 'Your profile has already associated with an email address.',
|
||||
phone_required_in_profile: 'You need to add a phone number before signing-in.',
|
||||
phone_exists_in_profile: 'Your profile has already associated with a phone number.',
|
||||
email_or_phone_required_in_profile:
|
||||
'You need to add an email address or phone number before signing-in.',
|
||||
suspended: 'This account is suspended.',
|
||||
user_not_exist: 'User with {{ identifier }} does not exist.',
|
||||
missing_profile: 'You need to provide additional info before signing-in.',
|
||||
role_exists: 'The role id {{roleId}} is already been added to this user',
|
||||
};
|
||||
|
||||
export default user;
|
12
packages/phrases/src/locales/en/errors/verification-code.ts
Normal file
12
packages/phrases/src/locales/en/errors/verification-code.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
const verification_code = {
|
||||
phone_email_empty: 'Both phone and email are empty.',
|
||||
not_found: 'Verification code not found. Please send verification code first.',
|
||||
phone_mismatch: 'Phone mismatch. Please request a new verification code.',
|
||||
email_mismatch: 'Email mismatch. Please request a new verification code.',
|
||||
code_mismatch: 'Invalid verification code.',
|
||||
expired: 'Verification code has expired. Please request a new verification code.',
|
||||
exceed_max_try:
|
||||
'Verification code retries limitation exceeded. Please request a new verification code.',
|
||||
};
|
||||
|
||||
export default verification_code;
|
|
@ -1,4 +1,4 @@
|
|||
import errors from './errors.js';
|
||||
import errors from './errors/index.js';
|
||||
import translation from './translation/index.js';
|
||||
|
||||
const en = Object.freeze({
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
const application_details = {
|
||||
page_title: 'Application details', // UNTRANSLATED
|
||||
page_title: 'Application details',
|
||||
back_to_applications: 'Back to Applications',
|
||||
check_guide: 'Check Guide',
|
||||
settings: 'Settings',
|
||||
|
|
|
@ -19,7 +19,7 @@ import profile from './profile.js';
|
|||
import role_details from './role-details.js';
|
||||
import roles from './roles.js';
|
||||
import session_expired from './session-expired.js';
|
||||
import sign_in_exp from './sign-in-exp.js';
|
||||
import sign_in_exp from './sign-in-exp/index.js';
|
||||
import tab_sections from './tab-sections.js';
|
||||
import tabs from './tabs.js';
|
||||
import user_details from './user-details.js';
|
||||
|
|
|
@ -1,181 +0,0 @@
|
|||
const sign_in_exp = {
|
||||
page_title: 'Sign-in experience',
|
||||
title: 'Sign-in experience',
|
||||
description: 'Customize the sign in UI to match your brand and view in real time',
|
||||
tabs: {
|
||||
branding: 'Branding',
|
||||
sign_up_and_sign_in: 'Sign-up and Sign-in',
|
||||
others: 'Others',
|
||||
},
|
||||
welcome: {
|
||||
title: 'Customize sign-in experience',
|
||||
description:
|
||||
'Get started fast with your first sign-in setup. This guide walks you through all the necessary settings.',
|
||||
get_started: 'Get Started',
|
||||
apply_remind:
|
||||
'Please note that sign-in experience will apply to all applications under this account.',
|
||||
},
|
||||
color: {
|
||||
title: 'COLOR',
|
||||
primary_color: 'Brand color',
|
||||
dark_primary_color: 'Brand color (Dark)',
|
||||
dark_mode: 'Enable dark mode',
|
||||
dark_mode_description:
|
||||
'Your app will have an auto-generated dark mode theme based on your brand color and Logto algorithm. You are free to customize.',
|
||||
dark_mode_reset_tip: 'Recalculate dark mode color based on brand color.',
|
||||
reset: 'Recalculate',
|
||||
},
|
||||
branding: {
|
||||
title: 'BRANDING AREA',
|
||||
ui_style: 'Style',
|
||||
favicon: 'Favicon',
|
||||
logo_image_url: 'App logo image URL',
|
||||
logo_image_url_placeholder: 'https://your.cdn.domain/logo.png',
|
||||
dark_logo_image_url: 'App logo image URL (Dark)',
|
||||
dark_logo_image_url_placeholder: 'https://your.cdn.domain/logo-dark.png',
|
||||
logo_image: 'App logo',
|
||||
dark_logo_image: 'App logo (Dark)',
|
||||
logo_image_error: 'App logo: {{error}}',
|
||||
favicon_error: 'Favicon: {{error}}',
|
||||
},
|
||||
custom_css: {
|
||||
title: 'Custom CSS',
|
||||
css_code_editor_title: 'Personalize your UI with Custom CSS',
|
||||
css_code_editor_description1: 'See the example of Custom CSS.',
|
||||
css_code_editor_description2: '<a>{{link}}</a>',
|
||||
css_code_editor_description_link_content: 'Learn more',
|
||||
css_code_editor_content_placeholder:
|
||||
'Enter your custom CSS to tailor the styles of anything to your exact specifications. Express your creativity and make your UI stand out.',
|
||||
},
|
||||
sign_up_and_sign_in: {
|
||||
identifiers_email: 'Email address',
|
||||
identifiers_phone: 'Phone number',
|
||||
identifiers_username: 'Username',
|
||||
identifiers_email_or_sms: 'Email address or phone number',
|
||||
identifiers_none: 'Not applicable',
|
||||
and: 'and',
|
||||
or: 'or',
|
||||
sign_up: {
|
||||
title: 'SIGN-UP',
|
||||
sign_up_identifier: 'Sign-up identifier',
|
||||
identifier_description:
|
||||
'The sign-up identifier is required for account creation and must be included in your sign-in screen.',
|
||||
sign_up_authentication: 'Authentication setting for sign-up',
|
||||
authentication_description:
|
||||
'All selected actions will be obligatory for users to complete the flow.',
|
||||
set_a_password_option: 'Create your password',
|
||||
verify_at_sign_up_option: 'Verify at sign-up',
|
||||
social_only_creation_description: '(This apply to social only account creation)',
|
||||
},
|
||||
sign_in: {
|
||||
title: 'SIGN-IN',
|
||||
sign_in_identifier_and_auth: 'Identifier and authentication settings for sign-in',
|
||||
description:
|
||||
'Users can sign in using any of the options available. Adjust the layout by drag and dropping below options.',
|
||||
add_sign_in_method: 'Add Sign-in Method',
|
||||
password_auth: 'Password',
|
||||
verification_code_auth: 'Verification code',
|
||||
auth_swap_tip: 'Swap the options below to determine which appears first in the flow.',
|
||||
require_auth_factor: 'You have to select at least one authentication factor.',
|
||||
},
|
||||
social_sign_in: {
|
||||
title: 'SOCIAL SIGN-IN',
|
||||
social_sign_in: 'Social sign-in',
|
||||
description:
|
||||
'Depending on the mandatory identifier you set up, your user may be asked to provide an identifier when signing up via social connector.',
|
||||
add_social_connector: 'Add Social Connector',
|
||||
set_up_hint: {
|
||||
not_in_list: 'Not in the list?',
|
||||
set_up_more: 'Set up',
|
||||
go_to: 'other social connectors now.',
|
||||
},
|
||||
},
|
||||
tip: {
|
||||
set_a_password: 'A unique set of a password to your username is a must.',
|
||||
verify_at_sign_up:
|
||||
'We currently only support verified email. Your user base may contain a large number of poor-quality email addresses if no validation.',
|
||||
password_auth:
|
||||
'This is essential as you have enabled the option to set a password during the sign-up process.',
|
||||
verification_code_auth:
|
||||
'This is essential as you have only enabled the option to provide verification code when signing up. You’re free to uncheck the box when password set-up is allowed at the sign-up process.',
|
||||
delete_sign_in_method:
|
||||
'This is essential as you have selected {{identifier}} as a required identifier.',
|
||||
},
|
||||
},
|
||||
others: {
|
||||
terms_of_use: {
|
||||
title: 'TERMS',
|
||||
terms_of_use: 'Terms of use URL',
|
||||
terms_of_use_placeholder: 'https://your.terms.of.use/',
|
||||
privacy_policy: 'Privacy policy URL',
|
||||
privacy_policy_placeholder: 'https://your.privacy.policy/',
|
||||
},
|
||||
languages: {
|
||||
title: 'LANGUAGES',
|
||||
enable_auto_detect: 'Enable auto-detect',
|
||||
description:
|
||||
"Your software detects the user's locale setting and switches to the local language. You can add new languages by translating UI from English to another language.",
|
||||
manage_language: 'Manage language',
|
||||
default_language: 'Default language',
|
||||
default_language_description_auto:
|
||||
'The default language will be used when the detected user language isn’t covered in the current language library.',
|
||||
default_language_description_fixed:
|
||||
'When auto-detect is off, the default language is the only language your software will show. Turn on auto-detect for language extension.',
|
||||
},
|
||||
manage_language: {
|
||||
title: 'Manage language',
|
||||
subtitle:
|
||||
'Localize the product experience by adding languages and translations. Your contribution can be set as the default language.',
|
||||
add_language: 'Add Language',
|
||||
logto_provided: 'Logto provided',
|
||||
key: 'Key',
|
||||
logto_source_values: 'Logto source values',
|
||||
custom_values: 'Custom values',
|
||||
clear_all_tip: 'Clear all values',
|
||||
unsaved_description: 'Changes won’t be saved if you leave this page without saving.',
|
||||
deletion_tip: 'Delete the language',
|
||||
deletion_title: 'Do you want to delete the added language?',
|
||||
deletion_description:
|
||||
'After deletion, your users won’t be able to browse in that language again.',
|
||||
default_language_deletion_title: 'Default language can’t be deleted.',
|
||||
default_language_deletion_description:
|
||||
'{{language}} is set as your default language and can’t be deleted. ',
|
||||
},
|
||||
advanced_options: {
|
||||
title: 'ADVANCED OPTIONS',
|
||||
enable_user_registration: 'Enable user registration',
|
||||
enable_user_registration_description:
|
||||
'Enable or disallow user registration. Once disabled, users can still be added in the admin console but users can no longer establish accounts through the sign-in UI.',
|
||||
},
|
||||
},
|
||||
setup_warning: {
|
||||
no_connector_sms:
|
||||
'No SMS connector set-up yet. Before completing the configuration, users will not be able to sign in with this method. <a>{{link}}</a> in "Connectors"',
|
||||
no_connector_email:
|
||||
'No email connector set-up yet. Before completing the configuration, users will not be able to sign in with this method. <a>{{link}}</a> in "Connectors"',
|
||||
no_connector_social:
|
||||
'No social connector set-up yet. Before completing the configuration, users will not be able to sign in with this method. <a>{{link}}</a> in "Connectors"',
|
||||
no_added_social_connector:
|
||||
'You’ve set up a few social connectors now. Make sure to add some to your sign in experience.',
|
||||
setup_link: 'Set up',
|
||||
},
|
||||
save_alert: {
|
||||
description:
|
||||
'You are implementing new sign-in and sign-up procedures. All of your users may be affected by the new set-up. Are you sure to commit to the change?',
|
||||
before: 'Before',
|
||||
after: 'After',
|
||||
sign_up: 'Sign-up',
|
||||
sign_in: 'Sign-in',
|
||||
social: 'Social',
|
||||
},
|
||||
preview: {
|
||||
title: 'Sign-in preview',
|
||||
live_preview: 'Live preview',
|
||||
live_preview_tip: 'Save to preview changes',
|
||||
native: 'Native',
|
||||
desktop_web: 'Desktop Web',
|
||||
mobile_web: 'Mobile Web',
|
||||
},
|
||||
};
|
||||
|
||||
export default sign_in_exp;
|
|
@ -0,0 +1,85 @@
|
|||
import others from './others.js';
|
||||
import sign_up_and_sign_in from './sign-up-and-sign-in.js';
|
||||
|
||||
const sign_in_exp = {
|
||||
page_title: 'Sign-in experience',
|
||||
title: 'Sign-in experience',
|
||||
description: 'Customize the sign in UI to match your brand and view in real time',
|
||||
tabs: {
|
||||
branding: 'Branding',
|
||||
sign_up_and_sign_in: 'Sign up and Sign in',
|
||||
others: 'Others',
|
||||
},
|
||||
welcome: {
|
||||
title: 'Customize sign-in experience',
|
||||
description:
|
||||
'Get started fast with your first sign-in setup. This guide walks you through all the necessary settings.',
|
||||
get_started: 'Get Started',
|
||||
apply_remind:
|
||||
'Please note that sign-in experience will apply to all applications under this account.',
|
||||
},
|
||||
color: {
|
||||
title: 'COLOR',
|
||||
primary_color: 'Brand color',
|
||||
dark_primary_color: 'Brand color (Dark)',
|
||||
dark_mode: 'Enable dark mode',
|
||||
dark_mode_description:
|
||||
'Your app will have an auto-generated dark mode theme based on your brand color and Logto algorithm. You are free to customize.',
|
||||
dark_mode_reset_tip: 'Recalculate dark mode color based on brand color.',
|
||||
reset: 'Recalculate',
|
||||
},
|
||||
branding: {
|
||||
title: 'BRANDING AREA',
|
||||
ui_style: 'Style',
|
||||
favicon: 'Favicon',
|
||||
logo_image_url: 'App logo image URL',
|
||||
logo_image_url_placeholder: 'https://your.cdn.domain/logo.png',
|
||||
dark_logo_image_url: 'App logo image URL (Dark)',
|
||||
dark_logo_image_url_placeholder: 'https://your.cdn.domain/logo-dark.png',
|
||||
logo_image: 'App logo',
|
||||
dark_logo_image: 'App logo (Dark)',
|
||||
logo_image_error: 'App logo: {{error}}',
|
||||
favicon_error: 'Favicon: {{error}}',
|
||||
},
|
||||
custom_css: {
|
||||
title: 'Custom CSS',
|
||||
css_code_editor_title: 'Personalize your UI with Custom CSS',
|
||||
css_code_editor_description1: 'See the example of Custom CSS.',
|
||||
css_code_editor_description2: '<a>{{link}}</a>',
|
||||
css_code_editor_description_link_content: 'Learn more',
|
||||
css_code_editor_content_placeholder:
|
||||
'Enter your custom CSS to tailor the styles of anything to your exact specifications. Express your creativity and make your UI stand out.',
|
||||
},
|
||||
sign_up_and_sign_in,
|
||||
others,
|
||||
setup_warning: {
|
||||
no_connector_sms:
|
||||
'No SMS connector set-up yet. Before completing the configuration, users will not be able to sign in with this method. <a>{{link}}</a> in "Connectors"',
|
||||
no_connector_email:
|
||||
'No email connector set-up yet. Before completing the configuration, users will not be able to sign in with this method. <a>{{link}}</a> in "Connectors"',
|
||||
no_connector_social:
|
||||
'No social connector set-up yet. Before completing the configuration, users will not be able to sign in with this method. <a>{{link}}</a> in "Connectors"',
|
||||
no_added_social_connector:
|
||||
'You’ve set up a few social connectors now. Make sure to add some to your sign in experience.',
|
||||
setup_link: 'Set up',
|
||||
},
|
||||
save_alert: {
|
||||
description:
|
||||
'You are implementing new sign-in and sign-up procedures. All of your users may be affected by the new set-up. Are you sure to commit to the change?',
|
||||
before: 'Before',
|
||||
after: 'After',
|
||||
sign_up: 'Sign-up',
|
||||
sign_in: 'Sign-in',
|
||||
social: 'Social',
|
||||
},
|
||||
preview: {
|
||||
title: 'Sign-in preview',
|
||||
live_preview: 'Live preview',
|
||||
live_preview_tip: 'Save to preview changes',
|
||||
native: 'Native',
|
||||
desktop_web: 'Desktop Web',
|
||||
mobile_web: 'Mobile Web',
|
||||
},
|
||||
};
|
||||
|
||||
export default sign_in_exp;
|
|
@ -0,0 +1,48 @@
|
|||
const others = {
|
||||
terms_of_use: {
|
||||
title: 'TERMS',
|
||||
terms_of_use: 'Terms of use URL',
|
||||
terms_of_use_placeholder: 'https://your.terms.of.use/',
|
||||
privacy_policy: 'Privacy policy URL',
|
||||
privacy_policy_placeholder: 'https://your.privacy.policy/',
|
||||
},
|
||||
languages: {
|
||||
title: 'LANGUAGES',
|
||||
enable_auto_detect: 'Enable auto-detect',
|
||||
description:
|
||||
"Your software detects the user's locale setting and switches to the local language. You can add new languages by translating UI from English to another language.",
|
||||
manage_language: 'Manage language',
|
||||
default_language: 'Default language',
|
||||
default_language_description_auto:
|
||||
'The default language will be used when the detected user language isn’t covered in the current language library.',
|
||||
default_language_description_fixed:
|
||||
'When auto-detect is off, the default language is the only language your software will show. Turn on auto-detect for language extension.',
|
||||
},
|
||||
manage_language: {
|
||||
title: 'Manage language',
|
||||
subtitle:
|
||||
'Localize the product experience by adding languages and translations. Your contribution can be set as the default language.',
|
||||
add_language: 'Add Language',
|
||||
logto_provided: 'Logto provided',
|
||||
key: 'Key',
|
||||
logto_source_values: 'Logto source values',
|
||||
custom_values: 'Custom values',
|
||||
clear_all_tip: 'Clear all values',
|
||||
unsaved_description: 'Changes won’t be saved if you leave this page without saving.',
|
||||
deletion_tip: 'Delete the language',
|
||||
deletion_title: 'Do you want to delete the added language?',
|
||||
deletion_description:
|
||||
'After deletion, your users won’t be able to browse in that language again.',
|
||||
default_language_deletion_title: 'Default language can’t be deleted.',
|
||||
default_language_deletion_description:
|
||||
'{{language}} is set as your default language and can’t be deleted. ',
|
||||
},
|
||||
advanced_options: {
|
||||
title: 'ADVANCED OPTIONS',
|
||||
enable_user_registration: 'Enable user registration',
|
||||
enable_user_registration_description:
|
||||
'Enable or disallow user registration. Once disabled, users can still be added in the admin console but users can no longer establish accounts through the sign-in UI.',
|
||||
},
|
||||
};
|
||||
|
||||
export default others;
|
|
@ -0,0 +1,57 @@
|
|||
const sign_up_and_sign_in = {
|
||||
identifiers_email: 'Email address',
|
||||
identifiers_phone: 'Phone number',
|
||||
identifiers_username: 'Username',
|
||||
identifiers_email_or_sms: 'Email address or phone number',
|
||||
identifiers_none: 'Not applicable',
|
||||
and: 'and',
|
||||
or: 'or',
|
||||
sign_up: {
|
||||
title: 'SIGN UP',
|
||||
sign_up_identifier: 'Sign-up identifier',
|
||||
identifier_description:
|
||||
'The sign-up identifier is required for account creation and must be included in your sign-in screen.',
|
||||
sign_up_authentication: 'Authentication setting for sign-up',
|
||||
authentication_description:
|
||||
'All selected actions will be obligatory for users to complete the flow.',
|
||||
set_a_password_option: 'Create your password',
|
||||
verify_at_sign_up_option: 'Verify at sign-up',
|
||||
social_only_creation_description: '(This apply to social only account creation)',
|
||||
},
|
||||
sign_in: {
|
||||
title: 'SIGN IN',
|
||||
sign_in_identifier_and_auth: 'Identifier and authentication settings for sign-in',
|
||||
description:
|
||||
'Users can sign in using any of the options available. Adjust the layout by drag and dropping below options.',
|
||||
add_sign_in_method: 'Add Sign-in Method',
|
||||
password_auth: 'Password',
|
||||
verification_code_auth: 'Verification code',
|
||||
auth_swap_tip: 'Swap the options below to determine which appears first in the flow.',
|
||||
require_auth_factor: 'You have to select at least one authentication factor.',
|
||||
},
|
||||
social_sign_in: {
|
||||
title: 'SOCIAL SIGN-IN',
|
||||
social_sign_in: 'Social sign-in',
|
||||
description:
|
||||
'Depending on the mandatory identifier you set up, your user may be asked to provide an identifier when signing up via social connector.',
|
||||
add_social_connector: 'Add Social Connector',
|
||||
set_up_hint: {
|
||||
not_in_list: 'Not in the list?',
|
||||
set_up_more: 'Set up',
|
||||
go_to: 'other social connectors now.',
|
||||
},
|
||||
},
|
||||
tip: {
|
||||
set_a_password: 'A unique set of a password to your username is a must.',
|
||||
verify_at_sign_up:
|
||||
'We currently only support verified email. Your user base may contain a large number of poor-quality email addresses if no validation.',
|
||||
password_auth:
|
||||
'This is essential as you have enabled the option to set a password during the sign-up process.',
|
||||
verification_code_auth:
|
||||
'This is essential as you have only enabled the option to provide verification code when signing up. You’re free to uncheck the box when password set-up is allowed at the sign-up process.',
|
||||
delete_sign_in_method:
|
||||
'This is essential as you have selected {{identifier}} as a required identifier.',
|
||||
},
|
||||
};
|
||||
|
||||
export default sign_up_and_sign_in;
|
|
@ -1,9 +1,9 @@
|
|||
import type { LocalPhrase } from '../../types.js';
|
||||
import type { LocalePhrase } from '../../types.js';
|
||||
|
||||
import errors from './errors.js';
|
||||
import translation from './translation/index.js';
|
||||
|
||||
const fr: LocalPhrase = Object.freeze({
|
||||
const fr: LocalePhrase = Object.freeze({
|
||||
translation,
|
||||
errors,
|
||||
});
|
||||
|
|
12
packages/phrases/src/locales/ja/errors/auth.ts
Normal file
12
packages/phrases/src/locales/ja/errors/auth.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
const auth = {
|
||||
authorization_header_missing: 'Authorizationヘッダーがありません。',
|
||||
authorization_token_type_not_supported: '認証タイプはサポートされていません。',
|
||||
unauthorized: '未承認です。資格情報とそのスコープを確認してください。',
|
||||
forbidden: 'アクセスが拒否されました。ユーザーの役割と権限を確認してください。',
|
||||
expected_role_not_found:
|
||||
'期待される役割が見つかりませんでした。ユーザーの役割と権限を確認してください。',
|
||||
jwt_sub_missing: 'JWT内に`sub`がありません。',
|
||||
require_re_authentication: '保護されたアクションを実行するには再認証が必要です。',
|
||||
};
|
||||
|
||||
export default auth;
|
36
packages/phrases/src/locales/ja/errors/connector.ts
Normal file
36
packages/phrases/src/locales/ja/errors/connector.ts
Normal file
|
@ -0,0 +1,36 @@
|
|||
const connector = {
|
||||
general: 'コネクタでエラーが発生しました:{{errorDescription}}',
|
||||
not_found: 'タイプ:{{type}}に利用可能なコネクタが見つかりません。',
|
||||
not_enabled: 'コネクタが有効ではありません。',
|
||||
invalid_metadata: 'コネクタのメタデータが無効です。',
|
||||
invalid_config_guard: 'コネクタの設定ガードが無効です。',
|
||||
unexpected_type: 'コネクタのタイプが予期しないものです。 ',
|
||||
invalid_request_parameters: 'リクエストに誤った入力パラメータが含まれています。',
|
||||
insufficient_request_parameters: 'リクエストには、入力パラメータが不足している可能性があります。',
|
||||
invalid_config: 'コネクタの設定が無効です。',
|
||||
invalid_response: 'コネクタのレスポンスが無効です。',
|
||||
template_not_found: 'コネクタ構成から正しいテンプレートを見つけることができませんでした。',
|
||||
not_implemented: '{{method}}:まだ実装されていません。',
|
||||
social_invalid_access_token: 'コネクタのアクセストークンが無効です。',
|
||||
invalid_auth_code: 'コネクタの認証コードが無効です。',
|
||||
social_invalid_id_token: 'コネクタのIDトークンが無効です。',
|
||||
authorization_failed: 'ユーザーの認証プロセスが失敗しました。',
|
||||
social_auth_code_invalid: 'アクセストークンを取得できません。承認コードを確認してください。',
|
||||
more_than_one_sms: 'SMSコネクタの数が1より大きいです。',
|
||||
more_than_one_email: '電子メールコネクタの数が1より大きいです。',
|
||||
more_than_one_connector_factory:
|
||||
'複数のコネクタファクトリ(ID:{{connectorIds}})が見つかりました。必要のないものはアンインストールできます。',
|
||||
db_connector_type_mismatch: 'DBには、タイプに一致しないコネクタがあります。',
|
||||
not_found_with_connector_id: '指定された標準コネクタIDでコネクタを見つけることができません。',
|
||||
multiple_instances_not_supported: '選択した標準コネクタで複数のインスタンスを作成できません。',
|
||||
invalid_type_for_syncing_profile:
|
||||
'ソーシャルコネクタを使用してユーザープロファイルを同期できます。',
|
||||
can_not_modify_target: 'コネクタの「ターゲット」を変更できません。',
|
||||
should_specify_target: "'target'を指定する必要があります。",
|
||||
multiple_target_with_same_platform:
|
||||
'同じターゲットとプラットフォームを持つ複数のソーシャルコネクタを持つことはできません。',
|
||||
cannot_overwrite_metadata_for_non_standard_connector:
|
||||
'このコネクタの「メタデータ」は上書きできません。',
|
||||
};
|
||||
|
||||
export default connector;
|
8
packages/phrases/src/locales/ja/errors/entity.ts
Normal file
8
packages/phrases/src/locales/ja/errors/entity.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
const entity = {
|
||||
create_failed: '{{name}}の作成に失敗しました。',
|
||||
not_exists: '{{name}}は存在しません。',
|
||||
not_exists_with_id: 'IDが`{{id}}`の{{name}}は存在しません。',
|
||||
not_found: 'リソースが存在しません。',
|
||||
};
|
||||
|
||||
export default entity;
|
9
packages/phrases/src/locales/ja/errors/guard.ts
Normal file
9
packages/phrases/src/locales/ja/errors/guard.ts
Normal file
|
@ -0,0 +1,9 @@
|
|||
const guard = {
|
||||
invalid_input: 'リクエスト{{type}}が無効です。',
|
||||
invalid_pagination: 'リクエストのページネーション値が無効です。',
|
||||
can_not_get_tenant_id: 'リクエストからテナントIDを取得できません。',
|
||||
file_size_exceeded: 'ファイルサイズが超過しました。',
|
||||
mime_type_not_allowed: 'MIMEタイプが許可されていません。',
|
||||
};
|
||||
|
||||
export default guard;
|
39
packages/phrases/src/locales/ja/errors/index.ts
Normal file
39
packages/phrases/src/locales/ja/errors/index.ts
Normal file
|
@ -0,0 +1,39 @@
|
|||
import auth from './auth.js';
|
||||
import connector from './connector.js';
|
||||
import entity from './entity.js';
|
||||
import guard from './guard.js';
|
||||
import localization from './localization.js';
|
||||
import log from './log.js';
|
||||
import oidc from './oidc.js';
|
||||
import password from './password.js';
|
||||
import request from './request.js';
|
||||
import role from './role.js';
|
||||
import scope from './scope.js';
|
||||
import session from './session.js';
|
||||
import sign_in_experiences from './sign-in-experiences.js';
|
||||
import storage from './storage.js';
|
||||
import swagger from './swagger.js';
|
||||
import user from './user.js';
|
||||
import verification_code from './verification-code.js';
|
||||
|
||||
const errors = {
|
||||
request,
|
||||
auth,
|
||||
guard,
|
||||
oidc,
|
||||
user,
|
||||
password,
|
||||
session,
|
||||
connector,
|
||||
verification_code,
|
||||
sign_in_experiences,
|
||||
localization,
|
||||
swagger,
|
||||
entity,
|
||||
log,
|
||||
role,
|
||||
scope,
|
||||
storage,
|
||||
};
|
||||
|
||||
export default errors;
|
8
packages/phrases/src/locales/ja/errors/localization.ts
Normal file
8
packages/phrases/src/locales/ja/errors/localization.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
const localization = {
|
||||
cannot_delete_default_language:
|
||||
'{{languageTag}}はデフォルト言語として設定されており、削除できません。',
|
||||
invalid_translation_structure:
|
||||
'データスキーマが無効です。入力を確認して、もう一度お試しください。',
|
||||
};
|
||||
|
||||
export default localization;
|
5
packages/phrases/src/locales/ja/errors/log.ts
Normal file
5
packages/phrases/src/locales/ja/errors/log.ts
Normal file
|
@ -0,0 +1,5 @@
|
|||
const log = {
|
||||
invalid_type: 'ログタイプが無効です。',
|
||||
};
|
||||
|
||||
export default log;
|
20
packages/phrases/src/locales/ja/errors/oidc.ts
Normal file
20
packages/phrases/src/locales/ja/errors/oidc.ts
Normal file
|
@ -0,0 +1,20 @@
|
|||
const oidc = {
|
||||
aborted: 'エンドユーザが操作を中止しました。',
|
||||
invalid_scope: 'スコープ{{scope}}はサポートされていません。',
|
||||
invalid_scope_plural: 'スコープ{{scopes}}はサポートされていません。',
|
||||
invalid_token: '提供されたトークンが無効です。',
|
||||
invalid_client_metadata: '提供されたクライアントメタデータが無効です。',
|
||||
insufficient_scope: 'アクセストークンに要求されたスコープ{{scopes}}が含まれていません。',
|
||||
invalid_request: 'リクエストが無効です。',
|
||||
invalid_grant: '付与要求が無効です。',
|
||||
invalid_redirect_uri:
|
||||
'`` `redirect_uri`` `は、クライアントの登録された一つにも一致しませんでした```redirect_uris`。',
|
||||
access_denied: 'アクセスが拒否されました。',
|
||||
invalid_target: '無効なリソース指示子です。',
|
||||
unsupported_grant_type: '要求された`grant_type`はサポートされていません。',
|
||||
unsupported_response_mode: '要求された`response_mode`はサポートされていません。',
|
||||
unsupported_response_type: '要求された`response_type`はサポートされていません。',
|
||||
provider_error: 'OIDC内部エラー:{{message}}。',
|
||||
};
|
||||
|
||||
export default oidc;
|
6
packages/phrases/src/locales/ja/errors/password.ts
Normal file
6
packages/phrases/src/locales/ja/errors/password.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
const password = {
|
||||
unsupported_encryption_method: '暗号化方式 {{name}} はサポートされていません。',
|
||||
pepper_not_found: 'パスワードペッパーが見つかりません。コアの環境を確認してください。',
|
||||
};
|
||||
|
||||
export default password;
|
6
packages/phrases/src/locales/ja/errors/request.ts
Normal file
6
packages/phrases/src/locales/ja/errors/request.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
const request = {
|
||||
invalid_input: '入力が無効です。 {{details}}',
|
||||
general: 'リクエストエラーが発生しました。',
|
||||
};
|
||||
|
||||
export default request;
|
11
packages/phrases/src/locales/ja/errors/role.ts
Normal file
11
packages/phrases/src/locales/ja/errors/role.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
const role = {
|
||||
name_in_use: 'このロール名{{name}}はすでに使用されています',
|
||||
scope_exists: 'スコープID {{scopeId}}はすでにこのロールに追加されています',
|
||||
user_exists: 'ユーザーID{{userId}}はすでにこのロールに追加されています',
|
||||
default_role_missing:
|
||||
'データベースにデフォルトロール名が存在しないものがあります。ロールを作成してください',
|
||||
internal_role_violation:
|
||||
'Logtoによって許可されていない内部ロールの更新または削除を試みている可能性があります。新しいロールを作成する場合は、「#internal:」で始まる別の名前を試してください。',
|
||||
};
|
||||
|
||||
export default role;
|
6
packages/phrases/src/locales/ja/errors/scope.ts
Normal file
6
packages/phrases/src/locales/ja/errors/scope.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
const scope = {
|
||||
name_exists: 'スコープ名 {{name}} は既に使用されています',
|
||||
name_with_space: 'スコープの名前にはスペースを含めることはできません。',
|
||||
};
|
||||
|
||||
export default scope;
|
24
packages/phrases/src/locales/ja/errors/session.ts
Normal file
24
packages/phrases/src/locales/ja/errors/session.ts
Normal file
|
@ -0,0 +1,24 @@
|
|||
const session = {
|
||||
not_found: 'セッションが見つかりません。戻って再度サインインしてください。',
|
||||
invalid_credentials: 'アカウントまたはパスワードが正しくありません。入力内容を確認してください。',
|
||||
invalid_sign_in_method: '現在のサインイン方法は利用できません。',
|
||||
invalid_connector_id: '利用可能なid {{connectorId}} のコネクタが見つかりません。',
|
||||
insufficient_info: '十分なサインイン情報がありません。',
|
||||
connector_id_mismatch: 'コネクタIDがセッションレコードと一致しません。',
|
||||
connector_session_not_found:
|
||||
'コネクタセッションが見つかりません。戻って再度サインインしてください。',
|
||||
verification_session_not_found:
|
||||
'検証が成功しませんでした。検証フローを再開してもう一度やり直してください。',
|
||||
verification_expired:
|
||||
'接続がタイムアウトしました。アカウントの安全性を確保するために再度検証してください。',
|
||||
unauthorized: '最初にサインインしてください。',
|
||||
unsupported_prompt_name: 'サポートされていないプロンプト名です。',
|
||||
forgot_password_not_enabled: 'パスワードを忘れた場合の対処が有効になっていません。',
|
||||
verification_failed: '検証が成功しませんでした。検証フローを再開してもう一度やり直してください。',
|
||||
connector_validation_session_not_found: 'トークン検証用のコネクタセッションが見つかりません。',
|
||||
identifier_not_found: 'ユーザーIDが見つかりません。戻って再度サインインしてください。',
|
||||
interaction_not_found:
|
||||
'インタラクションセッションが見つかりません。戻ってセッションを開始してください。',
|
||||
};
|
||||
|
||||
export default session;
|
|
@ -0,0 +1,23 @@
|
|||
const sign_in_experiences = {
|
||||
empty_content_url_of_terms_of_use:
|
||||
'「利用規約」のコンテンツURLが空です。「利用規約」が有効になっている場合は、コンテンツURLを追加してください。',
|
||||
empty_social_connectors:
|
||||
'「ソーシャルサインイン」方式が有効な場合は、有効なソーシャルコネクタを追加してください。',
|
||||
enabled_connector_not_found: '{{type}}コネクタが見つかりません。',
|
||||
not_one_and_only_one_primary_sign_in_method:
|
||||
'主要なサインイン方式は1つだけにしてください。入力内容を確認してください。',
|
||||
username_requires_password:
|
||||
'ユーザー名のサインアップ識別子にはパスワードを設定する必要があります。',
|
||||
passwordless_requires_verify:
|
||||
'Eメール/電話番号サインアップ識別子には、検証を有効にする必要があります。',
|
||||
miss_sign_up_identifier_in_sign_in:
|
||||
'サインイン方式にはサインアップ識別子を含める必要があります。',
|
||||
password_sign_in_must_be_enabled:
|
||||
'サインアップ時にパスワードが必要な場合、パスワードサインインを有効にする必要があります。',
|
||||
code_sign_in_must_be_enabled:
|
||||
'サインアップ時にパスワードが不要な場合、検証コードサインインを有効にする必要があります。',
|
||||
unsupported_default_language: 'この言語- {{language}} は、現時点ではサポートされていません。',
|
||||
at_least_one_authentication_factor: '認証ファクタを1つ以上選択する必要があります。',
|
||||
};
|
||||
|
||||
export default sign_in_experiences;
|
7
packages/phrases/src/locales/ja/errors/storage.ts
Normal file
7
packages/phrases/src/locales/ja/errors/storage.ts
Normal file
|
@ -0,0 +1,7 @@
|
|||
const storage = {
|
||||
not_configured: 'ストレージプロバイダが設定されていません。',
|
||||
missing_parameter: 'ストレージプロバイダの{{parameter}}が欠落しています。',
|
||||
upload_error: 'ファイルのアップロードに失敗しました。',
|
||||
};
|
||||
|
||||
export default storage;
|
7
packages/phrases/src/locales/ja/errors/swagger.ts
Normal file
7
packages/phrases/src/locales/ja/errors/swagger.ts
Normal file
|
@ -0,0 +1,7 @@
|
|||
const swagger = {
|
||||
invalid_zod_type: 'Zodのタイプが無効です。ルートガード構成を確認してください。',
|
||||
not_supported_zod_type_for_params:
|
||||
'パラメータにサポートされていないZodタイプがあります。ルートガード構成を確認してください。',
|
||||
};
|
||||
|
||||
export default swagger;
|
33
packages/phrases/src/locales/ja/errors/user.ts
Normal file
33
packages/phrases/src/locales/ja/errors/user.ts
Normal file
|
@ -0,0 +1,33 @@
|
|||
const user = {
|
||||
username_already_in_use: 'このユーザー名はすでに使用されています。',
|
||||
email_already_in_use: 'このメールアドレスは既に別のアカウントに関連付けされています。',
|
||||
phone_already_in_use: 'この電話番号は既に別のアカウントに関連付けされています。',
|
||||
invalid_email: '無効なメールアドレスです。',
|
||||
invalid_phone: '無効な電話番号です。',
|
||||
email_not_exist: 'このメールアドレスは登録されていません。',
|
||||
phone_not_exist: 'この電話番号は登録されていません。',
|
||||
identity_not_exist: 'このソーシャルアカウントは登録されていません。',
|
||||
identity_already_in_use: 'このソーシャルアカウントはすでに別のアカウントに関連付けされています。',
|
||||
social_account_exists_in_profile: 'このソーシャルアカウントはすでに関連付けられています。',
|
||||
cannot_delete_self: '自分自身を削除することはできません。',
|
||||
sign_up_method_not_enabled: 'このサインアップ方法は有効化されていません。',
|
||||
sign_in_method_not_enabled: 'このサインイン方法は有効化されていません。',
|
||||
same_password: '新しいパスワードは、古いパスワードと同じであってはなりません。',
|
||||
password_required_in_profile: 'サインインする前にパスワードを設定する必要があります。',
|
||||
new_password_required_in_profile: '新しいパスワードを設定する必要があります。',
|
||||
password_exists_in_profile: 'すでにパスワードがプロフィールに存在しています。',
|
||||
username_required_in_profile: 'サインインする前にユーザー名を設定する必要があります。',
|
||||
username_exists_in_profile: 'すでにユーザー名がプロフィールに存在しています。',
|
||||
email_required_in_profile: 'サインインする前にメールアドレスを追加する必要があります。',
|
||||
email_exists_in_profile: 'すでにメールアドレスがプロフィールに関連付けられています。',
|
||||
phone_required_in_profile: 'サインインする前に電話番号を追加する必要があります。',
|
||||
phone_exists_in_profile: 'すでに電話番号がプロフィールに関連付けられています。',
|
||||
email_or_phone_required_in_profile:
|
||||
'サインインする前にメールアドレスまたは電話番号を追加する必要があります。',
|
||||
suspended: 'このアカウントは停止されています。',
|
||||
user_not_exist: '{{ identifier }}を持つユーザーは存在しません。',
|
||||
missing_profile: 'サインインする前に追加情報を提供する必要があります。',
|
||||
role_exists: 'このユーザーには既に役割ID {{roleId}}が追加されています。',
|
||||
};
|
||||
|
||||
export default user;
|
12
packages/phrases/src/locales/ja/errors/verification-code.ts
Normal file
12
packages/phrases/src/locales/ja/errors/verification-code.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
const verification_code = {
|
||||
phone_email_empty: '電話番号とEメールの両方が空です。',
|
||||
not_found: '検証コードが見つかりません。先に検証コードを送信してください。',
|
||||
phone_mismatch: '電話番号が一致しません。新しい検証コードをリクエストしてください。',
|
||||
email_mismatch: 'Eメールが一致しません。新しい検証コードをリクエストしてください。',
|
||||
code_mismatch: '無効な検証コードです。',
|
||||
expired: '検証コードの有効期限が切れました。新しい検証コードをリクエストしてください。',
|
||||
exceed_max_try:
|
||||
'検証コードのリトライ上限を超えました。新しい検証コードをリクエストしてください。',
|
||||
};
|
||||
|
||||
export default verification_code;
|
9
packages/phrases/src/locales/ja/index.ts
Normal file
9
packages/phrases/src/locales/ja/index.ts
Normal file
|
@ -0,0 +1,9 @@
|
|||
import errors from './errors/index.js';
|
||||
import translation from './translation/index.js';
|
||||
|
||||
const en = Object.freeze({
|
||||
translation,
|
||||
errors,
|
||||
});
|
||||
|
||||
export default en;
|
|
@ -0,0 +1,32 @@
|
|||
const api_resource_details = {
|
||||
page_title: 'API Resource details', // UNTRANSLATED
|
||||
back_to_api_resources: 'APIリソースに戻る',
|
||||
settings_tab: '設定',
|
||||
permissions_tab: '権限',
|
||||
settings: '設定',
|
||||
settings_description:
|
||||
'APIリソース、またはリソースインジケータは、通常、リソースの識別子を表すURI形式の変数を表します。',
|
||||
token_expiration_time_in_seconds: 'トークンの有効期限(秒単位)',
|
||||
token_expiration_time_in_seconds_placeholder: 'トークンの有効期限を入力してください',
|
||||
delete_description:
|
||||
'この操作は元に戻すことはできません。APIリソースを完全に削除します。削除を確認するために、APIリソース名を入力してください。 <span>{{name}}</span>',
|
||||
enter_your_api_resource_name: 'APIリソース名を入力してください',
|
||||
api_resource_deleted: 'APIリソース {{name}} が正常に削除されました',
|
||||
permission: {
|
||||
create_button: '権限を作成',
|
||||
create_title: '権限の作成',
|
||||
create_subtitle: 'このAPIで必要な権限(スコープ)を定義します。',
|
||||
confirm_create: '権限を作成',
|
||||
name: '権限名',
|
||||
name_placeholder: 'read:resource',
|
||||
forbidden_space_in_name: '権限名にはスペースを含めることはできません。',
|
||||
description: '説明',
|
||||
description_placeholder: 'リソースを読み込むことができます',
|
||||
permission_created: '権限 {{name}} が正常に作成されました',
|
||||
delete_description:
|
||||
'この権限が削除されると、この権限を持っていたユーザーはそれによって与えられたアクセスを失います。',
|
||||
deleted: '権限 "{{name}}" が正常に削除されました!',
|
||||
},
|
||||
};
|
||||
|
||||
export default api_resource_details;
|
|
@ -0,0 +1,15 @@
|
|||
const api_resources = {
|
||||
page_title: 'APIリソース',
|
||||
title: 'APIリソース',
|
||||
subtitle: '承認されたアプリケーションが利用できるAPIを定義',
|
||||
create: 'APIリソースを作成',
|
||||
api_name: 'API名',
|
||||
api_name_placeholder: 'API名を入力してください',
|
||||
api_identifier: 'API識別子',
|
||||
api_identifier_tip:
|
||||
'APIリソースの一意の識別子です。絶対URIで、フラグメント(#)コンポーネントはありません。OAuth 2.0での<a>resource parameter</a>に等しいです。',
|
||||
api_resource_created: 'APIリソース{{name}}が正常に作成されました',
|
||||
api_identifier_placeholder: 'https://your-api-identifier/',
|
||||
};
|
||||
|
||||
export default api_resources;
|
|
@ -0,0 +1,51 @@
|
|||
const application_details = {
|
||||
page_title: 'Application details', // UNTRANSLATED
|
||||
back_to_applications: 'アプリケーションに戻る',
|
||||
check_guide: 'ガイドを確認',
|
||||
settings: '設定',
|
||||
settings_description:
|
||||
'アプリケーションは、Logto for OIDC、サインインエクスペリエンス、監査ログなどでアプリケーションを識別するために使用されます。',
|
||||
advanced_settings: '高度な設定',
|
||||
advanced_settings_description:
|
||||
'高度な設定にはOIDC関連用語が含まれます。詳細については、トークンエンドポイントを確認してください。',
|
||||
application_name: 'アプリケーション名',
|
||||
application_name_placeholder: '私のアプリ',
|
||||
description: '説明',
|
||||
description_placeholder: 'アプリケーションの説明を入力してください',
|
||||
authorization_endpoint: '認可エンドポイント',
|
||||
authorization_endpoint_tip:
|
||||
'認証と認可を実行するエンドポイントです。 OpenID Connectの<a>認証</a>に使用されます。',
|
||||
application_id: 'アプリID',
|
||||
application_id_tip:
|
||||
'通常Logtoによって生成される一意のアプリケーション識別子です。 OpenID Connectでは「<a>client_id</a>」とも呼ばれます。',
|
||||
application_secret: 'アプリのシークレット',
|
||||
redirect_uri: 'リダイレクトURI',
|
||||
redirect_uris: 'リダイレクトURI',
|
||||
redirect_uri_placeholder: 'https://your.website.com/app',
|
||||
redirect_uri_placeholder_native: 'io.logto://callback',
|
||||
redirect_uri_tip:
|
||||
'ユーザーがサインイン(成功した場合も失敗した場合も)した後にリダイレクトされるURIです。詳細については、OpenID Connectの<a>AuthRequest</a>を参照してください。',
|
||||
post_sign_out_redirect_uri: 'サインアウト後のリダイレクトURI',
|
||||
post_sign_out_redirect_uris: 'サインアウト後のリダイレクトURI',
|
||||
post_sign_out_redirect_uri_placeholder: 'https://your.website.com/home',
|
||||
post_sign_out_redirect_uri_tip:
|
||||
'ユーザーのサインアウト後にリダイレクトされるURIです(オプション)。一部のアプリケーションタイプでは実質的な効果がない可能性があります。',
|
||||
cors_allowed_origins: 'CORS許可されたオリジン',
|
||||
cors_allowed_origins_placeholder: 'https://your.website.com',
|
||||
cors_allowed_origins_tip:
|
||||
'デフォルトでは、リダイレクトURIのすべてのオリジンが許可されます。通常、このフィールドでは何も行動を必要としません。これについての詳細情報は<a>MDN doc</a>を参照してください。',
|
||||
id_token_expiration: 'IDトークンの有効期限',
|
||||
refresh_token_expiration: 'リフレッシュトークンの有効期限',
|
||||
token_endpoint: 'トークンエンドポイント',
|
||||
user_info_endpoint: 'ユーザー情報エンドポイント',
|
||||
enable_admin_access: '管理者アクセスを有効にする',
|
||||
enable_admin_access_label:
|
||||
'管理APIへのアクセスを有効または無効にします。有効にすると、アクセストークンを使用してこのアプリケーションを代表して管理APIを呼び出すことができます。',
|
||||
delete_description:
|
||||
'この操作は元に戻すことはできません。アプリケーション名「<span>{{name}}</span>」を入力して確認してください。',
|
||||
enter_your_application_name: 'アプリケーション名を入力してください',
|
||||
application_deleted: 'アプリケーション{{name}}が正常に削除されました',
|
||||
redirect_uri_required: 'リダイレクトURIを少なくとも1つ入力する必要があります',
|
||||
};
|
||||
|
||||
export default application_details;
|
|
@ -0,0 +1,53 @@
|
|||
const applications = {
|
||||
page_title: 'Applications', // UNTRANSLATED
|
||||
title: 'Applications', // UNTRANSLATED
|
||||
subtitle:
|
||||
'ネイティブ、シングルページ、マシン・トゥ・マシン、または従来のアプリケーションにLogto認証を設定する',
|
||||
create: 'アプリケーションを作成する',
|
||||
application_name: 'アプリケーション名',
|
||||
application_name_placeholder: '私のアプリ',
|
||||
application_description: 'アプリケーションの説明',
|
||||
application_description_placeholder: 'アプリケーションの説明を入力してください',
|
||||
select_application_type: 'アプリケーションタイプを選択してください',
|
||||
no_application_type_selected: 'まだアプリケーションタイプが選択されていません',
|
||||
application_created:
|
||||
'アプリケーション {{name}} が正常に作成されました!\n今すぐアプリケーション設定を完了してください。',
|
||||
app_id: 'アプリID',
|
||||
type: {
|
||||
native: {
|
||||
title: 'ネイティブアプリ',
|
||||
subtitle: 'ネイティブ環境で実行されるアプリケーション',
|
||||
description: '例:iOSアプリ、Androidアプリ',
|
||||
},
|
||||
spa: {
|
||||
title: 'シングルページアプリ',
|
||||
subtitle: 'Webブラウザで実行され、データを動的に更新するアプリケーション',
|
||||
description: '例:React DOMアプリ、Vueアプリ',
|
||||
},
|
||||
traditional: {
|
||||
title: '従来的なWeb',
|
||||
subtitle: 'Webサーバーのみでページをレンダリングおよび更新するアプリケーション',
|
||||
description: '例:Next.js、PHP',
|
||||
},
|
||||
machine_to_machine: {
|
||||
title: 'Machine to Machine',
|
||||
subtitle: 'リソースに直接アクセスするアプリケーション(通常はサービス)',
|
||||
description: '例:バックエンドサービス',
|
||||
},
|
||||
},
|
||||
guide: {
|
||||
get_sample_file: 'サンプルを取得する',
|
||||
header_description:
|
||||
'アプリケーションを統合するためのステップバイステップガイドに従うか、サンプルプロジェクトを取得するための適切なボタンをクリックしてください。',
|
||||
title: 'アプリケーションが正常に作成されました',
|
||||
subtitle:
|
||||
'以下の手順に従ってアプリの設定を完了してください。SDKタイプを選択して続行してください。',
|
||||
description_by_sdk:
|
||||
'このクイックスタートガイドでは、{{sdk}}アプリにLogtoを統合する方法を説明します。',
|
||||
},
|
||||
placeholder_title: '続行するにはアプリケーションタイプを選択してください',
|
||||
placeholder_description:
|
||||
'LogtoはOIDCのためにアプリケーションエンティティを使用して、アプリケーションの識別、サインインの管理、監査ログの作成などのタスクをサポートします。',
|
||||
};
|
||||
|
||||
export default applications;
|
|
@ -0,0 +1,117 @@
|
|||
const cloud = {
|
||||
welcome: {
|
||||
page_title: 'Welcome', // UNTRANSLATED
|
||||
title: 'ようこそ、あなたのLogto Cloud Previewを作成しましょう',
|
||||
description:
|
||||
'オープンソースユーザーでもクラウドユーザーでも、ショーケースを見て、Logtoのすべての価値を体験してください。Cloud PreviewはLogto Cloudの予備バージョンでもあります。',
|
||||
project_field: 'ログトを使用しています',
|
||||
project_options: {
|
||||
personal: '個人プロジェクト',
|
||||
company: '会社プロジェクト',
|
||||
},
|
||||
deployment_type_field: 'オープンソースまたはクラウドを希望しますか?',
|
||||
deployment_type_options: {
|
||||
open_source: 'オープンソース',
|
||||
cloud: 'クラウド',
|
||||
},
|
||||
},
|
||||
about: {
|
||||
page_title: 'A bit about you', // UNTRANSLATED
|
||||
title: 'あなたについて少し教えてください',
|
||||
description:
|
||||
'あなたの情報を知ることで、あなたにユニークなLogtoエクスペリエンスを提供します。あなたの情報は安全に保管されます。',
|
||||
title_field: 'あなたのタイトル',
|
||||
title_options: {
|
||||
developer: '開発者',
|
||||
team_lead: 'チームリード',
|
||||
ceo: 'CEO',
|
||||
cto: 'CTO',
|
||||
product: 'プロダクト',
|
||||
others: 'その他',
|
||||
},
|
||||
company_name_field: '会社名',
|
||||
company_name_placeholder: 'Acme.co',
|
||||
company_size_field: '会社の規模は?',
|
||||
company_options: {
|
||||
size_1: '1',
|
||||
size_2_49: '2-49',
|
||||
size_50_199: '50-199',
|
||||
size_200_999: '200-999',
|
||||
size_1000_plus: '1000+',
|
||||
},
|
||||
reason_field: 'サインアップの理由は?',
|
||||
reason_options: {
|
||||
passwordless: 'パスワードレス認証と UI キットを探したい',
|
||||
efficiency: '即時利用可能な ID インフラを探したい',
|
||||
access_control: '役割と責任に基づくユーザーアクセスを制御したい',
|
||||
multi_tenancy: 'マルチテナント製品の戦略を探しています',
|
||||
enterprise: '企業規模に向けた SSO ソリューションを探しています',
|
||||
others: 'その他',
|
||||
},
|
||||
},
|
||||
congrats: {
|
||||
page_title: 'Earn early credits', // UNTRANSLATED
|
||||
title: '素晴らしい!あなたはLogto Cloudの早期クレジットを獲得する資格があります!',
|
||||
description:
|
||||
'Logto Cloudの正式開始後、無料で60日間のサブスクリプションを楽しむチャンスを逃さないでください! 詳しくは今すぐLogtoチームにお問い合わせください。',
|
||||
check_out_button: 'ライブプレビューをチェックアウト',
|
||||
reserve_title: 'Logtoチームとの会議を予約',
|
||||
reserve_description: 'クレジットは承認された時点でのみ有効です。',
|
||||
book_button: '今すぐスケジュール',
|
||||
join_description:
|
||||
'他の開発者と接続してチャットできるパブリック<a>{{link}}</a>に参加してください。',
|
||||
discord_link: 'discordチャンネル',
|
||||
enter_admin_console: 'Logto Cloud Previewに入る',
|
||||
},
|
||||
gift: {
|
||||
title: '60日間Logto Cloudを無料で使用できます。先行者に参加しましょう!',
|
||||
description: '早期クレジットのためにLogtoチームとの一対一のセッションを予約してください。',
|
||||
reserve_title: 'Logtoチームとの会議を予約',
|
||||
reserve_description: 'クレジットは審査後にのみ有効になります。',
|
||||
book_button: '予約する',
|
||||
},
|
||||
sie: {
|
||||
page_title: 'Customize sign-in experience', // UNTRANSLATED
|
||||
title: 'まずは簡単にサインインエクスペリエンスをカスタマイズしましょう',
|
||||
inspire: {
|
||||
title: '魅力的な例を作成',
|
||||
description:
|
||||
'サインインエクスペリエンスに自信がない場合は、「Inspire Me」をクリックして、マジックが行われるのを待ちましょう!',
|
||||
inspire_me: 'インスパイア',
|
||||
},
|
||||
logo_field: 'アプリのロゴ',
|
||||
color_field: 'ブランドカラー',
|
||||
identifier_field: '識別子',
|
||||
identifier_options: {
|
||||
email: 'メール',
|
||||
phone: '電話',
|
||||
user_name: 'ユーザー名',
|
||||
},
|
||||
authn_field: '認証',
|
||||
authn_options: {
|
||||
password: 'パスワード',
|
||||
verification_code: '検証コード',
|
||||
},
|
||||
social_field: 'ソーシャルサインイン',
|
||||
finish_and_done: '完了',
|
||||
preview: {
|
||||
mobile_tab: 'モバイル',
|
||||
web_tab: 'Web',
|
||||
},
|
||||
connectors: {
|
||||
unlocked_later: '後でロックを解除',
|
||||
unlocked_later_tip:
|
||||
'オンボーディングプロセスを完了してプロダクトに入った後、より多くのソーシャルサインイン方法にアクセスできるようになります。',
|
||||
notice:
|
||||
'本番目的でのデモコネクタの使用は避けてください。テストを完了したら、デモコネクタを削除し、自分のクレデンシャルを使用して独自のコネクタを設定してください。',
|
||||
},
|
||||
},
|
||||
broadcast: '📣Logto Cloud(Preview)に入っています',
|
||||
socialCallback: {
|
||||
title: 'ログインが成功しました',
|
||||
description:
|
||||
'ソーシャルアカウントを使用して正常にサインインしました。Logtoのすべての機能にシームレスにアクセスできるようにするために、独自のソーシャルコネクタを設定することをお勧めします。',
|
||||
},
|
||||
};
|
||||
|
||||
export default cloud;
|
|
@ -0,0 +1,14 @@
|
|||
const components = {
|
||||
uploader: {
|
||||
action_description: 'ドラッグアンドドロップまたはブラウズ', // UNTRANSLATED
|
||||
uploading: 'アップロード中...', // UNTRANSLATED
|
||||
image_limit:
|
||||
'{{size, number}}KB以下のイメージをアップロードし、{{extensions, list(style: narrow; type: conjunction;)}}のみ許可します。', // UNTRANSLATED
|
||||
error_upload: 'エラーが発生しました。ファイルのアップロードに失敗しました。', // UNTRANSLATED
|
||||
error_file_size: '{{size, number}}KB以下のファイルをアップロードしてください。', // UNTRANSLATED
|
||||
error_file_type:
|
||||
'{{extensions, list(style: narrow; type: conjunction;)}}のみサポートされます。', // UNTRANSLATED
|
||||
},
|
||||
};
|
||||
|
||||
export default components;
|
|
@ -0,0 +1,35 @@
|
|||
const connector_details = {
|
||||
page_title: 'Connector details', // UNTRANSLATED
|
||||
back_to_connectors: 'コネクタに戻る',
|
||||
check_readme: 'READMEを確認する',
|
||||
settings: '一般設定',
|
||||
settings_description:
|
||||
'コネクタはLogtoに不可欠です。Logtoはコネクタのおかげでエンドユーザーがパスワードレス登録またはサインインを利用し、ソーシャルアカウントでサインインすることができる機能を提供することができます。',
|
||||
parameter_configuration: 'パラメーター設定',
|
||||
test_connection: '接続のテスト',
|
||||
save_error_empty_config: '設定を入力してください',
|
||||
send: '送信',
|
||||
send_error_invalid_format: '入力が無効です',
|
||||
edit_config_label: 'JSONを入力してください',
|
||||
test_email_sender: 'メールコネクタのテスト',
|
||||
test_sms_sender: 'SMSコネクタのテスト',
|
||||
test_email_placeholder: 'john.doe@example.com',
|
||||
test_sms_placeholder: '+1 555-123-4567',
|
||||
test_message_sent: 'テストメッセージが送信されました',
|
||||
test_sender_description:
|
||||
'Logtoはテストのために「共通」テンプレートを使用しています。コネクタが正しく構成されている場合、メッセージを受信します。',
|
||||
options_change_email: 'メールコネクタの変更',
|
||||
options_change_sms: 'SMSコネクタの変更',
|
||||
connector_deleted: 'コネクタが正常に削除されました',
|
||||
type_email: 'メールコネクタ',
|
||||
type_sms: 'SMSコネクタ',
|
||||
type_social: 'ソーシャルコネクタ',
|
||||
in_used_social_deletion_description:
|
||||
'このコネクタはあなたのサインイン体験で使用されています。削除すると、サインイン体験設定のサインイン体験が削除されます。再追加する場合は再設定する必要があります。',
|
||||
in_used_passwordless_deletion_description:
|
||||
'この{{name}}はあなたのサインイン体験で使用されています。削除すると、競合が解決されるまでサインイン体験が正常に機能しません。再追加する場合は再設定する必要があります。',
|
||||
deletion_description:
|
||||
'このコネクタを削除します。元に戻すことはできず、再追加する場合は再設定する必要があります。',
|
||||
};
|
||||
|
||||
export default connector_details;
|
|
@ -0,0 +1,90 @@
|
|||
const connectors = {
|
||||
page_title: 'コネクタ',
|
||||
title: 'コネクタ',
|
||||
subtitle: 'コネクタを設定して、パスワードレスおよびソーシャルサインイン体験を有効にします',
|
||||
create: 'ソーシャルコネクタを追加',
|
||||
config_sie_notice: 'コネクタを設定しました。<a>{{link}}</a>で設定を確認してください。',
|
||||
config_sie_link_text: 'サインイン体験',
|
||||
tab_email_sms: 'メールとSMSのコネクタ',
|
||||
tab_social: 'ソーシャルコネクタ',
|
||||
connector_name: 'コネクタ名',
|
||||
demo_tip:
|
||||
'このデモコネクタの許容される最大メッセージ数は100件に限定されており、本番環境での展開は推奨されません。',
|
||||
social_demo_tip:
|
||||
'このデモコネクタは実演目的にのみ使用するように設計されており、本番環境での展開は推奨されません。',
|
||||
connector_type: 'タイプ',
|
||||
connector_status: 'サインイン体験',
|
||||
connector_status_in_use: '使用中',
|
||||
connector_status_not_in_use: '未使用',
|
||||
not_in_use_tip: {
|
||||
content:
|
||||
'未使用は、サインイン体験でこのサインイン方法が使用されていないことを意味します。<a>{{link}}</a>でこのサインイン方法を追加してください。',
|
||||
go_to_sie: 'サインイン体験に進む',
|
||||
},
|
||||
placeholder_title: 'ソーシャルコネクタ',
|
||||
placeholder_description:
|
||||
'Logtoは、標準プロトコルを使用して独自のソーシャルサインインコネクタを作成できるとともに、多くの一般的に使用されているソーシャルサインインコネクタを提供しています。',
|
||||
save_and_done: '保存して完了',
|
||||
type: {
|
||||
email: 'メールコネクタ',
|
||||
sms: 'SMSコネクタ',
|
||||
social: 'ソーシャルコネクタ',
|
||||
},
|
||||
setup_title: {
|
||||
email: 'メールコネクタの設定',
|
||||
sms: 'SMSコネクタの設定',
|
||||
social: 'ソーシャルコネクタを追加',
|
||||
},
|
||||
guide: {
|
||||
subtitle: 'コネクタの設定手順',
|
||||
general_setting: '全般設定',
|
||||
parameter_configuration: 'パラメータ設定',
|
||||
test_connection: '接続テスト',
|
||||
name: 'ソーシャルサインインボタンの名前',
|
||||
name_placeholder: 'ソーシャルサインインボタンの名前を入力',
|
||||
name_tip:
|
||||
'コネクタボタンの名前は「{{name}}で続ける」で表示されます。名前が長くなりすぎないように注意してください。',
|
||||
logo: 'ソーシャルサインインボタンのロゴURL',
|
||||
logo_placeholder: 'https://your.cdn.domain/logo.png',
|
||||
logo_tip:
|
||||
'ロゴ画像はコネクタに表示されます。一般的にアバターやトンマークなどを使用します。公開アクセス可能な画像リンクを取得し、リンクをここに挿入してください。',
|
||||
logo_dark: 'ソーシャルサインインボタンのロゴURL(ダークモード)',
|
||||
logo_dark_placeholder: 'https://your.cdn.domain/logo.png',
|
||||
logo_dark_tip: 'ダークモードでコネクタのロゴを設定してください。',
|
||||
logo_dark_collapse: '折りたたむ',
|
||||
logo_dark_show: 'ダークモード用のロゴ設定を表示',
|
||||
target: 'Identity Providerの名前',
|
||||
target_placeholder: 'コネクタIdentity Providerの名前を入力',
|
||||
target_tip:
|
||||
'「IdP名」として、ソーシャルIDを識別するための一意の識別子文字列を指定します。この設定は、コネクタが作成された後に変更できません。',
|
||||
target_tooltip:
|
||||
'Logtoのソーシャルコネクタでの「IdP名」とは、ソーシャルIDの「ソース」を指します。「IdP名」は、Plat formごとに一意でなければならず、同じ名前は許可されません。「IdP名」は一度作成されたコネクタで変更することはできません。 <a>詳細を見る。</a>',
|
||||
target_conflict:
|
||||
'入力されたIdP名は、既存の<span>name</span>コネクタと一致します。同じIdP名を使用すると、ユーザーが2つの異なるコネクタを通じて同じアカウントにアクセスする予期しないサインイン動作が発生する可能性があります。',
|
||||
target_conflict_line2:
|
||||
'以前のユーザーが再登録せずにサインインできるように、同じIdentity Providerを持つ現在のコネクタを削除し、新しいコネクタを "IdP名" と同じで作成する場合は、前のユーザーが再登録せずにサインインできるように、同じIdentity Providerを持つ現在のコネクタを削除し、新しいコネクタを "IdP名" で作成してください。',
|
||||
target_conflict_line3:
|
||||
'別のIdentity Providerに接続する場合は、「IdP名」を変更して続行してください。',
|
||||
config: '構成JSONを入力してください',
|
||||
sync_profile: 'プロファイル情報の同期',
|
||||
sync_profile_only_at_sign_up: 'サインアップ時にのみ同期する',
|
||||
sync_profile_each_sign_in: 'サインインごとに同期する',
|
||||
sync_profile_tip:
|
||||
'基本プロファイル(ユーザーの名前やアバターなど)をソーシャルプロバイダから同期します。',
|
||||
callback_uri: 'Callback URI',
|
||||
callback_uri_description:
|
||||
'Redirect URIもしくはコールバックURIとも呼ばれ、Logtoに戻るURIです。コピーしてソーシャルプロバイダの構成ページに貼り付けてください。',
|
||||
},
|
||||
platform: {
|
||||
universal: 'ユニバーサル',
|
||||
web: 'Web',
|
||||
native: 'ネイティブ',
|
||||
},
|
||||
add_multi_platform:
|
||||
'は複数のプラットフォームをサポートしています。続行するプラットフォームを選択してください。',
|
||||
drawer_title: 'コネクターガイド',
|
||||
drawer_subtitle: 'インテグレーションの手順に従ってください',
|
||||
unknown: '不明なコネクタ',
|
||||
};
|
||||
|
||||
export default connectors;
|
|
@ -0,0 +1,22 @@
|
|||
const contact = {
|
||||
title: 'お問い合わせ',
|
||||
description:
|
||||
'フィードバックを提供したり、助けを求めたり、他の開発者との考えを共有するために、当社コミュニティに参加してください。',
|
||||
discord: {
|
||||
title: 'ディスコードチャンネル',
|
||||
description: '他の開発者とチャットするために、パブリックチャンネルに参加してください。',
|
||||
button: '参加',
|
||||
},
|
||||
github: {
|
||||
title: 'GitHub',
|
||||
description: '問題を作成してGitHubに提出してください。',
|
||||
button: '開く',
|
||||
},
|
||||
email: {
|
||||
title: 'メール送信',
|
||||
description: '詳細な情報やヘルプを求めるために、私たちにメールを送信してください。',
|
||||
button: '送信',
|
||||
},
|
||||
};
|
||||
|
||||
export default contact;
|
|
@ -0,0 +1,19 @@
|
|||
const dashboard = {
|
||||
page_title: 'ダッシュボード',
|
||||
title: 'ダッシュボード',
|
||||
description: 'アプリのパフォーマンスについての概要を取得',
|
||||
total_users: '合計ユーザー数',
|
||||
total_users_tip: '合計ユーザー数',
|
||||
new_users_today: '本日の新規ユーザー',
|
||||
new_users_today_tip: 'アプリに本日登録された新規ユーザーの数',
|
||||
new_users_7_days: '過去7日間の新規ユーザー',
|
||||
new_users_7_days_tip: 'アプリに過去7日間に登録された新規ユーザーの数',
|
||||
daily_active_users: '1日あたりのアクティブユーザー',
|
||||
daily_active_users_tip: 'アプリでトークンを交換したユニークユーザーの数',
|
||||
weekly_active_users: '週間アクティブユーザー',
|
||||
weekly_active_users_tip: 'アプリで過去7日間にトークンを交換したユニークユーザーの数',
|
||||
monthly_active_users: '月間アクティブユーザー',
|
||||
monthly_active_users_tip: 'アプリで過去30日間にトークンを交換したユニークユーザーの数',
|
||||
};
|
||||
|
||||
export default dashboard;
|
|
@ -0,0 +1,25 @@
|
|||
const errors = {
|
||||
something_went_wrong: 'Oops!何か問題が発生しました。',
|
||||
page_not_found: 'ページが見つかりません',
|
||||
unknown_server_error: '不明なサーバーエラーが発生しました',
|
||||
empty: 'データなし',
|
||||
missing_total_number: 'レスポンスヘッダーでTotal-Numberが見つかりません',
|
||||
invalid_uri_format: '無効なURI形式',
|
||||
invalid_origin_format: '無効なURIの起源の形式',
|
||||
invalid_json_format: '無効なJSON形式',
|
||||
invalid_error_message_format: 'エラーメッセージの形式が無効です。',
|
||||
required_field_missing: '{{field}}を入力してください',
|
||||
required_field_missing_plural: '少なくとも1つの{{field}}を入力する必要があります',
|
||||
more_details: '詳細を見る',
|
||||
username_pattern_error:
|
||||
'ユーザー名には、文字、数字、またはアンダースコアしか含めることができず、数字で始めることはできません。',
|
||||
password_pattern_error:
|
||||
'パスワードには、{{min}}文字以上の文字列と文字、数字、およびシンボルが必要です。',
|
||||
insecure_contexts: '安全でないコンテキスト(ノンHTTP)はサポートされていません。',
|
||||
unexpected_error: '予期しないエラーが発生しました。',
|
||||
not_found: '404が見つかりません',
|
||||
create_internal_role_violation:
|
||||
'新しい内部ロールを作成しているため、Logtoによって禁止されています。 「#internal:」で始まらない別の名前を試してください。',
|
||||
};
|
||||
|
||||
export default errors;
|
|
@ -0,0 +1,55 @@
|
|||
const general = {
|
||||
placeholder: 'プレースホルダー',
|
||||
skip: 'スキップ',
|
||||
next: '次へ',
|
||||
back: '戻る',
|
||||
retry: 'もう一度試す',
|
||||
done: '完了',
|
||||
search: '検索',
|
||||
search_placeholder: '検索',
|
||||
clear_result: '検索結果をクリアする',
|
||||
save: '保存',
|
||||
save_changes: '変更を保存する',
|
||||
saved: '保存しました!',
|
||||
discard: '破棄する',
|
||||
loading: '読み込み中...',
|
||||
redirecting: 'リダイレクト中...',
|
||||
add: '追加',
|
||||
added: '追加されました',
|
||||
cancel: 'キャンセル',
|
||||
confirm: '確認',
|
||||
check_out: 'チェックアウト',
|
||||
create: '作成する',
|
||||
set_up: '設定する',
|
||||
customize: 'カスタマイズする',
|
||||
enable: '有効にする',
|
||||
reminder: 'リマインダー',
|
||||
delete: '削除',
|
||||
more_options: 'その他のオプション',
|
||||
close: '閉じる',
|
||||
copy: 'コピーする',
|
||||
copying: 'コピー中',
|
||||
copied: 'コピーされました',
|
||||
required: '必須',
|
||||
add_another: 'もう一つ追加',
|
||||
deletion_confirmation: '{{title}}を削除してよろしいですか?',
|
||||
settings_nav: '設定',
|
||||
unsaved_changes_warning: '変更を加えました。このページを離れてもよろしいですか?',
|
||||
leave_page: 'ページを離れる',
|
||||
stay_on_page: 'ページにとどまる',
|
||||
type_to_search: '検索する',
|
||||
got_it: '了解',
|
||||
continue: '続ける',
|
||||
page_info: '{{total}}件中{{min}}件〜{{max}}件を表示',
|
||||
learn_more: '詳しく見る',
|
||||
tab_errors: '{{count}}件のエラーがあります',
|
||||
skip_for_now: '今回はスキップする',
|
||||
remove: '削除する',
|
||||
visit: '訪問する',
|
||||
join: '参加する',
|
||||
try_now: '今すぐ試す',
|
||||
multiple_form_field: '(複数)',
|
||||
demo: 'デモ',
|
||||
};
|
||||
|
||||
export default general;
|
|
@ -0,0 +1,33 @@
|
|||
const get_started = {
|
||||
page_title: 'Get Started', // UNTRANSLATED
|
||||
progress: 'はじめにガイド:{{completed}}/{{total}}',
|
||||
progress_dropdown_title: 'できることは何かあるかな?',
|
||||
title: 'あなたの成功を手助けする探索',
|
||||
subtitle_part1: 'すばやくLogtoの価値を得るには、いくつかのことができます',
|
||||
subtitle_part2: '私はプロであり、すべてのステップを完了しました。 ',
|
||||
hide_this: 'これを隠す',
|
||||
confirm_message: 'このページを隠すことを確認しますか?この操作は取り消せません。',
|
||||
check_preview_title: 'ライブプレビューを確認してください',
|
||||
check_preview_subtitle:
|
||||
'Logtoのサインインエクスペリエンスを今すぐ試して、どのように機能するかを確認してください',
|
||||
integration_title: 'アプリケーションの作成と統合',
|
||||
integration_subtitle:
|
||||
'ネイティブ、シングルページ、機械間、または従来のアプリケーションにLogto認証を設定してください',
|
||||
custom_sie_title: 'サインインエクスペリエンスをカスタマイズする',
|
||||
custom_sie_subtitle: '高度な設定で、さまざまなシナリオを解除する',
|
||||
passwordless_title: 'コネクタを追加して、パスワードなしのサインインをスケーリングする',
|
||||
passwordless_subtitle:
|
||||
'パスワードなしでサインインを試し、お客様に安全で摩擦の少ないエクスペリエンスを提供してください。',
|
||||
community_title: 'ディスコードコミュニティに参加する',
|
||||
community_subtitle: '他の開発者とチャットするためのパブリックチャンネルに参加してください。',
|
||||
management_api_title: 'Management APIとのやり取り',
|
||||
management_api_subtitle: '認証システムを直接管理APIに接続してください。',
|
||||
further_readings_title: 'さらなる読書',
|
||||
further_readings_subtitle:
|
||||
'面倒な概念なしで、ステップバイステップ、シナリオベースのドキュメントをチェックしてください。',
|
||||
add_rbac_title: 'ロールベースのアクセス制御を追加して、リソースを保護する',
|
||||
add_rbac_subtitle:
|
||||
'多様なユースケースに対応するスケーラブルなロール承認により、リソースを制御します。',
|
||||
};
|
||||
|
||||
export default get_started;
|
|
@ -0,0 +1,62 @@
|
|||
import api_resource_details from './api-resource-details.js';
|
||||
import api_resources from './api-resources.js';
|
||||
import application_details from './application-details.js';
|
||||
import applications from './applications.js';
|
||||
import cloud from './cloud.js';
|
||||
import components from './components.js';
|
||||
import connector_details from './connector-details.js';
|
||||
import connectors from './connectors.js';
|
||||
import contact from './contact.js';
|
||||
import dashboard from './dashboard.js';
|
||||
import errors from './errors.js';
|
||||
import general from './general.js';
|
||||
import get_started from './get-started.js';
|
||||
import log_details from './log-details.js';
|
||||
import logs from './logs.js';
|
||||
import menu from './menu.js';
|
||||
import permissions from './permissions.js';
|
||||
import profile from './profile.js';
|
||||
import role_details from './role-details.js';
|
||||
import roles from './roles.js';
|
||||
import session_expired from './session-expired.js';
|
||||
import sign_in_exp from './sign-in-exp/index.js';
|
||||
import tab_sections from './tab-sections.js';
|
||||
import tabs from './tabs.js';
|
||||
import user_details from './user-details.js';
|
||||
import users from './users.js';
|
||||
import welcome from './welcome.js';
|
||||
|
||||
const admin_console = {
|
||||
title: 'Admin Console',
|
||||
admin_user: 'Admin',
|
||||
system_app: 'System',
|
||||
menu,
|
||||
general,
|
||||
errors,
|
||||
tab_sections,
|
||||
tabs,
|
||||
applications,
|
||||
application_details,
|
||||
api_resources,
|
||||
api_resource_details,
|
||||
connectors,
|
||||
connector_details,
|
||||
get_started,
|
||||
users,
|
||||
user_details,
|
||||
contact,
|
||||
sign_in_exp,
|
||||
dashboard,
|
||||
logs,
|
||||
log_details,
|
||||
session_expired,
|
||||
welcome,
|
||||
roles,
|
||||
role_details,
|
||||
permissions,
|
||||
cloud,
|
||||
profile,
|
||||
components,
|
||||
};
|
||||
|
||||
export default admin_console;
|
|
@ -0,0 +1,18 @@
|
|||
const log_details = {
|
||||
page_title: 'Audit Log detail', // UNTRANSLATED
|
||||
back_to_logs: '監査ログに戻る',
|
||||
back_to_user: '{{name}}に戻る',
|
||||
success: '成功',
|
||||
failed: '失敗',
|
||||
event_key: 'イベントキー',
|
||||
application: 'アプリケーション',
|
||||
ip_address: 'IPアドレス',
|
||||
user: 'ユーザー',
|
||||
log_id: 'ログID',
|
||||
time: '時間',
|
||||
user_agent: 'ユーザーエージェント',
|
||||
tab_details: '詳細',
|
||||
raw_data: '生データ',
|
||||
};
|
||||
|
||||
export default log_details;
|
|
@ -0,0 +1,12 @@
|
|||
const logs = {
|
||||
page_title: '監査ログ',
|
||||
title: '監査ログ',
|
||||
subtitle: 'ユーザーによって行われた認証イベントのログデータを表示します',
|
||||
event: 'イベント',
|
||||
user: 'ユーザー',
|
||||
application: 'アプリケーション',
|
||||
time: '時間',
|
||||
filter_by: 'フィルター',
|
||||
};
|
||||
|
||||
export default logs;
|
|
@ -0,0 +1,13 @@
|
|||
const menu = {
|
||||
profile: 'プロフィール',
|
||||
language: '言語',
|
||||
appearance: {
|
||||
label: '外観',
|
||||
light: 'ライトモード',
|
||||
dark: 'ダークモード',
|
||||
system: 'システムと同期',
|
||||
},
|
||||
sign_out: 'ログアウト',
|
||||
};
|
||||
|
||||
export default menu;
|
|
@ -0,0 +1,12 @@
|
|||
const permissions = {
|
||||
search_placeholder: 'APIまたは権限名で検索',
|
||||
search_placeholder_without_api: '権限名で検索',
|
||||
name_column: '権限',
|
||||
description_column: '説明',
|
||||
api_column: 'API',
|
||||
placeholder_title: '権限',
|
||||
placeholder_description:
|
||||
'権限はリソース(APIリソースと呼んでいます)にアクセスするための承認を指します。',
|
||||
};
|
||||
|
||||
export default permissions;
|
|
@ -0,0 +1,81 @@
|
|||
const profile = {
|
||||
page_title: 'アカウント設定',
|
||||
title: 'アカウント設定',
|
||||
description:
|
||||
'アカウントのセキュリティを確保するため、ここでアカウント設定と個人情報の管理を変更できます。',
|
||||
settings: {
|
||||
title: 'プロファイル設定',
|
||||
profile_information: 'プロファイル情報',
|
||||
avatar: 'アバター',
|
||||
name: '名前',
|
||||
username: 'ユーザー名',
|
||||
},
|
||||
link_account: {
|
||||
title: 'アカウントをリンク',
|
||||
email_sign_in: 'Email sign-In',
|
||||
email: 'Eメール',
|
||||
social_sign_in: 'ソーシャルサインイン',
|
||||
link_email: 'Eメールのリンク',
|
||||
link_email_subtitle: 'ログインにEメールをリンクするか、アカウントの回復をお手伝いします。',
|
||||
email_required: 'Eメールが必要です',
|
||||
invalid_email: '無効なEメールアドレス',
|
||||
identical_email_address: '入力したEメールアドレスは現在のものと同じです',
|
||||
anonymous: '匿名',
|
||||
},
|
||||
password: {
|
||||
title: 'パスワードとセキュリティ',
|
||||
password: 'パスワード',
|
||||
password_setting: 'パスワード設定',
|
||||
new_password: '新しいパスワード',
|
||||
confirm_password: 'パスワードの確認',
|
||||
enter_password: 'パスワードを入力してください',
|
||||
enter_password_subtitle: 'アカウントのセキュリティを保護するために確認してください。',
|
||||
set_password: 'パスワードを設定する',
|
||||
verify_via_password: 'パスワードを使って確認する',
|
||||
show_password: 'パスワードを表示する',
|
||||
required: 'パスワードが必要です',
|
||||
min_length: 'パスワードは{{min}}文字以上である必要があります',
|
||||
do_not_match: 'パスワードが一致しません。もう一度お試しください。',
|
||||
},
|
||||
code: {
|
||||
enter_verification_code: '検証コードを入力してください',
|
||||
enter_verification_code_subtitle: '検証コードは <strong>{{target}}</strong> に送信されました。',
|
||||
verify_via_code: '検証コードを使用して確認する',
|
||||
resend: '検証コードを再送信する',
|
||||
resend_countdown: '{{countdown}} 秒後に再送信する',
|
||||
},
|
||||
delete_account: {
|
||||
title: 'アカウントを削除',
|
||||
label: 'アカウントを削除',
|
||||
description:
|
||||
'アカウントの削除は、すべての個人情報、ユーザーデータ、および設定が削除されます。このアクションは元に戻せません。',
|
||||
button: 'アカウントを削除',
|
||||
dialog_paragraph_1:
|
||||
'アカウントを削除したいというお知らせを受け取りましたこと、残念に思います。 アカウントを削除すると、ユーザー情報、ログ、設定を含むすべてのデータが永久に削除されます。そのため、手続きを進める前に、重要なデータをバックアップすることを必ずお願いします。',
|
||||
dialog_paragraph_2:
|
||||
'アカウント削除プロセスを進めるには、「アカウント削除リクエスト」という件名で<a>{{mail}}</a>にメールを送信して、当社のサポートチームにお問い合わせください。私たちはあなたをサポートし、すべてのデータが正しくシステムから削除されるようにします。',
|
||||
dialog_paragraph_3:
|
||||
'Logto Cloudをご利用いただきありがとうございます。ご質問やご不明な点がある場合は、お気軽にお問い合わせください。',
|
||||
},
|
||||
set: '設定する',
|
||||
change: '変更する',
|
||||
link: 'リンクする',
|
||||
unlink: 'リンクを解除する',
|
||||
not_set: '設定されていません',
|
||||
change_avatar: 'アバターを変更する',
|
||||
change_name: '名前を変更する',
|
||||
change_username: 'ユーザー名を変更する',
|
||||
set_name: '名前を設定する',
|
||||
email_changed: 'Eメールが変更されました!',
|
||||
password_changed: 'パスワードが変更されました!',
|
||||
updated: '{{target}} が更新されました!',
|
||||
linked: '{{target}} がリンクされました!',
|
||||
unlinked: '{{target}} のリンクが解除されました!',
|
||||
email_exists_reminder:
|
||||
'このEメール{{email}}は、既存のアカウントに関連付けられています。ここで別のEメールをリンクしてください。',
|
||||
unlink_confirm_text: 'はい、リンクを解除します',
|
||||
unlink_reminder:
|
||||
'リンクを解除すると、ユーザーは<span></span>アカウントでサインインできなくなります。本当に進めますか?',
|
||||
};
|
||||
|
||||
export default profile;
|
|
@ -0,0 +1,49 @@
|
|||
const role_details = {
|
||||
back_to_roles: 'ロールに戻る',
|
||||
identifier: '識別子',
|
||||
delete_description:
|
||||
'これを行うと、このロールに関連付けられた許可が影響を受けるユーザーから削除され、ロール、ユーザー、および許可のマッピングが削除されます。',
|
||||
role_deleted: '{{name}} は正常に削除されました!',
|
||||
settings_tab: '設定',
|
||||
users_tab: 'ユーザー',
|
||||
permissions_tab: '許可',
|
||||
settings: '設定',
|
||||
settings_description:
|
||||
'ロールは、ユーザーに割り当てることができる許可のグループ化です。また、異なるAPIに対して定義された許可を集約する方法を提供し、ユーザーに個別に割り当てるよりも許可を追加、削除、または調整するのに効率的です。',
|
||||
field_name: '名前',
|
||||
field_description: '説明',
|
||||
permission: {
|
||||
assign_button: '許可を割り当てる',
|
||||
assign_title: '許可の割り当て',
|
||||
assign_subtitle:
|
||||
'このロールに許可を割り当てます。ロールには追加された許可が追加され、このロールを持つユーザーはこれらの許可を継承します。',
|
||||
assign_form_field: '許可を割り当てる',
|
||||
added_text_one: '{{count, number}} 個の許可が追加されました',
|
||||
added_text_other: '{{count, number}} 個の許可が追加されました',
|
||||
api_permission_count_one: '{{count, number}} 個の許可',
|
||||
api_permission_count_other: '{{count, number}} 個の許可',
|
||||
confirm_assign: '許可を割り当てる',
|
||||
permission_assigned: '選択した許可は、このロールに正常に割り当てられました',
|
||||
deletion_description:
|
||||
'この許可が削除されると、このロールの影響を受けるユーザーは、この許可によって付与されたアクセス権を失います。',
|
||||
permission_deleted: '許可 "{{name}}" がこのロールから正常に削除されました',
|
||||
empty: '使用可能な許可はありません',
|
||||
},
|
||||
users: {
|
||||
assign_button: 'ユーザーを割り当てる',
|
||||
name_column: 'ユーザー',
|
||||
app_column: 'アプリ',
|
||||
latest_sign_in_column: '最新サインイン',
|
||||
delete_description: 'ユーザープールには残りますが、このロールに対する認可を失います。',
|
||||
deleted: '{{name}} was successfully removed from this role',
|
||||
assign_title: 'ユーザーを割り当てる',
|
||||
assign_subtitle:
|
||||
'ユーザーをこのロールに割り当てます。名前、電子メール、電話、またはユーザーIDで検索して適切なユーザーを見つけます。',
|
||||
assign_users_field: 'ユーザーを割り当てる',
|
||||
confirm_assign: 'ユーザーを割り当てる',
|
||||
users_assigned: '選択したユーザーがこのロールに正常に割り当てられました',
|
||||
empty: '使用可能なユーザーはありません',
|
||||
},
|
||||
};
|
||||
|
||||
export default role_details;
|
|
@ -0,0 +1,24 @@
|
|||
const roles = {
|
||||
page_title: 'ロール',
|
||||
title: 'ロール',
|
||||
subtitle:
|
||||
'ロールには、ユーザーが実行できるアクションを決定する権限が含まれます。RBACは、特定のアクションのためにリソースにアクセスするためにユーザーに権限を付与するために、ロールを使用します。',
|
||||
create: 'ロールを作成する',
|
||||
role_name: 'ロールの名前',
|
||||
role_description: '説明',
|
||||
role_name_placeholder: 'ロールの名前を入力してください',
|
||||
role_description_placeholder: 'ロールの説明を入力してください',
|
||||
assigned_users: '割り当てられたユーザー',
|
||||
assign_permissions: '権限の割り当て',
|
||||
create_role_title: 'ロールを作成する',
|
||||
create_role_description:
|
||||
'アプリケーションのロールを作成して管理します。ロールには権限のコレクションが含まれ、ユーザーに割り当てることができます。',
|
||||
create_role_button: 'ロールを作成する',
|
||||
role_created: '{{name}}ロールが正常に作成されました!',
|
||||
search: 'ロール名、説明、またはIDで検索',
|
||||
placeholder_title: 'ロール',
|
||||
placeholder_description:
|
||||
'ロールは、ユーザーに割り当てられる権限のグループです。ロールを作成する前に、まず権限を追加してください。',
|
||||
};
|
||||
|
||||
export default roles;
|
|
@ -0,0 +1,8 @@
|
|||
const session_expired = {
|
||||
title: 'セッションの有効期限が切れました',
|
||||
subtitle:
|
||||
'セッションの有効期限が切れ、切断されました。以下のボタンをクリックして再度管理コンソールにサインインしてください。',
|
||||
button: '再度サインイン',
|
||||
};
|
||||
|
||||
export default session_expired;
|
|
@ -0,0 +1,85 @@
|
|||
import others from './others.js';
|
||||
import sign_up_and_sign_in from './sign-up-and-sign-in.js';
|
||||
|
||||
const sign_in_exp = {
|
||||
page_title: 'サインインエクスペリエンス',
|
||||
title: 'サインインエクスペリエンス',
|
||||
description: 'ブランドに合わせてサインインUIをカスタマイズし、リアルタイムで表示できます。',
|
||||
tabs: {
|
||||
branding: 'ブランディング',
|
||||
sign_up_and_sign_in: 'サインアップとサインイン',
|
||||
others: 'その他',
|
||||
},
|
||||
welcome: {
|
||||
title: 'サインインエクスペリエンスをカスタマイズ',
|
||||
description:
|
||||
'最初のサインイン設定をスムーズに始めましょう。このガイドでは、必要なすべての設定を説明します。',
|
||||
get_started: '開始',
|
||||
apply_remind:
|
||||
'サインインエクスペリエンスは、このアカウントのすべてのアプリケーションに適用されます。',
|
||||
},
|
||||
color: {
|
||||
title: 'カラー',
|
||||
primary_color: 'ブランドカラー',
|
||||
dark_primary_color: 'ブランドカラー(ダーク)',
|
||||
dark_mode: 'ダークモードを有効にする',
|
||||
dark_mode_description:
|
||||
'あなたのアプリは、ブランドカラーとLogtoアルゴリズムに基づいて自動生成されたダークモードのテーマを持っています。自由にカスタマイズしてください。',
|
||||
dark_mode_reset_tip: 'ブランドカラーに基づいてダークモードの色を再計算します。',
|
||||
reset: 'リセット',
|
||||
},
|
||||
branding: {
|
||||
title: 'ブランディングエリア',
|
||||
ui_style: 'スタイル',
|
||||
favicon: 'ファビコン',
|
||||
logo_image_url: 'アプリのロゴ画像URL',
|
||||
logo_image_url_placeholder: 'https://your.cdn.domain/logo.png',
|
||||
dark_logo_image_url: 'アプリのロゴ画像URL(ダーク)',
|
||||
dark_logo_image_url_placeholder: 'https://your.cdn.domain/logo-dark.png',
|
||||
logo_image: 'アプリのロゴ',
|
||||
dark_logo_image: 'アプリのロゴ(ダーク)',
|
||||
logo_image_error: 'アプリのロゴ:{{error}}',
|
||||
favicon_error: 'ファビコン:{{error}}',
|
||||
},
|
||||
custom_css: {
|
||||
title: 'カスタムCSS',
|
||||
css_code_editor_title: 'カスタムCSSでUIをパーソナライズ',
|
||||
css_code_editor_description1: 'カスタムCSSの例を見てください。',
|
||||
css_code_editor_description2: '<a>{{link}}</a>',
|
||||
css_code_editor_description_link_content: 'さらに詳しく',
|
||||
css_code_editor_content_placeholder:
|
||||
'カスタムCSSを入力して、すべてのスタイルをあなたの仕様に合わせて調整します。クリエイティビティを発揮して、UIを際立たせましょう。',
|
||||
},
|
||||
sign_up_and_sign_in,
|
||||
others,
|
||||
setup_warning: {
|
||||
no_connector_sms:
|
||||
'まだSMSコネクタが設定されていません。構成を完了する前に、この方法でのサインインはできません。<a>{{link}}</a>「コネクタ」に移動してください',
|
||||
no_connector_email:
|
||||
'まだメールコネクタが設定されていません。構成を完了する前に、この方法でのサインインはできません。<a>{{link}}</a>「コネクタ」に移動してください',
|
||||
no_connector_social:
|
||||
'まだソーシャルコネクタが設定されていません。構成を完了する前に、この方法でのサインインはできません。<a>{{link}}</a>「コネクタ」に移動してください',
|
||||
no_added_social_connector:
|
||||
'いくつかのソーシャルコネクタを設定しました。サインインエクスペリエンスにいくつか追加してください。',
|
||||
setup_link: '設定',
|
||||
},
|
||||
save_alert: {
|
||||
description:
|
||||
'新しいサインイン方法やサインアップ手順を導入しています。すべてのユーザーに影響がある可能性があります。変更を実行する場合は、よろしいですか?',
|
||||
before: '変更前',
|
||||
after: '変更後',
|
||||
sign_up: 'サインアップ',
|
||||
sign_in: 'サインイン',
|
||||
social: 'ソーシャル',
|
||||
},
|
||||
preview: {
|
||||
title: 'サインインプレビュー',
|
||||
live_preview: 'ライブプレビュー',
|
||||
live_preview_tip: '変更を保存してプレビュー',
|
||||
native: 'ネイティブ',
|
||||
desktop_web: 'デスクトップWeb',
|
||||
mobile_web: 'モバイルWeb',
|
||||
},
|
||||
};
|
||||
|
||||
export default sign_in_exp;
|
|
@ -0,0 +1,47 @@
|
|||
const others = {
|
||||
terms_of_use: {
|
||||
title: '利用規約',
|
||||
terms_of_use: '利用規約のURL',
|
||||
terms_of_use_placeholder: 'https://your.terms.of.use/',
|
||||
privacy_policy: 'プライバシーポリシーのURL',
|
||||
privacy_policy_placeholder: 'https://your.privacy.policy/',
|
||||
},
|
||||
languages: {
|
||||
title: '言語',
|
||||
enable_auto_detect: '自動検出を有効にする',
|
||||
description:
|
||||
'ユーザーのロケール設定を検出して、現地の言語に切り替えることができます。英語から他の言語へのUIの翻訳を追加することで、新しい言語を追加できます。',
|
||||
manage_language: '言語を管理する',
|
||||
default_language: '既定言語',
|
||||
default_language_description_auto:
|
||||
'既定の言語は、現在の言語ライブラリにカバーされていないユーザーの検出された言語がある場合に使用されます。',
|
||||
default_language_description_fixed:
|
||||
'自動検出がオフになっている場合、既定の言語がソフトウェアで表示される唯一の言語になります。言語拡張のために自動検出をオンにしてください。',
|
||||
},
|
||||
manage_language: {
|
||||
title: '言語を管理する',
|
||||
subtitle:
|
||||
'言語と翻訳を追加して、製品エクスペリエンスをローカライズします。あなたの貢献は、既定言語として設定することができます。',
|
||||
add_language: '言語を追加する',
|
||||
logto_provided: '提供されたログ',
|
||||
key: 'キー',
|
||||
logto_source_values: 'ログソース値',
|
||||
custom_values: 'カスタム値',
|
||||
clear_all_tip: 'すべての値をクリアする',
|
||||
unsaved_description: '保存せずにこのページを離れると、変更は保存されません。',
|
||||
deletion_tip: '言語を削除する',
|
||||
deletion_title: '追加された言語を削除しますか?',
|
||||
deletion_description: '削除後、ユーザーはその言語で閲覧できなくなります。',
|
||||
default_language_deletion_title: '既定言語は削除できません。',
|
||||
default_language_deletion_description:
|
||||
'{{language}}はあなたの既定言語として設定されており、削除できません。',
|
||||
},
|
||||
advanced_options: {
|
||||
title: '高度なオプション',
|
||||
enable_user_registration: 'ユーザー登録を有効にする',
|
||||
enable_user_registration_description:
|
||||
'ユーザー登録を有効または無効にします。無効にすると、管理コンソールでユーザーを追加できますが、ユーザーはもはやサインインUIを介してアカウントを確立できません。',
|
||||
},
|
||||
};
|
||||
|
||||
export default others;
|
|
@ -0,0 +1,56 @@
|
|||
const sign_up_and_sign_in = {
|
||||
identifiers_email: 'メールアドレス',
|
||||
identifiers_phone: '電話番号',
|
||||
identifiers_username: 'ユーザー名',
|
||||
identifiers_email_or_sms: 'メールアドレスまたは電話番号',
|
||||
identifiers_none: '該当なし',
|
||||
and: 'および',
|
||||
or: 'または',
|
||||
sign_up: {
|
||||
title: 'サインアップ',
|
||||
sign_up_identifier: 'サインアップ識別子',
|
||||
identifier_description:
|
||||
'サインアップ識別子はアカウント作成に必要で、サインイン画面に含める必要があります。',
|
||||
sign_up_authentication: 'サインアップの認証設定',
|
||||
authentication_description:
|
||||
'選択したすべてのアクションは、ユーザーがフローを完了するために必須です。',
|
||||
set_a_password_option: 'パスワードの設定',
|
||||
verify_at_sign_up_option: 'サインアップ時に確認する',
|
||||
social_only_creation_description: '(これはソーシャルアカウント作成に適用されます)',
|
||||
},
|
||||
sign_in: {
|
||||
title: 'サインイン',
|
||||
sign_in_identifier_and_auth: 'サインインの識別子と認証設定',
|
||||
description:
|
||||
'ユーザーは利用可能なすべてのオプションを使用してサインインできます。下のオプションをドラッグ&ドロップしてレイアウトを調整してください。',
|
||||
add_sign_in_method: 'サインイン方法を追加',
|
||||
password_auth: 'パスワード',
|
||||
verification_code_auth: '確認コード',
|
||||
auth_swap_tip: '以下のオプションを交換して、フローで最初に表示されるオプションを決定します。',
|
||||
require_auth_factor: '少なくとも1つの認証要素を選択する必要があります。',
|
||||
},
|
||||
social_sign_in: {
|
||||
title: 'ソーシャルサインイン',
|
||||
social_sign_in: 'ソーシャルサインイン',
|
||||
description:
|
||||
'設定した必須識別子に応じて、ユーザーはソーシャルコネクタを介してサインアップする際に識別子を提供するよう求められる場合があります。',
|
||||
add_social_connector: 'ソーシャルコネクタを追加',
|
||||
set_up_hint: {
|
||||
not_in_list: '一覧にない場合は?',
|
||||
set_up_more: '設定',
|
||||
go_to: '他のソーシャルコネクタに移動します。',
|
||||
},
|
||||
},
|
||||
tip: {
|
||||
set_a_password: 'ユーザー名にユニークなパスワードを設定することが重要です。',
|
||||
verify_at_sign_up:
|
||||
'現在、検証されたメールアドレスのみをサポートしています。検証がない場合、ユーザーベースには低品質のメールアドレスが多数含まれる場合があります。',
|
||||
password_auth:
|
||||
'これは、サインアッププロセス中にパスワードを設定するオプションを有効にした場合に必要です。',
|
||||
verification_code_auth:
|
||||
'これは、サインアップ時に確認コードの提供オプションのみを有効にした場合に必要です。サインアッププロセスでパスワード設定を許可する場合は、ボックスのチェックを外してもかまいません。',
|
||||
delete_sign_in_method: 'これは{{identifier}}を必須の識別子として選択した場合に必要です。',
|
||||
},
|
||||
};
|
||||
|
||||
export default sign_up_and_sign_in;
|
|
@ -0,0 +1,9 @@
|
|||
const tab_sections = {
|
||||
overview: '概要',
|
||||
resource_management: 'リソース管理',
|
||||
user_management: 'ユーザー管理',
|
||||
access_control: 'アクセス制御',
|
||||
help_and_support: 'ヘルプとサポート',
|
||||
};
|
||||
|
||||
export default tab_sections;
|
|
@ -0,0 +1,16 @@
|
|||
const tabs = {
|
||||
get_started: 'はじめに',
|
||||
dashboard: 'ダッシュボード',
|
||||
applications: 'アプリケーション',
|
||||
api_resources: 'API リソース',
|
||||
sign_in_experience: 'サインイン',
|
||||
connectors: 'コネクタ',
|
||||
users: 'ユーザー管理',
|
||||
audit_logs: '監査ログ',
|
||||
roles: '役割',
|
||||
docs: 'ドキュメント',
|
||||
contact_us: 'お問い合わせ',
|
||||
settings: '設定',
|
||||
};
|
||||
|
||||
export default tabs;
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue