1234567891011121314151617181920212223242526272829303132333435 |
- /**
- * 系统设置-外部链接配置
- */
- /* 英文 */
- export const OutLinkConfigEn = {
- menu_add_btn:'Add menu',
- menu_edit_btn:'Edit menu',
- tale_col01:'Menu Name',
- tale_col02:'Page Link',
- tale_col03:'Creation Time',
- placeholder01:'Enter menu name',
- placeholder02:'Enter URL',
- del_success_msg:'Delete menu successfully',
- tips_msg01:'Menu name cannot be empty',
- tips_msg02:'URL cannot be empty',
- };
-
- /* 中文 */
- export const OutLinkConfigZh = {
- menu_add_btn:'添加菜单',
- menu_edit_btn:'编辑菜单',
- tale_col01:'菜单名称',
- tale_col02:'页面链接',
- tale_col03:'创建时间',
- placeholder01:'请输入菜单名称',
- placeholder02:'请输入URL',
- del_success_msg:'删除菜单成功',
- tips_msg01:'菜单名称不能为空',
- tips_msg02:'URL不能为空',
- };
-
- /**
- * $t('SystemManage.OutLinkConfig.XXX')
- */
|