* feat: add settingsCenter * fix: style bug * chore: optimized code * refactor: settingCenter Auth * feat: add aclSnippet option * refactor: all plugin's setting center api * feat: add plugin with name * docs: add settings-center doc * fix: settings center menu sort by name * fix: change setting center layout * fix: change hello sort * test: add SettingsCenter.ts test case * fix: bug * fix: acl bug * fix: bug * fix: bug and 404 page * fix: test bug * fix: test bug * fix: bug * fix: locale * fix: styling * fix: rename settingsCenter to pluginSettingsManager * fix: styling * fix: e2e bug * fix: e2e bug * fix: locale * feat: update docs * fix: update --------- Co-authored-by: chenos <chenlinxh@gmail.com>
25 lines
843 B
TypeScript
25 lines
843 B
TypeScript
const locale = {
|
|
'API keys': 'API 密钥',
|
|
'API key created successfully': 'API 密钥创建成功',
|
|
'Make sure to copy your personal access key now as you will not be able to see this again.':
|
|
'请确保现在复制你的个人访问密钥,因为你将无法再次看到这个密钥。',
|
|
'Key name': '密钥名称',
|
|
Expiration: '过期时间',
|
|
'Delete API key': '删除 API 密钥',
|
|
Role: '角色',
|
|
'Keys manager': '密钥管理',
|
|
'Created at': '创建时间',
|
|
'Add API key': '添加 API 密钥',
|
|
Never: '永不',
|
|
Custom: '自定义',
|
|
'Never expires': '永不过期',
|
|
'1 Day': '1 天',
|
|
'7 Days': '7 天',
|
|
'30 Days': '30 天',
|
|
'90 Days': '90 天',
|
|
'Role not found': '角色不存在',
|
|
'Allow only your own roles to be selected': '只允许选择你自己拥有的角色',
|
|
};
|
|
|
|
export default locale;
|