From 483bb8d6431a1c2b051db2ac40c0a901f4b20de9 Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Thu, 23 Oct 2025 13:06:51 +0800 Subject: [PATCH] =?UTF-8?q?perf(X-Pack):=20=E9=BB=98=E8=AE=A4=E7=99=BB?= =?UTF-8?q?=E5=BD=95=E6=96=B9=E5=BC=8F=E6=94=AF=E6=8C=81=E8=AE=BE=E7=BD=AE?= =?UTF-8?q?=E4=B8=BA=20Saml2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core-backend/src/main/resources/i18n/core_en_US.properties | 2 ++ .../core-backend/src/main/resources/i18n/core_zh_CN.properties | 2 ++ .../core-backend/src/main/resources/i18n/core_zh_TW.properties | 2 ++ .../src/views/system/parameter/basic/BasicEdit.vue | 3 ++- .../src/views/system/parameter/basic/BasicInfo.vue | 3 ++- 5 files changed, 10 insertions(+), 2 deletions(-) diff --git a/core/core-backend/src/main/resources/i18n/core_en_US.properties b/core/core-backend/src/main/resources/i18n/core_en_US.properties index 4e33e92a69..4d05fcd5a0 100644 --- a/core/core-backend/src/main/resources/i18n/core_en_US.properties +++ b/core/core-backend/src/main/resources/i18n/core_en_US.properties @@ -78,6 +78,8 @@ i18n_menu.parameter=System Parameters i18n_user_old_pwd_error=Original password is incorrect i18n_menu.toolbox-log=Operation Logs +i18n_login_type_tips=Please login using [%s] + i18n_year=Year i18n_month=Month i18n_day=Day diff --git a/core/core-backend/src/main/resources/i18n/core_zh_CN.properties b/core/core-backend/src/main/resources/i18n/core_zh_CN.properties index 47349dbc19..84e6285d8a 100644 --- a/core/core-backend/src/main/resources/i18n/core_zh_CN.properties +++ b/core/core-backend/src/main/resources/i18n/core_zh_CN.properties @@ -77,6 +77,8 @@ i18n_menu.parameter=\u7CFB\u7EDF\u53C2\u6570 i18n_user_old_pwd_error=\u539F\u59CB\u5BC6\u7801\u9519\u8BEF i18n_menu.toolbox-log=\u64CD\u4F5C\u65E5\u5FD7 +i18n_login_type_tips=\u8BF7\u4F7F\u7528[%s]\u767B\u5F55 + i18n_year=\u5E74 i18n_month=\u6708 i18n_day=\u5929 diff --git a/core/core-backend/src/main/resources/i18n/core_zh_TW.properties b/core/core-backend/src/main/resources/i18n/core_zh_TW.properties index e5b19bd2ea..5389ada296 100644 --- a/core/core-backend/src/main/resources/i18n/core_zh_TW.properties +++ b/core/core-backend/src/main/resources/i18n/core_zh_TW.properties @@ -77,6 +77,8 @@ i18n_menu.parameter=\u7CFB\u7D71\u53C3\u6578 i18n_user_old_pwd_error=\u539F\u59CB\u5BC6\u78BC\u932F\u8AA4 i18n_menu.toolbox-log=\u64CD\u4F5C\u65E5\u8A8C +i18n_login_type_tips=\u8ACB\u4F7F\u7528[%s]\u767B\u9304 + i18n_year=\u5E74 i18n_month=\u6708 i18n_day=\u5929 diff --git a/core/core-frontend/src/views/system/parameter/basic/BasicEdit.vue b/core/core-frontend/src/views/system/parameter/basic/BasicEdit.vue index 3ea37b0529..9d5ed2c2c7 100644 --- a/core/core-frontend/src/views/system/parameter/basic/BasicEdit.vue +++ b/core/core-frontend/src/views/system/parameter/basic/BasicEdit.vue @@ -50,7 +50,8 @@ const state = reactive({ { value: '1', label: 'LDAP' }, { value: '2', label: 'OIDC' }, { value: '3', label: 'CAS' }, - { value: '9', label: 'OAuth2' } + { value: '9', label: 'OAuth2' }, + { value: '10', label: 'Saml2' } ], sortOptions: [ { value: '0', label: t('resource_sort.time_asc') }, diff --git a/core/core-frontend/src/views/system/parameter/basic/BasicInfo.vue b/core/core-frontend/src/views/system/parameter/basic/BasicInfo.vue index b42a41290c..c1ab6fe947 100644 --- a/core/core-frontend/src/views/system/parameter/basic/BasicInfo.vue +++ b/core/core-frontend/src/views/system/parameter/basic/BasicInfo.vue @@ -128,7 +128,8 @@ const state = reactive({ { value: '1', label: 'LDAP' }, { value: '2', label: 'OIDC' }, { value: '3', label: 'CAS' }, - { value: '9', label: 'OAuth2' } + { value: '9', label: 'OAuth2' }, + { value: '10', label: 'Saml2' } ], sortOptions: [ { value: '0', label: t('resource_sort.time_asc') },