diff --git a/console/src/locales/en.yaml b/console/src/locales/en.yaml index 604a72c96..6e801558a 100644 --- a/console/src/locales/en.yaml +++ b/console/src/locales/en.yaml @@ -732,11 +732,20 @@ core: toast_success: Reset configuration successfully uninstall: title: Are you sure you want to uninstall this plugin? + uninstall_in_batch: + title: Are you sure you want to uninstall these plugin? uninstall_and_delete_config: + button: Uninstall and delete config title: Are you sure you want to uninstall this plugin and its corresponding configuration? + uninstall_and_delete_config_in_batch: + button: Uninstall and delete config + title: Are you sure you want to uninstall these plugin and its corresponding configuration? uninstall_when_enabled: confirm_text: Stop running and uninstall description: The current plugin is still in the enabled state and will be uninstalled after it stops running. This operation cannot be undone. + change_status_in_batch: + activate_title: Are you sure you want to activate these plugins? + inactivate_title: Are you sure you want to inactivate these plugins? remote_download: title: Remote download address detected, do you want to download? description: "Please carefully verify whether this address can be trusted: {url}" @@ -749,9 +758,6 @@ core: items: create_time_desc: Latest Installed create_time_asc: Earliest Installed - list: - actions: - uninstall_and_delete_config: Uninstall and delete config upload_modal: titles: install: Install plugin @@ -1197,7 +1203,8 @@ core: preview: Preview recovery: Recovery delete_permanently: Delete Permanently - active: Active + activate: Activate + inactivate: Inactivate download: Download copy: Copy upload: Upload diff --git a/console/src/locales/zh-CN.yaml b/console/src/locales/zh-CN.yaml index eaf09547b..3abcede63 100644 --- a/console/src/locales/zh-CN.yaml +++ b/console/src/locales/zh-CN.yaml @@ -732,11 +732,20 @@ core: toast_success: 重置配置成功 uninstall: title: 确定要卸载该插件吗? + uninstall_in_batch: + title: 确定要卸载所选插件吗? uninstall_and_delete_config: + button: 卸载并删除配置 title: 确定要卸载该插件以及对应的配置吗? + uninstall_and_delete_config_in_batch: + button: 卸载并删除配置 + title: 确定要卸载所选插件以及对应的配置吗? uninstall_when_enabled: confirm_text: 停止运行并卸载 description: 当前插件还在启用状态,将在停止运行后卸载,该操作不可恢复。 + change_status_in_batch: + activate_title: 确定要启用所选插件吗? + inactivate_title: 确定要停用所选插件吗? remote_download: title: 检测到了远程下载地址,是否需要下载? description: 请仔细鉴别此地址是否可信:{url} @@ -749,9 +758,6 @@ core: items: create_time_desc: 较近安装 create_time_asc: 较早安装 - list: - actions: - uninstall_and_delete_config: 卸载并删除配置 upload_modal: titles: install: 安装插件 @@ -1197,7 +1203,8 @@ core: preview: 预览 recovery: 恢复 delete_permanently: 永久删除 - active: 启用 + activate: 启用 + inactivate: 停用 download: 下载 copy: 复制 upload: 上传 diff --git a/console/src/locales/zh-TW.yaml b/console/src/locales/zh-TW.yaml index 0562b4fbf..0782f6b35 100644 --- a/console/src/locales/zh-TW.yaml +++ b/console/src/locales/zh-TW.yaml @@ -732,11 +732,20 @@ core: toast_success: 重置配置成功 uninstall: title: 確定要卸載該插件嗎? + uninstall_in_batch: + title: 確定要卸載所選插件嗎? uninstall_and_delete_config: + button: 卸載並刪除配置 title: 確定要卸載該插件以及對應的配置嗎? + uninstall_and_delete_config_in_batch: + button: 卸載並刪除配置 + title: 確定要卸載所選插件以及對應的配置嗎? uninstall_when_enabled: confirm_text: 停止運行並卸載 description: 當前插件還在啟用狀態,將在停止運行後卸載,該操作不可恢復。 + change_status_in_batch: + activate_title: 確定要啟用所選插件嗎? + inactivate_title: 確定要停用所選插件嗎? remote_download: title: 偵測到遠端下載地址,是否需要下載? description: 請仔細鑑別此地址是否可信:{url} @@ -749,9 +758,6 @@ core: items: create_time_desc: 較近安裝 create_time_asc: 較早安裝 - list: - actions: - uninstall_and_delete_config: 卸載並刪除配置 upload_modal: titles: install: 安裝插件 @@ -1197,7 +1203,8 @@ core: preview: 預覽 recovery: 恢復 delete_permanently: 永久刪除 - active: 啟用 + activate: 啟用 + inactivate: 停用 download: 下載 copy: 複製 upload: 上傳 diff --git a/console/src/modules/interface/themes/components/components/ThemeListItem.vue b/console/src/modules/interface/themes/components/components/ThemeListItem.vue index f4184c060..c5e8cabe1 100644 --- a/console/src/modules/interface/themes/components/components/ThemeListItem.vue +++ b/console/src/modules/interface/themes/components/components/ThemeListItem.vue @@ -194,7 +194,7 @@ const handleUninstall = async (theme: Theme, deleteExtensions?: boolean) => { #dropdownItems > - {{ $t("core.common.buttons.active") }} + {{ $t("core.common.buttons.activate") }} {{ $t("core.common.buttons.upgrade") }} diff --git a/console/src/modules/interface/themes/components/preview/ThemePreviewListItem.vue b/console/src/modules/interface/themes/components/preview/ThemePreviewListItem.vue index 95c8c2e79..65a9c0d09 100644 --- a/console/src/modules/interface/themes/components/preview/ThemePreviewListItem.vue +++ b/console/src/modules/interface/themes/components/preview/ThemePreviewListItem.vue @@ -81,7 +81,7 @@ const { isActivated, handleActiveTheme } = useThemeLifeCycle(theme);