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') },