en.ts 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400
  1. export default {
  2. common: {
  3. inputText: 'Please enter',
  4. selectText: 'Please select',
  5. startTimeText: 'Start time',
  6. endTimeText: 'End time',
  7. login: 'Login',
  8. required: 'This field is required',
  9. loginOut: 'Logout',
  10. document: 'Project Documentation',
  11. profile: 'Personal Center',
  12. reminder: 'Warm Tips',
  13. loginOutMessage: 'Do you want to quit the system?',
  14. back: 'Back',
  15. ok: 'OK',
  16. save: 'Save',
  17. cancel: 'Cancel',
  18. close: 'Close',
  19. reload: 'Reload',
  20. success: 'Success',
  21. closeTab: 'Close Tab',
  22. closeTheLeftTab: 'Close left tab',
  23. closeTheRightTab: 'Close right tab',
  24. closeOther: 'Close other tabs',
  25. closeAll: 'Close all tabs',
  26. prevLabel: 'Previous',
  27. nextLabel: 'Next',
  28. skipLabel: 'Skip',
  29. doneLabel: 'End',
  30. menu: 'Menu',
  31. menuDes: 'Menu bar rendered in a routed structure',
  32. collapse: 'Expand and Zoom',
  33. collapseDes: 'Expand and zoom menu bar',
  34. tagsView: 'Tabs',
  35. tagsViewDes: 'For recording routing history',
  36. tool: 'Tools',
  37. toolDes: 'For setting up a customized system',
  38. query: 'Query',
  39. reset: 'Reset',
  40. shrink: 'Wrap Up',
  41. expand: 'Expand',
  42. confirmTitle: 'System Tips',
  43. exportMessage: 'Confirm exporting data items?',
  44. importMessage: 'Confirm importing data items?',
  45. createSuccess: 'Add Success',
  46. updateSuccess: 'Modify Succeed',
  47. delMessage: 'Do you delete the selected data?',
  48. delDataMessage: 'Do you want to delete the data?',
  49. delNoData: 'Please select the data to be deleted.',
  50. delSuccess: 'Delete Success',
  51. index: 'Serial number',
  52. status: 'Status',
  53. createTime: 'Created',
  54. updateTime: 'Updated',
  55. copy: 'Copy',
  56. copySuccess: 'Copy Success',
  57. copyError: 'Copy Failed',
  58. search: 'Search',
  59. detail: 'Details',
  60. add: 'Add',
  61. yes: 'Yes',
  62. no: 'No',
  63. selectShop: 'Select a store',
  64. enterProductName: 'Please enter a product name',
  65. selectCategory: 'Select Category',
  66. enterKeyword: 'Please enter a keyword',
  67. enterUnitName: 'Please enter the unit name',
  68. enterPrice: 'Please input the product price',
  69. enterMarketPrice: 'Please enter the market price',
  70. enterStock: 'Inventory',
  71. enterProductDescription: 'Please enter the product description',
  72. enterPoints: 'Please enter the points earned',
  73. addBasicInfo: 'Please add basic information',
  74. selectAttribute: 'Please select attributes',
  75. addCompleteSpec: 'Please add full specifications!',
  76. addAttribute: 'Please add attributes!',
  77. addSpec: 'Please add specifications!',
  78. confirm: 'Confirm',
  79. delete: 'Delete',
  80. nextStep: 'Next',
  81. previousStep: 'Previous',
  82. uploadImage: 'Upload image',
  83. addNewSpec: 'Add new specification',
  84. generateNow: 'Generate Now',
  85. selectShopFirst: 'Please select a store first',
  86. selectCategoryFirst: 'Please select category first',
  87. selectSpec: 'Select Specification',
  88. enterSpecName: 'Please input specification',
  89. enterSpecValue: 'Please enter specification value',
  90. selectFreightTemplate: 'Select shipping template',
  91. enterFreight: 'Please enter the e-mail address'
  92. },
  93. lock: {
  94. lockScreen: 'Lock screen',
  95. lock: 'Lock',
  96. lockPassword: 'Lock screen password',
  97. unlock: 'Click to unlock',
  98. backToLogin: 'Back to login',
  99. entrySystem: 'Entry the system',
  100. placeholder: 'Please enter the lock screen password',
  101. message: 'Lock screen password error'
  102. },
  103. error: {
  104. noPermission: `Sorry, you don't have permission to access this page.`,
  105. pageError: 'Sorry, the page you visited does not exist.',
  106. networkError: 'Sorry, the server reported an error.',
  107. returnToHome: 'Return to home'
  108. },
  109. permission: {
  110. hasPermission: `Please set the operation permission label value`,
  111. hasRole: `Please set the role permission tag value`
  112. },
  113. setting: {
  114. projectSetting: 'Project setting',
  115. theme: 'Theme',
  116. layout: 'Layout',
  117. systemTheme: 'System theme',
  118. menuTheme: 'Menu theme',
  119. interfaceDisplay: 'Interface display',
  120. breadcrumb: 'Breadcrumb',
  121. breadcrumbIcon: 'Breadcrumb icon',
  122. collapseMenu: 'Collapse menu',
  123. hamburgerIcon: 'Hamburger icon',
  124. screenfullIcon: 'Screenfull icon',
  125. sizeIcon: 'Size icon',
  126. localeIcon: 'Locale icon',
  127. messageIcon: 'Message icon',
  128. tagsView: 'Tags view',
  129. logo: 'Logo',
  130. greyMode: 'Grey mode',
  131. fixedHeader: 'Fixed header',
  132. headerTheme: 'Header theme',
  133. cutMenu: 'Cut Menu',
  134. copy: 'Copy',
  135. clearAndReset: 'Clear cache and reset',
  136. copySuccess: 'Copy success',
  137. copyFailed: 'Copy failed',
  138. footer: 'Footer',
  139. uniqueOpened: 'Unique opened',
  140. tagsViewIcon: 'Tags view icon',
  141. reExperienced: 'Please exit the login experience again',
  142. fixedMenu: 'Fixed menu'
  143. },
  144. size: {
  145. default: 'Default',
  146. large: 'Large',
  147. small: 'Small'
  148. },
  149. login: {
  150. welcome: 'Welcome to Tabemate Pro',
  151. message: 'Welcome to Tabemate Pro',
  152. tenantname: 'Tenant Name',
  153. username: 'User Name',
  154. password: 'Password',
  155. userType: 'User Type',
  156. code: 'Verification Code',
  157. login: 'Login',
  158. relogin: 'Re-login',
  159. otherLogin: 'Other Login Methods',
  160. register: 'Register',
  161. checkPassword: 'Confirm Password',
  162. remember: 'Remember me',
  163. hasUser: 'Already have an account? Go to login',
  164. forgetPassword: 'Forgot your password?',
  165. tenantNamePlaceholder: 'Please enter your tenant name',
  166. usernamePlaceholder: 'Please enter your username',
  167. passwordPlaceholder: 'Please enter your password',
  168. codePlaceholder: 'Please enter the verification code',
  169. mobileTitle: 'Mobile Login',
  170. mobileNumber: 'Cell phone number',
  171. mobileNumberPlaceholder: 'Please enter your cell phone number',
  172. backLogin: 'Return to',
  173. getSmsCode: 'Get verification code',
  174. btnMobile: 'Mobile Login',
  175. btnQRCode: 'QR Code Login',
  176. qrcode: 'Scan QR code to login',
  177. btnRegister: 'Register',
  178. SmsSendMsg: 'Verification code sent',
  179. loadingSystem: 'Loading system...',
  180. YSHOPSourceCode: 'YSHOP source code',
  181. retrievableAfterSeconds: 'Retrieve in seconds',
  182. thisThirdPartyApplicationRequestsTheFollowingPermissions: 'This third-party application requests the following permissions',
  183. agreeToAuthorization: 'Agree to authorize',
  184. authorizationIn: 'Authorization in progress...',
  185. rejection: 'Deny',
  186. accessYourPersonalInformation: 'Access your personal information',
  187. modifyYourPersonalInformation: 'Modify your personal information'
  188. },
  189. captcha: {
  190. verification: 'Please complete security verification',
  191. slide: 'Swipe right to complete verification',
  192. point: 'Please click',
  193. success: 'Verification succeeded',
  194. fail: 'verification failed'
  195. },
  196. router: {
  197. login: 'Login',
  198. socialLogin: 'Social Login',
  199. home: 'Home',
  200. analysis: 'Analysis',
  201. workplace: 'Workplace'
  202. },
  203. analysis: {
  204. newUser: 'New user',
  205. unreadInformation: 'Unread information',
  206. transactionAmount: 'Transaction amount',
  207. totalShopping: 'Total Shopping',
  208. monthlySales: 'Monthly sales',
  209. userAccessSource: 'User access source',
  210. january: 'January',
  211. february: 'February',
  212. march: 'March',
  213. april: 'April',
  214. may: 'May',
  215. june: 'June',
  216. july: 'July',
  217. august: 'August',
  218. september: 'September',
  219. october: 'October',
  220. november: 'November',
  221. december: 'December',
  222. estimate: 'Estimate',
  223. actual: 'Actual',
  224. directAccess: 'Airect access',
  225. mailMarketing: 'Mail marketing',
  226. allianceAdvertising: 'Alliance advertising',
  227. videoAdvertising: 'Video advertising',
  228. searchEngines: 'Search engines',
  229. weeklyUserActivity: 'Weekly user activity',
  230. activeQuantity: 'Active quantity',
  231. monday: 'Monday',
  232. tuesday: 'Tuesday',
  233. wednesday: 'Wednesday',
  234. thursday: 'Thursday',
  235. friday: 'Friday',
  236. saturday: 'Saturday',
  237. sunday: 'Sunday'
  238. },
  239. workplace: {
  240. welcome: 'Hello',
  241. happyDay: 'Wish you happy every day!',
  242. toady: `It's sunny today`,
  243. notice: 'Announcement',
  244. project: 'Project',
  245. access: 'Project access',
  246. toDo: 'To do',
  247. introduction: 'A serious introduction',
  248. shortcutOperation: 'Quick entry',
  249. operation: 'Operation',
  250. index: 'Index',
  251. personal: 'Personal',
  252. team: 'Team',
  253. quote: 'Quote',
  254. contribution: 'Contribution',
  255. hot: 'Hot',
  256. yield: 'Yield',
  257. dynamic: 'Dynamic',
  258. push: 'push',
  259. follow: 'Follow'
  260. },
  261. form: {
  262. input: 'Input',
  263. inputNumber: 'InputNumber',
  264. default: 'Default',
  265. icon: 'Icon',
  266. mixed: 'Mixed',
  267. textarea: 'Textarea',
  268. slot: 'Slot',
  269. position: 'Position',
  270. autocomplete: 'Autocomplete',
  271. select: 'Select',
  272. selectGroup: 'Select Group',
  273. selectV2: 'SelectV2',
  274. cascader: 'Cascader',
  275. switch: 'Switch',
  276. rate: 'Rate',
  277. colorPicker: 'Color Picker',
  278. transfer: 'Transfer',
  279. render: 'Render',
  280. radio: 'Radio',
  281. button: 'Button',
  282. checkbox: 'Checkbox',
  283. slider: 'Slider',
  284. datePicker: 'Date Picker',
  285. shortcuts: 'Shortcuts',
  286. today: 'Today',
  287. yesterday: 'Yesterday',
  288. aWeekAgo: 'A week ago',
  289. week: 'Week',
  290. year: 'Year',
  291. month: 'Month',
  292. dates: 'Dates',
  293. daterange: 'Date Range',
  294. monthrange: 'Month Range',
  295. dateTimePicker: 'DateTimePicker',
  296. dateTimerange: 'Datetime Range',
  297. timePicker: 'Time Picker',
  298. timeSelect: 'Time Select',
  299. inputPassword: 'input Password',
  300. passwordStrength: 'Password Strength',
  301. operate: 'operate',
  302. change: 'Change',
  303. restore: 'Restore',
  304. disabled: 'Disabled',
  305. disablement: 'Disablement',
  306. delete: 'Delete',
  307. add: 'Add',
  308. setValue: 'Set value',
  309. resetValue: 'Reset value',
  310. set: 'Set',
  311. subitem: 'Subitem',
  312. formValidation: 'Form validation',
  313. verifyReset: 'Verify reset',
  314. remark: 'Remark'
  315. },
  316. watermark: {
  317. watermark: 'Watermark'
  318. },
  319. table: {
  320. table: 'Table',
  321. index: 'Index',
  322. title: 'Title',
  323. author: 'Author',
  324. createTime: 'Create time',
  325. action: 'Action',
  326. pagination: 'pagination',
  327. reserveIndex: 'Reserve index',
  328. restoreIndex: 'Restore index',
  329. showSelections: 'Show selections',
  330. hiddenSelections: 'Restore selections',
  331. showExpandedRows: 'Show expanded rows',
  332. hiddenExpandedRows: 'Hidden expanded rows',
  333. header: 'Header'
  334. },
  335. action: {
  336. setPrint: 'Configuring Printers',
  337. check: 'Audit',
  338. buyDetail: 'Purchase History',
  339. order: 'Orders',
  340. qrcode: 'QR Code',
  341. couponRecord: 'Coupon Record',
  342. yue: 'Points Balance',
  343. userDetail: 'User Details',
  344. refundOrder: 'Order Refund',
  345. orderRecord: 'Order Record',
  346. orderDetail: 'Order Details',
  347. updateOrder: 'Modify Order',
  348. orderSend: 'Order Shipment',
  349. remark: 'Remarks',
  350. sendInfo: 'Delivery Information',
  351. batchCreate: 'Batch Add',
  352. create: 'Add',
  353. add: 'Add',
  354. del: 'Delete',
  355. delete: 'Delete',
  356. edit: 'Edit',
  357. preview: 'Preview',
  358. more: 'More',
  359. sync: 'Synchronize',
  360. save: 'Save',
  361. detail: 'Details',
  362. export: 'Export',
  363. import: 'Import',
  364. generate: 'Generate',
  365. logout: 'Force Exit',
  366. test: 'Test',
  367. typeCreate: 'Dictionary Type Addition',
  368. typeUpdate: 'Dictionary Type Edit',
  369. dataCreate: 'Dictionary Data Addition',
  370. dataUpdate: 'Dictionary Data Editing',
  371. update: 'Update'
  372. },
  373. dialog: {
  374. dialog: 'Dialog',
  375. open: 'Open',
  376. close: 'Close'
  377. },
  378. sys: {
  379. api: {
  380. operationFailed: 'Operation failed',
  381. errorTip: 'Error Tip',
  382. errorMessage: 'The operation failed, the system is abnormal!',
  383. timeoutMessage: 'Login timed out, please log in again!',
  384. apiTimeoutMessage: 'The interface request timed out, please refresh the page and try again!',
  385. apiRequestFailed: 'The interface request failed, please try again later!',
  386. networkException: 'network anomaly',
  387. networkExceptionMsg: 'Please check if your network connection is normal! The network is abnormal',
  388. errMsg401: 'The user does not have permission (token, user name, password error)!',
  389. errMsg403: 'The user is authorized, but access is forbidden!',
  390. errMsg404: 'Network request error, the resource was not found!',
  391. errMsg405: 'Network request error, request method not allowed!',
  392. errMsg408: 'Network request timed out!',
  393. errMsg500: 'Server error, please contact the administrator!',
  394. errMsg501: 'The network is not implemented!',
  395. errMsg502: 'Network Error!',
  396. errMsg503: 'The service is unavailable, the server is temporarily overloaded or maintained!',
  397. errMsg504: 'Network timeout!',
  398. errMsg505: 'The http version does not support the request!',
  399. errMsg901: 'Demo mode, no write operations are possible!'
  400. },
  401. app: {
  402. logoutTip: 'Reminder',
  403. logoutMessage: 'Confirm to exit the system?',
  404. menuLoading: 'Menu loading...'
  405. },
  406. exception: {
  407. backLogin: 'Back Login',
  408. backHome: 'Back Home',
  409. subTitle403: "Sorry, you don't have access to this page.",
  410. subTitle404: 'Sorry, the page you visited does not exist.',
  411. subTitle500: 'Sorry, the server is reporting an error.',
  412. noDataTitle: 'No data on the current page.',
  413. networkErrorTitle: 'Network Error',
  414. networkErrorSubTitle: 'Sorry, Your network connection has been disconnected, please check your network!'
  415. },
  416. lock: {
  417. unlock: 'Click to unlock',
  418. alert: 'Lock screen password error',
  419. backToLogin: 'Back to login',
  420. entry: 'Enter the system',
  421. placeholder: 'Please enter the lock screen password or user password'
  422. },
  423. login: {
  424. backSignIn: 'Back',
  425. signInFormTitle: 'Sign In',
  426. ssoFormTitle: 'Tri-party authorisation',
  427. mobileSignInFormTitle: 'Mobile Login',
  428. qrSignInFormTitle: 'QR Code Login',
  429. signUpFormTitle: 'Register',
  430. forgetFormTitle: 'Reset Password',
  431. signInTitle: 'Out-of-the-box middle and back office management system',
  432. signInDesc: 'Enter your personal details to get started!',
  433. policy: 'I agree to the xxx Privacy Policy',
  434. scanSign: `Scan the code and click ‘Confirm’ to complete your login.`,
  435. loginButton: 'Sign In',
  436. registerButton: 'Sign Up',
  437. rememberMe: 'Remember me',
  438. forgetPassword: 'Forgot your password?',
  439. otherSignIn: 'Other Login Methods',
  440. loginSuccessTitle: 'Login Successful',
  441. loginSuccessDesc: 'Welcome back',
  442. accountPlaceholder: 'Please enter your account number',
  443. passwordPlaceholder: 'Please enter your password',
  444. smsPlaceholder: 'Please enter the verification code',
  445. mobilePlaceholder: 'Please enter your mobile phone number',
  446. policyPlaceholder: 'Tick to register',
  447. diffPwd: 'Two passwords are not the same',
  448. userName: 'Account Number',
  449. password: 'Password',
  450. confirmPassword: 'Confirm Password',
  451. email: 'Email',
  452. smsCode: 'SMS verification code',
  453. mobile: 'Mobile phone number'
  454. }
  455. },
  456. profile: {
  457. user: {
  458. title: 'Personal Information',
  459. username: 'User Name',
  460. nickname: 'Nick Name',
  461. mobile: 'Phone Number',
  462. email: 'User Mail',
  463. dept: 'Department',
  464. posts: 'Position',
  465. roles: 'Own Role',
  466. sex: 'Sex',
  467. man: 'Man',
  468. woman: 'Woman',
  469. createTime: 'Created Date'
  470. },
  471. info: {
  472. title: 'Basic Information',
  473. basicInfo: 'Basic Information',
  474. resetPwd: 'Reset Password',
  475. userSocial: 'Social Information'
  476. },
  477. rules: {
  478. nickname: 'Please Enter User Nickname',
  479. mail: 'Please Input The Email Address',
  480. truemail: 'Please Input The Correct Email Address',
  481. phone: 'Please Enter The Phone Number',
  482. truephone: 'Please Enter The Correct Phone Number'
  483. },
  484. password: {
  485. oldPassword: 'Old PassWord',
  486. newPassword: 'New Password',
  487. confirmPassword: 'Confirm Password',
  488. oldPwdMsg: 'Please Enter Old Password',
  489. newPwdMsg: 'Please Enter New Password',
  490. cfPwdMsg: 'Please Enter Confirm Password',
  491. pwdRules: '6 to 20 characters in length',
  492. diffPwd: 'The Passwords Entered Twice No Match'
  493. },
  494. serialNumber: 'Serial number',
  495. socialPlatform: 'Social Platform',
  496. bound: 'Bound',
  497. unbound: 'Unbound',
  498. unbound1: '(Unbound)',
  499. bound1: '(Bind)',
  500. boundSuccessfully: 'Bound Successfully',
  501. unboundSuccessfully: 'Unbind Successfully'
  502. },
  503. cropper: {
  504. selectImage: 'Select Image',
  505. uploadSuccess: 'Uploaded success!',
  506. modalTitle: 'Avatar upload',
  507. okText: 'Confirm and upload',
  508. btn_reset: 'Reset',
  509. btn_rotate_left: 'Counterclockwise rotation',
  510. btn_rotate_right: 'Clockwise rotation',
  511. btn_scale_x: 'Flip horizontal',
  512. btn_scale_y: 'Flip vertical',
  513. btn_zoom_in: 'Zoom in',
  514. btn_zoom_out: 'Zoom out',
  515. preview: 'Preivew'
  516. },
  517. work: {
  518. selectStore: 'Select shop',
  519. orderReminderOn: 'Order reminder on',
  520. orderReminderOff: 'Order Reminder Off',
  521. recentOrders: 'Recent Orders',
  522. orderId: 'Order Number',
  523. takeout: 'Takeaway',
  524. contactNumber: 'Contact Number',
  525. pickUp: 'Pickup',
  526. pickUpNumber: 'Pickup Number',
  527. dineIn: 'Dine-in',
  528. tableNumber: 'Table number',
  529. numberPeople: 'Number of people',
  530. multipleDishesPleaseCheckDetails: 'Multiple dishes, please check details',
  531. order: 'Order Placement',
  532. orderTime: 'Order Time',
  533. noOrderData: 'No order data available',
  534. newOrderNotification: 'New Order Notification',
  535. youHaveNewOrderPleaseCheckOut: 'You have a new order, please check!'
  536. },
  537. home: {
  538. totalMembers: 'Total number of members',
  539. allStores: 'All Stores',
  540. todayOrderCount: "Today's orders",
  541. orders: 'Single',
  542. totalOrderCount: 'Total number of orders',
  543. yesterdaysOrderCount: "Yesterday's orders",
  544. totalAmount: 'Total amount',
  545. last7DaysOrderCount: 'Orders in the last seven days',
  546. totalProductCount: 'Total number of products',
  547. thisMonthOrderCount: 'Orders this month',
  548. productSalesRanking: 'Product Sales Ranking',
  549. userSpendingRankingAllStores: 'User Spending Ranking (All Stores)',
  550. currentStore: 'Current Store',
  551. productName: 'Product Name',
  552. salesVolume: 'Sales volume',
  553. consumptionAmount: 'Consumption amount',
  554. productManagement: 'Product Management',
  555. memberManagement: 'Member Management',
  556. orderManagement: 'Order Management',
  557. couponManagement: 'Coupon Management',
  558. printerManagement: 'Printer Management',
  559. storeManagement: 'Shop Management',
  560. paymentManagement: 'Payment Management',
  561. messageManagement: 'Message Management'
  562. },
  563. product: {
  564. cost: 'Cost price',
  565. barCode: 'Item No.',
  566. weight: 'Weight(KG)',
  567. volume: 'Volume(m³)',
  568. productName: 'Commodity Name',
  569. enterProductName: 'Please enter the commodity name',
  570. shopName: 'Shop Name',
  571. enterShopName: 'Please enter the shop name',
  572. productImage: 'Picture',
  573. productPrice: 'Price',
  574. sales: 'Sales',
  575. stock: 'Inventory',
  576. status: 'Status',
  577. onSale: 'Already on the shelves',
  578. offSale: 'Dropped',
  579. addTime: 'Add Time',
  580. actions: 'Actions',
  581. edit: 'Edit',
  582. delete: 'Delete',
  583. onSaleProducts: 'Products on sale',
  584. pendingProducts: 'Products to be shelved',
  585. soldOutProducts: 'Sold Out Products',
  586. confirmSale: 'Are you sure you want to add or remove products?',
  587. operationSuccess: 'Successful',
  588. displayShop: 'Show Store',
  589. productCategory: 'Product Category',
  590. keyword: 'Keyword',
  591. unitName: 'Unit Name',
  592. marketPrice: 'Market Price',
  593. coverImage: 'Cover picture',
  594. sliderImage: 'Rotating Chart',
  595. productStatus: 'Product Status',
  596. productDescription: 'Product Description',
  597. productSpec: 'Specification',
  598. singleSpec: 'Single Size',
  599. multipleSpec: 'Multi-Size',
  600. selectSpec: 'Select',
  601. productAttributes: 'Properties',
  602. productDetails: 'Product Details',
  603. marketingSettings: 'Marketing Settings',
  604. getPoints: 'Get Points',
  605. basicInfo: 'Basic Information',
  606. specSettings: 'Specification Setting',
  607. logisticsSettings: 'Logistics Settings',
  608. freightSettings: 'Freight Settings',
  609. postage: 'Postage',
  610. freightTemplate: 'Shipping Template',
  611. newProduct: 'New product or not',
  612. yes: 'Yes',
  613. no: 'No'
  614. },
  615. express: {
  616. courierCompanyNumber: 'Courier Company Number',
  617. pleaseEnterTheCourierCompanyNumber: 'Please enter the courier company number',
  618. fullNameOfCourierCompany: 'Full name of courier company',
  619. pleaseEnterTheFullNameOfCourierCompany: 'Please enter the full name of the courier company',
  620. sort: 'Sort',
  621. pleaseEnterTheSort: 'Please input the order',
  622. theAbbreviationCourierCompanyEmpty: 'The short name of the courier company cannot be empty',
  623. fullNameCourierCompanyEmpty: 'Full name of courier company cannot be empty',
  624. sortCannotEmpty: 'Sort cannot be empty',
  625. pleaseEnterTheCourierBirdAppId: 'Please input the appId',
  626. pleaseEnterTheCourierBirdAppKey: 'Please input appKey',
  627. isPaidPackage: 'Whether to charge the package',
  628. theThirdPartyTips: 'yshop-pro system uses the third-party courier bird api to achieve the courier query, registration address please click.',
  629. iRegister: 'I register!',
  630. courierBirdAppIdCannotBeEmpty: 'ExpressBird appId can not be empty',
  631. courierBirdAppKeyCannotBeEmpty: 'CourierBird appKey cannot be empty',
  632. ompanyCode: 'Company Code',
  633. pleaseEnterTheCourierCompanyCode: 'Please enter the code of the courier company',
  634. companyFullName: 'Company Name',
  635. pleaseEnterTheCourierCompanyFullName: 'Please enter the full name of the courier company',
  636. courierCompanyCode: 'Courier Company Code',
  637. courierCompanyFullName: 'Full name of courier company',
  638. addTime: 'Add Time',
  639. courierCompanyXls: 'Courier Company.xls'
  640. },
  641. infra: {
  642. logPrimaryKey: 'Log Primary Key',
  643. linkTrace: 'Link Trace',
  644. applicationName: 'Application Name',
  645. userInformation: 'User Information',
  646. userIp: 'User IP',
  647. userUa: 'User UA',
  648. requestInformation: 'Request Information',
  649. requestParameters: 'Request Parameters',
  650. requestResult: 'Request Result',
  651. requestTime: 'Request time',
  652. requestTimeConsumption: 'Request Time',
  653. operationResult: 'Operation Result',
  654. normal: 'Normal',
  655. failed: 'Failed',
  656. operationModule: 'Operation Module',
  657. operationName: 'Operation Name',
  658. userId: 'User ID',
  659. pleaseEnterTheUserNumber: 'Please enter the user number',
  660. userType: 'User Type',
  661. pleaseSelectUserType: 'Please select user type',
  662. pleaseEnterTheApplicationName: 'Please input the application name',
  663. pleaseEnterTheExecutionTime: 'Please input the execution time',
  664. resultCode: 'Result Code',
  665. pleaseEnterTheResultCode: 'Please enter the result code',
  666. logNumber: 'Log Number',
  667. requestMethod: 'Request method',
  668. requestAddress: 'Request Address',
  669. successful: 'Successful',
  670. failure: 'Failed',
  671. operationType: 'Operation Type',
  672. detailed: 'Details',
  673. operate: 'Operation',
  674. aPIAccessLogs_xls: 'API Access Log.xls',
  675. exceptionTime: 'Exception Time',
  676. exceptionName: 'Exception Name',
  677. exceptionStack: 'Exception stack',
  678. handlingStatus: 'Handling Status',
  679. handler: 'Handler',
  680. handlingTime: 'Handling time',
  681. pleaseSelectTheProcessingStatus: 'Please select the processing status',
  682. timeOfException: 'Exception occurrence time',
  683. handled: 'Handled',
  684. ignored: 'Ignored',
  685. confirmationFlaggedAs: 'Confirmation flagged as',
  686. exceptionLogXls: 'Exception Log.xls',
  687. generateJSON: 'Generate JSON',
  688. generateOptions: 'Generate Options',
  689. generateComponents: 'Generate Component',
  690. numberOfExecutions: 'How many times it was executed',
  691. executionTime: 'Execution time',
  692. executionDuration: 'Execution Duration',
  693. executionResult: 'Execution Result',
  694. successfulExecution: 'Successful execution',
  695. confirmThatYouWantToExecuteOnceImmediately: 'Confirm that you want to execute once immediately',
  696. open: 'Open',
  697. close: 'Close',
  698. pause: 'Pause',
  699. confirmTo: 'Confirm to',
  700. timingTaskNumber: 'Timing task number',
  701. ofTheDataItem: 'of the data item',
  702. timedTaskExecutionLogXls: 'Timed Task Execution Log.xls',
  703. firstExecution: 'The first execution',
  704. startExecutionTime: 'Start execution time',
  705. endExecutionTime: 'End execution time',
  706. selectTheStartExecutionTime: 'Select start execution time',
  707. selectTheEndExecutionTime: 'Select end execution time',
  708. executeOnce: 'Execute once',
  709. taskDetails: 'Task details',
  710. schedulingLog: 'Scheduling Log',
  711. modify: 'Modify',
  712. taskNumber: 'Task number',
  713. taskName: 'Task name',
  714. taskStatus: 'Task Status',
  715. processorName: 'Processor name',
  716. parametersOfTheProcessor: 'Parameters of the processor',
  717. executionLog: 'Execution log',
  718. pleaseEnterTheNameOfTheProcessor: 'Please enter the name of the processor',
  719. pleaseSelectTheTaskStatus: 'Please select the task status',
  720. pleaseEnterTheTaskName: 'Please enter the task name',
  721. milliseconds: 'Milliseconds',
  722. notOpened: 'Not turned on',
  723. cron: 'Cron expression',
  724. numberOfRetries: 'Retries',
  725. retryInterval: 'Retry Interval',
  726. monitorTimeout: 'Monitor Timeout',
  727. subsequentExecutionTime: 'Subsequent execution time',
  728. pleaseEnterATaskName: 'Please enter a task name',
  729. pleaseEnterTheParametersOfTheProcessor: 'Please enter the processor parameters',
  730. pleaseEnterTheNumberOfRetriesWhenSetTo0NoRetriesArePerformed: 'Please enter the number of retries. When set to 0, no retries are performed',
  731. pleaseEnterTheRetryIntervalInMillisecondsWhenSetTo0NoIntervalIsRequired: 'Please enter the retry interval in milliseconds. When set to 0, no interval is required',
  732. pleaseEnterTheMonitoringTimeoutInMilliseconds: 'Please enter the monitoring timeout in milliseconds',
  733. cronExpression: 'CRON expression',
  734. taskNameCannotBeNull: 'Task name cannot be empty',
  735. processorNameCannotBeNull: 'Processor name cannot be null',
  736. cronExpressionCannotBeNull: 'CRON expression cannot be null',
  737. retryCountCannotBeNull: 'The retry count cannot be null',
  738. retryIntervalCannotBeNull: 'Retry interval cannot be null',
  739. basicInformation: 'Basic Information',
  740. modeOfOperation: 'Mode of operation',
  741. standalone: 'Standalone',
  742. cluster: 'Cluster',
  743. redisVersion: 'Redis version : Redis',
  744. runtimeMode: 'Runtime Mode :',
  745. ports: 'Ports :',
  746. numberOfClients: 'Number of Clients :',
  747. runtimeDays: 'Runtime (days) :',
  748. memoryUsed: 'Memory Used :',
  749. cpuUsed: 'CPU Used',
  750. memoryConfiguration: 'Memory Configuration :',
  751. whetherAOFIsEnabledOrNot: 'Whether AOF is enabled or not :',
  752. whetherRDBSuccessfulOrNot: 'RDB Successful or not :',
  753. numberOfKeys: 'Number of Keys',
  754. networkIngressEgress: 'Network Ingress/Egress :',
  755. memoryUsage: 'Memory Usage',
  756. peak: 'Peak',
  757. commandStatistics: 'Command Statistics',
  758. commands: 'Command',
  759. memoryConsumption: 'Memory Consumption',
  760. anExceptionOccurredInProcessingTheMessage: 'An exception occurred for processing messages:',
  761. messageNotProcessed: 'Message not processed:',
  762. systemNotification: '[System notification]:',
  763. groupSendingUserNumber: '[Group notification] User number',
  764. groupNoticUserCode: '[Group Notification] User number',
  765. unknownMessageType: 'Unknown message type:',
  766. messageReceived: 'Message received',
  767. messageRecord: 'Message Record',
  768. sent: 'Sent',
  769. allPeople: 'Everyone',
  770. pleaseSelectSender: 'Please select sender',
  771. closeConnection: 'Close connection',
  772. openConnection: 'Open connection',
  773. serviceAddress: 'Service address',
  774. connectionStatus: 'Connection status',
  775. connection: 'Connection',
  776. messageInputBox: 'Message input box',
  777. pleaseEnterMessageSend: 'Please enter the message you want to send',
  778. theTestPassedAndTheFileWasUploadedSuccessfullyAccessAddress: 'The test passed and the file was uploaded successfully! Access address:',
  779. isItConfirmedToModifyTheConfigurationNumberOfTheDataItemIsTheMainConfiguration: 'Is it confirmed to modify the data item with the configuration number',
  780. theDataItemsInTheMainConfigurationOfThe: 'of the data item is the main configuration?',
  781. test: 'Test',
  782. masterConfiguration: 'Master Configuration',
  783. no: 'No.',
  784. remarks: 'Remarks',
  785. configurationName: 'Configuration name',
  786. memory: 'Memory',
  787. pleaseEnterTheConfigurationName: 'Please enter the configuration name',
  788. pleaseSelectMemory: 'Please select memory',
  789. configurationNameCannotBeEmpty: 'Configuration name cannot be empty',
  790. memoryCannotBeEmpty: 'Memory cannot be empty',
  791. basePathCannotBeEmpty: 'Base path cannot be empty',
  792. hostAddressCannotBeEmpty: 'Host address cannot be empty',
  793. hostPortCannotBeEmpty: 'Host Port cannot be empty',
  794. userNameCannotBeEmpty: 'User name cannot be empty',
  795. passwordCannotBeEmpty: 'Password cannot be empty',
  796. connectionModeCannotBeEmpty: 'Connection Mode cannot be empty',
  797. nodeAddressCannotBeEmpty: 'Node address cannot be empty',
  798. storageBucketCannotBeEmpty: 'Storage bucket cannot be empty',
  799. accessKeyCannotBeEmpty: 'accessKey cannot be null',
  800. accessSecretCannotBeNull: 'accessSecret cannot be null',
  801. storage: 'Storage',
  802. customizedDomainNameCannotBeEmpty: 'Custom domain name cannot be null',
  803. basePath: 'Base Path',
  804. hostAddress: 'Host Address',
  805. hostPort: 'Host Port',
  806. userName: 'Username',
  807. password: 'Password',
  808. connectionMode: 'Connection Mode',
  809. nodeAddress: 'Node Address',
  810. storageBucket: 'Storage bucket',
  811. customizedDomainName: 'Custom domain name',
  812. pleaseEnterAConfigurationName: 'Please enter a configuration name',
  813. pleaseEnterNotes: 'Please enter notes',
  814. pleaseSelectStorage: 'Please select storage',
  815. pleaseEnterTheBasePath: 'Please enter the base path',
  816. pleaseEnterTheHostAddress: 'Please enter the host address',
  817. pleaseEnterTheHostPort: 'Please enter the host port',
  818. pleaseEnterAPassword: 'Please enter the password',
  819. pleaseEnterTheNodeAddress: 'Please enter the node address',
  820. pleaseEnterBucket: 'Please enter bucket',
  821. pleaseEnterACustomizedDomainName: 'Please enter a custom domain name',
  822. pleaseEnterACustomDomainName: 'Please enter a custom domain name',
  823. activeMode: 'Active mode',
  824. passiveMode: 'Passive mode',
  825. pleaseEnterAccessKey: 'Please enter accessKey',
  826. pleaseEnterAccessSecret: 'Please enter accessSecret',
  827. pleaseEnterTheFilePath: 'Please enter the file path',
  828. pleaseEnterTheFileType: 'Please enter the file type',
  829. fileName: 'File name',
  830. filePath: 'File Path',
  831. fileSize: 'File Size',
  832. fileType: 'File Type',
  833. fileContent: 'File Content',
  834. preview: 'Preview',
  835. download: 'Download',
  836. uploadTime: 'Upload time',
  837. uploadFile: 'Upload file',
  838. dragTheFileHereOr: 'Drag the file here, or',
  839. clickUpload: 'Click Upload',
  840. tipOnlyJpgPngGifFormatsAreAllowedToBeImported: 'Tip: Only jpg, png, gif formats are allowed to be imported!',
  841. pleaseUploadTheFile: 'Please upload the file!',
  842. uploadFailedPleaseReUpload: 'Upload failed, please re-upload!',
  843. youCanOnlyUploadAMaximumOfOneFile: 'Only one file can be uploaded at most!',
  844. dataSourceName: 'Data source name',
  845. dataSourceConnection: 'Data source connection',
  846. pleaseEnterAParameterName: 'Please enter a parameter name',
  847. pleaseEnterTheDataSourceConnection: 'Please enter the data source connection',
  848. pleaseEnterAUserName: 'Please enter a user name',
  849. dataSourceNameCannotBeEmpty: 'Data source name cannot be empty',
  850. dataSourceConnectionCannotBeEmpty: 'Data source connection cannot be null',
  851. primaryKeyNumber: 'Primary key number',
  852. parameterConfigurationXls: 'Parameter Configuration.xls',
  853. parameterPrimaryKey: 'Parameter Key',
  854. parameterCategory: 'Parameter Category',
  855. parameterKeyName: 'Parameter key name',
  856. parameterKeyValue: 'Parameter key value',
  857. visibleOrNot: 'Visible or not',
  858. parameterName: 'Parameter name',
  859. builtInSystem: 'System built-in',
  860. pleaseEnterTheParameterName: 'Please enter a parameter name',
  861. pleaseEnterTheParameterKeyName: 'Please input the parameter key name',
  862. pleaseSelectSystemBuiltIn: 'Please select the system built-in',
  863. pleaseEnterAParameterCategory: 'Please input the parameter category',
  864. pleaseInputParameterName: 'Please input parameter name',
  865. pleaseInputParameterKeyName: 'Please input parameter key name',
  866. pleaseEnterTheParameterKeyValue: 'Please input parameter key value',
  867. pleaseEnterTheContent: 'Please input the content',
  868. parameterCategoryCannotBeEmpty: 'Parameter category cannot be empty',
  869. parameterNameCannotBeEmpty: 'Parameter name cannot be empty',
  870. parameterKeyNameCannotBeNull: 'Parameter key name cannot be null',
  871. parameterKeyValueCannotBeNull: 'Parameter key value cannot be null',
  872. visibleOrInvisibleCannotBeNull: 'Visible or invisible cannot be null',
  873. tableName: 'Table name',
  874. tableDescription: 'Table Description',
  875. pleaseEnterAWarehouseName: 'Please enter a warehouse name',
  876. pleaseEnter: 'Please enter',
  877. entityClassName: 'Entity class name',
  878. infraTips: 'The prefix of the table name is removed by default. If there are duplicates, you need to add the prefix manually to avoid MyBatis reporting Alias duplicates.',
  879. author: 'Author',
  880. fieldColumnName: 'Field Column Name',
  881. fieldDescription: 'Field Description',
  882. physicalType: 'Physical Type',
  883. javaType: 'Java Type',
  884. javaAttributes: 'java attribute',
  885. insert: 'Insert',
  886. edit: 'Edit',
  887. list: 'List',
  888. query: 'Query',
  889. queryMethod: 'Query Method',
  890. allowNull: 'Allow Null',
  891. displayType: 'Display Type',
  892. textBox: 'Text Box',
  893. textField: 'Text Field',
  894. dropdownBox: 'Drop-down box',
  895. radioBox: 'Radio box',
  896. checkbox: 'Checkbox',
  897. dateControl: 'Date control',
  898. imageUpload: 'Image Upload',
  899. fileUpload: 'File Upload',
  900. richTextControls: 'Rich Text Controls',
  901. dictionaryTypes: 'Dictionary Types',
  902. examples: 'Examples',
  903. generatedTemplates: 'Generate Template',
  904. frontEndTypes: 'Front-end Types',
  905. generatedScenarios: 'Generated Scenarios',
  906. parentMenu: 'Parent Menu',
  907. assignToASpecificMenuEgSystemManagement: 'Assign to a specific menu, e.g. System Management',
  908. pleaseSelectTheSystemMenu: 'Please select the System menu',
  909. moduleName: 'Module name',
  910. moduleNameIeFirstLevelDirectoryEgSystemInfraToolEtc: 'Module name, i.e. first-level directory, e.g. system, infra, tool, etc.',
  911. businessName: 'Business name',
  912. businessNameIeSecondLevelDirectoryEgUserPermissionDictEtc: 'Business name, i.e. second level directory, e.g. user, permission, dict, etc.',
  913. className: 'Class name',
  914. classNameInitialCapitalizedEgSysUserSysMenuSysDictDataEtc: 'Class name (first letter uppercase), e.g. SysUser, SysMenu, SysDictData, etc.',
  915. classDescription: 'Class Description',
  916. usedAsAClassDescriptionEgUser: 'Used as a class description, e.g. user',
  917. customPath: 'Custom path',
  918. fillInTheAbsolutePathToTheDiskIfNotItWillBeGeneratedUnderTheCurrentWebProject: 'Fill in the absolute path to the disk, if not, it will be generated under the current web project.',
  919. quickSelectionOfTheNearestPath: 'Quick selection of the nearest path',
  920. restoreTheDefaultGeneratedBasePath: 'Restore the default generated base path',
  921. treeTableInformation: 'Tree table information',
  922. parentNumberField: 'Parent number field',
  923. theNameOfTheParentCodeFieldOfTheTreeDisplaySuchAsParentId: 'The name of the parent code field of the tree display, such as: parent_Id',
  924. treeNameField: 'Tree Name Field',
  925. nameOfTheDisplayNameFieldOfTheTreeNodeEgDeptName: 'Name of the display name field of the tree node, e.g. dept_name',
  926. masterTableInformation: 'Master Table Information',
  927. associatedMasterTable: 'Associated master table',
  928. theNameOfTheAssociatedMasterParentTableEgSystemUser: 'The name of the associated master (parent) table, e.g., system_user',
  929. fieldsAssociatedWithChildTables: 'Fields associated with child tables',
  930. fieldsAssociatedWithTheChildTableSuchAsUserId: 'Fields associated with the child table, such as: user_id',
  931. relationship: 'Relationships',
  932. theRelationshipBetweenTheMasterTableAndTheChildTable: 'The relationship between the master table and the child table',
  933. oneToMany: 'One-to-many',
  934. oneToOne: 'One-to-one',
  935. fieldInformation: 'Field information',
  936. generatedInformation: 'Generated Information',
  937. importTable: 'Import Table',
  938. importSuccessful: 'Import Success',
  939. dataSource: 'Data Source',
  940. pleaseSelectADataSource: 'Please select a data source',
  941. pleaseEnterATableName: 'Please enter a table name',
  942. pleaseEnterATableDescription: 'Please enter table description',
  943. generateCode: 'Generate Code',
  944. entity: 'Entity',
  945. updateTime: 'Update Time',
  946. areYouSureYouWantToForceSynchronizationOfTableStructure: 'Are you sure you want to force synchronisation of',
  947. tableStructure: 'table structure?',
  948. synchronizationSuccessful: 'Synchronisation successful',
  949. codePreview: 'Code Preview',
  950. generateFileInDirectory: 'Generating file directory...',
  951. loadingCode: 'Loading code....',
  952. timedTaskXls: 'Timed Tasks.xls',
  953. },
  954. mall: {
  955. paymentResult: 'Payment results',
  956. scanningTheCodeForReceivingPayment: 'Sweep the code to collect money in...',
  957. paymentSettlement: 'Payment Settlement',
  958. placeAnOrder: 'Order',
  959. neverPlacedAnOrder: 'Never placed an order',
  960. advertisementPictureManagementXls: 'Advertisement Map Management.xls',
  961. newAddCashWithdrawal: 'New withdrawals',
  962. orderNumber: 'Order Number',
  963. totalOrderPrice: 'Total Order Price',
  964. specification: 'Specification',
  965. orderPickup: 'Order Pickup',
  966. numberOfDiners: 'Number of diners',
  967. pleaseEnterTheNumberOfPeople: 'Please enter the number of people',
  968. totalAmount: 'Total Amount',
  969. goToOrder: 'Go to order',
  970. noProducts: 'No products...',
  971. tableTop: 'Table Top',
  972. pleaseSelectTheSpecification: 'Please select the specification!',
  973. pleaseSelectTheStore: 'Please select the shop!',
  974. quantityCannotBeLessThan1: 'Quantity cannot be less than 1.',
  975. noProductsListed: 'No products listed',
  976. pleaseAddTheProductFirst: 'Please add products first!',
  977. theNumberOfDinersMustBeGreaterThan0: 'The number of diners must be greater than 0!',
  978. pleaseEnterTheProductKeywordProductName: 'Please enter the product keyword: product name',
  979. checkProducts: 'Search for product',
  980. cashier: 'Cashier',
  981. noItemsAvailableAtThisTime: 'There are no products available at this time.',
  982. totalNumberOfItems: 'Total number of items',
  983. pendingOrders: 'Pending Order',
  984. selectProductSpecification: 'Select Product Specification',
  985. pleaseAddAStoreOrSelectAStore: 'Please add a shop or select a shop',
  986. pleaseUseTheScannerBoxOrScannerGunToScanTheMemberPaymentCode: "Please use the scanner box or scanner gun to scan the member's payment code!",
  987. scanTheCodeAndPrintTheTicket: 'Scan the code and print the ticket',
  988. successfulPayment: 'Payment successful',
  989. printTicket: 'Print Ticket',
  990. settleMattersAdding: 'Add to checkout',
  991. settleMattersSubmit: 'Submit Settlement',
  992. pleaseChooseThePaymentMethod: 'Please select payment method',
  993. cash: 'Cash',
  994. balancePayment: 'Balance Payment',
  995. weChatPayment: 'WeChat Payment',
  996. alipayPayment: 'Alipay Payment',
  997. settlementInformation: 'Settlement Information',
  998. remarkInformation: 'Remarks',
  999. pleaseEnterNoteInformation: 'Please enter note information',
  1000. discountDiscount: 'Discount:(Discount)',
  1001. pleaseEnterDiscount: 'Please enter discount',
  1002. reduction$: 'Reduction:($)',
  1003. pleaseEnterTheDiscountAmount: 'Please enter the discount amount',
  1004. discountAmount: 'Discount Amount',
  1005. amountDue: 'Amount payable',
  1006. name: 'Name',
  1007. cellPhoneNumber: 'Mobile phone number',
  1008. availableBalance: 'Available Balance',
  1009. availablePoints: 'Available Points',
  1010. confirmReceipt: 'Confirm Receipt',
  1011. memberInformation: 'Member Information',
  1012. unbound: 'Unbound',
  1013. _$: '(Yuan)',
  1014. storeName: 'Shop Name',
  1015. couponName: 'Coupon Name',
  1016. spendHowMuchAvailable: 'Consumption of how much available',
  1017. couponAmount: 'Coupon Amount',
  1018. availableType: 'Available Type',
  1019. pickup: 'Pick-up',
  1020. takeOut: 'Takeaway',
  1021. generalPurpose: 'General Purpose',
  1022. used: 'Used',
  1023. unused: 'Unused',
  1024. userNickname: 'Nickname',
  1025. usedNot: 'Used or not',
  1026. pickupTime: 'Collection time',
  1027. showStores: 'Show Stores',
  1028. selectStore: 'Select shop',
  1029. redeemCode: 'Redemption Code',
  1030. picture: 'Picture',
  1031. howMuchToSpend: 'How much you spend',
  1032. startTime: 'Start time',
  1033. closingTime: 'End time',
  1034. numberOfIssues: 'Number of Issues',
  1035. pointsRequired: 'Points required',
  1036. limit: 'Limit',
  1037. instructionsForUse: 'Instructions for use',
  1038. whetherItIsOnTheShelfOrNot: 'Whether it is on the shelves',
  1039. pleaseEnterTheRedemptionCode: 'Please enter the redemption code',
  1040. pleaseEnterTheNameOfTheCoupon: 'Please enter the name of the coupon',
  1041. pleaseEnterTheAmountOfMoneySpent: 'Please enter the amount of money spent',
  1042. pleaseEnterTheAmountOfTheCoupon: 'Please enter the amount of the coupon',
  1043. selectStartTime: 'Select start time',
  1044. selectTheEndTime: 'Select end time',
  1045. pleaseEnterTheNumberOfIssues: 'Please enter the number of issues',
  1046. pleaseEnterTheNumberOfPointsRequired: 'Please enter the number of points required',
  1047. pleaseEnterTheQuantityLimit: 'Please enter the number of points required',
  1048. pleaseEnterTheInstructionsForUse: 'Please enter the instructions',
  1049. storeId0MeansGenericCantBeEmpty: "Shop id,0 means generic can't be empty.",
  1050. couponNameCannotBeEmpty: 'Coupon name cannot be empty',
  1051. consumptionOfHowMuchIsAvailableCanNotBeEmpty: 'The amount of consumption can be used can not be empty',
  1052. couponAmountCannotBeEmpty: 'Coupon amount cannot be empty',
  1053. startTimeCannotBeEmpty: 'Start time cannot be empty',
  1054. endTimeCannotBeEmpty: 'End time cannot be empty',
  1055. availableTypeCannotBeEmpty: 'Available type cannot be empty',
  1056. theNumberOfCouponsIssuedCannotBeEmpty: 'Quantity issued cannot be empty',
  1057. limitOnNumberOfCouponsCannotBeEmpty: 'Limit on number of coupons cannot be empty',
  1058. descriptionOfUseCannotBeEmpty: 'Description cannot be empty',
  1059. availableStores: 'Available shops',
  1060. whetherTheCouponIsOnTheShelfOrNot: 'Whether or not the product is on the shelves',
  1061. howMuchDoYouWantToSpend: 'How much you spend',
  1062. redemptionCode: 'Redemption Code',
  1063. received: 'Already received',
  1064. endTime: 'End time',
  1065. pleaseEnterAStoreName: 'Please enter shop name',
  1066. pleaseEnterTheCouponName: 'Please enter the name of the coupon',
  1067. collectionRecord: 'Collection Record',
  1068. couponXls: 'Coupon.xls',
  1069. tableNumber: 'Table number',
  1070. id: 'id',
  1071. classification: 'Classification',
  1072. tableName: 'Table Name',
  1073. numberOfOrders: 'Number of Orders',
  1074. consumptionAmount: 'Consumption amount',
  1075. lastOrderTime: 'Last order time',
  1076. pleaseEnterStoreName: 'Please enter shop name',
  1077. pleaseEnterTheNumber: 'Please enter the number',
  1078. batchAdd: 'Batch Add',
  1079. batchDownloadOrderCode: 'Batch download order code',
  1080. import: 'Import',
  1081. downloadAndImportTemplate: 'Download and import template',
  1082. qrCode: 'QR Code',
  1083. relatedOrders: 'Related Orders',
  1084. storesTableNumberXls: 'Shops - Table Number.xls',
  1085. batchImportTableNumberTemplateXls: 'Batch import table number template.xls',
  1086. smallProgramQrCodeCanOnlyDownloadTheOfficialOh: 'Applet QR code can only download the official Oh',
  1087. allOrders: 'All Orders',
  1088. orderStatus: 'Order Status',
  1089. all: 'All',
  1090. unpaid: 'Unpaid',
  1091. inProgress: 'In progress',
  1092. toBeReceived: 'To be received',
  1093. receivedPickedUp: 'Received/picked up',
  1094. refundOrder: 'Refund Order',
  1095. deleted: 'Deleted',
  1096. alipay: 'Alipay Payment',
  1097. cashPayment: 'Cash',
  1098. userName: 'User Name',
  1099. phoneNumber: 'Phone number',
  1100. userType: 'User Type',
  1101. level: 'Level',
  1102. pleaseEnterTheOrderNumber: 'Please enter the order number',
  1103. pleaseEnterYourName: 'Please enter your name',
  1104. pleaseEnterYourPhoneNumber: 'Please enter your phone number',
  1105. store: 'Shop',
  1106. userIdNickname: 'User id|Nickname',
  1107. userNamePhoneNumber: 'User name | Phone',
  1108. productInformation: 'Product Information',
  1109. actualPayment: 'Actual payment',
  1110. paymentMethod: 'Payment method',
  1111. purchaseType: 'Purchase type',
  1112. paymentTime: 'Payment Time',
  1113. notShipped: 'Undelivered',
  1114. paymentConfirmed: 'Payment Confirmed',
  1115. orderDetails: 'Order Details',
  1116. modifyToPaymentStatus: 'Modify to Payment Status',
  1117. dineIn: 'Dine-in',
  1118. order: 'Order',
  1119. selectTableCategory: 'Select Tabletop Category',
  1120. tabletopPicture: 'Picture',
  1121. remarks: 'Remarks',
  1122. desktopPicture: 'Tabletop Picture',
  1123. pleaseEnterTableName: 'Please enter table name',
  1124. pleaseEnterTableNumber: 'Please enter the table number',
  1125. storeCannotBeEmpty: 'Shop cannot be empty',
  1126. tableNumberCannotBeEmpty: 'Table number cannot be empty',
  1127. tableNameCannotBeEmpty: 'Table name cannot be empty',
  1128. status1Enabled2DisabledCannotBeEmpty: 'Status: 1=Enabled, 2=Disabled cannot be empty.',
  1129. tableNumberPrefix: 'Table number prefix',
  1130. tableNumberRange: 'Table number range',
  1131. remark: 'Remarks',
  1132. tableNumberPrefixCannotBeEmpty: 'Table number prefix cannot be empty',
  1133. tableNumberStartCannotBeEmpty: 'Beginning of table number cannot be empty',
  1134. tableNumberEndCannotBeEmpty: 'End of table number cannot be empty',
  1135. status1EqualsEnable2EqualsDisableCannotBeEmpty: 'Status: 1=Enable, 2=Disable cannot be empty.',
  1136. likeY: 'For example:Y',
  1137. miniProgramVersion: 'Applet Version',
  1138. miniProgramQrCode: 'Applet QR Code',
  1139. h5QrCode: 'H5 QR code',
  1140. miniProgramNotConfigured: 'Applet not configured',
  1141. statusOneEqualsEnableTwoEqualsDisableCannotBeEmpty: "Status: 1=Enabled, 2=Disabled can't be empty",
  1142. releaseVersion: 'Official Version',
  1143. experienceVersion: 'Experience Version',
  1144. developmentVersion: 'Development Version',
  1145. miniProgramQrCodeCanOnlyBeDownloadedForReleaseVersion: 'Applet QR code can only download the official version',
  1146. dragFileHereOr: 'Drag the file here, or',
  1147. clickToUpload: 'Click Upload',
  1148. onlyAllowImportXlsXlsxFiles: 'Only xls, xlsx format files can be imported.',
  1149. downloadTemplate: 'Download template',
  1150. pleaseUploadFile: 'Please upload the file',
  1151. uploadSuccessCount: 'Number of successful uploads:',
  1152. updateSuccessCount: 'Number of successful updates:',
  1153. updateFailureCount: 'Update failed quantity:',
  1154. uploadFailedPleaseReupload: 'Upload failed, please re-upload!',
  1155. maxOneFileCanBeUploaded: 'Only one file can be uploaded at most!',
  1156. categoryName: 'Category Name',
  1157. pleaseEnterCategoryName: 'Please enter a category name',
  1158. categoryNumber: 'Category number',
  1159. personCount: 'Number of people',
  1160. categorySort: 'Category Sort',
  1161. openStatus: 'Open Status',
  1162. storeTableNumberCategoryXls: 'Shop Table Number Classification.xls',
  1163. pleaseEnterPersonCount: 'Please enter the number of people',
  1164. pleaseSelectStore: 'Please select shop',
  1165. categoryNameCannotBeEmpty: 'Category name cannot be empty',
  1166. personCountCannotBeEmpty: 'Number of people cannot be empty',
  1167. categorySortCannotBeEmpty: 'Sort by category cannot be empty',
  1168. wechatMiniProgram: 'WeChat Applet',
  1169. officialAccount: 'Public',
  1170. h5: 'H5',
  1171. pleaseEnterUserNickname: 'Please enter your nickname',
  1172. pleaseEnterPhoneNumber: 'Please enter your mobile phone number',
  1173. userAvatar: 'User avatar',
  1174. userBalance: 'User Balance',
  1175. userLoginType: 'User Login Type',
  1176. detail: 'Details',
  1177. pointsBalance: 'Points Balance',
  1178. userXls: 'User.xls',
  1179. userInfo: 'User Information',
  1180. basicInfo: 'Basic Information',
  1181. balance: 'Balance',
  1182. birthday: 'Birthday',
  1183. idCardNumber: 'Identity Card Number',
  1184. boundMembershipCard: 'Bound membership card',
  1185. points: 'Points',
  1186. commissionAmount: 'Commission Amount',
  1187. consecutiveSignInDays: 'Consecutive days of signing in',
  1188. loginIp: 'Login ip',
  1189. level: 'Level',
  1190. promotionId: 'Promotion id',
  1191. purchaseCount: 'Purchase',
  1192. subordinateCount: 'Number of subordinates',
  1193. loginType: 'Login Type',
  1194. registrationTime: 'Registration Time',
  1195. userOverview: 'User Profile',
  1196. consumptionRecord: 'Consumption Record',
  1197. expenseOrGain: 'Spend/Acquire',
  1198. expense: 'Expenditure',
  1199. gain: 'Acquisition',
  1200. unknown: 'Unknown',
  1201. billTitle: 'Bill Title',
  1202. detailCategory: 'Detail Type',
  1203. detailType: 'Detail Type',
  1204. recharge: 'Recharge',
  1205. rebate: 'Rebate',
  1206. consumption: 'Spend',
  1207. withdrawal: 'Withdrawal',
  1208. refund: 'Refund',
  1209. systemAdd: 'System Add',
  1210. systemReduce: 'System Reduce',
  1211. subtract: 'Subtract',
  1212. reward: 'Rewards',
  1213. signIn: 'Sign-in',
  1214. membershipCard: 'Membership Card',
  1215. detailAmountYuan: 'Detailed Figures ($)',
  1216. remainingYuan: 'Remaining($)',
  1217. userAccount: 'User Account',
  1218. realName: 'Real Name',
  1219. userRemark: 'Remarks',
  1220. userPoints: 'User Points',
  1221. detailedAddress: 'Detailed address',
  1222. pleaseEnterUserAccount: 'Please enter the user account',
  1223. pleaseEnterRealName: 'Please enter your real name',
  1224. pleaseEnterBirthday: 'Please enter your birthday',
  1225. pleaseEnterUserRemark: 'Please enter user notes',
  1226. pleaseEnterUserBalance: 'Please enter your balance',
  1227. pleaseEnterCommissionAmount: 'Please enter the commission amount',
  1228. pleaseEnterUserRemainingPoints: "Please enter the user's remaining points",
  1229. pleaseEnterDetailedAddress: 'Please enter your address details',
  1230. userAccountCannotBeEmpty: 'User account cannot be empty',
  1231. userNicknameCannotBeEmpty: 'Nickname cannot be empty',
  1232. phoneNumberCannotBeEmpty: "User's mobile phone number cannot be empty",
  1233. userTypeCannotBeEmpty: "User's user type cannot be empty",
  1234. phoneNumber1: 'Mobile phone number',
  1235. selectMember: 'Select Member',
  1236. select: 'Select',
  1237. modifyBalance: 'Modify Balance',
  1238. increase: 'Increase',
  1239. decrease: 'Decrease',
  1240. pleaseEnterBalance: 'Please enter the balance',
  1241. modifyPoints: 'Modify Points',
  1242. pleaseEnterPoints: 'Please enter points',
  1243. amountCannotBeEmpty: 'Amount cannot be empty',
  1244. pointsCannotBeEmpty: 'Points cannot be empty',
  1245. name1: 'Name and surname',
  1246. phone: 'Phone number',
  1247. consigneeName: "Consignee's name",
  1248. consigneePhone: "Consignee's phone number",
  1249. consigneeAddress: "Consignee's Address",
  1250. consigneeDetailedAddress: "Consignee's Address",
  1251. isDefault: 'Default',
  1252. pleaseEnterConsigneeName: 'Please enter the name of the consignee',
  1253. pleaseEnterConsigneePhone: "Please enter the consignee's phone number",
  1254. consigneeNameCannotBeEmpty: "Consignee's name cannot be empty",
  1255. consigneePhoneCannotBeEmpty: "Consignee's phone number cannot be empty",
  1256. consigneeAddressCannotBeEmpty: "Consignee's address cannot be empty",
  1257. consigneeDetailedAddressCannotBeEmpty: "Consignee's address cannot be empty",
  1258. isDefaultCannotBeEmpty: 'Default or not cannot be empty',
  1259. pleaseEnterConsigneeProvince: "Please enter the consignee's province",
  1260. desktopStatus: 'Desktop status:',
  1261. idle: 'Idle',
  1262. dining: 'Dining',
  1263. noTableData: 'No table data available',
  1264. dineInOrders: 'Dine-in order',
  1265. takeoutOrders: 'Takeaway',
  1266. selfPickupOrders: 'Pick-up',
  1267. reservationOrders: 'Reservation',
  1268. pendingOrder: 'Pending orders',
  1269. pendingReceipt: 'Pending Receipt',
  1270. receivedOrPickedUp: 'Received / Picked Up',
  1271. refundOrders: 'Refund Order',
  1272. reserving: 'Reservation in progress',
  1273. cancelled: 'Cancelled',
  1274. completed: 'Completed',
  1275. wechatPayment: 'WeChat Payment',
  1276. userPhone: 'User Phone',
  1277. pleaseEnterOrderNumber: 'Please enter the order number',
  1278. pleaseEnterUserName: 'Please enter your name',
  1279. pleaseEnterUserPhone: 'Please enter your phone number',
  1280. pickupNumber: 'Pickup Number',
  1281. orderNumber1: 'Order Number',
  1282. userNamePhone: 'User Name|Tel',
  1283. productInfo: 'Product Information',
  1284. reservation: 'Reservation',
  1285. reservationPickupTime: 'Reservation Time',
  1286. issueOrder: 'Order',
  1287. confirmRefund: 'Confirm Refund',
  1288. cancelReservation: 'Cancellation',
  1289. confirmPayment: 'Payment Confirmation',
  1290. orderRecords: 'Order History',
  1291. deleteOrder: 'Delete Order',
  1292. orderRemark: 'Order Remarks',
  1293. backendReceipt: 'Receive goods in the background',
  1294. modifyToPaidStatus: 'Modify to payment status',
  1295. modifyReceiptStatus: 'Modify receipt status',
  1296. confirmCancelReservation: 'Determine the cancellation of the appointment',
  1297. orderXls: 'Order.xls',
  1298. receivingInfoOne: 'Receiving Information1',
  1299. consignee: 'Consignee',
  1300. contactPhone: 'Contact phone number',
  1301. receivingAddress: 'Address',
  1302. dishDetails: 'Details of the dish',
  1303. mealNotServed: 'No meal',
  1304. mealServed: 'Dispensed',
  1305. userOrdering: 'User Order',
  1306. staffOrderingOnBehalf: "Employee's order",
  1307. productDetails: 'Product Details',
  1308. reserveTable: 'Reservation',
  1309. price: 'Price',
  1310. quantity: 'Quantity',
  1311. orderInfo: 'Order Information',
  1312. diningPersonCount: 'Number of diners',
  1313. reservationTime: 'Reservation Time',
  1314. arrivalTime: 'Arrival time',
  1315. reservationPerson: 'Reservations',
  1316. reservationPhone: 'Reservation phone number',
  1317. reservationStatus: 'Reservation Status',
  1318. totalProductQuantity: 'Total number of products',
  1319. totalProductPrice: 'Total Price',
  1320. shippingFee: 'Shipping Fee',
  1321. pointsDeduction: 'Points Credit',
  1322. orderTotalPriceCannotBeEmpty: 'The total price of the order cannot be empty',
  1323. actualPaymentAmountCannotBeEmpty: 'Actual payment amount cannot be empty',
  1324. consumptionEarnedPointsCannotBeEmpty: 'Spending to earn points can not be empty',
  1325. bonusPoints: 'Bonus Points',
  1326. orderIssued: 'Order has been placed',
  1327. pleasePlaceAnOrderFirst: 'Please order first!',
  1328. confirmOfflineCollection: 'Determine the next line of collection',
  1329. assistWithOrdering: 'Assist in ordering',
  1330. confirmCollection: 'Confirm payment',
  1331. issueOrderAndPrintReceipt: 'Print the ticket',
  1332. print: 'Printing',
  1333. receiptPrint: 'Ticket Printing',
  1334. displayStore: 'Shop Display',
  1335. categoryImage: 'Category Pictures',
  1336. categoryDescription: 'Category Description',
  1337. pleaseEnterCategoryDescription: 'Please enter a category description',
  1338. openStatusCannotBeEmpty: 'Open status cannot be empty',
  1339. belongingStore: 'Shops',
  1340. productName: 'Product Name',
  1341. commentId: 'Comment ID',
  1342. productScore: 'Product Score',
  1343. serviceScore: 'Service Score',
  1344. commentContent: 'Comment content',
  1345. commentTime: 'Comment time',
  1346. adminReplyContent: 'Administrator reply content',
  1347. adminReplyTime: 'Administrator reply time',
  1348. pleaseEnterNickname: 'Please enter a nickname',
  1349. reply: 'Reply',
  1350. weight: 'Weight',
  1351. pleaseEnterWeight: 'Please enter a weight',
  1352. imageCannotBeEmpty: 'Image cannot be empty',
  1353. weightCannotBeEmpty: 'Weight cannot be empty',
  1354. image: 'Image',
  1355. isAvailable: 'Availability',
  1356. salesVolume: 'Sales volume',
  1357. value: 'Value',
  1358. sellingPrice: 'Selling price',
  1359. pleaseEnterTitle: 'Please enter a title',
  1360. title: 'Title',
  1361. pleaseEnterValue: 'Please enter a value',
  1362. pleaseEnterSellingPrice: 'Please enter a sales price',
  1363. display: 'Show',
  1364. hide: 'Hide',
  1365. titleCannotBeEmpty: 'Title cannot be empty',
  1366. valueCannotBeEmpty: 'Value cannot be empty',
  1367. sellingPriceCannotBeEmpty: 'Selling price cannot be empty',
  1368. icon: 'Icon',
  1369. type: 'Type',
  1370. pagePath: 'Page Path',
  1371. page: 'Page',
  1372. jumpToMiniProgram: 'Jump Applet',
  1373. content: 'Content',
  1374. myServiceXls: 'My Services.xls',
  1375. selectType: 'Select type',
  1376. miniProgramAppId: 'Applet app_id',
  1377. pleaseSelectType: 'Please select type',
  1378. pleaseEnterMiniProgramAppId: 'Please enter applet app_id',
  1379. pleaseEnterPagePath: 'Please enter the page path',
  1380. pleaseEnterPhone: 'Please enter a phone number',
  1381. typeCannotBeEmpty: 'Type cannot be empty',
  1382. iconCannotBeEmpty: 'Icon cannot be empty',
  1383. specificationName: 'Specification name',
  1384. specificationValue: 'Specification Value',
  1385. pleaseEnterSpecificationName: 'Please enter a specification name',
  1386. pleaseEnterAttributeName: 'Please enter a property name',
  1387. pleaseEnterSpecificationValue: 'Please input specification value',
  1388. addNewSpecification: 'Add new specification',
  1389. specificationNameCannotBeEmpty: 'Specification name cannot be empty',
  1390. specificationValueCannotBeEmpty: 'Specification value cannot be empty',
  1391. rechargeAmountManagementXls: 'Charge Amount Management.xls',
  1392. productRuleValueSpecificationXls: 'Commodity Rule Value(Specification).xls',
  1393. withdrawalAmountCannotBeEmpty: 'Withdrawal Amount cannot be empty.',
  1394. bankCardCannotBeEmpty: 'Bank card cannot be empty.',
  1395. withdrawalAmount: 'Withdrawal Amount',
  1396. withdrawToBankCard: 'Withdraw cash to bank card',
  1397. pleaseEnterWithdrawalAmount: 'Please enter the withdrawal amount',
  1398. selectBankCard: 'Select bank card',
  1399. pleaseSelectStatus: 'Please select the status',
  1400. unreviewed: 'Not audited',
  1401. pendingArrival: 'Pending',
  1402. reviewRejected: 'Rejected',
  1403. arrived: 'Deposited',
  1404. withdrawalBankCard: 'Withdrawal Bank Card',
  1405. bankName: 'Bank Name',
  1406. bankCardNumber: 'Card Number',
  1407. reviewRejectionReason: 'Reason for Audit Rejection',
  1408. review: 'Audit',
  1409. bankNameColon: 'Bank Name:',
  1410. bankCardNumberColon: 'Bank card no:',
  1411. realNameColon: 'Real Name:',
  1412. phoneNumberColon: 'Mobile phone number:',
  1413. pleaseEnterReviewRejectionReason: 'Please enter the reason for audit rejection',
  1414. printerName: 'Printer Name',
  1415. terminalNumber: 'Terminal Number',
  1416. terminalKey: 'Terminal Key',
  1417. pleaseEnterPrinterName: 'Please enter the printer name',
  1418. configurePrinter: 'Configure printer',
  1419. printerClientId: 'Printer clientId',
  1420. printerClientSecret: 'Printer clientSecret',
  1421. printerClientIdCannotBeEmpty: 'Printer clientId cannot be null',
  1422. printerClientSecretCannotBeEmpty: 'Printer clientSecret cannot be empty.',
  1423. pleaseEnterTerminalNumber: 'Please enter the terminal number.',
  1424. pleaseEnterTerminalKey: 'Please enter the terminal key.',
  1425. pleaseEnterBankName: 'Please enter your bank name.',
  1426. pleaseEnterBankCardNumber: 'Please enter your bank card number.',
  1427. pleaseEnterName: 'Please enter your name',
  1428. bankNameCannotBeEmpty: 'Bank name cannot be empty',
  1429. bankCardNumberCannotBeEmpty: 'Card number cannot be empty',
  1430. nameCannotBeEmpty: 'Name cannot be blank',
  1431. ID: 'ID',
  1432. pleaseEnterUserId: 'Please enter a user id',
  1433. pleaseSelectUser: 'Please select user',
  1434. income: 'Income',
  1435. amount: 'Amount',
  1436. storeId: 'Shop ID',
  1437. typeTips: 'Type:1=Income,2=Expense',
  1438. pleaseSelectDictionaryGeneration: 'Please select the dictionary to generate',
  1439. user: 'User',
  1440. pleaseEnterStoreId: 'Please enter the shop ID',
  1441. pleaseSelectTypeTips: 'Please select type:1=Income,2=Expense',
  1442. pleaseEnterAmount: 'Please enter the amount',
  1443. pleaseEnterUser: 'Please input user',
  1444. storeNameCannotBeEmpty: 'Shop name cannot be empty',
  1445. associatedTags: 'Label',
  1446. selectTag: 'Select Tag',
  1447. intervalTimeUnitHours: 'Interval time (in hours)',
  1448. pleaseEnterIntervalTimeUnitHours: 'Please enter the interval time in hours',
  1449. selectEndTime: 'Select end time',
  1450. pleaseSelectTag: 'Please select the label',
  1451. intervalTimeCannotBeEmpty: 'Interval time cannot be empty',
  1452. tagName: 'Label name',
  1453. pleaseEnterTagName: 'Please enter a tag name',
  1454. tagNameCannotBeEmpty: 'Label name cannot be empty',
  1455. storePhone: 'Shop phone number',
  1456. storeImage: 'Shop picture',
  1457. longitude: 'Longitude',
  1458. latitude: 'Latitude',
  1459. minimumOrderPrice: 'Starting Price',
  1460. deliveryPrice: 'Delivery Price',
  1461. isOpen: 'Open or not',
  1462. pleaseEnterStorePhone: 'Please enter the shop phone number',
  1463. pleaseEnterPlaceKeyword: 'Please enter the keyword of the place name',
  1464. selectOnMap: 'Map Selection',
  1465. pleaseSelectLocationAddress: 'Please select the location address',
  1466. storeAvatar: 'Shop Avatar',
  1467. storeGroupImages: 'Shops',
  1468. businessStartTime: 'Opening time',
  1469. businessEndTime: 'Closing time',
  1470. selectMapLocation: 'Select map location',
  1471. mapLocationAddress: 'Map Address',
  1472. takeoutDeliveryDistance: 'Delivery Distance/Kilometre',
  1473. announcement: 'Announcement',
  1474. bindAdministrator: 'Bind administrator',
  1475. selectBusinessStartTime: 'Select start time',
  1476. selectBusinessEndTime: 'Select end time',
  1477. pleaseEnterMapLocationAddress: 'Please enter a map to locate the address',
  1478. pleaseEnterLongitude: 'Please enter the longitude',
  1479. pleaseEnterLatitude: 'Please input the latitude',
  1480. pleaseEnterTakeoutDeliveryDistance: 'Please enter the delivery distance in kilometres, 0 means no delivery',
  1481. pleaseEnterMinimumOrderPrice: 'Please enter the starting price',
  1482. pleaseEnterDeliveryPrice: 'Please enter the delivery price',
  1483. pleaseEnterAnnouncement: 'Please enter the announcement',
  1484. clickToSelectAddressToGetLongitudeAndLatitude: 'Click on the address to get the latitude and longitude',
  1485. selectUser: 'Select User',
  1486. bindAdministratorForBranchManagement: 'Bind administrator for shop management',
  1487. isStoreReceiptPrintingEnabled: 'Whether to enable shop ticket printing',
  1488. bindPrinter: 'Bind printer',
  1489. selectPrinter: 'Select Printer',
  1490. isCustomerReceiptPrintingEnabled: 'Enable or disable customer ticket printing',
  1491. isKitchenReceiptPrintingEnabled: 'Enable or disable kitchen ticket printing',
  1492. storePhoneCannotBeEmpty: 'Shop phone number cannot be empty',
  1493. multipleImagesCannotBeEmpty: 'Multiple pictures cannot be empty',
  1494. detailedAddressCannotBeEmpty: 'Address details cannot be empty',
  1495. mapLocationAddressCannotBeEmpty: 'Map address cannot be empty',
  1496. longitudeCannotBeEmpty: 'Longitude cannot be empty',
  1497. latitudeCannotBeEmpty: 'Latitude cannot be empty',
  1498. takeoutDeliveryDistanceTips: 'Delivery distance in kilometres, 0 means no delivery, cannot be empty',
  1499. minimumOrderPriceCannotBeEmpty: 'Starting price cannot be empty',
  1500. deliveryPriceCannotBeEmpty: 'Delivery price cannot be empty',
  1501. announcementCannotBeEmpty: 'Announcement cannot be empty',
  1502. isOpenTips: 'Whether open:0=no,1=yes cannot be empty.',
  1503. administratorIdCannotBeEmpty: 'Administrator id cannot be empty',
  1504. printerIdCannotBeEmpty: 'Printer id cannot be empty',
  1505. businessStartTimeCannotBeEmpty: 'Business start time can not be empty',
  1506. businessEndTimeCannotBeEmpty: 'Business end time can not be empty',
  1507. pleaseBindStorePrinter: 'Please bind the shop printer',
  1508. pleaseBindCustomerPrinter: 'Please bind the customer printer',
  1509. pleaseBindKitchenPrinter: 'Please bind the kitchen printer',
  1510. storeManagementXls: 'Shop Management.xls',
  1511. inStoreConsumption: 'Visiting Stores',
  1512. appointmentLabelXls: 'Reservation Label.xls',
  1513. appointmentRuleXls: 'Reservation Rules.xls',
  1514. storeMobileMerchantUserAssociationXls: 'Shop Mobile Merchant User Association.xls'
  1515. },
  1516. market: {
  1517. orderNumber: 'Order number',
  1518. userIdAndNickname: 'User id|Nickname',
  1519. billTitle: 'Bill Title',
  1520. detailedFigureYuan: 'Detailed figure(yuan)',
  1521. paid: 'Paid',
  1522. unpaid: 'Unpaid',
  1523. addTime: 'Add Time',
  1524. cardName: 'Card Name',
  1525. pleaseEnterTheNameOfTheMembershipCard: 'Please enter the name of the membership card',
  1526. discountRatio: 'Discount Ratio',
  1527. break: 'Discount',
  1528. validPeriod: 'Valid Period',
  1529. permanent: 'Permanent',
  1530. month: 'Monthly',
  1531. purchasePrice: 'Price of Purchase',
  1532. bonusPoints: 'Bonus Points',
  1533. bonusAmount: 'Bonus amount',
  1534. delete: 'Delete',
  1535. purchaseRecord: 'Purchase Record',
  1536. membershipCardXls: 'Membership Card.xls',
  1537. basicInformation: 'Basic Information',
  1538. cardStyle: 'Membership Card Style',
  1539. pleaseEnterTheOrder: 'Please enter the sort',
  1540. discount: 'Discount',
  1541. pleaseEnterThePercentageOfDiscount: 'Please enter the percentage of discount',
  1542. freeGiftWhenYouOpenTheCard: 'Complimentary',
  1543. balance: 'Balance',
  1544. NumberBonusPoints: 'Number of bonus points',
  1545. pleaseEnterTheNumberOfBonusPoints: 'Please enter the number of bonus points',
  1546. bonusBalance: 'Bonus Balance',
  1547. pleaseEnterTheBalanceOfTheGift: 'Please enter the bonus balance',
  1548. receiveConfiguration: 'Receive Configuration',
  1549. validityPeriod: 'Expiry date',
  1550. pleaseEnterTheValidityPeriod: 'Please enter the validity period',
  1551. theValidityPeriodIsInMonths0MeansPermanent: 'The validity period is in months, 0- means permanent',
  1552. pleaseEnterThePurchasedPrice: 'Please enter the purchase price',
  1553. rulesForUse: 'Rules of use',
  1554. cardNameCannotBeEmpty: 'The name of the membership card cannot be empty',
  1555. cardStyleCannotBeEmpty: 'Card style cannot be empty',
  1556. expiryDateCannotBeEmpty: 'Expiry date cannot be empty',
  1557. purchasePriceCannotBeEmpty1: 'Purchase price cannot be empty',
  1558. orderTotalPriceCannotBeEmpty: 'The total price of the order cannot be empty',
  1559. refundAmountCannotBeEmpty: 'Refund amount cannot be empty',
  1560. orderTotalPrice: 'Total Order Price',
  1561. refundAmount: 'Refund amount',
  1562. pleaseEnterOrderNumber: 'Please enter the order number',
  1563. pleaseEnterOrderTotalPrice: 'Please enter the total price of the order',
  1564. actualPaymentAmountCannotBeEmpty: 'Actual payment amount cannot be empty',
  1565. consumptionEarnedPointsCannotBeEmpty: 'Spending and earning points cannot be empty',
  1566. actualPaymentAmount: 'Actual Payment Amount',
  1567. pleaseEnterActualPaymentAmount: 'Please enter the actual payment amount',
  1568. pleaseEnterBonusPoints: 'Please enter the bonus points',
  1569. expressCompanyCannotBeEmpty: 'Courier company cannot be empty',
  1570. expressTrackingNumberCannotBeEmpty: 'Courier number can not be empty',
  1571. expressCompany: 'Courier Company',
  1572. selectExpressCompany: 'Select courier company',
  1573. pleaseEnterExpressTrackingNumber: 'Please enter the courier order number',
  1574. courierNumber: 'Express Order Number',
  1575. tableNumber: 'Table number',
  1576. pickupNumber: 'Pick-up number',
  1577. address: 'Address',
  1578. orderId: 'Order id',
  1579. operationRecord: 'Operation record',
  1580. operationTime: 'Operation time'
  1581. },
  1582. message: {
  1583. templateName: 'Template Name',
  1584. pleaseEnterTheTemplateName: 'Please enter the template name',
  1585. templateNumber: 'Template number',
  1586. templateId: 'Template ID',
  1587. type: 'Type',
  1588. templateMessage: 'Template Message',
  1589. subscribeMessage: 'Subscribe Message',
  1590. addTime: 'Add Time',
  1591. weChatTemplateXls: 'WeChat Template.xls',
  1592. messageType: 'Message Type',
  1593. pleaseSelectType: 'Please select type',
  1594. pleaseSelectMessageType: 'Please select message type',
  1595. pleaseEnterTheTemplateNumber: 'Please enter template number',
  1596. pleaseEnterTheTemplateId: 'Please enter the template ID',
  1597. templateNumberCannotBeEmpty: 'Template ID cannot be empty',
  1598. templateNameCannotBeEmpty: 'Template name cannot be empty',
  1599. messageTypeCannotBeEmpty: 'Template ID cannot be empty',
  1600. templateIdCannotBeEmpty: 'Message Type cannot be empty',
  1601. open: 'Enable'
  1602. },
  1603. mp: {
  1604. pleaseSelectTheWeChatOfficialAccount: 'Please select public number',
  1605. clickToLoadMore: 'Click to load more',
  1606. thereIsNoMore: 'No more',
  1607. sends: 'Send(S)',
  1608. theNumberofGraphicMessagesIsLimitedto1: 'The number of graphic messages is limited to 1, the first one has been sent by default.',
  1609. pleaseEnterTheMusicLink: 'Please enter a music link',
  1610. pleaseEnterTheHighQualityMusicLink: 'Please enter a high quality music link',
  1611. selectThePublishedGraphic: 'Select a published message',
  1612. selectTheGraphicintheDraftBox: 'Select draft message',
  1613. selectTheVoice: 'Select Voice',
  1614. text: 'Text',
  1615. graphic: 'Graphic',
  1616. music: 'Music',
  1617. clickToPlayTheVideo: 'Click to play video',
  1618. videoPlayback: 'Video Playback',
  1619. voiceRecognition: 'Speech Recognition',
  1620. abstract: 'Abstract',
  1621. name: 'Name',
  1622. wechatAccount: 'Micro Signal',
  1623. messageEncryptionKey: 'Message encryption and decryption key',
  1624. pleaseEnterName: 'Please enter your name',
  1625. pleaseEnterWechatAccount: 'Please enter your micro-signal',
  1626. pleaseEnterTheAppIdOfTheWeChatOfficialAccount: 'Please enter the public number appId',
  1627. pleaseEnterOfficialAccount: 'Please input public number appSecret',
  1628. pleaseEnterOfficialAccountToken: 'Please enter the public token',
  1629. pleaseEnterMessageEncryptionKey: 'Please enter the message encryption and decryption key',
  1630. pleaseEnterMiniProgramAppId: 'Please enter applet appId',
  1631. pleaseEnterMiniProgramAppSecret: 'Please enter the applet appSecret',
  1632. tip11: 'You can find ‘Micro Signal’ in the menu [Settings & Development - Public Number Settings - Account Details] of WeChat Public Platform (mp.weixin.qq.com).',
  1633. tip12: 'You can find ‘Developer ID (AppID)’ in the menu [Settings & Development - Public Number Settings - Basic Settings] of WeChat Public Platform (mp.weixin.qq.com).',
  1634. tip13: 'You can find ‘Developer Password (AppSecret)’ in [Settings & Development - Public Number Settings - Basic Settings] on the menu of WeChat Public Platform (mp.weixin.qq.com).',
  1635. nameCannotBeEmpty: 'Name cannot be empty',
  1636. officialAccountCannotBeEmpty: 'Public number account cannot be empty.',
  1637. officialAccountAppIdCannotBeEmpty: 'Public appId cannot be empty.',
  1638. officialAccountSecretCannotBeEmpty: 'Public Key cannot be empty.',
  1639. officialAccountTokenCannotBeEmpty: 'Public token cannot be empty',
  1640. appId: 'appId',
  1641. serverAddressUrl: 'Server address (URL)',
  1642. qrCode: 'QR Code',
  1643. generateQRCode: 'Generate QR code',
  1644. isMainAccount: 'Whether it is the main account',
  1645. search: 'Search',
  1646. reset: 'Reset',
  1647. clearApiQuota: 'Clear API Quota',
  1648. setAsMainAccount: 'Set as Master Account',
  1649. settingSucceeded: 'Setup Successful',
  1650. messageType: 'Message Type',
  1651. matchingType: 'Match Type',
  1652. pleaseSelectMatchingType: 'Please select match type',
  1653. pleaseEnterContent: 'Please enter content',
  1654. keyword: 'Keyword',
  1655. replyMessage: 'Reply Message',
  1656. requestedKeywordCannotBeEmpty: 'The requested keyword cannot be null',
  1657. requestedKeywordMatchingCannotBeEmpty: 'The match for the requested keyword cannot be null',
  1658. requestMessageType: 'Request message type',
  1659. cover: 'Cover',
  1660. tip3: 'You are publishing content by publishing. Publishing does not take up the number of group posts and can be done multiple times a day.',
  1661. tip4: 'Published content is not pushed to users and is not displayed on the public home page.',
  1662. tip5: 'After posting, you can go to the posting history to get the link, or you can add the posted content to custom menus, autoresponders, topics, and page templates.',
  1663. replyMessageType: 'Reply message types',
  1664. replyContent: 'Reply Content',
  1665. officialAccount: 'Public',
  1666. addNew: 'New',
  1667. replyOnFollow: 'Reply on Follow',
  1668. messageReply: 'Message Reply',
  1669. keywordReply: 'Keyword Reply',
  1670. addNewAutoReply: 'Add Auto-Reply',
  1671. modifyAutoReply: 'Modify auto-reply',
  1672. areYouSureToDeleteThisData: 'Confirm deletion of this data',
  1673. deletionSucceeded: 'Delete Success',
  1674. modificationSucceeded: 'Modify Success',
  1675. additionSucceeded: 'Add Success',
  1676. updateitionSucceeded: 'Update Success',
  1677. uploadLocally: 'Local Upload',
  1678. supportsBmpPngJpegJpgGifFormatsSizeNotExceeding2M: 'Support bmp/png/jpeg/jpg/gif format, size not more than 2M.',
  1679. uploadError: 'Upload error:',
  1680. uploadFailed: 'Upload failed:',
  1681. pleaseEnterTitleRequired: 'Please enter a title (required)',
  1682. pleaseEnterAuthor: 'Please enter author',
  1683. pleaseEnterOriginalArticleAddress: 'Please enter the address of the original article',
  1684. pleaseEnterAbstract: 'Please enter a summary',
  1685. areYouSureToDeleteThisGraphic: 'Sure you want to delete this graphic?',
  1686. createNewGraphic: 'Create new image',
  1687. modifyGraphic: 'Modify image',
  1688. modifiedContentMayNotBeSavedAreYouSureToClose: 'Changes may not have been saved, are you sure you want to close it?',
  1689. publishingSucceeded: 'Post Successful',
  1690. thisOperationWillPermanentlyDeleteTheDraftAreYouSureToContinue: 'This action will permanently delete the draft, do you want to continue?',
  1691. afterDeletionUsersCannotAccessThisPageAreYouSureToDelete: 'Users will not be able to access this page after deletion, are you sure you want to delete it?',
  1692. image: 'Picture',
  1693. voice: 'Voice',
  1694. video: 'Video',
  1695. clickToUpload: 'Click to upload',
  1696. uploadSucceeded: 'Uploaded successfully',
  1697. createNewVideo: 'New Video',
  1698. selectVideo: 'Select Video',
  1699. tip0: 'Format support MP4, file size not more than 10MB.',
  1700. tips1: 'The title will be displayed on the relevant playback page, it is recommended to fill in a clear, accurate and vivid title.',
  1701. tips2: 'The introduction will be displayed on the relevant playback page, it is recommended to fill in a concise, clear and informative content.',
  1702. pleaseEnterTitle: 'Please enter a title',
  1703. pleaseEnterDescription: 'Please enter a description',
  1704. number: 'No.',
  1705. fileName: 'File name',
  1706. introduction: 'Introduction',
  1707. uploadTime: 'Upload time',
  1708. download: 'Download',
  1709. delete: 'Delete',
  1710. description: 'Descripción',
  1711. formatSupportsMp3WmaWavAmrFileSizeNotExceeding2MPlaybackLengthNotExceeding60s: 'Support mp3/wma/wav/amr, file size not more than 2M, playback length not more than 60s.',
  1712. thisOperationWillPermanentlyDeleteTheFileAreYouSureToContinue: 'This operation will delete the file permanently, do you want to continue?',
  1713. deleteCurrentMenu: 'Delete current menu',
  1714. menuName: 'Menu name(CN)',
  1715. menuNameEn: 'Menu name',
  1716. menuNameJp: 'Menu name(JP)',
  1717. pleaseEnterMenuName: 'Please enter a menu name.',
  1718. menuIdentifier: 'Menu ID',
  1719. pleaseEnterMenuKey: 'Please input menu KEY',
  1720. menuContent: 'Menu content',
  1721. jumpLink: 'Jump link',
  1722. pleaseEnterLink: 'Please enter a link',
  1723. miniProgramAppId: 'Appid of the applet ',
  1724. miniProgramPagePath: 'Page path of the applet',
  1725. pleaseEnterMiniProgramPagePathEgPagesIndex: "Please enter the applet's page path, e.g. pages/index",
  1726. miniProgramBackupWebpage: 'Alternate page for the applet:',
  1727. OlderVersionsOfTheClientThatDoNotSupportMiniProgramsWillOpenThisWebpage: "Older versions of clients that don't support applets will open this page.",
  1728. tipsYouNeedToAssociateWithTheOfficialAccountToBindTheMiniProgramToTheWeChatMenu: 'Tips:You need to associate with your public number to bind the applet to your WeChat menu!',
  1729. selectFromMaterialLibrary: 'Material library selection',
  1730. selectGraphic: 'Select Graphic',
  1731. YouHaveSelectedAMultiGraphicItWillDefaultToJumpToTheFirstOne: 'If you select more than one article, it will jump to the first one by default.',
  1732. jumpToWebpage: 'Jump page',
  1733. jumpToMiniProgram: 'Jump to small programme',
  1734. clickToReply: 'Click reply',
  1735. jumpToGraphicMessage: 'Jump to graphic message',
  1736. scanCodeToReturnResultDirectly: 'Scan the code to return directly to the result',
  1737. scanCodeToReply: 'Scan code reply',
  1738. systemTakePhotoAndSendImage: 'System photo sending picture',
  1739. takePhotoOrSelectFromAlbum: 'Take a picture or photo album',
  1740. wechatAlbum: 'WeChat Photo Album',
  1741. selectLocation: 'Select geographic location',
  1742. subMenuName: 'Submenu name',
  1743. saveAndPublishMenu: 'Save and publish the menu',
  1744. clearMenu: 'Empty menu',
  1745. pleaseSelectMenuConfiguration: 'Please select menu configuration',
  1746. areYouSureToDelete: 'Sure you want to delete?',
  1747. areYouSureToSave: 'Sure you want to save?',
  1748. clearingSucceeded: 'Empty successfully',
  1749. userIdentifier: 'User identification',
  1750. pleaseSelectMessageType: 'Please select the message type',
  1751. pleaseEnterUserIdentifier: 'Please enter a user ID',
  1752. fanMessageList: 'Fan message list',
  1753. sendTime: 'Sending time',
  1754. sender: 'Sender',
  1755. fan: 'Fans',
  1756. follow: 'Follow',
  1757. unfollow: 'Unfollow',
  1758. clickMenu: 'Click on the menu',
  1759. clickMenuLink: 'Click on the menu link',
  1760. scanCodeResult: 'Scanning results',
  1761. unknownEventType: 'Unknown event type',
  1762. link: 'Link',
  1763. unknownMessageType: 'Unknown Message Type',
  1764. message: 'message',
  1765. timeRange: 'Time Range',
  1766. userIncreaseDecreaseData: 'User increase/decrease data',
  1767. cumulativeUserData: 'Cumulative user data',
  1768. messageOverviewData: 'Message Profile Data',
  1769. interfaceAnalysisData: 'Interface Analysis Data',
  1770. newUsers: 'New Users',
  1771. unfollowedUsers: 'Unfollowed Users',
  1772. cumulativeUserCount: 'Accumulated Users',
  1773. numberOfUsersSendingMessages: 'Number of users sent',
  1774. numberOfMessagesSentByUsers: 'Number of messages sent by users',
  1775. numberOfPassiveRepliesToUserMessages: 'Number of passive replies to user messages',
  1776. numberOfFailures: 'Number of failures',
  1777. maximumTimeConsumed: 'Maximum time spent',
  1778. totalTimeConsumed: 'Total time spent',
  1779. noOfficialAccountSelectedCannotStatisticData: 'No public number is selected, no statistics are available',
  1780. timeIntervalShouldBeWithin7DaysPleaseReSelect: 'Time interval within 7 days, please re-select',
  1781. synchronize: 'Synchronisation',
  1782. numberOfFans: 'Fans',
  1783. areYouSureToSynchronizeTags: 'Are you sure to sync tags?',
  1784. tagSynchronizationSucceeded: 'Tag synchronisation is successful',
  1785. pleaseEnterTagName: 'Please enter the tag name',
  1786. nickname: 'Nickname',
  1787. tag: 'Tag',
  1788. subscriptionStatus: 'Subscription Status',
  1789. subscriptionTime: 'Subscription time',
  1790. areYouSureToSynchronizeFans: 'Are you sure you want to sync your followers?',
  1791. startingToSynchronizeFanInfoFromWechatOfficialAccountItTakesTimePleaseQueryLater: "It will take some time to synchronise the followers' information from WeChat, we suggest you to check it later.",
  1792. pleaseSelectTag: 'Please select a tag',
  1793. subscribed: 'Subscribed',
  1794. unsubscribed: 'Unsubscribed'
  1795. },
  1796. pay: {
  1797. idTenantId: 'id(+Tenant ID)',
  1798. paymentType: 'Payment type (payment channel)',
  1799. applicationId: 'Application id',
  1800. merchantId: 'Merchant id',
  1801. asynchronousCallbackAddress: 'Asynchronous callback address',
  1802. synchronousCallbackAddress: 'Synchronous callback address',
  1803. signature: 'Signature method',
  1804. testEnvironment: 'Test environment',
  1805. alipay: 'Alipay',
  1806. weChatPayment: 'WeChat Payment',
  1807. payId: 'Payment id',
  1808. weChatPaySmallProgram: 'WeChat Payment Applet',
  1809. weChatPayPublic: 'WeChat Pay Public',
  1810. weChatPayH5: 'WeChat Pay H5',
  1811. alipayH5: 'Alipay H5',
  1812. pleaseEnterTheAppId: 'Please enter the app id',
  1813. weChatMerchantId: 'WeChat Merchant id',
  1814. pleaseEnterWeChatMerchantId: 'Please enter WeChat merchant id',
  1815. alipayMerchantId: 'Alipay merchant id',
  1816. pleaseEnterTheAlipayMerchantId: 'Please enter the Alipay merchant id',
  1817. certificateStorageType: 'Certificate Storage Type',
  1818. pleaseSelectTheType: 'Please select the type',
  1819. noteNeedCertificateOfChoiceDoNotNeedNotChoose: 'Note: need certificate of choice do not need not choose',
  1820. privateKeyOrPrivateKeyCertificate: 'Private key or private key certificate',
  1821. pleaseEnterThePrivateKeyOrPrivateKeyCertificate: 'Please enter the private key or private key certificate',
  1822. publicKeyOrPublicKeyCertificate: 'Public key or public key certificate',
  1823. pleaseEnterThePublicKeyOrPublicKeyCertificate: 'Please enter the public key or public key certificate',
  1824. keyCertificate: 'key certificate',
  1825. pleaseEnterTheKeyCertificateAdditionalCertificatesToUseSuchAsSslCertificateOrUnionPayRootLevelCertificates: 'Please enter the key certificate, additional certificates to use, such as SSL certificate, or UnionPay root-level certificate aspects',
  1826. passwordOfTheCertificate: 'Password of the certificate',
  1827. pleaseEnterThePasswordOfThePrivateKeyCertificateOrKeyCertificate: 'Please enter the password of the private key certificate or key certificate.',
  1828. pleaseEnterTheAsynchronousCallback: 'Please enter the asynchronous callback',
  1829. pleaseEnterTheSynchronousCallbackAddressWhichIsMostlyUsedForPageJumpAfterSuccessfulPayment: 'Please enter the address of synchronous callback, which is mostly used for page jump after successful payment.',
  1830. pleaseSelectSignatureMethodMd5: 'Please select the signature method MD5',
  1831. subappid: 'Subappid',
  1832. pleaseEnterTheSubAppid: 'Please enter the sub-appid',
  1833. subMerchantId: 'Sub-merchant id',
  1834. pleaseEnterTheSubMerchantId: 'Please input the sub-merchant id',
  1835. paymentTypeCannotBeEmpty: 'Payment type (payment channel) cannot be empty.',
  1836. paymentIdCannotBeEmpty: 'Payment id cannot be empty',
  1837. applicationIdCannotBeEmpty: 'App id cannot be empty',
  1838. signatureMethodCannotBeEmpty: 'Signature method cannot be empty',
  1839. asynchronousCallbackAddressCannotBeEmpty: 'Asynchronous callback address cannot be empty'
  1840. },
  1841. Redirect: {},
  1842. score: {
  1843. all: 'All',
  1844. toBePaid: 'To be paid',
  1845. toBeShipped: 'To be shipped',
  1846. toBeReceived: 'To be received',
  1847. completed: 'Completed',
  1848. allOrders: 'All Orders',
  1849. orderStatus: 'Order Status',
  1850. userName: 'User Name',
  1851. pleaseEnterYourPhoneNumber: 'Please enter your phone number',
  1852. pleaseEnterTheOrderNumber: 'Please enter the order number',
  1853. userIdNickname: 'User id|Nickname',
  1854. productInformation: 'Product Information',
  1855. totalPointsConsumed: 'Total Points Consumed',
  1856. totalConsumptionAmount: 'Total Consumption',
  1857. paymentMethod: 'Payment Method',
  1858. balancePayment: 'Balance Payment',
  1859. weChatPayment: 'WeChat Payment',
  1860. alipayPayment: 'Alipay Payment',
  1861. cashPayment: 'Cash Payment',
  1862. shipping: 'Shipping',
  1863. more: 'More',
  1864. orderDetails: 'Order Details',
  1865. deleteOrder: 'Delete Order',
  1866. backstageReceiving: 'Backstage Receiving',
  1867. pointsMallOrdersXls: 'Shop-to-Earn Orders.xls',
  1868. modifyReceivingStatus: 'Modify Receiving Status',
  1869. receivingInformation: 'Receiving Information',
  1870. nickname: 'User Nickname',
  1871. consignee: 'Consignee',
  1872. contactPhoneNumber: 'Contact phone number',
  1873. address: 'Address',
  1874. productDetails: 'Product details',
  1875. goodsPicture: 'Picture',
  1876. productName: 'Product Name',
  1877. orderInformation: 'Order Information',
  1878. logisticsInformation: 'Logistics Information',
  1879. orderNo: 'Order No.',
  1880. quantity: 'Quantity',
  1881. spendingPoints: 'Spending Points',
  1882. payment: 'Payment or not',
  1883. whetherToShipOrNot: 'Whether shipment',
  1884. receiveOrNot: 'Receive or not',
  1885. expressCompany: 'Express company',
  1886. courierNumber: 'Courier Number',
  1887. selectType: 'Select type',
  1888. fillInManually: 'Fill in manually',
  1889. shippingType: 'Shipment type',
  1890. selectCourierCompany: 'Select courier company',
  1891. pleaseEnterTheCourierSingleNumber: 'Please enter the courier single number',
  1892. pleaseSelectTheCourierCompany: 'Please select the courier company',
  1893. courierSingleNumberCanNotBeEmpty: 'Courier single number can not be empty',
  1894. productTitle: 'Product Title',
  1895. pleaseEnterTheProductTitle: 'Please enter the product title',
  1896. selectCategory: 'Select Product Category',
  1897. productCategory: 'Product Category',
  1898. mainPicture: 'Main picture',
  1899. picture: 'Picture',
  1900. pointsConsumption: 'Points Consumption',
  1901. price: 'Price',
  1902. originalPrice: 'Original Price',
  1903. weight: 'Weight',
  1904. inventory: 'Inventory',
  1905. salesVolume: 'Sales Volume',
  1906. whetherItIsOnTheShelfOrNot: 'Whether it is on the shelf or not',
  1907. up: 'Up',
  1908. down: 'Down',
  1909. pointsProductsXls: 'Points Products.xls',
  1910. category: 'Product Category',
  1911. groupPicture: 'Group picture',
  1912. detail: 'Details',
  1913. purchaseAmount: 'Purchase Amount',
  1914. pleaseEnterThePointsConsumed: 'Please enter the points consumed',
  1915. pleaseEnterTheAmount: 'Please enter the amount',
  1916. tips: 'When both points and amount are greater than 0, it means that this product needs points + price to buy.',
  1917. pleaseEnterStock: 'Please enter stock',
  1918. pleaseEnterAWeight: 'Please enter the weight',
  1919. productTitleCannotBeEmpty: 'Product title cannot be empty',
  1920. pleaseSelectProductCategory: 'Please select product category',
  1921. mainPictureCannotBeEmpty: 'Main picture cannot be empty',
  1922. groupPictureCannotBeEmpty: 'Group picture cannot be empty',
  1923. detailsCannotBeEmpty: 'Details cannot be empty',
  1924. pointsConsumedCannotBeEmpty: 'Points consumed cannot be empty',
  1925. originalPriceCannotBeEmpty: 'Original price cannot be empty',
  1926. inventoryCannotBeEmpty: 'Inventory cannot be empty',
  1927. uploadImage: 'Upload image',
  1928. availability: 'Availability',
  1929. imageCannotBeEmpty: 'Image cannot be empty',
  1930. showOrNotCannotBeEmpty: 'Show or not cannot be empty',
  1931. weightCannotBeEmpty: 'Weight cannot be empty',
  1932. pointsMallAdvertisementMapManagementXls: 'Points mall advertisement map management.xls',
  1933. categoryName: 'Category Name',
  1934. sortByCategory: 'Category Sort',
  1935. enableStatus: 'Enable Status',
  1936. pleaseInputCategoryName: 'Please input category name',
  1937. pleaseInputCategorySorting: 'Please input category sort',
  1938. categoryNameCannotBeEmpty: 'Category name cannot be empty',
  1939. openStatusCannotBeEmpty: 'Open status cannot be empty',
  1940. categoryNumber: 'Category number',
  1941. pointsProductClassificationXls: 'Points Product Classification.xlss'
  1942. },
  1943. system: {
  1944. ipQuery: 'IP Query',
  1945. pleaseEnterIpAddress: 'Please enter an IP address',
  1946. showIpQueryResults: 'Show IP query results',
  1947. ipAddressCannotBeEmpty: 'IP address cannot be empty',
  1948. querySuccess: 'Query Successful',
  1949. no: 'Number',
  1950. placeName: 'Place Name',
  1951. superiorDepartment: 'Superior Department',
  1952. pleaseSelectTheParentDepartment: 'Please select the superior department',
  1953. departmentName: 'Department Name',
  1954. pleaseEnterADepartmentName: 'Please enter the name of the department',
  1955. departmentStatus: 'Department Status',
  1956. pleaseSelectDepartmentStatus: 'Please select department status',
  1957. displaySort: 'Display Sort',
  1958. personInCharge: 'Person in Charge',
  1959. pleaseEnterThePersonInCharge: 'Please enter the person in charge',
  1960. contactPhoneNumber: 'Contact phone number',
  1961. pleaseInputTheContactPhoneNumber: 'Please input contact phone number',
  1962. mailbox: 'Mailbox',
  1963. pleaseInputMailbox: 'Please input mailbox',
  1964. status: 'Status',
  1965. pleaseSelectStatus: 'Please select status',
  1966. parentDepartmentCannotBeEmpty: 'Parent department cannot be empty',
  1967. departmentNameCannotBeEmpty: 'Department name cannot be empty',
  1968. displayOrderCannotBeEmpty: 'Display order cannot be empty',
  1969. statusCannotBeEmpty: 'Status cannot be empty',
  1970. pleaseEnterTheCorrectEmailAddress: 'Please enter the correct email address',
  1971. pleaseEnterTheCorrectCellPhoneNumber: 'Please enter the correct mobile phone number',
  1972. topDepartment: 'Top Departments',
  1973. expandCollapse: 'Expand/Collapse',
  1974. dictionaryType: 'Dictionary Type',
  1975. dataLabel: 'Data Label',
  1976. dataKeyValue: 'Data Key Value',
  1977. colorType: 'Colour Type',
  1978. pleaseEnterParameterName: 'Please enter a parameter name',
  1979. pleaseEnterDataLabel: 'Please enter a data label',
  1980. pleaseEnterDataKeyValue: 'Please enter a data key value',
  1981. pleaseEnterCSSClass: 'Please enter CSS Class',
  1982. pleaseEnterContent: 'Please enter the content',
  1983. dataLabelCannotBeEmpty: 'Data tag cannot be empty',
  1984. dataKeyValueCannotBeEmpty: 'Data key value cannot be null',
  1985. dataOrderCannotBeEmpty: 'Data order cannot be null',
  1986. default: 'Default',
  1987. primary: 'Main',
  1988. success: 'Successful',
  1989. information: 'Message',
  1990. warning: 'Warning',
  1991. danger: 'Danger',
  1992. dictionaryName: 'Dictionary name',
  1993. dictionaryLabel: 'Dictionary label',
  1994. pleaseEnterDictionaryLabel: 'Please enter a dictionary label',
  1995. dataStatus: 'Data status',
  1996. dictionaryCode: 'Dictionary Code',
  1997. dictionaryKeyValue: 'Dictionary Key',
  1998. dictionarySort: 'Dictionary Sort',
  1999. dictionaryDataXls: 'Dictionary Data.xls',
  2000. pleaseEnterDictionaryName: 'Please enter a dictionary name',
  2001. dictionaryNameCannotBeEmpty: 'Dictionary name cannot be empty',
  2002. dictionaryTypeCannotBeEmpty: 'Dictionary Type cannot be empty',
  2003. dictionaryNumber: 'Dictionary Number',
  2004. pleaseEnterDictionaryType: 'Please enter the dictionary type',
  2005. pleaseSelectDictionaryStatus: 'Please select dictionary status',
  2006. newAdd: 'Add',
  2007. export: 'Export',
  2008. data: 'Data',
  2009. dictionaryTypeXls: 'DictionaryType.xls',
  2010. userName: 'User Name',
  2011. loginAddress: 'Login Address',
  2012. loginDate: 'Login Date',
  2013. pleaseEnterUserName: 'Please enter user name',
  2014. pleaseEnterLoginAddress: 'Please enter login address',
  2015. logNumber: 'Log number',
  2016. operationType: 'Operation type',
  2017. browser: 'Browser',
  2018. loginResult: 'Login Result',
  2019. details: 'Details',
  2020. loginLogxls: 'Login Log.xls',
  2021. email: 'Mailbox',
  2022. password: 'Password',
  2023. SMTPserverDomainName: 'SMTP server domain name',
  2024. SMTPserverPort: 'SMTP server port',
  2025. whetherToEnableSSL: 'Enable SSL',
  2026. whetherToEnableSTARTTLS: 'Enable or disable STARTTLS',
  2027. creationTime: 'Creation Time',
  2028. operation: 'Operation',
  2029. number: 'Number',
  2030. cache: 'Cache',
  2031. noCache: 'Not Cached',
  2032. cacheStatus: 'Cache Status',
  2033. always: 'Always',
  2034. no1: 'Not',
  2035. cache1: 'If you choose caching, it will be cached by `keep-alive`, you must fill in the `component name` field.',
  2036. cache2: 'When selecting not, when this menu has only one submenu, it will not show itself, but will show the submenu directly',
  2037. cache3: 'When hidden, the route will not appear in the sidebar, but will still be accessible.',
  2038. cache4: 'Permission character on Controller method, e.g. @PreAuthorize(`@ss.hasPermission(‘system:user:list’)`)',
  2039. cache5: 'The routing address of the access, e.g. `user`. If an extranet address is required, it starts with `http(s)://`.',
  2040. cache6: 'For example, say SystemUser',
  2041. pushSucceeded: 'Push Success',
  2042. isItNecessaryToPushTheSelectedNotification: 'Is the selected notification pushed?',
  2043. sendingTime: 'Send time',
  2044. receivingEmail: 'Received mailbox',
  2045. userId: 'User ID',
  2046. userType: 'User Type',
  2047. emailTitle: 'Title',
  2048. emailContent: 'Mail Content',
  2049. emailParameters: 'Parameters',
  2050. sendingStatus: 'Send Status',
  2051. emailAccount: 'Email account',
  2052. sendingEmailAddress: 'Send Email Address',
  2053. templateNumber: 'Template number',
  2054. templateCode: 'Template Code',
  2055. templateSenderName: 'Template sender name',
  2056. sendingReturnedMessageNumber: 'Send Return Message Number',
  2057. sendingException: 'Send Exception',
  2058. test: 'Test',
  2059. templateContent: 'Template content',
  2060. recipientEmail: 'Incoming Email',
  2061. enterRecipientEmail: 'Enter your email address',
  2062. pleaseEnter: 'Please enter',
  2063. emailCannotBeEmpty: 'Mailbox can not be empty',
  2064. templateNumberCannotBeEmpty: 'Template number can not be empty',
  2065. templateName: 'Template Name',
  2066. templateTitle: 'Title of the template',
  2067. senderName: "Sender's name",
  2068. enableStatus: 'Open Status',
  2069. remarks: 'Remarks',
  2070. menuName: 'Menu Name(CN)',
  2071. menuNameEn: 'Menu Name',
  2072. menuNameJp: 'Menu Name(JP)',
  2073. pleaseEnterMenuName: 'Please input the menu name',
  2074. pleaseSelectMenuStatus: 'Please select menu status',
  2075. refreshMenuCache: 'Refresh menu cache',
  2076. permissionIdentity: 'Permission ID',
  2077. componentPath: 'Component Path',
  2078. componentName: 'Component name',
  2079. browserShow: 'The cache will be updated soon to refresh the browser!',
  2080. parentMenu: 'Parent Menu',
  2081. menuType: 'Menu Type',
  2082. menuIcon: 'Menu Icon',
  2083. routeAddress: 'Routing Address',
  2084. componentAddress: 'Component Address',
  2085. menuStatus: 'Menu Status',
  2086. displayStatus: 'Display status',
  2087. alwaysDisplay: 'Always displayed',
  2088. pleaseEnterRouteAddress: 'Please enter a route address',
  2089. pleaseEnterPermissionIdentity: 'Please enter a permission code',
  2090. menuNameCannotBeEmpty: 'Menu name cannot be empty',
  2091. menuOrderCannotBeEmpty: 'Menu order cannot be empty',
  2092. routeAddressCannotBeEmpty: 'Route address cannot be empty',
  2093. thePathMustStartWith: 'Route must start with /.',
  2094. thePathCannotStartWith: 'Path must not begin with /.',
  2095. mainCategory: 'Main Category',
  2096. announcementTitle: 'Announcement title',
  2097. announcementStatus: 'Announcement Status',
  2098. announcementNumber: 'Bulletin Number',
  2099. coverImage: 'Cover Image',
  2100. announcementType: 'Bulletin Type',
  2101. pleaseEnterAnnouncementTitle: 'Please enter the title of the announcement',
  2102. pleaseSelectAnnouncementStatus: 'Please select the announcement status',
  2103. push: 'Push',
  2104. announcementContent: 'Announcement content',
  2105. pleaseSelectAnnouncementType: 'Please select the type of announcement',
  2106. pleaseEnterRemarks: 'Please enter a note',
  2107. announcementTitleCannotBeEmpty: 'Title cannot be empty',
  2108. coverImageCannotBeEmpty: 'Cover picture cannot be empty',
  2109. announcementTypeCannotBeEmpty: 'Announcement type cannot be empty',
  2110. announcementContentCannotBeEmpty: 'Announcement content cannot be empty',
  2111. templateType: 'Template type',
  2112. templateParameters: 'Template Parameters',
  2113. isRead: 'Whether it has been read',
  2114. readingTime: 'Read time',
  2115. pleaseEnterUserId: 'Please enter the user number',
  2116. pleaseSelectUserType: 'Please select user type',
  2117. pleaseEnterTemplateCode: 'Please enter the template code',
  2118. pleaseSelectTemplateType: 'Please select template type',
  2119. markAsRead: 'Mark as read',
  2120. markAllAsRead: 'Read All',
  2121. sender: 'Sender',
  2122. messageContent: 'Message content',
  2123. read: 'Read',
  2124. messageDetails: 'Message details',
  2125. pleaseEnterTemplateName: 'Please enter a template name',
  2126. pleaseSelectEnableStatus: 'Please select the on state',
  2127. pleaseEnterSenderName: 'Please enter the sender name',
  2128. pleaseEnterTemplateContent: 'Please enter template content',
  2129. messageTypeCannotBeEmpty: 'Message type cannot be empty',
  2130. enableStatusCannotBeEmpty: 'Open status cannot be empty',
  2131. templateCodeCannotBeEmpty: 'Template code cannot be empty',
  2132. templateNameCannotBeEmpty: 'Template name cannot be empty',
  2133. senderNameCannotBeEmpty: 'Sender name cannot be empty',
  2134. templateContentCannotBeEmpty: 'Template content cannot be empty',
  2135. additionSuccessful: 'Add Success',
  2136. ModificationSuccessful: 'Modify Succeed',
  2137. recipientID: 'Recipient ID',
  2138. recipient: 'Recipient',
  2139. redirectableURIAddress: 'Redirectable URI Address',
  2140. pleaseEnterRedirectableURIAddress: 'Please enter a redirectable URI address.',
  2141. pleaseSelectRecipient: 'Please select the recipient',
  2142. userIdCannotBeEmpty: 'User ID cannot be empty',
  2143. submissionAndSendingWereSuccessfulTheSendingResultPleaseReferToTheSendingLogNumber: 'The commit was sent successfully! The result of the send, see the send log number:',
  2144. clientNumber: 'Client number',
  2145. clientSecretKey: 'Client key',
  2146. appName: 'Application name',
  2147. appIcon: 'Application icon',
  2148. appDescription: 'Application description',
  2149. validityPeriodOfAccessToken: 'Access Token Expiry Date',
  2150. validityPeriodOfRefreshToken: 'Refresh Token Validity Period',
  2151. authorizationType: 'Authorisation type',
  2152. authorizationScope: 'Authorisation range',
  2153. automaticAuthorizationScope: 'Automatic authorisation range',
  2154. redirectable: 'Redirectable',
  2155. permissions: 'Authorisation',
  2156. resources: 'Resources',
  2157. additionalInformation: 'Additional Information',
  2158. pleaseEnterClientNumber: 'Please enter a client number',
  2159. pleaseEnterClientSecretKey: 'Please enter the client key',
  2160. pleaseEnterAppName: 'Please enter the application name',
  2161. unitSeconds: 'Unit: seconds',
  2162. pleaseEnterAuthorizationType: 'Please enter the authorisation type',
  2163. pleaseEnterAuthorizationScope: 'Please enter the authorisation range',
  2164. pleaseEnterRedirectable: 'Please enter the redirectable',
  2165. pleaseEnterPermissions: 'Please enter the permissions',
  2166. pleaseEnterResources: 'Please enter resources',
  2167. pleaseEnterAdditionalInformationJSON: 'Please enter additional information, JSON format data.',
  2168. clientNumberCannotBeEmpty: 'Client number cannot be empty',
  2169. clientSecretKeyCannotBeEmpty: 'Client key cannot be null',
  2170. appNameCannotBeEmpty: 'Application name cannot be empty',
  2171. appIconCannotBeEmpty: 'Application icon cannot be null',
  2172. validityPeriodOfAccessTokenCannotBeEmpty: 'Access token expiration date cannot be null',
  2173. validityPeriodOfRefreshTokenCannotBeEmpty: 'The expiration date of the refresh token cannot be null.',
  2174. redirectableURIAddressCannotBeEmpty: 'Redirectable URI address cannot be null.',
  2175. authorizationTypeCannotBeEmpty: 'Authorisation type cannot be null',
  2176. whetherToForceTheUserToLogOut: 'Whether to force logout the user',
  2177. forceLogout: 'Force logout',
  2178. clientId: 'Client Number',
  2179. accessToken: 'Access Token',
  2180. refreshToken: 'Refresh Token',
  2181. expirationTime: 'Expiration Time',
  2182. pleaseEnterClientId: 'Please enter client number',
  2183. operator: 'Operator',
  2184. operationModule: 'Operation Module',
  2185. operationContent: 'Operation content',
  2186. operationTime: 'Operation Time',
  2187. businessNumber: 'Operation number',
  2188. operatorLogXls: 'Operator',
  2189. operationName: 'Operation Name',
  2190. IP: 'IP',
  2191. pleaseEnterOperator: 'Please input operator',
  2192. pleaseEnterOperationModule: 'Please input operation module',
  2193. pleaseEnterOperationName: 'Please input operation name',
  2194. pleaseEnterBusinessNumber: 'Please input operation number',
  2195. logPrimaryKey: 'Log key',
  2196. linkTracing: 'Link Trace',
  2197. operatorId: 'Operator number',
  2198. operatorName: 'Operator Name',
  2199. operatorIP: 'Operator IP',
  2200. operatorUA: 'Operator UA',
  2201. operationExtendedParameters: 'Operation Expansion Parameters',
  2202. requestURL: 'Request URL',
  2203. positionName: 'Job Name',
  2204. positionCode: 'Job Code',
  2205. positionNumber: 'Position number',
  2206. positionOrder: 'Position Order',
  2207. positionRemarks: 'Position Remarks',
  2208. pleaseEnterPositionName: 'Please enter the post name',
  2209. pleaseEnterPositionCode: 'Please enter the post code',
  2210. positionListXls: 'Position List.xls',
  2211. positionTitle: 'Position Title',
  2212. pleaseEnterPositionTitle: 'Please enter the post title',
  2213. pleaseEnterPositionOrder: 'Please input job order',
  2214. positionTitleCannotBeEmpty: 'Job title cannot be empty',
  2215. positionCodeCannotBeEmpty: 'Job Code cannot be empty',
  2216. positionStatusCannotBeEmpty: 'Job Status cannot be empty',
  2217. positionContentCannotBeEmpty: 'Job content cannot be empty',
  2218. roleName: 'Role Name',
  2219. roleIdentity: 'Role Identifier',
  2220. roleNumber: 'Role Number',
  2221. roleType: 'Role Type',
  2222. displayOrder: 'Display order',
  2223. pleaseEnterRoleName: 'Please enter role name',
  2224. pleaseEnterRoleIdentity: 'Please enter role identification',
  2225. menuPermissions: 'Menu Rights',
  2226. dataPermissions: 'Data permissions',
  2227. selectAllDeselectAll: 'Select all/unselect all.',
  2228. expandAllCollapseAll: 'Expand/Collapse All.',
  2229. permissionScope: 'Permission range',
  2230. pleaseEnterDisplayOrder: 'Please enter the display order',
  2231. roleNameCannotBeEmpty: 'Role name cannot be empty',
  2232. roleIdentityCannotBeEmpty: 'Role Identifier cannot be empty',
  2233. remarksCannotBeEmpty: 'Remarks cannot be empty',
  2234. roleListXls: 'Role List.xls',
  2235. parentChildLinkage: 'Parent-child linkage (select parent node, automatically select child node).',
  2236. loadingPleaseWaitAMoment: 'Loading, please wait',
  2237. pleaseSelectChannelCode: 'Please select channel code',
  2238. smsSignatureCannotBeEmpty: 'SMS Signature cannot be empty',
  2239. channelCodeCannotBeEmpty: 'Channel Code cannot be empty',
  2240. theAccountOfSmsAPICannotBeEmpty: 'The account number of SMS API cannot be empty',
  2241. theAccountOfSmsAPI: 'Account number of SMS API',
  2242. theSecretKeyOfSmsAPI: 'SMS API key',
  2243. smsSendingCallbackURL: 'SMS send callback URL',
  2244. pleaseEntertheAccountOfSmsAPI: 'Please enter the account number of the SMS API',
  2245. pleaseEntertheSecretKeyOfSmsAPI: 'Please enter the key of the SMS API',
  2246. pleaseEnterSmsSendingCallbackURL: 'Please enter the SMS send callback URL',
  2247. smsLogXls: 'SMS Log.xls',
  2248. smsSignature: 'SMS Signature',
  2249. channelCode: 'Channel Code',
  2250. sms: 'SMS',
  2251. smsSendingCallback: 'SMS Send Callback',
  2252. pleaseEnterSmsSignature: 'Please enter the SMS signature',
  2253. phoneNumber: 'Mobile phone number',
  2254. smsChannel: 'SMS Channel',
  2255. receivingStatus: 'Receive Status',
  2256. receivingTime: 'Receive Time',
  2257. smsContent: 'SMS Content',
  2258. templateNumberOfSmsAPI: 'Template number of the SMS API',
  2259. pleaseEnterTemplateNumberOfSmsAPI: 'Please enter the template number of the SMS API',
  2260. smsTemplateXls: 'SMS Template.xls',
  2261. smsType: 'SMS Type',
  2262. pleaseEnterPhoneNumber: 'Please enter your mobile phone number',
  2263. pleaseSelectSmsChannel: 'Please select the SMS channel',
  2264. pleaseEnterTemplateNumber: 'Please enter the template number',
  2265. pleaseSelectSendingStatus: 'Please select send status',
  2266. pleaseSelectReceivingStatus: 'Please select the receiving status',
  2267. smsTemplate: 'SMS Template',
  2268. templateNumberOfAPI: 'Template number of the API',
  2269. userInformation: 'User Information',
  2270. smsParameters: 'SMS Parameters',
  2271. APIsmsResult: 'API Send Result',
  2272. APIsmsNumber: 'API SMS Number',
  2273. APIrequestNumber: 'API Request Number',
  2274. APIreceivingStatus: 'API Receive Status',
  2275. APIreceivingResult: 'API Receive Result',
  2276. smsChannelNumber: 'SMS Channel Number',
  2277. smsAPITemplateNumber: 'SMS API Template Number',
  2278. pleaseSelectSmsChannelNumber: 'Please select the SMS channel number',
  2279. pleaseSelectSmsType: 'Please select the SMS type',
  2280. pleaseEnterSms: 'Please enter the SMS API template number',
  2281. pleaseEnterTheTemplateNumberOfTheSmsAPI: 'Please enter the SMS API template number',
  2282. phoneNumberCannotBeEmpty: 'Mobile phone cannot be empty',
  2283. smsTypeCannotBeEmpty: 'SMS Type cannot be empty',
  2284. theTemplateNumberOfTheSmsAPICannotBeEmpty: 'The template number of the SMS API cannot be empty',
  2285. smsChannelNumberCannotBeEmpty: 'The SMS channel number cannot be empty',
  2286. submitTips: 'The submission was successful! See the delivery log number for delivery results:',
  2287. pleaseSelectSocialPlatform: 'Please select social platform',
  2288. pleaseEnterClientNumberTips: 'Please enter the client number, which corresponds to the appKey of each platform.',
  2289. pleaseEnterClientSecretKeyTips: 'Please enter the client key, corresponding to the appSecret of each platform.',
  2290. authorizedPartyWebApplicationTips: "Authorised party's web application ID, fill in if you have one.",
  2291. socialPlatformCannotBeEmpty: 'Social platform cannot be empty',
  2292. userTypeCannotBeEmpty: 'User type cannot be empty',
  2293. socialOpenid: 'Social openid',
  2294. pleaseEnterSocialOpenid: 'Please enter the social openid',
  2295. social: 'Social',
  2296. updateTime: 'Update time',
  2297. socialPlatform: 'Social platform',
  2298. userAvatar: 'User avatar',
  2299. socialToken: 'Social Token',
  2300. originalTokenData: 'Raw Token Data',
  2301. originalUserData: 'Raw User data',
  2302. lastAuthenticationCode: 'Last authentication code',
  2303. lastAuthenticationState: 'Last authentication state',
  2304. tenantName: 'Tenant Name',
  2305. contactPerson: 'Contact person',
  2306. tenantStatus: 'Tenant state',
  2307. tenantId: 'Tenant number',
  2308. tenantPackage: 'Tenant package',
  2309. accountQuota: 'Account Limit',
  2310. boundDomainName: 'Bound Domain Name',
  2311. pleaseEnterTenantName: 'Please enter tenant name',
  2312. pleaseEnterContactPerson: 'Please input contact person',
  2313. pleaseEnterContactPhoneNumber: 'Please enter your mobile phone',
  2314. pleaseSelectTenantStatus: 'Please select tenant status',
  2315. systemTenant: 'System Tenant',
  2316. tenantListXls: 'Tenant List.xls',
  2317. tenantNameCannotBeEmpty: 'Tenant name cannot be empty',
  2318. tenantPackageCannotBeEmpty: 'Tenant Package cannot be empty',
  2319. contactPersonCannotBeEmpty: 'Contact person cannot be empty',
  2320. tenantStatusCannotBeEmpty: 'Tenant Status cannot be empty',
  2321. accountQuotaCannotBeEmpty: 'Account Limit cannot be empty',
  2322. expirationTimeCannotBeEmpty: 'Expired time cannot be empty',
  2323. boundDomainNameCannotBeEmpty: 'Bound domain name cannot be empty',
  2324. userNameCannotBeEmpty: 'User name cannot be empty',
  2325. userPasswordCannotBeEmpty: 'User password cannot be empty',
  2326. userPassword: 'User password',
  2327. pleaseSelectTenantPackage: 'Please select tenant package',
  2328. loadingPleaseWaitAWhile: 'Loading, please wait',
  2329. packageNameCannotBeEmpty: 'Package name cannot be empty',
  2330. associatedMenuNumberCannotBeEmpty: 'Associated menu number cannot be empty',
  2331. pleaseEnterUserPassword: 'Please enter your password',
  2332. pleaseEnterAccountQuota: 'Please enter the account limit',
  2333. pleaseSelectExpirationTime: 'Please select the expiry time',
  2334. pleaseEnterBoundDomainName: 'Please enter the binding domain name',
  2335. packageName: 'Package Name',
  2336. packageNumber: 'Package Number',
  2337. pleaseEnterPackageName: 'Please enter the package name',
  2338. menuPermission: 'Menu Permission',
  2339. department: 'Department',
  2340. userStatus: 'User Status',
  2341. userDataXls: 'User Data.xls',
  2342. assignRole: 'Assign Roles',
  2343. role: 'Role',
  2344. pleaseSelectRole: 'Please select a role',
  2345. affiliatedDepartment: 'Department',
  2346. userGender: 'User Gender',
  2347. position: 'Position',
  2348. pleaseSelectAffiliatedDepartment: 'Please select the department',
  2349. pleaseEnterEmail: 'Please enter your email address',
  2350. userNicknameCannotBeEmpty: 'Nickname cannot be empty',
  2351. pleaseEnterTheCorrectPhoneNumber: 'Please enter the correct mobile phone number',
  2352. modificationSucceededTheNewPasswordIs: 'Modified successfully, the new password is:',
  2353. userImport: 'User import',
  2354. dragTheFileHereOr: 'Drag the file here, or',
  2355. clickToUpload: 'Click Upload',
  2356. whetherToUpdateExistingUserData: 'Whether to update existing user data',
  2357. onlyFilesInXlsAndXlsxFormatsAreAllowedForImport: 'Only xls, xlsx format files are allowed to be imported.',
  2358. downloadTemplate: 'Download template',
  2359. uploadFailedPleaseUploadAgain: 'The upload failed, please re-upload!',
  2360. atMostOnlyOneFileCanBeUploaded: 'Only a maximum of one file can be uploaded!',
  2361. userImportTemplateXls: 'User import template.xls',
  2362. numberOfSuccessfulUploads: 'Number of successful uploads:',
  2363. numberOfFailedUploads: 'Number of successful uploads:',
  2364. numberOfFailedUpdates: 'Update Failed Quantity:',
  2365. pleaseUploadTheFile: 'Please upload a file',
  2366. allHaveBeenMarkedAsReadSuccessfully: 'All read successfully!',
  2367. batchMarkingAsReadWasSuccessful: 'Batch read successfully!',
  2368. testSending: 'Test Send',
  2369. },
  2370. public: {
  2371. all: 'All',
  2372. sort: 'Sort',
  2373. operate: 'Operation',
  2374. status: 'Status',
  2375. startDate: 'Start Date',
  2376. endDate: 'End Date',
  2377. delete: 'Delete',
  2378. createTime: 'Created',
  2379. update: 'Modified',
  2380. none: 'None',
  2381. close: 'Close',
  2382. normal: 'Normal',
  2383. addTime: 'Add Time',
  2384. no: 'No',
  2385. yes: 'Yes',
  2386. more: 'More',
  2387. startTime: 'Start time',
  2388. endTime: 'End time',
  2389. up: 'Up',
  2390. down: 'Down',
  2391. enable: 'Enable',
  2392. disable: 'Disable',
  2393. remark: 'Remarks',
  2394. pleaseEnterNotes: 'Please enter a comment',
  2395. expand: 'Expand',
  2396. collapse: 'Collapse',
  2397. scord: 'Seconds'
  2398. },
  2399. 'OAuth 2.0': 'OAuth 2.0' // 避免菜单名是 OAuth 2.0 时,一直 warn 报错
  2400. }