en.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  1. export default {
  2. route: {
  3. dashboard: 'Dashboard',
  4. documentation: 'Documentation',
  5. guide: 'Guide',
  6. permission: 'Permission',
  7. pagePermission: 'Page Permission',
  8. rolePermission: 'Role Permission',
  9. directivePermission: 'Directive Permission',
  10. icons: 'Icons',
  11. components: 'Components',
  12. tinymce: 'Tinymce',
  13. markdown: 'Markdown',
  14. jsonEditor: 'JSON Editor',
  15. dndList: 'Dnd List',
  16. splitPane: 'SplitPane',
  17. avatarUpload: 'Avatar Upload',
  18. dropzone: 'Dropzone',
  19. sticky: 'Sticky',
  20. countTo: 'Count To',
  21. componentMixin: 'Mixin',
  22. backToTop: 'Back To Top',
  23. dragDialog: 'Drag Dialog',
  24. dragSelect: 'Drag Select',
  25. dragKanban: 'Drag Kanban',
  26. charts: 'Charts',
  27. keyboardChart: 'Keyboard Chart',
  28. lineChart: 'Line Chart',
  29. mixChart: 'Mix Chart',
  30. example: 'Example',
  31. nested: 'Nested Routes',
  32. menu1: 'Menu 1',
  33. 'menu1-1': 'Menu 1-1',
  34. 'menu1-2': 'Menu 1-2',
  35. 'menu1-2-1': 'Menu 1-2-1',
  36. 'menu1-2-2': 'Menu 1-2-2',
  37. 'menu1-3': 'Menu 1-3',
  38. menu2: 'Menu 2',
  39. Table: 'Table',
  40. dynamicTable: 'Dynamic Table',
  41. dragTable: 'Drag Table',
  42. inlineEditTable: 'Inline Edit',
  43. complexTable: 'Complex Table',
  44. tab: 'Tab',
  45. form: 'Form',
  46. createArticle: 'Create Article',
  47. editArticle: 'Edit Article',
  48. articleList: 'Article List',
  49. errorPages: 'Error Pages',
  50. page401: '401',
  51. page404: '404',
  52. errorLog: 'Error Log',
  53. excel: 'Excel',
  54. exportExcel: 'Export Excel',
  55. selectExcel: 'Export Selected',
  56. mergeHeader: 'Merge Header',
  57. uploadExcel: 'Upload Excel',
  58. zip: 'Zip',
  59. pdf: 'PDF',
  60. exportZip: 'Export Zip',
  61. theme: 'Theme',
  62. clipboardDemo: 'Clipboard',
  63. i18n: 'I18n',
  64. externalLink: 'External Link',
  65. profile: 'Profile'
  66. },
  67. navbar: {
  68. dashboard: 'Dashboard',
  69. github: 'Github',
  70. logOut: 'Log Out',
  71. profile: 'Profile',
  72. theme: 'Theme',
  73. size: 'Global Size'
  74. },
  75. login: {
  76. title: 'LOGIN',
  77. logIn: 'Login',
  78. username: 'UserName',
  79. password: 'Password',
  80. verifyCode: 'Verification Code'
  81. },
  82. documentation: {
  83. documentation: 'Documentation',
  84. github: 'Github Repository'
  85. },
  86. permission: {
  87. addRole: 'New Role',
  88. editPermission: 'Edit',
  89. roles: 'Your roles',
  90. switchRoles: 'Switch roles',
  91. tips: 'In some cases, using v-permission will have no effect. For example: Element-UI el-tab or el-table-column and other scenes that dynamically render dom. You can only do this with v-if.',
  92. delete: 'Delete',
  93. confirm: 'Confirm',
  94. cancel: 'Cancel'
  95. },
  96. guide: {
  97. description: 'The guide page is useful for some people who entered the project for the first time. You can briefly introduce the features of the project. Demo is based on ',
  98. button: 'Show Guide'
  99. },
  100. components: {
  101. documentation: 'Documentation',
  102. tinymceTips: 'Rich text is a core feature of the management backend, but at the same time it is a place with lots of pits. In the process of selecting rich texts, I also took a lot of detours. The common rich texts on the market have been basically used, and I finally chose Tinymce. See the more detailed rich text comparison and introduction.',
  103. dropzoneTips: 'Because my business has special needs, and has to upload images to qiniu, so instead of a third party, I chose encapsulate it by myself. It is very simple, you can see the detail code in @/components/Dropzone.',
  104. stickyTips: 'when the page is scrolled to the preset position will be sticky on the top.',
  105. backToTopTips1: 'When the page is scrolled to the specified position, the Back to Top button appears in the lower right corner',
  106. backToTopTips2: 'You can customize the style of the button, show / hide, height of appearance, height of the return. If you need a text prompt, you can use element-ui el-tooltip elements externally',
  107. imageUploadTips: 'Since I was using only the vue@1 version, and it is not compatible with mockjs at the moment, I modified it myself, and if you are going to use it, it is better to use official version.'
  108. },
  109. table: {
  110. dynamicTips1: 'Fixed header, sorted by header order',
  111. dynamicTips2: 'Not fixed header, sorted by click order',
  112. dragTips1: 'The default order',
  113. dragTips2: 'The after dragging order',
  114. title: 'Title',
  115. importance: 'Imp',
  116. type: 'Type',
  117. remark: 'Remark',
  118. search: 'Search',
  119. add: 'Add',
  120. export: 'Export',
  121. reviewer: 'reviewer',
  122. id: 'ID',
  123. date: 'Date',
  124. author: 'Author',
  125. readings: 'Readings',
  126. status: 'Status',
  127. actions: 'Actions',
  128. edit: 'Edit',
  129. publish: 'Publish',
  130. draft: 'Draft',
  131. delete: 'Delete',
  132. cancel: 'Cancel',
  133. confirm: 'Confirm',
  134. adopted:'Adopted',
  135. },
  136. example: {
  137. warning: 'Creating and editing pages cannot be cached by keep-alive because keep-alive include does not currently support caching based on routes, so it is currently cached based on component name. If you want to achieve a similar caching effect, you can use a browser caching scheme such as localStorage. Or do not use keep-alive include to cache all pages directly. See details'
  138. },
  139. errorLog: {
  140. tips: 'Please click the bug icon in the upper right corner',
  141. description: 'Now the management system are basically the form of the spa, it enhances the user experience, but it also increases the possibility of page problems, a small negligence may lead to the entire page deadlock. Fortunately Vue provides a way to catch handling exceptions, where you can handle errors or report exceptions.',
  142. documentation: 'Document introduction'
  143. },
  144. excel: {
  145. export: 'Export',
  146. selectedExport: 'Export Selected Items',
  147. placeholder: 'Please enter the file name (default excel-list)'
  148. },
  149. zip: {
  150. export: 'Export',
  151. placeholder: 'Please enter the file name (default file)'
  152. },
  153. pdf: {
  154. tips: 'Here we use window.print() to implement the feature of downloading PDF.'
  155. },
  156. theme: {
  157. change: 'Change Theme',
  158. documentation: 'Theme documentation',
  159. tips: 'Tips: It is different from the theme-pick on the navbar is two different skinning methods, each with different application scenarios. Refer to the documentation for details.'
  160. },
  161. tagsView: {
  162. refresh: 'Refresh',
  163. close: 'Close',
  164. closeOthers: 'Close Others',
  165. closeAll: 'Close All'
  166. },
  167. settings: {
  168. title: 'Page style setting',
  169. theme: 'Theme Color',
  170. tagsView: 'Open Tags-View',
  171. fixedHeader: 'Fixed Header',
  172. sidebarLogo: 'Sidebar Logo'
  173. },
  174. common: {
  175. save: 'Save',
  176. modify: 'Modify',
  177. submit: 'Submit',
  178. delete: 'Delete',
  179. edit: 'Edit',
  180. action: 'Action',
  181. yes: 'YES',
  182. no: 'NO',
  183. view: 'View',
  184. select: 'Select',
  185. reset: 'Reset',
  186. startDate: 'Start Date',
  187. endDate: 'End Date',
  188. deleteTips: 'Are you sure you want to delete the selected data?',
  189. hint: 'Hint',
  190. cancel: 'Cancel',
  191. confirm: 'Confirm',
  192. successfully: 'Successfully',
  193. close: 'Close',
  194. note: 'Note',
  195. awaitData: 'Retrieving data, please wait.',
  196. switchLanguageHints: 'Switch Language Success',
  197. websiteTitle: 'Member Management System',
  198. uploadHints: 'Uploading, please hold on. Do not close the window!',
  199. canNotBeBlank: ' cannot be blank',
  200. require: 'is required',
  201. createdAt: '创建时间',
  202. updatedAt: '更新时间',
  203. actionThisData: '操作该数据',
  204. selectType: '筛选类型',
  205. selectFunction: '筛选方式',
  206. selectDate: '选择日期',
  207. selectMonth: '选择月份',
  208. pleaseInputContent: '请输入内容',
  209. relation: '关系',
  210. reset: '重置',
  211. desc: '描述',
  212. exportExcel:'Export Excel',
  213. },
  214. filter: {
  215. memberSelect: '会员筛选',
  216. memberNumber: '会员编号',
  217. name: '姓名',
  218. idNumber: '证件号码',
  219. phoneNumber: '手机号码',
  220. memberLevel: '会员级别',
  221. level: '级别',
  222. confirmSelect: '确认筛选',
  223. memberName: '会员姓名',
  224. ID: '身份证',
  225. addAt: '加入时间',
  226. pleaseSelectDecLevel: '请选择报单级别',
  227. pleaseSelectEmpLevel: '请选择级别',
  228. eq: '等于',
  229. like: '包含',
  230. noeq: '不等于',
  231. nolike: '不包含',
  232. moreThan: '大于',
  233. moreThanEq: '大于等于',
  234. less: '小于',
  235. lessThan: '小于等于',
  236. and: '并且',
  237. or: '或者',
  238. selectContentNotice: '请填写完整筛选内容',
  239. areaSelectNotice: '地区仅限于"等于"的筛选方式'
  240. },
  241. menu: {
  242. // 一级菜单
  243. dashboard: 'Dashboard',
  244. shoppingMall: 'Shopping Mall',
  245. memberManagement: 'Member Management',
  246. networkChart: 'Network Chart',
  247. bonusManagement: 'Bonus Management',
  248. articleManagement: 'Article Management',
  249. financialManagement: 'Financial Management',
  250. fileManagement: 'File Management',
  251. administrator: 'Administrator',
  252. adManagement: 'Ad Management',
  253. logManagement: 'Log Management',
  254. settingManagement: 'Setting Management',
  255. // 二级菜单/接口-shoppingMall
  256. productsList: 'Products List',
  257. orderList: 'Order List',
  258. remainBV: 'Remain BV',
  259. remainBVFlow: 'Remain BV Flow',
  260. externalMallOrderList: 'External Mall Order List',
  261. externalMallEntryList: 'External Mall Entry List',
  262. // 二级菜单/接口-memberManagement
  263. memberList: 'Member List',
  264. emptyOrderOperation: 'Empty Order Operation',
  265. moveNetworkManagement: 'Move Network Management',
  266. memberLevelAdjustmentList: 'Member Level Adjustment List',
  267. modifyStockistLevel: 'Modify Stockist Level',
  268. // 二级菜单/接口-networkChart
  269. placementNetwork: 'Placement Network',
  270. sponsorNetwork: 'Sponsor Network',
  271. // 二级菜单/接口-bonusManagement
  272. closurePeriod: 'Closure Period',
  273. memberBonusBalance: 'Member Bonus Balance',
  274. memberBonus: 'Member Bonus',
  275. bonusFlow: 'Bonus Flow',
  276. memberPerformance: 'Member Performance',
  277. salesRecord: 'Sales Record',
  278. periodPerformance: 'Period Performance',
  279. monthlyPerformance: 'Monthly Performance',
  280. adjustPerformance: 'Adjust Performance',
  281. // 二级菜单/接口-financialManagement
  282. memberEcoinAdjustmentList: 'Member Ecoin Adjustment List',
  283. transferRecordList: 'Transfer Record List',
  284. withdrawalManagement: 'Withdrawal Management',
  285. dealTypeManagement: '交易类型管理',
  286. historicalBonusBalance: 'Historical Bonus Balance',
  287. rechargeManagement: 'Recharge Management',
  288. // 二级菜单/接口-articleManagement
  289. categoryManagement: 'Category Management',
  290. // 二级菜单/接口-fileManagement
  291. exportFile: 'Export File',
  292. // 二级菜单/接口-administrator
  293. administratorRoleList: '管理员角色列表',
  294. administratorList: '管理员列表',
  295. resetPassword: 'Reset Password',
  296. // 二级菜单/接口-logManagement
  297. administratorLoginLog: '管理员登录日志',
  298. memberLoginLog: 'Member login log',
  299. administratorOperationLog: '管理员操作日志',
  300. memberOperationLog: 'Member operation log',
  301. systemLog: '系统日志',
  302. // 二级菜单/接口-settingManagement
  303. siteConfig: '站点设置',
  304. bonusConfig: '奖金设置',
  305. scoreConfig: '积分配置',
  306. transferConfig: '转账配置',
  307. exchangeRateConfig: '汇率配置',
  308. otherConfig: '其他配置',
  309. decLevelConfig: '会员级别配置',
  310. empLevelConfig: '会员聘级配置',
  311. decRoleConfig: '报单中心级别配置'
  312. },
  313. // 会员
  314. user: {
  315. },
  316. // 配置
  317. config: {
  318. refreshShopPrice: '刷新商品价格',
  319. refreshShopNaraPriceThenSave: '保存后根据新汇率刷新上架商品奈拉价格',
  320. confirmToChangeExchangeRate: '是否确认修改汇率?',
  321. levelName: '级别名称',
  322. sort: 'Sort',
  323. modifiedStockist: '修改报单中心'
  324. },
  325. // 财务管理
  326. financial: {
  327. serviceCharge: '服务费(%)',
  328. all:"All",
  329. toBeReviewed:'To be reviewed',
  330. approved:'Approved',
  331. auditReject:'Audit reject',
  332. action:'Action',
  333. delData:'Delete data',
  334. selectedData:'Selected data',
  335. negativeAllowedBatchApproval:'Negative number allowed for batch approval',
  336. cannotNegativeBatch:'Batch approval cannot be negative',
  337. batchReject:'Batch rejection',
  338. batchDel:'Delete in batches',
  339. applyChangeEcoin:'Apply for change of member Ecoin',
  340. modifyEcoinChangeInfo:'Modify member Ecoin change information',
  341. memberCode:'Member code',
  342. memberName:'Member name',
  343. memberLevel:'Member level',
  344. accountType:'Account type',
  345. pleaseSelectAccountType:'Please select account type',
  346. adjustmentAmount:'Adjustment amount',
  347. transactionType:'Transaction type',
  348. pleaseSelectTranserType:'Please select transaction type',
  349. forgeDisplayRemark:'Remarks foreground display',
  350. selectRecordOperateNotice:'Please select the record to operate',
  351. modifyData:'Modifying data',
  352. balanceInsufficientSubmitNotice:'The member account balance is insufficient, continue to submit',
  353. passingAudit:'Passing the audit',
  354. handleAuditDefaultNotice:'Are you sure to pass the approval (negative number is not allowed for member account) ? Note:',
  355. handleAuditRejectNotice:'Are you sure you want to reject the approval? Note:',
  356. handleAuditPassNotice:'Are you sure to pass the approval (negative number is allowed for member account) ? Note:',
  357. okDelData:"OK to delete the selected data?",
  358. exportNotice:"Are you sure you want to export the current data?",
  359. manuallyAdd:'Manually add',
  360. adjustAmount:'Adjust amount',
  361. ecoinInsufficientNotice:'Ecoin of member is insufficient, whether to continue to submit.',
  362. },
  363. // 管理员管理
  364. Administrator: {
  365. role: '角色',
  366. remark: '备注',
  367. creatUser: '创建人',
  368. creatAt: '创建时间',
  369. updateUser: '修改人',
  370. updateAt: '修改时间',
  371. addRole: '添加角色',
  372. selectData: '所选数据',
  373. roleName: '角色名称',
  374. module: '模块',
  375. loginAccount: '登录账号',
  376. name: '姓名',
  377. pleaseSelectRole: '请选择角色',
  378. password: 'password',
  379. confirmPassword: 'Confirm password',
  380. bindIp: '绑定IP',
  381. pleaseInputContent: '请输入内容',
  382. bindIpNotice: '一行一个IP;可指定ip段,如: 192.168.0.1-255',
  383. isEnable: '是否启用',
  384. isModifyPwd: '是否修改密码',
  385. filterBtnName: 'Select',
  386. loginTimes: '登录次数',
  387. lastLoginIp: '最后登录IP',
  388. lastLoginAt: '最后登录时间',
  389. selectData: 'Selected data',
  390. addAdmin: '添加管理员',
  391. delNotice: '确定删除选定的数据?'
  392. }
  393. }