refactor: simplify the dialogs title (#5601)

#### What type of PR is this?

/area ui
/kind improvement
/milestone 2.14.x

#### What this PR does / why we need it:

简化部分确认框的标题。

#### Which issue(s) this PR fixes:

Fixes https://github.com/halo-dev/halo/issues/5592

#### Does this PR introduce a user-facing change?

```release-note
简化部分确认框的标题。
```
pull/5626/head
Ryan Wang 2024-03-27 22:20:07 +08:00 committed by GitHub
parent 867d86b1a7
commit 35cc323585
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 172 additions and 174 deletions

View File

@ -95,7 +95,7 @@ const onEditingModalClose = () => {
const handleDelete = (group: Group) => { const handleDelete = (group: Group) => {
Dialog.warning({ Dialog.warning({
title: t("core.attachment.group_list.operations.delete.title"), title: t("core.attachment.group_list.operations.delete.title"),
description: t("core.attachment.group_list.operations.delete.title"), description: t("core.attachment.group_list.operations.delete.description"),
confirmType: "danger", confirmType: "danger",
confirmText: t("core.common.buttons.confirm"), confirmText: t("core.common.buttons.confirm"),
cancelText: t("core.common.buttons.cancel"), cancelText: t("core.common.buttons.cancel"),

View File

@ -92,7 +92,7 @@ core:
operations: operations:
logout: logout:
tooltip: Logout tooltip: Logout
title: Are you sure you want to log out? title: Logout
profile: profile:
tooltip: Profile tooltip: Profile
visit_homepage: visit_homepage:
@ -155,14 +155,14 @@ core:
title: New User title: New User
refresh_search_engine: refresh_search_engine:
title: Refresh Search Engine title: Refresh Search Engine
dialog_title: Do you want to refresh the search engine index? dialog_title: Refresh the search engine index
dialog_content: >- dialog_content: >-
This operation will recreate search engine indexes for all This operation will recreate search engine indexes for all
published posts. published posts.
success_message: Refresh search engine index successfully. success_message: Refresh search engine index successfully.
evict_page_cache: evict_page_cache:
title: Refresh Page Cache title: Refresh Page Cache
dialog_title: Do you want to refresh the page cache? dialog_title: Refresh the page cache
dialog_content: This operation will clear the cache for all pages. dialog_content: This operation will clear the cache for all pages.
success_message: Refresh page cache successfully. success_message: Refresh page cache successfully.
user_stats: user_stats:
@ -182,12 +182,12 @@ core:
message: You can try to refresh or create a new post. message: You can try to refresh or create a new post.
operations: operations:
delete: delete:
title: Are you sure you want to delete this post? title: Delete post
description: >- description: >-
This operation will move the post to the recycle bin, and it can be This operation will move the post to the recycle bin, and it can be
restored from the recycle bin later. restored from the recycle bin later.
delete_in_batch: delete_in_batch:
title: Are you sure you want to delete the selected posts? title: Delete the selected posts
description: >- description: >-
This operation will move the posts to the recycle bin, and it can be This operation will move the posts to the recycle bin, and it can be
restored from the recycle bin later. restored from the recycle bin later.
@ -263,16 +263,16 @@ core:
message: You can try to refresh or go back to the previous page. message: You can try to refresh or go back to the previous page.
operations: operations:
delete: delete:
title: Are you sure you want to permanently delete this post? title: Delete post
description: After deletion, it will not be possible to recover. description: After deletion, it will not be possible to recover.
delete_in_batch: delete_in_batch:
title: Are you sure you want to permanently delete the selected posts? title: Delete the selected posts
description: After deletion, it will not be possible to recover. description: After deletion, it will not be possible to recover.
recovery: recovery:
title: Do you want to restore this post? title: Restore post
description: This operation will restore the post to its state before deletion. description: This operation will restore the post to its state before deletion.
recovery_in_batch: recovery_in_batch:
title: Are you sure you want to restore the selected posts? title: Restore the selected posts
description: This operation will restore the posts to its state before deletion. description: This operation will restore the posts to its state before deletion.
post_editor: post_editor:
title: Post edit title: Post edit
@ -286,7 +286,7 @@ core:
message: You can try to refresh or create a new tag. message: You can try to refresh or create a new tag.
operations: operations:
delete: delete:
title: Are you sure you want to delete this tag? title: Delete tag
description: >- description: >-
After deleting this tag, the association with the corresponding After deleting this tag, the association with the corresponding
article will be removed. This operation cannot be undone. article will be removed. This operation cannot be undone.
@ -319,7 +319,7 @@ core:
message: You can try to refresh or create a new category. message: You can try to refresh or create a new category.
operations: operations:
delete: delete:
title: Are you sure you want to delete this category? title: Delete category
description: >- description: >-
After deleting this category, the association with corresponding After deleting this category, the association with corresponding
articles will be removed. This operation cannot be undone. articles will be removed. This operation cannot be undone.
@ -358,12 +358,12 @@ core:
message: You can try to refresh or create a new page. message: You can try to refresh or create a new page.
operations: operations:
delete: delete:
title: Are you sure you want to delete this page? title: Delete page
description: >- description: >-
This operation will move the page to the recycle bin, and it can be This operation will move the page to the recycle bin, and it can be
restored from the recycle bin later. restored from the recycle bin later.
delete_in_batch: delete_in_batch:
title: Are you sure you want to delete the selected pages? title: Delete the selected pages
description: >- description: >-
This operation will move the pages to the recycle bin, and it can be This operation will move the pages to the recycle bin, and it can be
restored from the recycle bin later. restored from the recycle bin later.
@ -427,16 +427,16 @@ core:
message: You can try to refresh or go back to the previous page. message: You can try to refresh or go back to the previous page.
operations: operations:
delete: delete:
title: Are you sure you want to permanently delete this page? title: Delete page
description: After deletion, it will not be possible to recover. description: After deletion, it will not be possible to recover.
delete_in_batch: delete_in_batch:
title: Are you sure you want to permanently delete the selected pages? title: Delete the selected pages
description: After deletion, it will not be possible to recover. description: After deletion, it will not be possible to recover.
recovery: recovery:
title: Do you want to restore this page? title: Restore page
description: This operation will restore the page to its state before deletion. description: This operation will restore the page to its state before deletion.
recovery_in_batch: recovery_in_batch:
title: Are you sure you want to restore the selected pages? title: Restore the selected pages
description: This operation will restore the pages to its state before deletion. description: This operation will restore the pages to its state before deletion.
page_editor: page_editor:
title: Page edit title: Page edit
@ -452,12 +452,12 @@ core:
new: New Reply new: New Reply
operations: operations:
delete_comment: delete_comment:
title: Are you sure you want to delete this comment? title: Delete comment
description: >- description: >-
All replies under the comments will be deleted at the same time, and All replies under the comments will be deleted at the same time, and
this operation cannot be undone. this operation cannot be undone.
delete_comment_in_batch: delete_comment_in_batch:
title: Are you sure you want to delete the selected comments? title: Delete the selected comments
description: >- description: >-
All replies under the comments will be deleted at the same time, and All replies under the comments will be deleted at the same time, and
this operation cannot be undone. this operation cannot be undone.
@ -470,7 +470,7 @@ core:
Are you sure you want to approve all replies to this comment for Are you sure you want to approve all replies to this comment for
review? review?
delete_reply: delete_reply:
title: Are you sure you want to delete this reply? title: Delete reply
approve_reply: approve_reply:
button: Approve button: Approve
reply: reply:
@ -524,9 +524,9 @@ core:
upload: Upload Attachment upload: Upload Attachment
operations: operations:
delete: delete:
title: Are you sure you want to delete this attachment? title: Delete attachment
delete_in_batch: delete_in_batch:
title: Are you sure you want to delete the selected attachments? title: Delete the selected attachments
deselect_items: deselect_items:
button: Deselect items button: Deselect items
move: move:
@ -583,7 +583,7 @@ core:
button: Rename button: Rename
delete: delete:
button: And move attachment to ungrouped button: And move attachment to ungrouped
title: Are you sure you want to delete this group? title: Delete attachment group
description: >- description: >-
The group will be deleted, and the attachments under the group will The group will be deleted, and the attachments under the group will
be moved to ungrouped. This operation cannot be undone. be moved to ungrouped. This operation cannot be undone.
@ -592,7 +592,7 @@ core:
ungrouped ungrouped
delete_with_attachments: delete_with_attachments:
button: Also delete attachments button: Also delete attachments
title: Are you sure you want to delete this group? title: Delete attachment group
description: >- description: >-
Deleting the group and all attachments within it, this action cannot Deleting the group and all attachments within it, this action cannot
be undone. be undone.
@ -608,7 +608,7 @@ core:
refreshing or creating a new policy. refreshing or creating a new policy.
operations: operations:
delete: delete:
title: Are you sure you want to delete this policy? title: Delete attachment policy
description: There are no uploaded attachments under the current policy. description: There are no uploaded attachments under the current policy.
can_not_delete: can_not_delete:
title: Deletion failed title: Deletion failed
@ -657,28 +657,26 @@ core:
switch: Switch Theme switch: Switch Theme
operations: operations:
active: active:
title: Are you sure to active the current theme? title: Active theme
toast_success: Active theme successful toast_success: Active theme successful
reset: reset:
title: Are you sure you want to reset all configurations of the theme? title: Reset configurations of the theme
description: >- description: >-
This operation will delete the saved configuration and reset it to This operation will delete the saved configuration and reset it to
default settings. default settings.
toast_success: Reset configuration successful toast_success: Reset configuration successful
reload: reload:
button: Reload button: Reload
title: Are you sure you want to reload all configurations of the theme? title: Reload configurations of the theme
description: >- description: >-
This operation will only reload the theme configuration and settings This operation will only reload the theme configuration and settings
form definition, and will not delete any saved configurations. form definition, and will not delete any saved configurations.
toast_success: Reload configuration successful toast_success: Reload configuration successful
uninstall: uninstall:
title: Are you sure you want to uninstall this theme? title: Uninstall theme
uninstall_and_delete_config: uninstall_and_delete_config:
button: Uninstall and delete config button: Uninstall and delete config
title: >- title: Uninstall this theme and its corresponding settings
Are you sure you want to uninstall this theme and its corresponding
settings?
remote_download: remote_download:
title: Remote download address detected, do you want to download? title: Remote download address detected, do you want to download?
description: "Please carefully verify whether this address can be trusted: {url}" description: "Please carefully verify whether this address can be trusted: {url}"
@ -733,12 +731,12 @@ core:
button: Set as primary menu button: Set as primary menu
toast_success: Setting successful toast_success: Setting successful
delete_menu: delete_menu:
title: Are you sure you want to delete this menu? title: Delete menu
description: >- description: >-
All menu items under this menu will be deleted at the same time, and All menu items under this menu will be deleted at the same time, and
this operation cannot be undone. this operation cannot be undone.
delete_menu_item: delete_menu_item:
title: Are you sure you want to delete this menu item? title: Delete menu item
description: >- description: >-
All sub-menu items will be deleted at the same time, and cannot be All sub-menu items will be deleted at the same time, and cannot be
restored after deletion. restored after deletion.
@ -799,33 +797,29 @@ core:
install: Install Plugin install: Install Plugin
operations: operations:
reset: reset:
title: Are you sure you want to reset all configurations of the plugin? title: Reset configurations of the plugin
description: >- description: >-
This operation will delete the saved configuration and reset it to This operation will delete the saved configuration and reset it to
default settings. default settings.
toast_success: Reset configuration successfully toast_success: Reset configuration successfully
uninstall: uninstall:
title: Are you sure you want to uninstall this plugin? title: Uninstall plugin
uninstall_in_batch: uninstall_in_batch:
title: Are you sure you want to uninstall these plugin? title: Uninstall the selected plugins
uninstall_and_delete_config: uninstall_and_delete_config:
button: Uninstall and delete config button: Uninstall and delete config
title: >- title: Uninstall plugin and its corresponding configuration
Are you sure you want to uninstall this plugin and its corresponding
configuration?
uninstall_and_delete_config_in_batch: uninstall_and_delete_config_in_batch:
button: Uninstall and delete config button: Uninstall and delete config
title: >- title: Uninstall the selected plugins and its corresponding configuration
Are you sure you want to uninstall these plugin and its corresponding
configuration?
uninstall_when_enabled: uninstall_when_enabled:
confirm_text: Stop running and uninstall confirm_text: Stop running and uninstall
description: >- description: >-
The current plugin is still in the enabled state and will be The current plugin is still in the enabled state and will be
uninstalled after it stops running. This operation cannot be undone. uninstalled after it stops running. This operation cannot be undone.
change_status_in_batch: change_status_in_batch:
activate_title: Are you sure you want to activate these plugins? activate_title: Activate the selected plugins
inactivate_title: Are you sure you want to inactivate these plugins? inactivate_title: Inactivate the selected plugins
remote_download: remote_download:
title: Remote download address detected, do you want to download? title: Remote download address detected, do you want to download?
description: "Please carefully verify whether this address can be trusted: {url}" description: "Please carefully verify whether this address can be trusted: {url}"
@ -890,9 +884,9 @@ core:
try refreshing or creating a new user. try refreshing or creating a new user.
operations: operations:
delete: delete:
title: Are you sure you want to delete this user? title: Delete user
delete_in_batch: delete_in_batch:
title: Are you sure you want to delete the selected users? title: Delete the selected users
update_profile: update_profile:
title: Update profile title: Update profile
change_password: change_password:
@ -972,7 +966,7 @@ core:
provided_by_plugin: Provided by {plugin} provided_by_plugin: Provided by {plugin}
operations: operations:
delete: delete:
title: Are you sure you want to delete this role? title: Delete role
description: >- description: >-
After the role is deleted, the associated users will have their role After the role is deleted, the associated users will have their role
bindings removed and this operation cannot be undone. bindings removed and this operation cannot be undone.
@ -1015,9 +1009,9 @@ core:
setting: Settings setting: Settings
operations: operations:
enable: enable:
title: Are you sure you want to enable this identity authentication method? title: Enable identity authentication method
disable: disable:
title: Are you sure you want to disable this identity authentication method? title: Disable identity authentication method
disable_privileged: disable_privileged:
tooltip: The authentication method reserved by the system cannot be disabled tooltip: The authentication method reserved by the system cannot be disabled
detail: detail:
@ -1053,7 +1047,7 @@ core:
button: Bind button: Bind
unbind: unbind:
button: Unbind button: Unbind
title: Are you sure you want to unbind the login method for {display_name}? title: Unbind the login method for {display_name}
email_not_set: email_not_set:
description: >- description: >-
Your email address has not been set yet. Click the button below to set Your email address has not been set yet. Click the button below to set
@ -1243,7 +1237,7 @@ core:
button: Download and restore button: Download and restore
restore_by_backup: restore_by_backup:
button: Restore button: Restore
title: Are you sure you want to restore from this backup? title: Restore from this backup
list: list:
phases: phases:
pending: Pending pending: Pending
@ -1451,7 +1445,7 @@ core:
cropper_modal: cropper_modal:
title: Crop Avatar title: Crop Avatar
remove: remove:
title: Are you sure you want to delete the avatar? title: Delete avatar
tooltips: tooltips:
upload: Upload upload: Upload
zoom_in: Zoom In zoom_in: Zoom In
@ -1464,14 +1458,14 @@ core:
disallow: The content format is different and cannot be switched disallow: The content format is different and cannot be switched
uppy: uppy:
image_editor: image_editor:
revert: "Revert" revert: Revert
rotate: "Rotate" rotate: Rotate
zoom_in: "Zoom in" zoom_in: Zoom in
zoom_out: "Zoom out" zoom_out: Zoom out
flip_horizontal: "Flip horizontal" flip_horizontal: Flip horizontal
aspect_ratio_square: "Crop square" aspect_ratio_square: Crop square
aspect_ratio_landscape: "Crop landscape (16:9)" aspect_ratio_landscape: Crop landscape (16:9)
aspect_ratio_portrait: "Crop portrait (9:16)" aspect_ratio_portrait: Crop portrait (9:16)
composables: composables:
content_cache: content_cache:
toast_recovered: Recovered unsaved content from cache toast_recovered: Recovered unsaved content from cache
@ -1618,6 +1612,7 @@ core:
reset: reset:
button: Reset Password button: Reset Password
toast_success: Reset successful toast_success: Reset successful
title: Reset password
reset_password: reset_password:
fields: fields:
username: username:
@ -1630,6 +1625,7 @@ core:
toast_success: >- toast_success: >-
If your username and email address match, we will send an email to If your username and email address match, we will send an email to
your email address. your email address.
title: Reset password
tool: tool:
title: Tools title: Tools
empty: empty:

View File

@ -90,7 +90,7 @@ core:
operations: operations:
logout: logout:
tooltip: 退出登录 tooltip: 退出登录
title: 确定要退出登录吗? title: 退出登录
profile: profile:
tooltip: 个人中心 tooltip: 个人中心
visit_homepage: visit_homepage:
@ -153,12 +153,12 @@ core:
title: 新建用户 title: 新建用户
refresh_search_engine: refresh_search_engine:
title: 刷新搜索引擎 title: 刷新搜索引擎
dialog_title: 确定要刷新搜索引擎索引吗? dialog_title: 刷新搜索引擎索引
dialog_content: 此操作会对所有已发布的文章重新创建本地搜索引擎的索引。 dialog_content: 此操作会对所有已发布的文章重新创建本地搜索引擎的索引。
success_message: 刷新成功 success_message: 刷新成功
evict_page_cache: evict_page_cache:
title: 刷新页面缓存 title: 刷新页面缓存
dialog_title: 确定要刷新页面缓存吗? dialog_title: 刷新页面缓存
dialog_content: 此操作会清空所有页面的缓存。 dialog_content: 此操作会清空所有页面的缓存。
success_message: 刷新成功 success_message: 刷新成功
user_stats: user_stats:
@ -178,10 +178,10 @@ core:
message: 你可以尝试刷新或者新建文章 message: 你可以尝试刷新或者新建文章
operations: operations:
delete: delete:
title: 确定要删除文章吗? title: 删除文章
description: 该操作会将文章放入回收站,后续可以从回收站恢复。 description: 该操作会将文章放入回收站,后续可以从回收站恢复。
delete_in_batch: delete_in_batch:
title: 确定要删除选中的文章吗? title: 删除选文章
description: 该操作会将文章放入回收站,后续可以从回收站恢复。 description: 该操作会将文章放入回收站,后续可以从回收站恢复。
filters: filters:
status: status:
@ -255,16 +255,16 @@ core:
message: 你可以尝试刷新或者返回文章管理 message: 你可以尝试刷新或者返回文章管理
operations: operations:
delete: delete:
title: 确定要永久删除文章吗? title: 删除文章
description: 删除之后将无法恢复。 description: 删除之后将无法恢复。
delete_in_batch: delete_in_batch:
title: 确定要永久删除选中的文章吗? title: 删除选文章
description: 删除之后将无法恢复。 description: 删除之后将无法恢复。
recovery: recovery:
title: 确定要恢复文章吗? title: 恢复文章
description: 该操作会将文章恢复到被删除之前的状态。 description: 该操作会将文章恢复到被删除之前的状态。
recovery_in_batch: recovery_in_batch:
title: 确定要恢复选中的文章吗? title: 恢复选文章
description: 该操作会将文章恢复到被删除之前的状态。 description: 该操作会将文章恢复到被删除之前的状态。
uc_post: uc_post:
title: 我的文章 title: 我的文章
@ -290,7 +290,7 @@ core:
message: 你可以尝试刷新或者新建标签 message: 你可以尝试刷新或者新建标签
operations: operations:
delete: delete:
title: 确定要删除标签吗? title: 删除标签
description: 删除此标签之后,对应文章的关联将被解除。该操作不可恢复。 description: 删除此标签之后,对应文章的关联将被解除。该操作不可恢复。
editing_modal: editing_modal:
titles: titles:
@ -321,7 +321,7 @@ core:
message: 你可以尝试刷新或者新建分类 message: 你可以尝试刷新或者新建分类
operations: operations:
delete: delete:
title: 确定要删除分类吗? title: 删除分类
description: 删除此分类之后,对应文章的关联将被解除。该操作不可恢复。 description: 删除此分类之后,对应文章的关联将被解除。该操作不可恢复。
add_sub_category: add_sub_category:
button: 新增子分类 button: 新增子分类
@ -358,10 +358,10 @@ core:
message: 你可以尝试刷新或者新建页面 message: 你可以尝试刷新或者新建页面
operations: operations:
delete: delete:
title: 确定要删除该自定义页面吗? title: 删除页面
description: 该操作会将自定义页面放入回收站,后续可以从回收站恢复。 description: 该操作会将自定义页面放入回收站,后续可以从回收站恢复。
delete_in_batch: delete_in_batch:
title: 确定要删除选中的自定义页面吗? title: 删除选页面
description: 该操作会将自定义页面放入回收站,后续可以从回收站恢复。 description: 该操作会将自定义页面放入回收站,后续可以从回收站恢复。
filters: filters:
status: status:
@ -423,16 +423,16 @@ core:
message: 你可以尝试刷新或者返回自定义页面管理 message: 你可以尝试刷新或者返回自定义页面管理
operations: operations:
delete: delete:
title: 确认要永久删除该自定义页面吗? title: 删除页面
description: 删除之后将无法恢复。 description: 删除之后将无法恢复。
delete_in_batch: delete_in_batch:
title: 确定要确认永久删除选中的自定义页面吗? title: 删除选页面
description: 删除之后将无法恢复。 description: 删除之后将无法恢复。
recovery: recovery:
title: 确认要恢复该自定义页面吗? title: 恢复页面
description: 该操作会将自定义页面恢复到被删除之前的状态。 description: 该操作会将自定义页面恢复到被删除之前的状态。
recovery_in_batch: recovery_in_batch:
title: 确认要恢复选中的自定义页面吗? title: 恢复选页面
description: 该操作会将自定义页面恢复到被删除之前的状态。 description: 该操作会将自定义页面恢复到被删除之前的状态。
page_editor: page_editor:
title: 页面编辑 title: 页面编辑
@ -448,10 +448,10 @@ core:
new: 创建新回复 new: 创建新回复
operations: operations:
delete_comment: delete_comment:
title: 确认要删除评论吗? title: 删除评论
description: 将同时删除所有评论下的回复,该操作不可恢复。 description: 将同时删除所有评论下的回复,该操作不可恢复。
delete_comment_in_batch: delete_comment_in_batch:
title: 确定要删除所选评论吗? title: 删除所选评论
description: 将同时删除所有评论下的回复,该操作不可恢复。 description: 将同时删除所有评论下的回复,该操作不可恢复。
approve_comment_in_batch: approve_comment_in_batch:
button: 审核通过 button: 审核通过
@ -460,7 +460,7 @@ core:
button: 审核通过所有回复 button: 审核通过所有回复
title: 确定要审核通过该评论的所有回复吗? title: 确定要审核通过该评论的所有回复吗?
delete_reply: delete_reply:
title: 确认要删除回复吗? title: 删除回复
approve_reply: approve_reply:
button: 审核通过 button: 审核通过
reply: reply:
@ -512,9 +512,9 @@ core:
upload: 上传附件 upload: 上传附件
operations: operations:
delete: delete:
title: 确定要删除附件吗? title: 删除附件
delete_in_batch: delete_in_batch:
title: 确定要删除所选附件吗? title: 删除所选附件
deselect_items: deselect_items:
button: 取消选择 button: 取消选择
move: move:
@ -571,12 +571,12 @@ core:
button: 重命名 button: 重命名
delete: delete:
button: 删除并将附件移动至未分组 button: 删除并将附件移动至未分组
title: 确定要删除该分组吗? title: 删除附件分组
description: 将删除分组,并将分组下的附件移动至未分组,该操作不可恢复。 description: 将删除分组,并将分组下的附件移动至未分组,该操作不可恢复。
toast_success: 删除成功,{total} 个附件已移动至未分组 toast_success: 删除成功,{total} 个附件已移动至未分组
delete_with_attachments: delete_with_attachments:
button: 删除并同时删除附件 button: 删除并同时删除附件
title: 确定要删除该分组吗? title: 删除附件分组
description: 将删除分组以及分组下的所有附件,该操作不可恢复。 description: 将删除分组以及分组下的所有附件,该操作不可恢复。
toast_success: 删除成功,{total} 个附件已被同时删除 toast_success: 删除成功,{total} 个附件已被同时删除
policies_modal: policies_modal:
@ -586,7 +586,7 @@ core:
message: 当前没有可用的存储策略,你可以尝试刷新或者新建策略 message: 当前没有可用的存储策略,你可以尝试刷新或者新建策略
operations: operations:
delete: delete:
title: 确定要删除该策略吗? title: 删除附件策略
description: 当前策略下没有已上传的附件。 description: 当前策略下没有已上传的附件。
can_not_delete: can_not_delete:
title: 删除失败 title: 删除失败
@ -633,22 +633,22 @@ core:
switch: 切换主题 switch: 切换主题
operations: operations:
active: active:
title: 是否确认启用当前主题 title: 启用主题
toast_success: 启用成功 toast_success: 启用成功
reset: reset:
title: 确定要重置主题的所有配置吗? title: 重置主题配置
description: 该操作会删除已保存的配置,重置为默认配置。 description: 该操作会删除已保存的配置,重置为默认配置。
toast_success: 重置配置成功 toast_success: 重置配置成功
reload: reload:
button: 重载主题配置 button: 重载主题配置
title: 确定要重载主题的所有配置吗? title: 重载主题配置
description: 该操作仅会重载主题配置和设置表单定义,不会删除已保存的配置。 description: 该操作仅会重载主题配置和设置表单定义,不会删除已保存的配置。
toast_success: 重载配置成功 toast_success: 重载配置成功
uninstall: uninstall:
title: 确定要卸载主题吗? title: 卸载主题
uninstall_and_delete_config: uninstall_and_delete_config:
button: 卸载并删除配置 button: 卸载并删除配置
title: 确定要卸载主题以及对应的配置吗? title: 卸载主题以及对应的配置
remote_download: remote_download:
title: 检测到了远程下载地址,是否需要下载? title: 检测到了远程下载地址,是否需要下载?
description: 请仔细鉴别此地址是否可信:{url} description: 请仔细鉴别此地址是否可信:{url}
@ -701,10 +701,10 @@ core:
button: 设置为主菜单 button: 设置为主菜单
toast_success: 设置成功 toast_success: 设置成功
delete_menu: delete_menu:
title: 确定要删除菜单吗? title: 删除菜单
description: 将同时删除该菜单下的所有菜单项,该操作不可恢复。 description: 将同时删除该菜单下的所有菜单项,该操作不可恢复。
delete_menu_item: delete_menu_item:
title: 确定要删除菜单项吗? title: 删除菜单项
description: 将同时删除所有子菜单项,删除后将无法恢复。 description: 将同时删除所有子菜单项,删除后将无法恢复。
add_sub_menu_item: add_sub_menu_item:
button: 新增子菜单项 button: 新增子菜单项
@ -761,25 +761,25 @@ core:
install: 安装插件 install: 安装插件
operations: operations:
reset: reset:
title: 确定要重置插件的所有配置吗? title: 重置插件配置
description: 该操作会删除已保存的配置,重置为默认配置。 description: 该操作会删除已保存的配置,重置为默认配置。
toast_success: 重置配置成功 toast_success: 重置配置成功
uninstall: uninstall:
title: 确定要卸载插件吗? title: 卸载插件
uninstall_in_batch: uninstall_in_batch:
title: 确定要卸载所选插件吗? title: 卸载所选插件
uninstall_and_delete_config: uninstall_and_delete_config:
button: 卸载并删除配置 button: 卸载并删除配置
title: 确定要卸载插件以及对应的配置吗? title: 卸载插件以及对应的配置
uninstall_and_delete_config_in_batch: uninstall_and_delete_config_in_batch:
button: 卸载并删除配置 button: 卸载并删除配置
title: 确定要卸载所选插件以及对应的配置吗? title: 卸载所选插件以及对应的配置
uninstall_when_enabled: uninstall_when_enabled:
confirm_text: 停止运行并卸载 confirm_text: 停止运行并卸载
description: 当前插件还在启用状态,将在停止运行后卸载,该操作不可恢复。 description: 当前插件还在启用状态,将在停止运行后卸载,该操作不可恢复。
change_status_in_batch: change_status_in_batch:
activate_title: 确定要启用所选插件吗? activate_title: 启用所选插件
inactivate_title: 确定要停用所选插件吗? inactivate_title: 停用所选插件
remote_download: remote_download:
title: 检测到了远程下载地址,是否需要下载? title: 检测到了远程下载地址,是否需要下载?
description: 请仔细鉴别此地址是否可信:{url} description: 请仔细鉴别此地址是否可信:{url}
@ -840,9 +840,9 @@ core:
message: 当前没有符合筛选条件的用户,你可以尝试刷新或者创建新用户 message: 当前没有符合筛选条件的用户,你可以尝试刷新或者创建新用户
operations: operations:
delete: delete:
title: 确定要删除用户吗? title: 删除用户
delete_in_batch: delete_in_batch:
title: 确定要删除选中的用户吗? title: 删除选用户
update_profile: update_profile:
title: 修改资料 title: 修改资料
change_password: change_password:
@ -922,7 +922,7 @@ core:
provided_by_plugin: 由 {plugin} 提供 provided_by_plugin: 由 {plugin} 提供
operations: operations:
delete: delete:
title: 确定要删除角色吗? title: 删除角色
description: 该角色删除后,相关联的用户将被删除角色绑定,该操作不可恢复。 description: 该角色删除后,相关联的用户将被删除角色绑定,该操作不可恢复。
create_based_on_this_role: create_based_on_this_role:
button: 基于此角色创建 button: 基于此角色创建
@ -961,9 +961,9 @@ core:
setting: 设置 setting: 设置
operations: operations:
enable: enable:
title: 确定要启用该身份认证方式吗? title: 启用认证方式
disable: disable:
title: 确定要停用该身份认证方式吗? title: 停用认证方式
disable_privileged: disable_privileged:
tooltip: 系统保留的认证方式,无法禁用 tooltip: 系统保留的认证方式,无法禁用
detail: detail:
@ -999,7 +999,7 @@ core:
button: 绑定 button: 绑定
unbind: unbind:
button: 解绑 button: 解绑
title: 确定要取消绑定 {display_name} 登录方式吗? title: 取消绑定 {display_name} 登录方式
email_not_set: email_not_set:
title: 设置电子邮箱 title: 设置电子邮箱
description: 电子邮箱地址还未设置,点击下方按钮进行设置 description: 电子邮箱地址还未设置,点击下方按钮进行设置
@ -1014,7 +1014,7 @@ core:
revoke: revoke:
button: 撤销 button: 撤销
title: 撤销个人令牌 title: 撤销个人令牌
description: 确定要撤销个人令牌吗? description: 撤销个人令牌
toast_success: 撤销成功 toast_success: 撤销成功
copy: copy:
title: 请立即复制并保存Token 将仅显示一次。 title: 请立即复制并保存Token 将仅显示一次。
@ -1173,7 +1173,7 @@ core:
button: 下载并恢复 button: 下载并恢复
restore_by_backup: restore_by_backup:
button: 恢复 button: 恢复
title: 确认要从此备份进行恢复吗? title: 从此备份进行恢复
list: list:
phases: phases:
pending: 准备中 pending: 准备中
@ -1397,7 +1397,7 @@ core:
cropper_modal: cropper_modal:
title: 裁剪头像 title: 裁剪头像
remove: remove:
title: 确定要删除头像吗? title: 删除头像
tooltips: tooltips:
upload: 上传 upload: 上传
zoom_in: 放大 zoom_in: 放大
@ -1410,14 +1410,14 @@ core:
disallow: 内容格式不同,无法切换 disallow: 内容格式不同,无法切换
uppy: uppy:
image_editor: image_editor:
revert: "恢复" revert: 恢复
rotate: "旋转" rotate: 旋转
zoom_in: "放大" zoom_in: 放大
zoom_out: "缩小" zoom_out: 缩小
flip_horizontal: "水平翻转" flip_horizontal: 水平翻转
aspect_ratio_square: "裁剪为正方形" aspect_ratio_square: 裁剪为正方形
aspect_ratio_landscape: "裁剪为横向 (16:9)" aspect_ratio_landscape: 裁剪为横向 (16:9)
aspect_ratio_portrait: "裁剪为纵向 (9:16)" aspect_ratio_portrait: 裁剪为纵向 (9:16)
composables: composables:
content_cache: content_cache:
toast_recovered: 已从缓存中恢复未保存的内容 toast_recovered: 已从缓存中恢复未保存的内容

View File

@ -90,7 +90,7 @@ core:
operations: operations:
logout: logout:
tooltip: 登出 tooltip: 登出
title: 確定要登出嗎? title: 登出
profile: profile:
tooltip: 個人中心 tooltip: 個人中心
visit_homepage: visit_homepage:
@ -153,12 +153,12 @@ core:
title: 新建用戶 title: 新建用戶
refresh_search_engine: refresh_search_engine:
title: 刷新搜尋引擎 title: 刷新搜尋引擎
dialog_title: 確定要刷新搜尋引擎索引嗎? dialog_title: 刷新搜尋引擎索引
dialog_content: 此操作會對所有已發佈的文章重新創建本地搜尋引擎的索引。 dialog_content: 此操作會對所有已發佈的文章重新創建本地搜尋引擎的索引。
success_message: 刷新成功 success_message: 刷新成功
evict_page_cache: evict_page_cache:
title: 重新整理頁面快取 title: 重新整理頁面快取
dialog_title: 確定要重新整理頁面快取嗎? dialog_title: 整理頁面快取
dialog_content: 這個操作會清空所有頁面的快取。 dialog_content: 這個操作會清空所有頁面的快取。
success_message: 刷新成功 success_message: 刷新成功
user_stats: user_stats:
@ -178,10 +178,10 @@ core:
message: 你可以嘗試刷新或者新建文章 message: 你可以嘗試刷新或者新建文章
operations: operations:
delete: delete:
title: 確定要刪除文章嗎? title: 刪除文章
description: 該操作會將文章放入回收站,後續可以從回收站恢復。 description: 該操作會將文章放入回收站,後續可以從回收站恢復。
delete_in_batch: delete_in_batch:
title: 確定要刪除選中的文章嗎? title: 刪除選文章
description: 該操作會將文章放入回收站,後續可以從回收站恢復。 description: 該操作會將文章放入回收站,後續可以從回收站恢復。
filters: filters:
status: status:
@ -255,16 +255,16 @@ core:
message: 你可以嘗試刷新或者返回文章管理 message: 你可以嘗試刷新或者返回文章管理
operations: operations:
delete: delete:
title: 確定要永久刪除文章嗎? title: 刪除文章
description: 刪除之後將無法恢復。 description: 刪除之後將無法恢復。
delete_in_batch: delete_in_batch:
title: 確定要永久刪除選中的文章嗎? title: 刪除選文章
description: 刪除之後將無法恢復。 description: 刪除之後將無法恢復。
recovery: recovery:
title: 確定要恢復文章嗎? title: 恢復文章
description: 該操作會將文章恢復到被刪除之前的狀態。 description: 該操作會將文章恢復到被刪除之前的狀態。
recovery_in_batch: recovery_in_batch:
title: 確定要恢復選中的文章嗎? title: 恢復選文章
description: 該操作會將文章恢復到被刪除之前的狀態。 description: 該操作會將文章恢復到被刪除之前的狀態。
post_editor: post_editor:
title: 文章編輯 title: 文章編輯
@ -278,7 +278,7 @@ core:
message: 你可以嘗試刷新或者新建標籤 message: 你可以嘗試刷新或者新建標籤
operations: operations:
delete: delete:
title: 確定要刪除標籤嗎? title: 刪除標籤
description: 刪除此標籤之後,對應文章的關聯將被解除。該操作不可恢復。 description: 刪除此標籤之後,對應文章的關聯將被解除。該操作不可恢復。
editing_modal: editing_modal:
titles: titles:
@ -309,7 +309,7 @@ core:
message: 你可以嘗試刷新或者新建分類 message: 你可以嘗試刷新或者新建分類
operations: operations:
delete: delete:
title: 確定要刪除分類嗎? title: 刪除分類
description: 刪除此分類之後,對應文章的關聯將被解除。該操作不可恢復。 description: 刪除此分類之後,對應文章的關聯將被解除。該操作不可恢復。
add_sub_category: add_sub_category:
button: 新增子分類 button: 新增子分類
@ -346,10 +346,10 @@ core:
message: 你可以嘗試刷新或者新建頁面 message: 你可以嘗試刷新或者新建頁面
operations: operations:
delete: delete:
title: 確定要刪除該自定義頁面嗎? title: 刪除頁面
description: 該操作會將自定義頁面放入回收站,後續可以從回收站恢復。 description: 該操作會將自定義頁面放入回收站,後續可以從回收站恢復。
delete_in_batch: delete_in_batch:
title: 確定要刪除選中的自定義頁面嗎? title: 刪除選頁面
description: 該操作會將自定義頁面放入回收站,後續可以從回收站恢復。 description: 該操作會將自定義頁面放入回收站,後續可以從回收站恢復。
filters: filters:
status: status:
@ -411,16 +411,16 @@ core:
message: 你可以嘗試刷新或者返回自定義頁面管理 message: 你可以嘗試刷新或者返回自定義頁面管理
operations: operations:
delete: delete:
title: 確認要永久刪除該自定義頁面嗎? title: 刪除頁面
description: 刪除之後將無法恢復。 description: 刪除之後將無法恢復。
delete_in_batch: delete_in_batch:
title: 確定要確認永久刪除選中的自定義頁面嗎? title: 刪除選頁面
description: 刪除之後將無法恢復。 description: 刪除之後將無法恢復。
recovery: recovery:
title: 確認要恢復該自定義頁面嗎? title: 恢復頁面
description: 該操作會將自定義頁面恢復到被刪除之前的狀態。 description: 該操作會將自定義頁面恢復到被刪除之前的狀態。
recovery_in_batch: recovery_in_batch:
title: 確認要恢復選中的自定義頁面嗎? title: 恢復選頁面
description: 該操作會將自定義頁面恢復到被刪除之前的狀態。 description: 該操作會將自定義頁面恢復到被刪除之前的狀態。
page_editor: page_editor:
title: 頁面編輯 title: 頁面編輯
@ -436,10 +436,10 @@ core:
new: 創建新回覆 new: 創建新回覆
operations: operations:
delete_comment: delete_comment:
title: 確認要刪除留言嗎? title: 刪除留言
description: 將同時刪除所有留言下的回覆,該操作不可恢復。 description: 將同時刪除所有留言下的回覆,該操作不可恢復。
delete_comment_in_batch: delete_comment_in_batch:
title: 確定要刪除所選留言嗎? title: 刪除所選留言
description: 將同時刪除所有留言下的回覆,該操作不可恢復。 description: 將同時刪除所有留言下的回覆,該操作不可恢復。
approve_comment_in_batch: approve_comment_in_batch:
button: 審核通過 button: 審核通過
@ -448,7 +448,7 @@ core:
button: 審核通過所有回覆 button: 審核通過所有回覆
title: 確定要審核通過該留言的所有回覆嗎? title: 確定要審核通過該留言的所有回覆嗎?
delete_reply: delete_reply:
title: 確認要刪除回覆嗎? title: 刪除回覆
approve_reply: approve_reply:
button: 審核通過 button: 審核通過
reply: reply:
@ -500,9 +500,9 @@ core:
upload: 上傳附件 upload: 上傳附件
operations: operations:
delete: delete:
title: 確定要刪除附件嗎? title: 刪除附件
delete_in_batch: delete_in_batch:
title: 確定要刪除所選附件嗎? title: 刪除所選附件
deselect_items: deselect_items:
button: 取消選擇 button: 取消選擇
move: move:
@ -559,12 +559,12 @@ core:
button: 重命名 button: 重命名
delete: delete:
button: 刪除並將附件移動至未分組 button: 刪除並將附件移動至未分組
title: 確定要刪除該分組嗎? title: 刪除附件分組
description: 將刪除分組,並將分組下的附件移動至未分組,該操作不可恢復。 description: 將刪除分組,並將分組下的附件移動至未分組,該操作不可恢復。
toast_success: 刪除成功,{total} 個附件已移動至未分組 toast_success: 刪除成功,{total} 個附件已移動至未分組
delete_with_attachments: delete_with_attachments:
button: 刪除並同時刪除附件 button: 刪除並同時刪除附件
title: 確定要刪除該分組嗎? title: 刪除附件分組
description: 將刪除分組以及分組下的所有附件,該操作不可恢復。 description: 將刪除分組以及分組下的所有附件,該操作不可恢復。
toast_success: 刪除成功,{total} 個附件已被同時刪除 toast_success: 刪除成功,{total} 個附件已被同時刪除
policies_modal: policies_modal:
@ -574,7 +574,7 @@ core:
message: 當前沒有可用的存儲策略,你可以嘗試刷新或者新建策略 message: 當前沒有可用的存儲策略,你可以嘗試刷新或者新建策略
operations: operations:
delete: delete:
title: 確定要刪除該策略嗎? title: 刪除附件策略
description: 當前策略下沒有已上傳的附件。 description: 當前策略下沒有已上傳的附件。
can_not_delete: can_not_delete:
title: 刪除失敗 title: 刪除失敗
@ -621,22 +621,22 @@ core:
switch: 切換主題 switch: 切換主題
operations: operations:
active: active:
title: 是否確認啟用當前主題 title: 啟用主題
toast_success: 啟用成功 toast_success: 啟用成功
reset: reset:
title: 確定要重置主題的所有配置嗎? title: 重置主題配置
description: 該操作會刪除已保存的配置,重置為預設配置。 description: 該操作會刪除已保存的配置,重置為預設配置。
toast_success: 重置配置成功 toast_success: 重置配置成功
reload: reload:
button: 重載主題配置 button: 重載主題配置
title: 確定要重載主題的所有配置嗎? title: 重載主題配置
description: 該操作僅會重載主題配置和設置表單定義,不會刪除已保存的配置。 description: 該操作僅會重載主題配置和設置表單定義,不會刪除已保存的配置。
toast_success: 重載配置成功 toast_success: 重載配置成功
uninstall: uninstall:
title: 確定要卸載主題嗎? title: 卸載主題
uninstall_and_delete_config: uninstall_and_delete_config:
button: 卸載並刪除配置 button: 卸載並刪除配置
title: 確定要卸載主題以及對應的配置嗎? title: 卸載主題以及對應的配置
remote_download: remote_download:
title: 偵測到遠端下載地址,是否需要下載? title: 偵測到遠端下載地址,是否需要下載?
description: 請仔細鑑別此地址是否可信:{url} description: 請仔細鑑別此地址是否可信:{url}
@ -689,10 +689,10 @@ core:
button: 設置為主選單 button: 設置為主選單
toast_success: 設置成功 toast_success: 設置成功
delete_menu: delete_menu:
title: 確定要刪除選單嗎? title: 刪除選單
description: 將同時刪除該選單下的所有選單項,該操作不可恢復。 description: 將同時刪除該選單下的所有選單項,該操作不可恢復。
delete_menu_item: delete_menu_item:
title: 確定要刪除選單項嗎? title: 刪除選單項
description: 將同時刪除所有子選單項,刪除後將無法恢復。 description: 將同時刪除所有子選單項,刪除後將無法恢復。
add_sub_menu_item: add_sub_menu_item:
button: 新增子選單項 button: 新增子選單項
@ -749,25 +749,25 @@ core:
install: 安裝插件 install: 安裝插件
operations: operations:
reset: reset:
title: 確定要重置插件的所有配置嗎? title: 重置插件配置
description: 該操作會刪除已保存的配置,重置為默認配置。 description: 該操作會刪除已保存的配置,重置為默認配置。
toast_success: 重置配置成功 toast_success: 重置配置成功
uninstall: uninstall:
title: 確定要卸載插件嗎? title: 卸載插件
uninstall_in_batch: uninstall_in_batch:
title: 確定要卸載所選插件嗎? title: 卸載所選插件
uninstall_and_delete_config: uninstall_and_delete_config:
button: 卸載並刪除配置 button: 卸載並刪除配置
title: 確定要卸載插件以及對應的配置嗎? title: 卸載插件以及對應的配置
uninstall_and_delete_config_in_batch: uninstall_and_delete_config_in_batch:
button: 卸載並刪除配置 button: 卸載並刪除配置
title: 確定要卸載所選插件以及對應的配置嗎? title: 卸載所選插件以及對應的配置
uninstall_when_enabled: uninstall_when_enabled:
confirm_text: 停止運行並卸載 confirm_text: 停止運行並卸載
description: 當前插件還在啟用狀態,將在停止運行後卸載,該操作不可恢復。 description: 當前插件還在啟用狀態,將在停止運行後卸載,該操作不可恢復。
change_status_in_batch: change_status_in_batch:
activate_title: 確定要啟用所選插件嗎? activate_title: 啟用所選插件
inactivate_title: 確定要停用所選插件嗎? inactivate_title: 停用所選插件
remote_download: remote_download:
title: 偵測到遠端下載地址,是否需要下載? title: 偵測到遠端下載地址,是否需要下載?
description: 請仔細鑑別此地址是否可信:{url} description: 請仔細鑑別此地址是否可信:{url}
@ -828,9 +828,9 @@ core:
message: 當前沒有符合篩選條件的用戶,你可以嘗試刷新或者創建新用戶 message: 當前沒有符合篩選條件的用戶,你可以嘗試刷新或者創建新用戶
operations: operations:
delete: delete:
title: 確定要刪除用戶嗎? title: 刪除用戶
delete_in_batch: delete_in_batch:
title: 確定要刪除選中的用戶嗎? title: 刪除選用戶
update_profile: update_profile:
title: 修改資料 title: 修改資料
change_password: change_password:
@ -910,7 +910,7 @@ core:
provided_by_plugin: 由 {plugin} 提供 provided_by_plugin: 由 {plugin} 提供
operations: operations:
delete: delete:
title: 確定要刪除角色嗎? title: 刪除角色
description: 該角色刪除後,相關聯的用戶將被刪除角色綁定,該操作不可恢復。 description: 該角色刪除後,相關聯的用戶將被刪除角色綁定,該操作不可恢復。
create_based_on_this_role: create_based_on_this_role:
button: 基於此角色創建 button: 基於此角色創建
@ -949,9 +949,9 @@ core:
setting: 設置 setting: 設置
operations: operations:
enable: enable:
title: 確定要啟用該身份認證方式嗎? title: 啟用認證方式
disable: disable:
title: 確定要停用該身份認證方式嗎? title: 停用認證方式
disable_privileged: disable_privileged:
tooltip: 系統保留的認證方式,無法禁用 tooltip: 系統保留的認證方式,無法禁用
detail: detail:
@ -987,7 +987,7 @@ core:
button: 綁定 button: 綁定
unbind: unbind:
button: 解綁 button: 解綁
title: 確定要取消綁定 {display_name} 登入方式嗎? title: 取消綁定 {display_name} 登入方式
email_not_set: email_not_set:
description: 電子郵件地址尚未設置,點擊下方按鈕進行設置 description: 電子郵件地址尚未設置,點擊下方按鈕進行設置
title: 設定電子郵件信箱 title: 設定電子郵件信箱
@ -998,11 +998,11 @@ core:
operations: operations:
delete: delete:
title: 刪除個人令牌 title: 刪除個人令牌
description: 您確定要刪除個人令牌嗎? description: 刪除個人令牌
revoke: revoke:
button: 撤銷 button: 撤銷
title: 撤銷個人令牌 title: 撤銷個人令牌
description: 您確定要撤銷個人令牌嗎? description: 撤銷個人令牌
toast_success: 撤銷成功 toast_success: 撤銷成功
copy: copy:
title: 請立即複製並保存,令牌僅顯示一次。 title: 請立即複製並保存,令牌僅顯示一次。
@ -1363,7 +1363,7 @@ core:
cropper_modal: cropper_modal:
title: 裁剪頭像 title: 裁剪頭像
remove: remove:
title: 確定要刪除頭像嗎? title: 刪除頭像
tooltips: tooltips:
upload: 上傳 upload: 上傳
zoom_in: 放大 zoom_in: 放大
@ -1376,14 +1376,14 @@ core:
disallow: 內容格式不同,無法切換 disallow: 內容格式不同,無法切換
uppy: uppy:
image_editor: image_editor:
revert: "還原" revert: 還原
rotate: "旋轉" rotate: 旋轉
zoom_in: "放大" zoom_in: 放大
zoom_out: "縮小" zoom_out: 縮小
flip_horizontal: "水平翻轉" flip_horizontal: 水平翻轉
aspect_ratio_square: "裁剪為正方形" aspect_ratio_square: 裁剪為正方形
aspect_ratio_landscape: "裁剪為橫向 (16:9)" aspect_ratio_landscape: 裁剪為橫向 (16:9)
aspect_ratio_portrait: "裁剪為縱向 (9:16)" aspect_ratio_portrait: 裁剪為縱向 (9:16)
composables: composables:
content_cache: content_cache:
toast_recovered: 已從緩存中恢復未保存的內容 toast_recovered: 已從緩存中恢復未保存的內容
@ -1528,6 +1528,7 @@ core:
reset: reset:
button: 重設密碼 button: 重設密碼
toast_success: 重置成功 toast_success: 重置成功
title: 重設密碼
reset_password: reset_password:
fields: fields:
username: username:
@ -1538,6 +1539,7 @@ core:
send: send:
label: 發送驗證郵件 label: 發送驗證郵件
toast_success: 如果你的用戶名和郵箱地址匹配,我們將會發送一封郵件到你的郵箱。 toast_success: 如果你的用戶名和郵箱地址匹配,我們將會發送一封郵件到你的郵箱。
title: 重設密碼
tool: tool:
title: 工具 title: 工具
empty: empty: