0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

refactor(phrases): split I18n locale file (#1535)

This commit is contained in:
Xiao Yijun 2022-07-13 19:58:49 +08:00 committed by GitHub
parent 24c7b99c45
commit 657bfa982a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
54 changed files with 1485 additions and 1289 deletions

View file

@ -0,0 +1,109 @@
const errors = {
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.',
jwt_sub_missing: 'Missing `sub` in JWT.',
},
guard: {
invalid_input: 'The request {{type}} is invalid.',
invalid_pagination: 'The request pagination value is invalid.',
},
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_exists_register: 'The username has been registered.',
email_exists_register: 'The email address has been registered.',
phone_exists_register: 'The phone number has been registered.',
invalid_email: 'Invalid email address.',
invalid_phone: 'Invalid phone number.',
email_not_exists: 'The email address has not been registered yet.',
phone_not_exists: 'The phone number has not been registered yet.',
identity_not_exists: 'The social account has not been registered yet.',
identity_exists: 'The social account has been registered.',
invalid_role_names: 'role names ({{roleNames}}) are not valid',
},
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: 'Invalid credentials. 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.',
unauthorized: 'Please sign in first.',
unsupported_prompt_name: 'Unsupported prompt name.',
},
connector: {
general: 'An unexpected error occurred in connector.{{errorDescription}}',
not_found: 'Cannot find any available connector for type: {{type}}.',
not_enabled: 'The connector is not enabled.',
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.',
invalid_access_token: "The connector's access token is invalid.",
invalid_auth_code: "The connector's auth code is invalid.",
invalid_id_token: "The connector's id token is invalid.",
authorization_failed: "The user's authorization process is unsuccessful.",
oauth_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.',
db_connector_type_mismatch: 'There is a connector in the DB that does not match the type.',
},
passcode: {
phone_email_empty: 'Both phone and email are empty.',
not_found: 'Passcode not found. Please send passcode first.',
phone_mismatch: 'Phone mismatch. Please request a new passcode.',
email_mismatch: 'Email mismatch. Please request a new passcode.',
code_mismatch: 'Invalid passcode.',
expired: 'Passcode has expired. Please request a new passcode.',
exceed_max_try: 'Passcode verification limitation exceeded. Please request a new passcode.',
},
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_logo: 'Please enter your logo URL',
empty_slogan:
'Empty branding slogan. Please add a branding slogan if a UI style containing the slogan is selected.',
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.',
},
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.',
},
};
export default errors;

View file

@ -0,0 +1,9 @@
import errors from './errors';
import translation from './translation';
const en = Object.freeze({
translation,
errors,
});
export default en;

View file

@ -0,0 +1,11 @@
const api_resource_details = {
back_to_api_resources: 'Back to API resources',
token_expiration_time_in_seconds: 'Token expiration time (in seconds)',
token_expiration_time_in_seconds_placeholder: 'Enter your token expiration time',
delete_description:
'This action cannot be undone. It will permanently delete the API resource. Please enter the api resource name <span>{{name}}</span> to confirm.',
enter_your_api_resource_name: 'Enter your API resource name',
api_resource_deleted: 'The API Resource {{name}} has been successfully deleted',
};
export default api_resource_details;

View file

@ -0,0 +1,14 @@
const api_resources = {
title: 'API Resources',
subtitle: 'Define APIs that you can consume from your authorized applications',
create: 'Create API Resource',
api_name: 'API name',
api_name_placeholder: 'Enter your API name',
api_identifier: 'API identifier',
api_identifier_tip:
'The unique identifier to the API resource. It must be an absolute URI and has no fragment (#) component. Equals to the resource parameter in OAuth 2.0.',
api_resource_created: 'The API resource {{name}} has been successfully created',
api_identifier_placeholder: 'https://your-api-identifier/',
};
export default api_resources;

View file

@ -0,0 +1,37 @@
const application_details = {
back_to_applications: 'Back to Applications',
check_guide: 'Check Guide',
advanced_settings: 'Advanced settings',
application_name: 'Application name',
application_name_placeholder: 'My App',
description: 'Description',
description_placeholder: 'Enter your application description',
authorization_endpoint: 'Authorization endpoint',
authorization_endpoint_tip:
"The endpoint to perform authentication and authorization. It's used for OpenID Connect Authentication.",
redirect_uri: 'Redirect URIs',
redirect_uri_placeholder: 'https://your.website.com/app',
redirect_uri_placeholder_native: 'io.logto://callback',
redirect_uri_tip:
'The URI redirects after a user sign-in (whether successful or not). See OpenID Connect AuthRequest for more info.',
post_sign_out_redirect_uri: 'Post Sign-out Redirect URIs',
post_sign_out_redirect_uri_placeholder: 'https://your.website.com/home',
post_sign_out_redirect_uri_tip:
'The URI redirects after a user sign-out (optional). It may have no practical effect in some app types.',
cors_allowed_origins: 'CORS allowed origins',
cors_allowed_origins_placeholder: 'https://your.website.com',
cors_allowed_origins_tip:
'By default, all the origins of Redirect URIs will be allowed. Usually no action is required for this field.',
add_another: 'Add Another',
id_token_expiration: 'ID Token expiration',
refresh_token_expiration: 'Refresh Token expiration',
token_endpoint: 'Token endpoint',
user_info_endpoint: 'Userinfo endpoint',
delete_description:
'This action cannot be undone. It will permanently delete the application. Please enter the application name <span>{{name}}</span> to confirm.',
enter_your_application_name: 'Enter your application name',
application_deleted: 'Application {{name}} has been successfully deleted',
redirect_uri_required: 'You must enter at least one redirect URI',
};
export default application_details;

View file

@ -0,0 +1,44 @@
const applications = {
title: 'Applications',
subtitle:
'Set up a mobile, single page or traditional application to use Logto for authentication',
create: 'Create Application',
application_name: 'Application name',
application_name_placeholder: 'My App',
application_description: 'Application description',
application_description_placeholder: 'Enter your application description',
select_application_type: 'Select an application type',
no_application_type_selected: 'You havent selected any application type yet',
application_created:
'The application {{name}} has been successfully created! \nNow finish your application settings.',
app_id: 'App ID',
type: {
native: {
title: 'Native App',
subtitle: 'An app that runs in a native environment',
description: 'E.g., iOS app, Android app',
},
spa: {
title: 'Single Page App',
subtitle: 'An app that runs in a web browser and dynamically updates data in place',
description: 'E.g., React DOM app, Vue app',
},
traditional: {
title: 'Traditional Web',
subtitle: 'An app that renders and updates pages by the web server alone',
description: 'E.g., JSP, PHP',
},
},
guide: {
get_sample_file: 'Get Sample',
header_description:
'Follow a step by step guide to integrate your application or click the right button to get our sample project',
title: 'The application has been successfully created',
subtitle:
'Now follow the steps below to finish your app settings. Please select the SDK type to continue.',
description_by_sdk:
'This quick start guide demonstrates how to integrate Logto into {{sdk}} app',
},
};
export default applications;

View file

@ -0,0 +1,23 @@
const connector_details = {
back_to_connectors: 'Back to Connectors',
check_readme: 'Check README',
save_error_empty_config: 'Please enter config',
save_error_json_parse_error: 'Please enter valid JSON',
send: 'Send',
send_error_invalid_format: 'Invalid input',
edit_config_label: 'Enter your json here',
test_email_sender: 'Test your email connector',
test_sms_sender: 'Test your SMS connector',
test_email_placeholder: 'Enter a test email address',
test_sms_placeholder: 'Enter a test phone number',
test_message_sent: 'Test message sent!',
test_sender_description: 'You will receive a message if your json is rightly configured',
options_change_email: 'Change email connector',
options_change_sms: 'Change SMS connector',
connector_deleted: 'The connector has been successfully deleted',
type_email: 'Email connector',
type_sms: 'SMS connector',
type_social: 'Social connector',
};
export default connector_details;

View file

@ -0,0 +1,37 @@
const connectors = {
title: 'Connectors',
subtitle: 'Set up connectors to enable passwordless and social sign in experience',
create: 'Add Social Connector',
tab_email_sms: 'Email and SMS connectors',
tab_social: 'Social connectors',
connector_name: 'Connector name',
connector_type: 'Type',
connector_status: 'Sign in Experience',
connector_status_in_use: 'In use',
connector_status_not_in_use: 'Not in use',
social_connector_eg: 'E.g., Google, Facebook, Github',
save_and_done: 'Save and Done',
type: {
email: 'Email connector',
sms: 'SMS connector',
social: 'Social connector',
},
setup_title: {
email: 'Set up email connector',
sms: 'Set up SMS connector',
social: 'Add Social Connector',
},
guide: {
subtitle: 'A step by step guide to configure your connector',
},
platform: {
universal: 'Universal',
web: 'Web',
native: 'Native',
},
add_multi_platform: ' supports multiple platform, select a platform to continue',
drawer_title: 'Connector Guide',
drawer_subtitle: 'Follow the instructions to integrate your connector',
};
export default connectors;

View file

@ -0,0 +1,22 @@
const contact = {
title: 'Contact Us',
description:
'Join in our community to provide feedback, ask for help and share your thoughts with other developers',
discord: {
title: 'Discord channel',
description: 'Join our public channel to chat with other developers',
button: 'Join',
},
github: {
title: 'GitHub',
description: 'Create an issue and submit at GitHub',
button: 'Contact',
},
email: {
title: 'Send email',
description: 'Send us an email for further information and help',
button: 'Send',
},
};
export default contact;

View file

@ -0,0 +1,20 @@
const dashboard = {
title: 'Dashboard',
description: 'Get an overview about your app performance',
total_users: 'Total users',
total_users_tip: 'Total users',
new_users_today: 'New users today',
new_users_today_tip: 'The number of new users registered on your apps today',
new_users_7_days: 'New users past 7 days',
new_users_7_days_tip: 'The number of new users registered on your apps in the past 7 days',
daily_active_users: 'Daily active users',
daily_active_users_tip: 'The number of unique users exchanged tokens on your apps today',
weekly_active_users: 'Weekly active users',
weekly_active_users_tip:
'The number of unique users exchanged tokens on your apps in the past 7 days',
monthly_active_users: 'Monthly active users',
monthly_active_users_tip:
'The number of unique users exchanged tokens on your apps in the past 30 days',
};
export default dashboard;

View file

@ -0,0 +1,19 @@
const errors = {
something_went_wrong: 'Oops! Something went wrong.',
page_not_found: 'Page not found',
unknown_server_error: 'Unknown server error occurred',
empty: 'No data',
missing_total_number: 'Unable to find Total-Number in response headers',
invalid_uri_format: 'Invalid URI format',
invalid_origin_format: 'Invalid URI origin format',
required_field_missing: 'Please enter {{field}}',
required_field_missing_plural: 'You have to enter at least one {{field}}',
more_details: 'More details',
username_pattern_error:
'Username should only contain letters, numbers, or underscore and should not start with a number.',
password_pattern_error: 'Password requires a minimum of 6 characters',
insecure_contexts: 'Insecure contexts (non-HTTPS) are not supported.',
unexpected_error: 'An unexpected error occurred',
};
export default errors;

View file

@ -0,0 +1,40 @@
const general = {
placeholder: 'Placeholder',
skip: 'Skip',
next: 'Next',
retry: 'Try Again',
done: 'Done',
search: 'Search',
search_placeholder: 'Search',
clear_result: 'Clear Results',
save: 'Save',
save_changes: 'Save Changes',
saved: 'Saved!',
loading: 'Loading...',
redirecting: 'Redirecting...',
add: 'Add',
added: 'Added',
cancel: 'Cancel',
confirm: 'Confirm',
check_out: 'Check Out',
create: 'Create',
set_up: 'Set Up',
customize: 'Customize',
enable: 'Enable',
reminder: 'Reminder',
delete: 'Delete',
more_options: 'MORE OPTIONS',
close: 'Close',
copy: 'Copy',
copying: 'Copying',
copied: 'Copied',
required: 'Required',
add_another: '+ Add Another',
deletion_confirmation: 'Are you sure you want to delete this {{title}}?',
settings_nav: 'Settings',
unsaved_changes_warning: 'You have made some changes. Are you sure you want to leave this page?',
leave_page: 'Leave Page',
stay_on_page: 'Stay on Page',
};
export default general;

View file

@ -0,0 +1,25 @@
const get_started = {
progress: 'Get started guide: {{completed}}/{{total}}',
progress_dropdown_title: 'A few things you can do...',
title: 'How do you want to get started with Logto?',
subtitle_part1: 'A few things you can do to quickly get value of Logto',
subtitle_part2: 'Im done with this set up. ',
hide_this: 'Hide this',
confirm_message: 'Are you sure you want to hide this page? This action cannot be undone.',
card1_title: 'Check out the demo',
card1_subtitle: 'Try Logto sign-in experience now to see how it works',
card2_title: 'Create and integrate the first application',
card2_subtitle:
'Set up a mobile, single page or traditional application to use Logto for authentication',
card3_title: 'Customize sign-in experience',
card3_subtitle: 'Customize the sign in UI to match your brand and view in real time',
card4_title: 'Set up SMS and email connector',
card4_subtitle:
'Try passwordless sign in with phone number or email to enable a secure and frictionless customer experience',
card5_title: 'Add a social connector',
card5_subtitle: 'Let your customers sign in to your app with the social identities in one click',
card6_title: 'Further readings',
card6_subtitle: 'Check out our step-by-step, scenario-based docs without tedious concepts',
};
export default get_started;

View file

@ -0,0 +1,52 @@
import api_resource_details from './api-resource-details';
import api_resources from './api-resources';
import application_details from './application-details';
import applications from './applications';
import connector_details from './connector-details';
import connectors from './connectors';
import contact from './contact';
import dashboard from './dashboard';
import errors from './errors';
import general from './general';
import get_started from './get-started';
import log_details from './log-details';
import logs from './logs';
import session_expired from './session-expired';
import settings from './settings';
import sign_in_exp from './sign-in-exp';
import tab_sections from './tab-sections';
import tabs from './tabs';
import user_details from './user-details';
import users from './users';
import welcome from './welcome';
const admin_console = {
title: 'Admin Console',
sign_out: 'Sign Out',
profile: 'Profile',
admin_user: 'Admin',
system_app: 'System',
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,
settings,
dashboard,
logs,
log_details,
session_expired,
welcome,
};
export default admin_console;

View file

@ -0,0 +1,17 @@
const log_details = {
back_to_logs: 'Back to Audit Logs',
back_to_user: 'Back to {{name}}',
success: 'Success',
failed: 'Failed',
event_type: 'Event type',
application: 'Application',
ip_address: 'IP address',
user: 'User',
log_id: 'Log ID',
time: 'Time',
user_agent: 'User agent',
tab_details: 'Details',
raw_data: 'Raw data',
};
export default log_details;

View file

@ -0,0 +1,11 @@
const logs = {
title: 'Audit Logs',
subtitle: 'View log data of authentication events made by your admin and users',
event: 'Event',
user: 'User',
application: 'Application',
time: 'Time',
filter_by: 'Filter by',
};
export default logs;

View file

@ -0,0 +1,8 @@
const session_expired = {
title: 'Session Expired',
subtitle:
'Your session might have expired and you have been disconnected. Click the button below to sign in to admin console again.',
button: 'Sign In Again',
};
export default session_expired;

View file

@ -0,0 +1,29 @@
const settings = {
title: 'Settings',
description: 'Manage the global settings',
tabs: {
general: 'General',
},
custom_domain: 'Custom domain',
language: 'Language',
language_english: 'English',
language_chinese: 'Chinese',
appearance: 'Appearance',
appearance_system: 'Sync with system',
appearance_light: 'Light mode',
appearance_dark: 'Dark mode',
saved: 'Saved!',
change_password: 'Change Password',
change_password_description:
'You can change password for this account. You will use current username with new password to sign in Admin Console.',
change_modal_title: 'Change Account Password',
change_modal_description:
'You will use current username with new password to sign in Admin Console.',
new_password: 'New password',
new_password_placeholder: 'Enter your password',
confirm_password: 'Confirm password',
confirm_password_placeholder: 'Confirm your password',
password_changed: 'Password changed!',
};
export default settings;

View file

@ -0,0 +1,118 @@
const sign_in_exp = {
title: 'Sign-in Experience',
description: 'Customize the sign in UI to match your brand and view in real time',
tabs: {
branding: 'Branding',
methods: 'Sign-in methods',
others: 'Others',
},
welcome: {
title:
'This is the first time you define sign-in experience. This guide will help you go through all necessary settings and quickly get started.',
get_started: 'Get Started',
apply_remind:
'Please note that sign-in experience will apply to all applications under this account.',
got_it: 'Got It',
},
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',
styles: {
logo_slogan: 'App logo with slogan',
logo: 'App logo only',
},
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',
slogan: 'Slogan',
slogan_placeholder: 'Unleash your creativity',
},
terms_of_use: {
title: 'TERMS OF USE',
enable: 'Enable terms of use',
description: 'Add the legal agreements for the use of your product',
terms_of_use: 'Terms of use',
terms_of_use_placeholder: 'https://your.terms.of.use/',
terms_of_use_tip: 'Terms of use URL',
},
sign_in_methods: {
title: 'SIGN-IN METHODS',
primary: 'Primary sign-in method',
enable_secondary: 'Enable secondary sign in',
enable_secondary_description:
"Once it's turned on, you app will support more sign-in method(s) besides the primary one. ",
methods: 'Sign-in method',
methods_sms: 'Phone number sign in',
methods_email: 'Email sign in',
methods_social: 'Social sign in',
methods_username: 'Username-with-password sign in',
methods_primary_tag: '(Primary)',
define_social_methods: 'Define social sign-in methods',
transfer: {
title: 'Social connectors',
footer: {
not_in_list: 'Not in the list?',
set_up_more: 'Set up more',
go_to: 'social connectors or go to “Connectors” section.',
},
},
},
others: {
languages: {
title: 'LANGUAGES',
mode: 'Language mode',
auto: 'Auto',
fixed: 'Fixed',
fallback_language: 'Fallback language',
fallback_language_tip:
'Which language to fall back if Logto finds no proper language phrase-set.',
fixed_language: 'Fixed language',
languages: {
english: 'English',
chinese: 'Chinese',
},
},
},
setup_warning: {
no_connector: '',
no_connector_sms:
'You havent set up a SMS connector yet. Your sign in experience wont go live until you finish the settings first. ',
no_connector_email:
'You havent set up an Email connector yet. Your sign in experience wont go live until you finish the settings first. ',
no_connector_social:
'You havent set up any social connectors yet. Your sign in experience wont go live until you finish the settings first. ',
no_added_social_connector:
'Youve set up a few social connectors now. Make sure to add some to your sign in experience.',
},
save_alert: {
description:
'You are changing sign-in methods. This will impact some of your users. Are you sure you want to do that?',
before: 'Before',
after: 'After',
},
preview: {
title: 'Sign-in Preview',
languages: {
english: 'English',
chinese: 'Chinese',
},
dark: 'Dark',
light: 'Light',
native: 'Native',
desktop_web: 'Desktop Web',
mobile_web: 'Mobile Web',
},
};
export default sign_in_exp;

View file

@ -0,0 +1,8 @@
const tab_sections = {
overview: 'Overview',
resource_management: 'Resource Management',
user_management: 'User Management',
help_and_support: 'Help and Support',
};
export default tab_sections;

View file

@ -0,0 +1,15 @@
const tabs = {
get_started: 'Get Started',
dashboard: 'Dashboard',
applications: 'Applications',
api_resources: 'API Resources',
sign_in_experience: 'Sign-in Experience',
connectors: 'Connectors',
users: 'User Management',
audit_logs: 'Audit Logs',
docs: 'Docs',
contact_us: 'Contact Us',
settings: 'Settings',
};
export default tabs;

View file

@ -0,0 +1,39 @@
const user_details = {
back_to_users: 'Back to User Management',
created_title: 'This user has been successfully created',
created_guide: 'You can send the following log in information to the user',
created_username: 'Username:',
created_password: 'Password:',
menu_delete: 'Delete',
delete_description: 'This action cannot be undone. It will permanently delete the user.',
deleted: 'The user has been successfully deleted',
reset_password: {
reset_password: 'Reset password',
title: 'Are you sure you want to reset the password?',
content: "This action cannot be undone. This will reset the user's log in information.",
congratulations: 'This user has been reset',
new_password: 'New password:',
},
tab_logs: 'User logs',
field_email: 'Primary email',
field_phone: 'Primary phone',
field_username: 'Username',
field_name: 'Name',
field_avatar: 'Avatar image URL',
field_avatar_placeholder: 'https://your.cdn.domain/avatar.png',
field_custom_data: 'Custom data',
field_custom_data_tip:
'Additional user info not listed in the pre-defined user properties, such as user-preferred color and language.',
field_connectors: 'Social connections',
custom_data_invalid: 'Custom data must be a valid JSON',
connectors: {
connectors: 'Connectors',
user_id: 'User ID',
remove: 'Remove',
not_connected: 'The user is not connected to any social connector',
deletion_confirmation:
'You are removing the existing <name/> identity. Are you sure you want to do that?',
},
};
export default user_details;

View file

@ -0,0 +1,15 @@
const users = {
title: 'User Management',
subtitle:
'Manage user identities including creating users, editing user information, viewing user logs, password resets and deleting users',
create: 'Add User',
user_name: 'User',
application_name: 'From application',
latest_sign_in: 'Latest sign in',
create_form_username: 'Username',
create_form_password: 'Password',
create_form_name: 'Full name',
unnamed: 'Unnamed',
};
export default users;

View file

@ -0,0 +1,8 @@
const welcome = {
title: 'Welcome to Admin Console',
description:
'Admin console is a web app to manage Logto without coding requirements. Lets first create an account. With this account, you can manage Logto by yourself or on behalf of your company.',
create_account: 'Create Account',
};
export default welcome;

View file

@ -0,0 +1,14 @@
const demo_app = {
notification: 'Use your admin console account to sign in to this demo app.',
title: "You've successfully signed in the demo app!",
subtitle: 'Here is your log in information:',
username: 'Username: ',
user_id: 'User ID: ',
sign_out: 'Sign Out the Demo App',
continue_explore: 'Or continue to explore',
customize_sign_in_experience: 'Customize Sign-in Experience',
enable_passwordless: 'Enable Passwordless',
add_social_connector: 'Add Social Connector',
};
export default demo_app;

View file

@ -0,0 +1,9 @@
import admin_console from './admin-console';
import demo_app from './demo-app';
const translation = {
admin_console,
demo_app,
};
export default translation;

View file

@ -0,0 +1,104 @@
const errors = {
auth: {
authorization_header_missing: '缺少权限标题',
authorization_token_type_not_supported: '权限类型不支持',
unauthorized: '未经授权。请检查凭据及其范围。',
forbidden: '禁止访问。请检查用户权限。',
jwt_sub_missing: 'JWT 缺失 `sub`',
},
guard: {
invalid_input: '请求中 {{type}} 无效',
invalid_pagination: '分页参数无效',
},
oidc: {
aborted: '用户终止了交互。',
invalid_scope: '不支持的 scope: {{scopes}}',
invalid_scope_plural: '不支持的 scope: {{scopes}}',
invalid_token: 'Token 无效',
invalid_client_metadata: '无效的客户端元数据',
insufficient_scope: '请求 token 缺少权限: {{scopes}}',
invalid_request: '请求无效',
invalid_grant: '授权请求无效',
invalid_redirect_uri: '无效返回链接, 该 redirect_uri 未被此应用注册。',
access_denied: '拒绝访问',
invalid_target: '请求资源无效',
unsupported_grant_type: '不支持的 grant_type',
unsupported_response_mode: '不支持的 response_mode',
unsupported_response_type: '不支持的 response_type',
provider_error: 'OIDC 内部错误: {{message}}',
},
user: {
username_exists_register: '用户名已被注册',
email_exists_register: '邮箱地址已被注册',
phone_exists_register: '手机号码已被注册',
invalid_email: '邮箱地址不正确',
invalid_phone: '手机号码不正确',
username_not_exists: '用户名尚未注册',
email_not_exists: '邮箱地址尚未注册',
phone_not_exists: '手机号码尚未注册',
identity_not_exists: '该社交帐号尚未注册',
identity_exists: '该社交帐号已被注册',
invalid_role_names: '角色名称({{roleNames}})无效',
},
password: {
unsupported_encryption_method: '不支持的加密方法 {{name}}',
pepper_not_found: '密码 pepper 未找到。请检查 core 的环境变量。',
},
session: {
not_found: '未找到会话。请返回并重新登录。',
invalid_credentials: '用户名或密码错误,请检查你的输入。',
invalid_sign_in_method: '当前登录方式不可用',
invalid_connector_id: '找不到 ID 为 {{connectorId}} 的可用连接器。',
insufficient_info: '登录信息缺失,请检查你的输入。',
connector_id_mismatch: '传入的连接器 ID 与 session 中保存的记录不一致',
connector_session_not_found: '无法找到连接器登录信息,请尝试重新登录。',
unauthorized: '请先登录',
unsupported_prompt_name: '不支持的 prompt name',
},
connector: {
general: '连接器发生未知错误{{errorDescription}}',
not_found: '找不到可用的 {{type}} 类型的连接器',
not_enabled: '连接器尚未启用',
insufficient_request_parameters: '请求参数缺失',
invalid_config: '连接器配置错误',
invalid_response: '连接器错误响应',
template_not_found: '无法从连接器配置中找到对应的模板',
invalid_access_token: '当前连接器的 access_token 无效',
invalid_auth_code: '当前连接器的授权码无效',
invalid_id_token: '当前连接器的 id_token 无效',
authorization_failed: '用户授权流程失败',
oauth_code_invalid: '无法获取 access_token请检查授权 code 是否有效',
more_than_one_sms: '同时存在超过 1 个短信连接器',
more_than_one_email: '同时存在超过 1 个邮件连接器',
db_connector_type_mismatch: '数据库中存在一个类型不匹配的连接。',
},
passcode: {
phone_email_empty: '手机号与邮箱地址均为空',
not_found: '验证码不存在,请先请求发送验证码',
phone_mismatch: '手机号码不匹配,请尝试请求新的验证码。',
email_mismatch: '邮箱地址不匹配,请尝试请求新的验证码。',
code_mismatch: '验证码不正确',
expired: '验证码已过期,请尝试请求新的验证码。',
exceed_max_try: '超过最大验证次数,请尝试请求新的验证码。',
},
sign_in_experiences: {
empty_content_url_of_terms_of_use: '你启用了“使用条款”,请添加使用条款 URL。',
empty_logo: '请输入 logo URL',
empty_slogan: '你选择了 App logo + 标语的布局。请输入你的标语。',
empty_social_connectors: '你启用了社交登录的方式。请至少选择一个社交连接器。',
enabled_connector_not_found: '未找到已启用的 {{type}} 连接器',
not_one_and_only_one_primary_sign_in_method: '主要的登录方式必须有且仅有一个,请检查你的输入。',
},
swagger: {
invalid_zod_type: '无效的 Zod 类型,请检查路由 guard 配置。',
not_supported_zod_type_for_params: '请求参数不支持的 Zod 类型,请检查路由 guard 配置。',
},
entity: {
create_failed: '创建 {{name}} 失败',
not_exists: '该 {{name}} 不存在',
not_exists_with_id: 'ID 为 `{{id}}` 的 {{name}} 不存在',
not_found: '该资源不存在',
},
};
export default errors;

View file

@ -0,0 +1,10 @@
import en from '../en';
import errors from './errors';
import translation from './translation';
const zhCN: typeof en = Object.freeze({
translation,
errors,
});
export default zhCN;

View file

@ -0,0 +1,11 @@
const api_resource_details = {
back_to_api_resources: '返回 API 资源',
token_expiration_time_in_seconds: 'Token 过期时间(秒)',
token_expiration_time_in_seconds_placeholder: '请输入你的 token 过期时间',
delete_description:
'本操作会永久性地删除该 API 资源,且不可撤销。输入 API 资源名称 <span>{{name}}</span> 确认。',
enter_your_api_resource_name: '输入 API 资源名称',
api_resource_deleted: ' API 资源 {{name}} 已删除.',
};
export default api_resource_details;

View file

@ -0,0 +1,14 @@
const api_resources = {
title: 'API 资源',
subtitle: '定义可以从已授权的应用程序中使用的 API',
create: '创建 API 资源',
api_name: 'API 名称',
api_name_placeholder: '输入API名称',
api_identifier: 'API Identifier',
api_identifier_placeholder: 'https://your-api-identifier/',
api_identifier_tip:
'对于 API 资源的唯一标识符。它必须是一个绝对 URI 并没有 fragment (#) 组件。等价于 OAuth 2.0 中的 resource parameter。',
api_resource_created: ' API 资源 {{name}} 已成功创建!',
};
export default api_resources;

View file

@ -0,0 +1,35 @@
const application_details = {
back_to_applications: '返回全部应用',
check_guide: '查看指南',
advanced_settings: '高级设置',
application_name: '应用名称',
application_name_placeholder: '我的应用',
description: '描述',
description_placeholder: '请输入应用描述',
authorization_endpoint: 'Authorization Endpoint',
authorization_endpoint_tip: '进行鉴权与授权的端点 endpoint。用于 OpenID Connect 中的鉴权流程。',
redirect_uri: 'Redirect URIs',
redirect_uri_placeholder: 'https://your.website.com/app',
redirect_uri_placeholder_native: 'io.logto://callback',
redirect_uri_tip:
'在用户登录完成(不论成功与否)后重定向的目标 URI。参见 OpenID Connect AuthRequest 以了解更多。',
post_sign_out_redirect_uri: 'Post sign out redirect URIs',
post_sign_out_redirect_uri_placeholder: 'https://your.website.com/home',
post_sign_out_redirect_uri_tip:
'在用户登出后重定向的目标 URI可选。在某些应用类型中可能无实质作用。',
cors_allowed_origins: 'CORS Allowed Origins',
cors_allowed_origins_placeholder: 'https://your.website.com',
cors_allowed_origins_tip:
'所有 Redirect URI 的 origin 将默认被允许。通常不需要对此字段进行操作。',
add_another: '新增',
id_token_expiration: 'ID Token 过期时间',
refresh_token_expiration: 'Refresh Token 过期时间',
token_endpoint: 'Token endpoint',
user_info_endpoint: 'UserInfo endpoint',
delete_description: '本操作会永久性地删除该应用,且不可撤销。输入 <span>{{name}}</span> 确认。',
enter_your_application_name: '输入你的应用名称',
application_deleted: '应用 {{name}} 成功删除.',
redirect_uri_required: '至少需要输入一个 Redirect URL',
};
export default application_details;

View file

@ -0,0 +1,40 @@
const applications = {
title: '全部应用',
subtitle: '创建一个移动、单页或传统 web 应用程序,并通过 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: 'App ID',
type: {
native: {
title: '原生应用',
subtitle: '在原生环境中运行的应用程序',
description: '例如 iOS appAndroid app',
},
spa: {
title: '单页应用',
subtitle: '在浏览器中运行并动态更新数据的应用程序',
description: '例如 React DOM appVue app',
},
traditional: {
title: '传统网页应用',
subtitle: '仅由 Web 服务器渲染和更新的应用程序',
description: '例如 JSP, PHP',
},
},
guide: {
get_sample_file: '获取示例',
header_description:
'参考如下教程,将 Logto 集成到你的应用中。你也可以点击右侧按钮,获取我们为你准备好的示例工程。',
title: '应用创建成功',
subtitle: '参考以下步骤完成你的应用设置。首先,选择你要使用的 SDK 类型:',
description_by_sdk: '本教程向你演示如何在 {{sdk}} 应用中集成 Logto 登录功能',
},
};
export default applications;

View file

@ -0,0 +1,23 @@
const connector_details = {
back_to_connectors: '返回连接器',
check_readme: '查看 README',
save_error_empty_config: '请输入配置内容',
save_error_json_parse_error: '请输入符合 JSON 格式的配置',
send: '发送',
send_error_invalid_format: '无效输入',
edit_config_label: '请在此输入你的 JSON 配置',
test_email_sender: '测试你的邮件连接器',
test_sms_sender: '测试你的短信连接器',
test_email_placeholder: '请输入一个用于测试的邮件地址',
test_sms_placeholder: '请输入一个用于测试的手机号码',
test_message_sent: '测试信息已发送!',
test_sender_description: '如果你的 JSON 配置正确,你会收到一条测试消息。',
options_change_email: '更换邮件连接器',
options_change_sms: '更换短信连接器',
connector_deleted: '成功删除连接器',
type_email: '邮件连接器',
type_sms: '短信连接器',
type_social: '社交连接器',
};
export default connector_details;

View file

@ -0,0 +1,37 @@
const connectors = {
title: '连接器',
subtitle: '设置连接器,开启无密码和社交登录',
create: '添加社交连接器',
tab_email_sms: '短信和邮件连接器',
tab_social: '社交连接器',
connector_name: '连接器名称',
connector_type: '类型',
connector_status: '登录体验',
connector_status_in_use: '使用中',
connector_status_not_in_use: '未使用',
social_connector_eg: '如: 微信登录,支付宝登录',
save_and_done: '保存并完成',
type: {
email: '邮件连接器',
sms: '短信连接器',
social: '社交连接器',
},
setup_title: {
email: '设置邮件连接器',
sms: '设置短信连接器',
social: '添加社交连接器',
},
guide: {
subtitle: '参考以下步骤完成你的连接器设置',
},
platform: {
universal: '通用',
web: '网页',
native: '原生',
},
add_multi_platform: '支持多平台,选择一个平台继续',
drawer_title: '连接器配置指南',
drawer_subtitle: '参考以下步骤完善或修改你的连接器设置',
};
export default connectors;

View file

@ -0,0 +1,21 @@
const contact = {
title: '联系我们',
description: '加入我们的社区,在这里你可以给我们提供产品建议,寻求帮助或和其他开发者交流心得',
discord: {
title: 'Discord 频道',
description: '加入我们的公共频道,和其他开发者一起交流使用经验',
button: '立即加入',
},
github: {
title: 'GitHub',
description: '通过 GitHub给我们提一个 issue',
button: '马上联系',
},
email: {
title: '邮件联系',
description: '通过邮件联系获取信息或寻求帮助',
button: '发送邮件',
},
};
export default contact;

View file

@ -0,0 +1,18 @@
const dashboard = {
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: '日活用户',
daily_active_users_tip: '今日在你的应用上交换过 token 的独立用户数',
weekly_active_users: '周活用户',
weekly_active_users_tip: '最近 7 日在你的应用上交换过 token 的独立用户数',
monthly_active_users: '月活用户',
monthly_active_users_tip: '最近 30 日在你的应用上交换过 token 的独立用户数',
};
export default dashboard;

View file

@ -0,0 +1,18 @@
const errors = {
something_went_wrong: '哎呀,出错了!',
page_not_found: '找不到页面',
unknown_server_error: '服务器发生未知错误',
empty: '没有数据',
missing_total_number: '无法从返回的头部信息中找到 Total-Number',
invalid_uri_format: '无效的 URI 格式',
invalid_origin_format: '无效的 URI origin 格式',
required_field_missing: '请输入{{field}}',
required_field_missing_plural: '至少需要输入一个{{field}}',
more_details: '查看详情',
username_pattern_error: '用户名只能包含英文字母、数字或下划线,且不以数字开头。',
password_pattern_error: '密码应不少于 6 位',
insecure_contexts: '不支持不安全的上下文(非 HTTPS。',
unexpected_error: '发生未知错误',
};
export default errors;

View file

@ -0,0 +1,40 @@
const general = {
placeholder: '占位符',
skip: '跳过',
next: '下一步',
retry: '重试',
done: '完成',
search: '搜索',
search_placeholder: '搜索',
clear_result: '清除结果',
save: '保存',
save_changes: '保存更改',
saved: '保存成功!',
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: '留在此页',
};
export default general;

View file

@ -0,0 +1,23 @@
const get_started = {
progress: '开始上手: {{completed}}/{{total}}',
progress_dropdown_title: '一些快速上手的操作',
title: '还不知道如何使用 Logto?',
subtitle_part1: '下列是一些可以快速上手的操作,通过这些,你可以更好地感受 Logto 的价值',
subtitle_part2: '我已经完成了这些设置。 ',
hide_this: '隐藏引导',
confirm_message: '你确认要隐藏该页面吗? 本操作将无法恢复。',
card1_title: '看看 Demo',
card1_subtitle: '来体验 Logto 登录吧',
card2_title: '创建你的第一款应用',
card2_subtitle: '创建一个原生、单页或传统应用,并通过 Logto 进行身份验证',
card3_title: '自定义你的登录体验',
card3_subtitle: '自定义符合品牌形象的登录界面,并实时预览真实效果',
card4_title: '配置短信和邮件连接器',
card4_subtitle: '通过手机号或邮箱无密码登录以提供一个安全无缝的用户体验',
card5_title: '添加社交连接器',
card5_subtitle: '让你的用户通过社交帐号一键登录',
card6_title: '更多阅读',
card6_subtitle: '查看我们一步一步基于场景的文档,没有复杂的概念,深入浅出',
};
export default get_started;

View file

@ -0,0 +1,52 @@
import api_resource_details from './api-resource-details';
import api_resources from './api-resources';
import application_details from './application-details';
import applications from './applications';
import connector_details from './connector-details';
import connectors from './connectors';
import contact from './contact';
import dashboard from './dashboard';
import errors from './errors';
import general from './general';
import get_started from './get-started';
import log_details from './log-details';
import logs from './logs';
import session_expired from './session-expired';
import settings from './settings';
import sign_in_exp from './sign-in-exp';
import tab_sections from './tab-sections';
import tabs from './tabs';
import user_details from './user-details';
import users from './users';
import welcome from './welcome';
const admin_console = {
title: '管理控制台',
sign_out: '退出登录',
profile: '帐户管理',
admin_user: '管理员',
system_app: '系统应用',
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,
settings,
dashboard,
logs,
log_details,
session_expired,
welcome,
};
export default admin_console;

View file

@ -0,0 +1,17 @@
const log_details = {
back_to_logs: '返回审计日志',
back_to_user: '返回 {{name}}',
success: '成功',
failed: '失败',
event_type: '事件类型',
application: '应用',
ip_address: 'IP 地址',
user: '用户',
log_id: '日志 ID',
time: '时间',
user_agent: '用户代理',
tab_details: '详情',
raw_data: '原始数据',
};
export default log_details;

View file

@ -0,0 +1,11 @@
const logs = {
title: '审计日志',
subtitle: '查看用户行为和事件',
event: '事件',
user: '用户',
application: '应用',
time: '时间',
filter_by: '过滤',
};
export default logs;

View file

@ -0,0 +1,7 @@
const session_expired = {
title: '会话已过期',
subtitle: '会话可能已过期,你已被退出登录。请点击下方按钮重新登录到管理控制台。',
button: '重新登录',
};
export default session_expired;

View file

@ -0,0 +1,27 @@
const settings = {
title: '设置',
description: '管理全局设置',
tabs: {
general: '通用',
},
custom_domain: '自定义域名',
language: '语言',
language_english: '英语',
language_chinese: '中文',
appearance: '外观',
appearance_system: '跟随系统',
appearance_light: '浅色模式',
appearance_dark: '深色模式',
saved: '已保存!',
change_password: '修改密码',
change_password_description: '修改本帐号密码。生效后使用当前用户名和新密码登录管理控制台。',
change_modal_title: '修改帐号密码',
change_modal_description: '生效后使用当前用户名和新密码登录管理控制台。',
new_password: '新密码',
new_password_placeholder: '输入密码',
confirm_password: '确认密码',
confirm_password_placeholder: '确认密码',
password_changed: '密码已修改!',
};
export default settings;

View file

@ -0,0 +1,109 @@
const sign_in_exp = {
title: '登录体验',
description: '自定义登录界面,并实时预览真实效果',
tabs: {
branding: '品牌',
methods: '登录方式',
others: '其它',
},
welcome: {
title: '这是你首次定义登录体验。跟随引导,完成登录体验的必要设置项。',
get_started: '开始',
apply_remind: '请注意,登录体验将会应用到当前帐户下的所有应用。',
got_it: '知道了',
},
color: {
title: '颜色',
primary_color: '品牌颜色',
dark_primary_color: '品牌颜色 (深色)',
dark_mode: '开启深色模式',
dark_mode_description:
'基于品牌颜色和 Logto 的算法,应用将会有一个自动生成的深色模式。当然,你可以自定义和修改。',
dark_mode_reset_tip: '基于品牌颜色,重新生成深色模式颜色。',
reset: '重新生成',
},
branding: {
title: '品牌定制区',
ui_style: '样式',
styles: {
logo_slogan: 'Logo 和标语',
logo: '仅有 Logo',
},
logo_image_url: 'Logo 图片 URL',
logo_image_url_placeholder: 'https://your.cdn.domain/logo.png',
dark_logo_image_url: 'Logo 图片 URL (深色)',
dark_logo_image_url_placeholder: 'https://your.cdn.domain/logo-dark.png',
slogan: '标语',
slogan_placeholder: '释放你的创意',
},
terms_of_use: {
title: '使用条款',
enable: '开启使用条款',
description: '添加使用产品的法律协议。',
terms_of_use: '使用条款',
terms_of_use_placeholder: 'https://your.terms.of.use/',
terms_of_use_tip: '使用条款 URL',
},
sign_in_methods: {
title: '登录方式',
primary: '主要登录方式',
enable_secondary: '启用其它登录方式',
enable_secondary_description: '开启后,除了主要登录方式,你的 app 将会支持更多其它的登录方式 ',
methods: '登录方式',
methods_sms: '手机号登录',
methods_email: '邮箱登录',
methods_social: '社交帐号登录',
methods_username: '用户名密码登录',
methods_primary_tag: '(主要)',
define_social_methods: '定义社交登录方式',
transfer: {
title: '社交连接器',
footer: {
not_in_list: '不在列表里?',
set_up_more: '设置更多',
go_to: '社交连接器,或前往连接器模块进行设置。',
},
},
},
others: {
languages: {
title: '语言',
mode: '语言模式',
auto: '自动',
fixed: '固定',
fallback_language: '备用语言',
fallback_language_tip: '如果 Logto 找不到合适的语言包,将回退至哪种语言。',
fixed_language: '固定语言',
languages: {
english: '英文',
chinese: '中文',
},
},
},
setup_warning: {
no_connector: '',
no_connector_sms: '你还没有设置 SMS 连接器。你需完成设置后登录体验才会生效。',
no_connector_email: '你还没有设置 email 连接器。你需完成设置后登录体验才会生效。',
no_connector_social: '你还没有设置社交连接器。你需完成设置后登录体验才会生效。',
no_added_social_connector: '你已经成功设置了一些社交连接器。点按「+」添加一些到你的登录体验。',
},
save_alert: {
description: '你正在修改登录方式,这可能会影响部分用户。是否继续保存修改?',
before: '修改前',
after: '修改后',
},
preview: {
title: '登录预览',
languages: {
english: '英文',
chinese: '中文',
},
dark: '深色',
light: '浅色',
native: '移动原生',
desktop_web: '桌面网页',
mobile_web: '移动网页',
},
};
export default sign_in_exp;

View file

@ -0,0 +1,8 @@
const tab_sections = {
overview: '概览',
resource_management: '资源管理',
user_management: '用户管理',
help_and_support: '帮助与支持',
};
export default tab_sections;

View file

@ -0,0 +1,15 @@
const tabs = {
get_started: '开始上手',
dashboard: '仪表盘',
applications: '全部应用',
api_resources: 'API 资源',
sign_in_experience: '登录体验',
connectors: '连接器',
users: '用户管理',
audit_logs: '审计日志',
docs: '文档',
contact_us: '联系我们',
settings: '设置',
};
export default tabs;

View file

@ -0,0 +1,37 @@
const user_details = {
back_to_users: '返回用户管理',
created_title: '用户创建成功',
created_guide: '你可以将以下登录信息发送给用户',
created_username: '用户名:',
created_password: '密码:',
menu_delete: '删除用户',
delete_description: '本操作将永久删除该用户,且无法撤销。',
deleted: '用户已成功删除!',
reset_password: {
reset_password: '重置密码',
title: '确定要重置密码?',
content: '本操作不可撤销,将会重置用户的登录信息。',
congratulations: '该用户已被重置',
new_password: '新密码:',
},
tab_logs: '用户日志',
field_email: '主要邮箱',
field_phone: '主要手机号码',
field_username: '用户名',
field_name: '姓名',
field_avatar: '头像图片链接',
field_avatar_placeholder: 'https://your.cdn.domain/avatar.png',
field_custom_data: '自定义数据',
field_custom_data_tip: '预定义属性之外的用户信息,例如用户偏好的颜色和语言。',
field_connectors: '社交帐号',
custom_data_invalid: '自定义数据必须是有效的 JSON',
connectors: {
connectors: '连接器',
user_id: '用户ID',
remove: '删除',
not_connected: '该用户还没有绑定社交帐号',
deletion_confirmation: '你在正要删除现有的 <name /> 身份,是否确认?',
},
};
export default user_details;

View file

@ -0,0 +1,14 @@
const users = {
title: '用户管理',
subtitle: '管理你的用户,包括创建新用户,编辑用户资料,查看用户日志,以及重新设置密码和删除用户',
create: '添加用户',
user_name: '用户',
application_name: '注册应用',
latest_sign_in: '最后登录',
create_form_username: '用户名',
create_form_password: '密码',
create_form_name: '姓名',
unnamed: '未命名',
};
export default users;

View file

@ -0,0 +1,8 @@
const welcome = {
title: '欢迎来到管理控制台',
description:
'管理控制台是一个无需代码操作的应用。你可以用它来管理登录体验。让我们首先创建一个帐号。你可以用它以个人或公司的身份管理 Logto。',
create_account: '创建帐号',
};
export default welcome;

View file

@ -0,0 +1,14 @@
const demo_app = {
notification: '使用管理控制台帐号登录示例应用',
title: '恭喜!你已成功登录到示例应用!',
subtitle: '以下是本次登录的用户信息:',
username: '用户名:',
user_id: '用户 ID',
sign_out: '退出登录示例应用',
continue_explore: '或继续探索',
customize_sign_in_experience: '自定义登录体验',
enable_passwordless: '启用无密码登录',
add_social_connector: '添加社交连接器',
};
export default demo_app;

View file

@ -0,0 +1,9 @@
import admin_console from './admin-console';
import demo_app from './demo-app';
const translation = {
admin_console,
demo_app,
};
export default translation;

View file

@ -1,658 +1,5 @@
/* eslint-disable max-lines */
const translation = {
admin_console: {
title: 'Admin Console',
sign_out: 'Sign Out',
profile: 'Profile',
admin_user: 'Admin',
system_app: 'System',
general: {
placeholder: 'Placeholder',
skip: 'Skip',
next: 'Next',
retry: 'Try Again',
done: 'Done',
search: 'Search',
search_placeholder: 'Search',
clear_result: 'Clear Results',
save: 'Save',
save_changes: 'Save Changes',
saved: 'Saved!',
loading: 'Loading...',
redirecting: 'Redirecting...',
add: 'Add',
added: 'Added',
cancel: 'Cancel',
confirm: 'Confirm',
check_out: 'Check Out',
create: 'Create',
set_up: 'Set Up',
customize: 'Customize',
enable: 'Enable',
reminder: 'Reminder',
delete: 'Delete',
more_options: 'MORE OPTIONS',
close: 'Close',
copy: 'Copy',
copying: 'Copying',
copied: 'Copied',
required: 'Required',
add_another: '+ Add Another',
deletion_confirmation: 'Are you sure you want to delete this {{title}}?',
settings_nav: 'Settings',
unsaved_changes_warning:
'You have made some changes. Are you sure you want to leave this page?',
leave_page: 'Leave Page',
stay_on_page: 'Stay on Page',
},
errors: {
something_went_wrong: 'Oops! Something went wrong.',
page_not_found: 'Page not found',
unknown_server_error: 'Unknown server error occurred',
empty: 'No data',
missing_total_number: 'Unable to find Total-Number in response headers',
invalid_uri_format: 'Invalid URI format',
invalid_origin_format: 'Invalid URI origin format',
required_field_missing: 'Please enter {{field}}',
required_field_missing_plural: 'You have to enter at least one {{field}}',
more_details: 'More details',
username_pattern_error:
'Username should only contain letters, numbers, or underscore and should not start with a number.',
password_pattern_error: 'Password requires a minimum of 6 characters',
insecure_contexts: 'Insecure contexts (non-HTTPS) are not supported.',
unexpected_error: 'An unexpected error occurred',
},
tab_sections: {
overview: 'Overview',
resource_management: 'Resource Management',
user_management: 'User Management',
help_and_support: 'Help and Support',
},
tabs: {
get_started: 'Get Started',
dashboard: 'Dashboard',
applications: 'Applications',
api_resources: 'API Resources',
sign_in_experience: 'Sign-in Experience',
connectors: 'Connectors',
users: 'User Management',
audit_logs: 'Audit Logs',
docs: 'Docs',
contact_us: 'Contact Us',
settings: 'Settings',
},
applications: {
title: 'Applications',
subtitle:
'Set up a mobile, single page or traditional application to use Logto for authentication',
create: 'Create Application',
application_name: 'Application name',
application_name_placeholder: 'My App',
application_description: 'Application description',
application_description_placeholder: 'Enter your application description',
select_application_type: 'Select an application type',
no_application_type_selected: 'You havent selected any application type yet',
application_created:
'The application {{name}} has been successfully created! \nNow finish your application settings.',
app_id: 'App ID',
type: {
native: {
title: 'Native App',
subtitle: 'An app that runs in a native environment',
description: 'E.g., iOS app, Android app',
},
spa: {
title: 'Single Page App',
subtitle: 'An app that runs in a web browser and dynamically updates data in place',
description: 'E.g., React DOM app, Vue app',
},
traditional: {
title: 'Traditional Web',
subtitle: 'An app that renders and updates pages by the web server alone',
description: 'E.g., JSP, PHP',
},
},
guide: {
get_sample_file: 'Get Sample',
header_description:
'Follow a step by step guide to integrate your application or click the right button to get our sample project',
title: 'The application has been successfully created',
subtitle:
'Now follow the steps below to finish your app settings. Please select the SDK type to continue.',
description_by_sdk:
'This quick start guide demonstrates how to integrate Logto into {{sdk}} app',
},
},
application_details: {
back_to_applications: 'Back to Applications',
check_guide: 'Check Guide',
advanced_settings: 'Advanced settings',
application_name: 'Application name',
application_name_placeholder: 'My App',
description: 'Description',
description_placeholder: 'Enter your application description',
authorization_endpoint: 'Authorization endpoint',
authorization_endpoint_tip:
"The endpoint to perform authentication and authorization. It's used for OpenID Connect Authentication.",
redirect_uri: 'Redirect URIs',
redirect_uri_placeholder: 'https://your.website.com/app',
redirect_uri_placeholder_native: 'io.logto://callback',
redirect_uri_tip:
'The URI redirects after a user sign-in (whether successful or not). See OpenID Connect AuthRequest for more info.',
post_sign_out_redirect_uri: 'Post Sign-out Redirect URIs',
post_sign_out_redirect_uri_placeholder: 'https://your.website.com/home',
post_sign_out_redirect_uri_tip:
'The URI redirects after a user sign-out (optional). It may have no practical effect in some app types.',
cors_allowed_origins: 'CORS allowed origins',
cors_allowed_origins_placeholder: 'https://your.website.com',
cors_allowed_origins_tip:
'By default, all the origins of Redirect URIs will be allowed. Usually no action is required for this field.',
add_another: 'Add Another',
id_token_expiration: 'ID Token expiration',
refresh_token_expiration: 'Refresh Token expiration',
token_endpoint: 'Token endpoint',
user_info_endpoint: 'Userinfo endpoint',
delete_description:
'This action cannot be undone. It will permanently delete the application. Please enter the application name <span>{{name}}</span> to confirm.',
enter_your_application_name: 'Enter your application name',
application_deleted: 'Application {{name}} has been successfully deleted',
redirect_uri_required: 'You must enter at least one redirect URI',
},
api_resources: {
title: 'API Resources',
subtitle: 'Define APIs that you can consume from your authorized applications',
create: 'Create API Resource',
api_name: 'API name',
api_name_placeholder: 'Enter your API name',
api_identifier: 'API identifier',
api_identifier_tip:
'The unique identifier to the API resource. It must be an absolute URI and has no fragment (#) component. Equals to the resource parameter in OAuth 2.0.',
api_resource_created: 'The API resource {{name}} has been successfully created',
api_identifier_placeholder: 'https://your-api-identifier/',
},
api_resource_details: {
back_to_api_resources: 'Back to API resources',
token_expiration_time_in_seconds: 'Token expiration time (in seconds)',
token_expiration_time_in_seconds_placeholder: 'Enter your token expiration time',
delete_description:
'This action cannot be undone. It will permanently delete the API resource. Please enter the api resource name <span>{{name}}</span> to confirm.',
enter_your_api_resource_name: 'Enter your API resource name',
api_resource_deleted: 'The API Resource {{name}} has been successfully deleted',
},
connectors: {
title: 'Connectors',
subtitle: 'Set up connectors to enable passwordless and social sign in experience',
create: 'Add Social Connector',
tab_email_sms: 'Email and SMS connectors',
tab_social: 'Social connectors',
connector_name: 'Connector name',
connector_type: 'Type',
connector_status: 'Sign in Experience',
connector_status_in_use: 'In use',
connector_status_not_in_use: 'Not in use',
social_connector_eg: 'E.g., Google, Facebook, Github',
save_and_done: 'Save and Done',
type: {
email: 'Email connector',
sms: 'SMS connector',
social: 'Social connector',
},
setup_title: {
email: 'Set up email connector',
sms: 'Set up SMS connector',
social: 'Add Social Connector',
},
guide: {
subtitle: 'A step by step guide to configure your connector',
},
platform: {
universal: 'Universal',
web: 'Web',
native: 'Native',
},
add_multi_platform: ' supports multiple platform, select a platform to continue',
drawer_title: 'Connector Guide',
drawer_subtitle: 'Follow the instructions to integrate your connector',
},
connector_details: {
back_to_connectors: 'Back to Connectors',
check_readme: 'Check README',
save_error_empty_config: 'Please enter config',
save_error_json_parse_error: 'Please enter valid JSON',
send: 'Send',
send_error_invalid_format: 'Invalid input',
edit_config_label: 'Enter your json here',
test_email_sender: 'Test your email connector',
test_sms_sender: 'Test your SMS connector',
test_email_placeholder: 'Enter a test email address',
test_sms_placeholder: 'Enter a test phone number',
test_message_sent: 'Test message sent!',
test_sender_description: 'You will receive a message if your json is rightly configured',
options_change_email: 'Change email connector',
options_change_sms: 'Change SMS connector',
connector_deleted: 'The connector has been successfully deleted',
type_email: 'Email connector',
type_sms: 'SMS connector',
type_social: 'Social connector',
},
get_started: {
progress: 'Get started guide: {{completed}}/{{total}}',
progress_dropdown_title: 'A few things you can do...',
title: 'How do you want to get started with Logto?',
subtitle_part1: 'A few things you can do to quickly get value of Logto',
subtitle_part2: 'Im done with this set up. ',
hide_this: 'Hide this',
confirm_message: 'Are you sure you want to hide this page? This action cannot be undone.',
card1_title: 'Check out the demo',
card1_subtitle: 'Try Logto sign-in experience now to see how it works',
card2_title: 'Create and integrate the first application',
card2_subtitle:
'Set up a mobile, single page or traditional application to use Logto for authentication',
card3_title: 'Customize sign-in experience',
card3_subtitle: 'Customize the sign in UI to match your brand and view in real time',
card4_title: 'Set up SMS and email connector',
card4_subtitle:
'Try passwordless sign in with phone number or email to enable a secure and frictionless customer experience',
card5_title: 'Add a social connector',
card5_subtitle:
'Let your customers sign in to your app with the social identities in one click',
card6_title: 'Further readings',
card6_subtitle: 'Check out our step-by-step, scenario-based docs without tedious concepts',
},
users: {
title: 'User Management',
subtitle:
'Manage user identities including creating users, editing user information, viewing user logs, password resets and deleting users',
create: 'Add User',
user_name: 'User',
application_name: 'From application',
latest_sign_in: 'Latest sign in',
create_form_username: 'Username',
create_form_password: 'Password',
create_form_name: 'Full name',
unnamed: 'Unnamed',
},
user_details: {
back_to_users: 'Back to User Management',
created_title: 'This user has been successfully created',
created_guide: 'You can send the following log in information to the user',
created_username: 'Username:',
created_password: 'Password:',
menu_delete: 'Delete',
delete_description: 'This action cannot be undone. It will permanently delete the user.',
deleted: 'The user has been successfully deleted',
reset_password: {
reset_password: 'Reset password',
title: 'Are you sure you want to reset the password?',
content: "This action cannot be undone. This will reset the user's log in information.",
congratulations: 'This user has been reset',
new_password: 'New password:',
},
tab_logs: 'User logs',
field_email: 'Primary email',
field_phone: 'Primary phone',
field_username: 'Username',
field_name: 'Name',
field_avatar: 'Avatar image URL',
field_avatar_placeholder: 'https://your.cdn.domain/avatar.png',
field_custom_data: 'Custom data',
field_custom_data_tip:
'Additional user info not listed in the pre-defined user properties, such as user-preferred color and language.',
field_connectors: 'Social connections',
custom_data_invalid: 'Custom data must be a valid JSON',
connectors: {
connectors: 'Connectors',
user_id: 'User ID',
remove: 'Remove',
not_connected: 'The user is not connected to any social connector',
deletion_confirmation:
'You are removing the existing <name/> identity. Are you sure you want to do that?',
},
},
contact: {
title: 'Contact Us',
description:
'Join in our community to provide feedback, ask for help and share your thoughts with other developers',
discord: {
title: 'Discord channel',
description: 'Join our public channel to chat with other developers',
button: 'Join',
},
github: {
title: 'GitHub',
description: 'Create an issue and submit at GitHub',
button: 'Contact',
},
email: {
title: 'Send email',
description: 'Send us an email for further information and help',
button: 'Send',
},
},
sign_in_exp: {
title: 'Sign-in Experience',
description: 'Customize the sign in UI to match your brand and view in real time',
tabs: {
branding: 'Branding',
methods: 'Sign-in methods',
others: 'Others',
},
welcome: {
title:
'This is the first time you define sign-in experience. This guide will help you go through all necessary settings and quickly get started.',
get_started: 'Get Started',
apply_remind:
'Please note that sign-in experience will apply to all applications under this account.',
got_it: 'Got It',
},
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',
styles: {
logo_slogan: 'App logo with slogan',
logo: 'App logo only',
},
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',
slogan: 'Slogan',
slogan_placeholder: 'Unleash your creativity',
},
terms_of_use: {
title: 'TERMS OF USE',
enable: 'Enable terms of use',
description: 'Add the legal agreements for the use of your product',
terms_of_use: 'Terms of use',
terms_of_use_placeholder: 'https://your.terms.of.use/',
terms_of_use_tip: 'Terms of use URL',
},
sign_in_methods: {
title: 'SIGN-IN METHODS',
primary: 'Primary sign-in method',
enable_secondary: 'Enable secondary sign in',
enable_secondary_description:
"Once it's turned on, you app will support more sign-in method(s) besides the primary one. ",
methods: 'Sign-in method',
methods_sms: 'Phone number sign in',
methods_email: 'Email sign in',
methods_social: 'Social sign in',
methods_username: 'Username-with-password sign in',
methods_primary_tag: '(Primary)',
define_social_methods: 'Define social sign-in methods',
transfer: {
title: 'Social connectors',
footer: {
not_in_list: 'Not in the list?',
set_up_more: 'Set up more',
go_to: 'social connectors or go to “Connectors” section.',
},
},
},
others: {
languages: {
title: 'LANGUAGES',
mode: 'Language mode',
auto: 'Auto',
fixed: 'Fixed',
fallback_language: 'Fallback language',
fallback_language_tip:
'Which language to fall back if Logto finds no proper language phrase-set.',
fixed_language: 'Fixed language',
languages: {
english: 'English',
chinese: 'Chinese',
},
},
},
setup_warning: {
no_connector: '',
no_connector_sms:
'You havent set up a SMS connector yet. Your sign in experience wont go live until you finish the settings first. ',
no_connector_email:
'You havent set up an Email connector yet. Your sign in experience wont go live until you finish the settings first. ',
no_connector_social:
'You havent set up any social connectors yet. Your sign in experience wont go live until you finish the settings first. ',
no_added_social_connector:
'Youve set up a few social connectors now. Make sure to add some to your sign in experience.',
},
save_alert: {
description:
'You are changing sign-in methods. This will impact some of your users. Are you sure you want to do that?',
before: 'Before',
after: 'After',
},
preview: {
title: 'Sign-in Preview',
languages: {
english: 'English',
chinese: 'Chinese',
},
dark: 'Dark',
light: 'Light',
native: 'Native',
desktop_web: 'Desktop Web',
mobile_web: 'Mobile Web',
},
},
settings: {
title: 'Settings',
description: 'Manage the global settings',
tabs: {
general: 'General',
},
custom_domain: 'Custom domain',
language: 'Language',
language_english: 'English',
language_chinese: 'Chinese',
appearance: 'Appearance',
appearance_system: 'Sync with system',
appearance_light: 'Light mode',
appearance_dark: 'Dark mode',
saved: 'Saved!',
change_password: 'Change Password',
change_password_description:
'You can change password for this account. You will use current username with new password to sign in Admin Console.',
change_modal_title: 'Change Account Password',
change_modal_description:
'You will use current username with new password to sign in Admin Console.',
new_password: 'New password',
new_password_placeholder: 'Enter your password',
confirm_password: 'Confirm password',
confirm_password_placeholder: 'Confirm your password',
password_changed: 'Password changed!',
},
dashboard: {
title: 'Dashboard',
description: 'Get an overview about your app performance',
total_users: 'Total users',
total_users_tip: 'Total users',
new_users_today: 'New users today',
new_users_today_tip: 'The number of new users registered on your apps today',
new_users_7_days: 'New users past 7 days',
new_users_7_days_tip: 'The number of new users registered on your apps in the past 7 days',
daily_active_users: 'Daily active users',
daily_active_users_tip: 'The number of unique users exchanged tokens on your apps today',
weekly_active_users: 'Weekly active users',
weekly_active_users_tip:
'The number of unique users exchanged tokens on your apps in the past 7 days',
monthly_active_users: 'Monthly active users',
monthly_active_users_tip:
'The number of unique users exchanged tokens on your apps in the past 30 days',
},
logs: {
title: 'Audit Logs',
subtitle: 'View log data of authentication events made by your admin and users',
event: 'Event',
user: 'User',
application: 'Application',
time: 'Time',
filter_by: 'Filter by',
},
log_details: {
back_to_logs: 'Back to Audit Logs',
back_to_user: 'Back to {{name}}',
success: 'Success',
failed: 'Failed',
event_type: 'Event type',
application: 'Application',
ip_address: 'IP address',
user: 'User',
log_id: 'Log ID',
time: 'Time',
user_agent: 'User agent',
tab_details: 'Details',
raw_data: 'Raw data',
},
session_expired: {
title: 'Session Expired',
subtitle:
'Your session might have expired and you have been disconnected. Click the button below to sign in to admin console again.',
button: 'Sign In Again',
},
welcome: {
title: 'Welcome to Admin Console',
description:
'Admin console is a web app to manage Logto without coding requirements. Lets first create an account. With this account, you can manage Logto by yourself or on behalf of your company.',
create_account: 'Create Account',
},
},
demo_app: {
notification: 'Use your admin console account to sign in to this demo app.',
title: "You've successfully signed in the demo app!",
subtitle: 'Here is your log in information:',
username: 'Username: ',
user_id: 'User ID: ',
sign_out: 'Sign Out the Demo App',
continue_explore: 'Or continue to explore',
customize_sign_in_experience: 'Customize Sign-in Experience',
enable_passwordless: 'Enable Passwordless',
add_social_connector: 'Add Social Connector',
},
};
const errors = {
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.',
jwt_sub_missing: 'Missing `sub` in JWT.',
},
guard: {
invalid_input: 'The request {{type}} is invalid.',
invalid_pagination: 'The request pagination value is invalid.',
},
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_exists_register: 'The username has been registered.',
email_exists_register: 'The email address has been registered.',
phone_exists_register: 'The phone number has been registered.',
invalid_email: 'Invalid email address.',
invalid_phone: 'Invalid phone number.',
email_not_exists: 'The email address has not been registered yet.',
phone_not_exists: 'The phone number has not been registered yet.',
identity_not_exists: 'The social account has not been registered yet.',
identity_exists: 'The social account has been registered.',
invalid_role_names: 'role names ({{roleNames}}) are not valid',
},
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: 'Invalid credentials. 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.',
unauthorized: 'Please sign in first.',
unsupported_prompt_name: 'Unsupported prompt name.',
},
connector: {
general: 'An unexpected error occurred in connector.{{errorDescription}}',
not_found: 'Cannot find any available connector for type: {{type}}.',
not_enabled: 'The connector is not enabled.',
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.',
invalid_access_token: "The connector's access token is invalid.",
invalid_auth_code: "The connector's auth code is invalid.",
invalid_id_token: "The connector's id token is invalid.",
authorization_failed: "The user's authorization process is unsuccessful.",
oauth_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.',
db_connector_type_mismatch: 'There is a connector in the DB that does not match the type.',
},
passcode: {
phone_email_empty: 'Both phone and email are empty.',
not_found: 'Passcode not found. Please send passcode first.',
phone_mismatch: 'Phone mismatch. Please request a new passcode.',
email_mismatch: 'Email mismatch. Please request a new passcode.',
code_mismatch: 'Invalid passcode.',
expired: 'Passcode has expired. Please request a new passcode.',
exceed_max_try: 'Passcode verification limitation exceeded. Please request a new passcode.',
},
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_logo: 'Please enter your logo URL',
empty_slogan:
'Empty branding slogan. Please add a branding slogan if a UI style containing the slogan is selected.',
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.',
},
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.',
},
};
const en = Object.freeze({
translation,
errors,
});
export default en;
/* eslint-enable max-lines */
/**
* Note: we need to re-export the locale under this `locales` folder,
* otherwise the `useTranslation` function will cause a `Type instantiation` error (ts2589).
*/
export { default } from '../languages/en';

View file

@ -1,631 +1,5 @@
/* eslint-disable max-lines */
import en from './en';
const translation = {
admin_console: {
title: '管理控制台',
sign_out: '退出登录',
profile: '帐户管理',
admin_user: '管理员',
system_app: '系统应用',
general: {
placeholder: '占位符',
skip: '跳过',
next: '下一步',
retry: '重试',
done: '完成',
search: '搜索',
search_placeholder: '搜索',
clear_result: '清除结果',
save: '保存',
save_changes: '保存更改',
saved: '保存成功!',
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: '留在此页',
},
errors: {
something_went_wrong: '哎呀,出错了!',
page_not_found: '找不到页面',
unknown_server_error: '服务器发生未知错误',
empty: '没有数据',
missing_total_number: '无法从返回的头部信息中找到 Total-Number',
invalid_uri_format: '无效的 URI 格式',
invalid_origin_format: '无效的 URI origin 格式',
required_field_missing: '请输入{{field}}',
required_field_missing_plural: '至少需要输入一个{{field}}',
more_details: '查看详情',
username_pattern_error: '用户名只能包含英文字母、数字或下划线,且不以数字开头。',
password_pattern_error: '密码应不少于 6 位',
insecure_contexts: '不支持不安全的上下文(非 HTTPS。',
unexpected_error: '发生未知错误',
},
tab_sections: {
overview: '概览',
resource_management: '资源管理',
user_management: '用户管理',
help_and_support: '帮助与支持',
},
tabs: {
get_started: '开始上手',
dashboard: '仪表盘',
applications: '全部应用',
api_resources: 'API 资源',
sign_in_experience: '登录体验',
connectors: '连接器',
users: '用户管理',
audit_logs: '审计日志',
docs: '文档',
contact_us: '联系我们',
settings: '设置',
},
applications: {
title: '全部应用',
subtitle: '创建一个移动、单页或传统 web 应用程序,并通过 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: 'App ID',
type: {
native: {
title: '原生应用',
subtitle: '在原生环境中运行的应用程序',
description: '例如 iOS appAndroid app',
},
spa: {
title: '单页应用',
subtitle: '在浏览器中运行并动态更新数据的应用程序',
description: '例如 React DOM appVue app',
},
traditional: {
title: '传统网页应用',
subtitle: '仅由 Web 服务器渲染和更新的应用程序',
description: '例如 JSP, PHP',
},
},
guide: {
get_sample_file: '获取示例',
header_description:
'参考如下教程,将 Logto 集成到你的应用中。你也可以点击右侧按钮,获取我们为你准备好的示例工程。',
title: '应用创建成功',
subtitle: '参考以下步骤完成你的应用设置。首先,选择你要使用的 SDK 类型:',
description_by_sdk: '本教程向你演示如何在 {{sdk}} 应用中集成 Logto 登录功能',
},
},
application_details: {
back_to_applications: '返回全部应用',
check_guide: '查看指南',
advanced_settings: '高级设置',
application_name: '应用名称',
application_name_placeholder: '我的应用',
description: '描述',
description_placeholder: '请输入应用描述',
authorization_endpoint: 'Authorization Endpoint',
authorization_endpoint_tip:
'进行鉴权与授权的端点 endpoint。用于 OpenID Connect 中的鉴权流程。',
redirect_uri: 'Redirect URIs',
redirect_uri_placeholder: 'https://your.website.com/app',
redirect_uri_placeholder_native: 'io.logto://callback',
redirect_uri_tip:
'在用户登录完成(不论成功与否)后重定向的目标 URI。参见 OpenID Connect AuthRequest 以了解更多。',
post_sign_out_redirect_uri: 'Post sign out redirect URIs',
post_sign_out_redirect_uri_placeholder: 'https://your.website.com/home',
post_sign_out_redirect_uri_tip:
'在用户登出后重定向的目标 URI可选。在某些应用类型中可能无实质作用。',
cors_allowed_origins: 'CORS Allowed Origins',
cors_allowed_origins_placeholder: 'https://your.website.com',
cors_allowed_origins_tip:
'所有 Redirect URI 的 origin 将默认被允许。通常不需要对此字段进行操作。',
add_another: '新增',
id_token_expiration: 'ID Token 过期时间',
refresh_token_expiration: 'Refresh Token 过期时间',
token_endpoint: 'Token endpoint',
user_info_endpoint: 'UserInfo endpoint',
delete_description:
'本操作会永久性地删除该应用,且不可撤销。输入 <span>{{name}}</span> 确认。',
enter_your_application_name: '输入你的应用名称',
application_deleted: '应用 {{name}} 成功删除.',
redirect_uri_required: '至少需要输入一个 Redirect URL',
},
api_resources: {
title: 'API 资源',
subtitle: '定义可以从已授权的应用程序中使用的 API',
create: '创建 API 资源',
api_name: 'API 名称',
api_name_placeholder: '输入API名称',
api_identifier: 'API Identifier',
api_identifier_placeholder: 'https://your-api-identifier/',
api_identifier_tip:
'对于 API 资源的唯一标识符。它必须是一个绝对 URI 并没有 fragment (#) 组件。等价于 OAuth 2.0 中的 resource parameter。',
api_resource_created: ' API 资源 {{name}} 已成功创建!',
},
api_resource_details: {
back_to_api_resources: '返回 API 资源',
token_expiration_time_in_seconds: 'Token 过期时间(秒)',
token_expiration_time_in_seconds_placeholder: '请输入你的 token 过期时间',
delete_description:
'本操作会永久性地删除该 API 资源,且不可撤销。输入 API 资源名称 <span>{{name}}</span> 确认。',
enter_your_api_resource_name: '输入 API 资源名称',
api_resource_deleted: ' API 资源 {{name}} 已删除.',
},
connectors: {
title: '连接器',
subtitle: '设置连接器,开启无密码和社交登录',
create: '添加社交连接器',
tab_email_sms: '短信和邮件连接器',
tab_social: '社交连接器',
connector_name: '连接器名称',
connector_type: '类型',
connector_status: '登录体验',
connector_status_in_use: '使用中',
connector_status_not_in_use: '未使用',
social_connector_eg: '如: 微信登录,支付宝登录',
save_and_done: '保存并完成',
type: {
email: '邮件连接器',
sms: '短信连接器',
social: '社交连接器',
},
setup_title: {
email: '设置邮件连接器',
sms: '设置短信连接器',
social: '添加社交连接器',
},
guide: {
subtitle: '参考以下步骤完成你的连接器设置',
},
platform: {
universal: '通用',
web: '网页',
native: '原生',
},
add_multi_platform: '支持多平台,选择一个平台继续',
drawer_title: '连接器配置指南',
drawer_subtitle: '参考以下步骤完善或修改你的连接器设置',
},
connector_details: {
back_to_connectors: '返回连接器',
check_readme: '查看 README',
save_error_empty_config: '请输入配置内容',
save_error_json_parse_error: '请输入符合 JSON 格式的配置',
send: '发送',
send_error_invalid_format: '无效输入',
edit_config_label: '请在此输入你的 JSON 配置',
test_email_sender: '测试你的邮件连接器',
test_sms_sender: '测试你的短信连接器',
test_email_placeholder: '请输入一个用于测试的邮件地址',
test_sms_placeholder: '请输入一个用于测试的手机号码',
test_message_sent: '测试信息已发送!',
test_sender_description: '如果你的 JSON 配置正确,你会收到一条测试消息。',
options_change_email: '更换邮件连接器',
options_change_sms: '更换短信连接器',
connector_deleted: '成功删除连接器',
type_email: '邮件连接器',
type_sms: '短信连接器',
type_social: '社交连接器',
},
get_started: {
progress: '开始上手: {{completed}}/{{total}}',
progress_dropdown_title: '一些快速上手的操作',
title: '还不知道如何使用 Logto?',
subtitle_part1: '下列是一些可以快速上手的操作,通过这些,你可以更好地感受 Logto 的价值',
subtitle_part2: '我已经完成了这些设置。 ',
hide_this: '隐藏引导',
confirm_message: '你确认要隐藏该页面吗? 本操作将无法恢复。',
card1_title: '看看 Demo',
card1_subtitle: '来体验 Logto 登录吧',
card2_title: '创建你的第一款应用',
card2_subtitle: '创建一个原生、单页或传统应用,并通过 Logto 进行身份验证',
card3_title: '自定义你的登录体验',
card3_subtitle: '自定义符合品牌形象的登录界面,并实时预览真实效果',
card4_title: '配置短信和邮件连接器',
card4_subtitle: '通过手机号或邮箱无密码登录以提供一个安全无缝的用户体验',
card5_title: '添加社交连接器',
card5_subtitle: '让你的用户通过社交帐号一键登录',
card6_title: '更多阅读',
card6_subtitle: '查看我们一步一步基于场景的文档,没有复杂的概念,深入浅出',
},
users: {
title: '用户管理',
subtitle:
'管理你的用户,包括创建新用户,编辑用户资料,查看用户日志,以及重新设置密码和删除用户',
create: '添加用户',
user_name: '用户',
application_name: '注册应用',
latest_sign_in: '最后登录',
create_form_username: '用户名',
create_form_password: '密码',
create_form_name: '姓名',
unnamed: '未命名',
},
user_details: {
back_to_users: '返回用户管理',
created_title: '用户创建成功',
created_guide: '你可以将以下登录信息发送给用户',
created_username: '用户名:',
created_password: '密码:',
menu_delete: '删除用户',
delete_description: '本操作将永久删除该用户,且无法撤销。',
deleted: '用户已成功删除!',
reset_password: {
reset_password: '重置密码',
title: '确定要重置密码?',
content: '本操作不可撤销,将会重置用户的登录信息。',
congratulations: '该用户已被重置',
new_password: '新密码:',
},
tab_logs: '用户日志',
field_email: '主要邮箱',
field_phone: '主要手机号码',
field_username: '用户名',
field_name: '姓名',
field_avatar: '头像图片链接',
field_avatar_placeholder: 'https://your.cdn.domain/avatar.png',
field_custom_data: '自定义数据',
field_custom_data_tip: '预定义属性之外的用户信息,例如用户偏好的颜色和语言。',
field_connectors: '社交帐号',
custom_data_invalid: '自定义数据必须是有效的 JSON',
connectors: {
connectors: '连接器',
user_id: '用户ID',
remove: '删除',
not_connected: '该用户还没有绑定社交帐号',
deletion_confirmation: '你在正要删除现有的 <name /> 身份,是否确认?',
},
},
contact: {
title: '联系我们',
description: '加入我们的社区,在这里你可以给我们提供产品建议,寻求帮助或和其他开发者交流心得',
discord: {
title: 'Discord 频道',
description: '加入我们的公共频道,和其他开发者一起交流使用经验',
button: '立即加入',
},
github: {
title: 'GitHub',
description: '通过 GitHub给我们提一个 issue',
button: '马上联系',
},
email: {
title: '邮件联系',
description: '通过邮件联系获取信息或寻求帮助',
button: '发送邮件',
},
},
sign_in_exp: {
title: '登录体验',
description: '自定义登录界面,并实时预览真实效果',
tabs: {
branding: '品牌',
methods: '登录方式',
others: '其它',
},
welcome: {
title: '这是你首次定义登录体验。跟随引导,完成登录体验的必要设置项。',
get_started: '开始',
apply_remind: '请注意,登录体验将会应用到当前帐户下的所有应用。',
got_it: '知道了',
},
color: {
title: '颜色',
primary_color: '品牌颜色',
dark_primary_color: '品牌颜色 (深色)',
dark_mode: '开启深色模式',
dark_mode_description:
'基于品牌颜色和 Logto 的算法,应用将会有一个自动生成的深色模式。当然,你可以自定义和修改。',
dark_mode_reset_tip: '基于品牌颜色,重新生成深色模式颜色。',
reset: '重新生成',
},
branding: {
title: '品牌定制区',
ui_style: '样式',
styles: {
logo_slogan: 'Logo 和标语',
logo: '仅有 Logo',
},
logo_image_url: 'Logo 图片 URL',
logo_image_url_placeholder: 'https://your.cdn.domain/logo.png',
dark_logo_image_url: 'Logo 图片 URL (深色)',
dark_logo_image_url_placeholder: 'https://your.cdn.domain/logo-dark.png',
slogan: '标语',
slogan_placeholder: '释放你的创意',
},
terms_of_use: {
title: '使用条款',
enable: '开启使用条款',
description: '添加使用产品的法律协议。',
terms_of_use: '使用条款',
terms_of_use_placeholder: 'https://your.terms.of.use/',
terms_of_use_tip: '使用条款 URL',
},
sign_in_methods: {
title: '登录方式',
primary: '主要登录方式',
enable_secondary: '启用其它登录方式',
enable_secondary_description:
'开启后,除了主要登录方式,你的 app 将会支持更多其它的登录方式 ',
methods: '登录方式',
methods_sms: '手机号登录',
methods_email: '邮箱登录',
methods_social: '社交帐号登录',
methods_username: '用户名密码登录',
methods_primary_tag: '(主要)',
define_social_methods: '定义社交登录方式',
transfer: {
title: '社交连接器',
footer: {
not_in_list: '不在列表里?',
set_up_more: '设置更多',
go_to: '社交连接器,或前往连接器模块进行设置。',
},
},
},
others: {
languages: {
title: '语言',
mode: '语言模式',
auto: '自动',
fixed: '固定',
fallback_language: '备用语言',
fallback_language_tip: '如果 Logto 找不到合适的语言包,将回退至哪种语言。',
fixed_language: '固定语言',
languages: {
english: '英文',
chinese: '中文',
},
},
},
setup_warning: {
no_connector: '',
no_connector_sms: '你还没有设置 SMS 连接器。你需完成设置后登录体验才会生效。',
no_connector_email: '你还没有设置 email 连接器。你需完成设置后登录体验才会生效。',
no_connector_social: '你还没有设置社交连接器。你需完成设置后登录体验才会生效。',
no_added_social_connector:
'你已经成功设置了一些社交连接器。点按「+」添加一些到你的登录体验。',
},
save_alert: {
description: '你正在修改登录方式,这可能会影响部分用户。是否继续保存修改?',
before: '修改前',
after: '修改后',
},
preview: {
title: '登录预览',
languages: {
english: '英文',
chinese: '中文',
},
dark: '深色',
light: '浅色',
native: '移动原生',
desktop_web: '桌面网页',
mobile_web: '移动网页',
},
},
settings: {
title: '设置',
description: '管理全局设置',
tabs: {
general: '通用',
},
custom_domain: '自定义域名',
language: '语言',
language_english: '英语',
language_chinese: '中文',
appearance: '外观',
appearance_system: '跟随系统',
appearance_light: '浅色模式',
appearance_dark: '深色模式',
saved: '已保存!',
change_password: '修改密码',
change_password_description: '修改本帐号密码。生效后使用当前用户名和新密码登录管理控制台。',
change_modal_title: '修改帐号密码',
change_modal_description: '生效后使用当前用户名和新密码登录管理控制台。',
new_password: '新密码',
new_password_placeholder: '输入密码',
confirm_password: '确认密码',
confirm_password_placeholder: '确认密码',
password_changed: '密码已修改!',
},
dashboard: {
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: '日活用户',
daily_active_users_tip: '今日在你的应用上交换过 token 的独立用户数',
weekly_active_users: '周活用户',
weekly_active_users_tip: '最近 7 日在你的应用上交换过 token 的独立用户数',
monthly_active_users: '月活用户',
monthly_active_users_tip: '最近 30 日在你的应用上交换过 token 的独立用户数',
},
logs: {
title: '审计日志',
subtitle: '查看用户行为和事件',
event: '事件',
user: '用户',
application: '应用',
time: '时间',
filter_by: '过滤',
},
log_details: {
back_to_logs: '返回审计日志',
back_to_user: '返回 {{name}}',
success: '成功',
failed: '失败',
event_type: '事件类型',
application: '应用',
ip_address: 'IP 地址',
user: '用户',
log_id: '日志 ID',
time: '时间',
user_agent: '用户代理',
tab_details: '详情',
raw_data: '原始数据',
},
session_expired: {
title: '会话已过期',
subtitle: '会话可能已过期,你已被退出登录。请点击下方按钮重新登录到管理控制台。',
button: '重新登录',
},
welcome: {
title: '欢迎来到管理控制台',
description:
'管理控制台是一个无需代码操作的应用。你可以用它来管理登录体验。让我们首先创建一个帐号。你可以用它以个人或公司的身份管理 Logto。',
create_account: '创建帐号',
},
},
demo_app: {
notification: '使用管理控制台帐号登录示例应用',
title: '恭喜!你已成功登录到示例应用!',
subtitle: '以下是本次登录的用户信息:',
username: '用户名:',
user_id: '用户 ID',
sign_out: '退出登录示例应用',
continue_explore: '或继续探索',
customize_sign_in_experience: '自定义登录体验',
enable_passwordless: '启用无密码登录',
add_social_connector: '添加社交连接器',
},
};
const errors = {
auth: {
authorization_header_missing: '缺少权限标题',
authorization_token_type_not_supported: '权限类型不支持',
unauthorized: '未经授权。请检查凭据及其范围。',
forbidden: '禁止访问。请检查用户权限。',
jwt_sub_missing: 'JWT 缺失 `sub`',
},
guard: {
invalid_input: '请求中 {{type}} 无效',
invalid_pagination: '分页参数无效',
},
oidc: {
aborted: '用户终止了交互。',
invalid_scope: '不支持的 scope: {{scopes}}',
invalid_scope_plural: '不支持的 scope: {{scopes}}',
invalid_token: 'Token 无效',
invalid_client_metadata: '无效的客户端元数据',
insufficient_scope: '请求 token 缺少权限: {{scopes}}',
invalid_request: '请求无效',
invalid_grant: '授权请求无效',
invalid_redirect_uri: '无效返回链接, 该 redirect_uri 未被此应用注册。',
access_denied: '拒绝访问',
invalid_target: '请求资源无效',
unsupported_grant_type: '不支持的 grant_type',
unsupported_response_mode: '不支持的 response_mode',
unsupported_response_type: '不支持的 response_type',
provider_error: 'OIDC 内部错误: {{message}}',
},
user: {
username_exists_register: '用户名已被注册',
email_exists_register: '邮箱地址已被注册',
phone_exists_register: '手机号码已被注册',
invalid_email: '邮箱地址不正确',
invalid_phone: '手机号码不正确',
username_not_exists: '用户名尚未注册',
email_not_exists: '邮箱地址尚未注册',
phone_not_exists: '手机号码尚未注册',
identity_not_exists: '该社交帐号尚未注册',
identity_exists: '该社交帐号已被注册',
invalid_role_names: '角色名称({{roleNames}})无效',
},
password: {
unsupported_encryption_method: '不支持的加密方法 {{name}}',
pepper_not_found: '密码 pepper 未找到。请检查 core 的环境变量。',
},
session: {
not_found: '未找到会话。请返回并重新登录。',
invalid_credentials: '用户名或密码错误,请检查你的输入。',
invalid_sign_in_method: '当前登录方式不可用',
invalid_connector_id: '找不到 ID 为 {{connectorId}} 的可用连接器。',
insufficient_info: '登录信息缺失,请检查你的输入。',
connector_id_mismatch: '传入的连接器 ID 与 session 中保存的记录不一致',
connector_session_not_found: '无法找到连接器登录信息,请尝试重新登录。',
unauthorized: '请先登录',
unsupported_prompt_name: '不支持的 prompt name',
},
connector: {
general: '连接器发生未知错误{{errorDescription}}',
not_found: '找不到可用的 {{type}} 类型的连接器',
not_enabled: '连接器尚未启用',
insufficient_request_parameters: '请求参数缺失',
invalid_config: '连接器配置错误',
invalid_response: '连接器错误响应',
template_not_found: '无法从连接器配置中找到对应的模板',
invalid_access_token: '当前连接器的 access_token 无效',
invalid_auth_code: '当前连接器的授权码无效',
invalid_id_token: '当前连接器的 id_token 无效',
authorization_failed: '用户授权流程失败',
oauth_code_invalid: '无法获取 access_token请检查授权 code 是否有效',
more_than_one_sms: '同时存在超过 1 个短信连接器',
more_than_one_email: '同时存在超过 1 个邮件连接器',
db_connector_type_mismatch: '数据库中存在一个类型不匹配的连接。',
},
passcode: {
phone_email_empty: '手机号与邮箱地址均为空',
not_found: '验证码不存在,请先请求发送验证码',
phone_mismatch: '手机号码不匹配,请尝试请求新的验证码。',
email_mismatch: '邮箱地址不匹配,请尝试请求新的验证码。',
code_mismatch: '验证码不正确',
expired: '验证码已过期,请尝试请求新的验证码。',
exceed_max_try: '超过最大验证次数,请尝试请求新的验证码。',
},
sign_in_experiences: {
empty_content_url_of_terms_of_use: '你启用了“使用条款”,请添加使用条款 URL。',
empty_logo: '请输入 logo URL',
empty_slogan: '你选择了 App logo + 标语的布局。请输入你的标语。',
empty_social_connectors: '你启用了社交登录的方式。请至少选择一个社交连接器。',
enabled_connector_not_found: '未找到已启用的 {{type}} 连接器',
not_one_and_only_one_primary_sign_in_method: '主要的登录方式必须有且仅有一个,请检查你的输入。',
},
swagger: {
invalid_zod_type: '无效的 Zod 类型,请检查路由 guard 配置。',
not_supported_zod_type_for_params: '请求参数不支持的 Zod 类型,请检查路由 guard 配置。',
},
entity: {
create_failed: '创建 {{name}} 失败',
not_exists: '该 {{name}} 不存在',
not_exists_with_id: 'ID 为 `{{id}}` 的 {{name}} 不存在',
not_found: '该资源不存在',
},
};
const zhCN: typeof en = Object.freeze({
translation,
errors,
});
export default zhCN;
/* eslint-enable max-lines */
/**
* Note: we need to re-export the locale under this `locales` folder,
* otherwise the `useTranslation` function will cause a `Type instantiation` error (ts2589).
*/
export { default } from '../languages/zh-cn';