2024-04-28 04:43:16 +00:00
|
|
|
import en from 'element-plus/es/locale/lang/en';
|
|
|
|
|
import components from './components';
|
|
|
|
|
import layout from './layout';
|
2024-05-18 01:34:27 +00:00
|
|
|
import views from './views';
|
2024-04-28 04:43:16 +00:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
lang: 'English',
|
|
|
|
|
layout,
|
2024-05-18 01:34:27 +00:00
|
|
|
views,
|
2024-04-28 04:43:16 +00:00
|
|
|
components,
|
|
|
|
|
en,
|
2024-07-11 11:51:28 +00:00
|
|
|
login: {
|
|
|
|
|
authentication: 'Login Authentication',
|
|
|
|
|
ldap: {
|
|
|
|
|
title: 'LDAP Settings',
|
|
|
|
|
address: 'LDAP Address',
|
|
|
|
|
serverPlaceholder: 'Please enter LDAP address',
|
|
|
|
|
bindDN: 'Bind DN',
|
|
|
|
|
bindDNPlaceholder: 'Please enter Bind DN',
|
|
|
|
|
password: 'Password',
|
|
|
|
|
passwordPlaceholder: 'Please enter password',
|
|
|
|
|
ou: 'User OU',
|
|
|
|
|
ouPlaceholder: 'Please enter User OU',
|
|
|
|
|
ldap_filter: 'User Filter',
|
|
|
|
|
ldap_filterPlaceholder: 'Please enter User Filter',
|
|
|
|
|
ldap_mapping: 'LDAP Attribute Mapping',
|
|
|
|
|
ldap_mappingPlaceholder: 'Please enter LDAP Attribute Mapping',
|
|
|
|
|
test: 'Test Connection',
|
|
|
|
|
enableAuthentication: 'Enable LDAP Authentication',
|
|
|
|
|
save: 'Save',
|
|
|
|
|
testConnectionSuccess: 'Test Connection Success',
|
|
|
|
|
testConnectionFailed: 'Test Connection Failed',
|
|
|
|
|
saveSuccess: 'Save Success',
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-04-28 04:43:16 +00:00
|
|
|
};
|