content.js 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818
  1. export default {
  2. '店铺总数':'The total number of shops',
  3. '该模块至少需要选择':'The modules need to select at least',
  4. '该模块需要选择':'The modules need to select',
  5. '是':'Yes',
  6. '否':'no',
  7. '请输入':'please enter',
  8. '排序':'Sort',
  9. '导航名称':'Navigation name',
  10. '公司及联系人信息':'Company and Contact Information',
  11. '商品总数':'The total number of goods',
  12. '商品名称':'product name',
  13. '分类名称':'Category Name',
  14. '创建时间':'Created',
  15. '修改时间':'Change the time',
  16. '选择商品':'Select a product',
  17. '选择分类':'Choose category',
  18. '专题名称':'The topic name',
  19. '请选择数据':'Select the data',
  20. '上架时间':'Added time',
  21. '个分类':'Categories',
  22. '该模块最多只能选择':'The module can only select',
  23. '分类':'classification',
  24. '商品图片':'product picture',
  25. '库存':'in stock',
  26. '个商品':'A commodity',
  27. '请选择商品':'Please select item',
  28. '选择器':'Selector',
  29. '商品分类名称':'Category name',
  30. 'PC价(元)':'PC value (RMB)',
  31. '移动端价(元)':'Price movement end (RMB)',
  32. '商品价格(元)':'Commodity price (yuan)',
  33. '选择推荐商品':'Select the recommended product',
  34. '新增商品单位':'New Product Unit',
  35. '公司名称':'Company Name',
  36. '公司所在地':'company location',
  37. '公司详细地址':'Company Address',
  38. '公司电话':'work phone',
  39. '传真':'fax',
  40. '联系人姓名':'Contact name',
  41. '联系人电话':'contact number',
  42. '邮箱':'mailbox',
  43. '营业执照信息(副本)':'Business License Information (copy)',
  44. '社会统一信用代码':'Social unified credit Code',
  45. '营业执照有效期':'Business license is valid',
  46. '营业日期':'Business days',
  47. '法定经营范围':'Legal Business',
  48. '营业执照扫描件(必传)':'Scanning member business license (will pass)',
  49. '特殊行业资质1':'Special industry qualification 1',
  50. '特殊行业资质2':'Industry-specific qualifications 2',
  51. '特殊行业资质3':'Special industry qualification 3',
  52. '法人信息':'Legal information',
  53. '法人姓名':'Corporate name',
  54. '法定代表人身份证':'Legal representative of the ID card',
  55. '身份证正面图片(必传)':'Positive picture ID (will pass)',
  56. '身份证背面图片(必传)':'ID back of the picture (will pass)',
  57. '开户银行信息':'Bank information',
  58. '银行开户名':'Bank Account Name',
  59. '银行账号':'Bank Account',
  60. '开户银行支行名称':'Bank branch name',
  61. '支行联行号':'Associated branch line number',
  62. '开户行所在地':'Bank location',
  63. '结算账户':'Settlement Account',
  64. '结算账号信息':'Settlement account information',
  65. '操作':'operating',
  66. '开始时间':'Starting time',
  67. '确定':'determine',
  68. '取消':'cancel',
  69. '通知中心':'Notification Center',
  70. '请输入0~255的数字':'Please enter a number from 0 to 255',
  71. '删除后不可恢复,是否确定删除':'When delete can not be restored, to determine whether to delete',
  72. '编辑':'edit',
  73. '搜索': 'Search',
  74. '重置': 'Reset',
  75. '收起': 'Put away',
  76. '展开': 'Open',
  77. '返回':'return',
  78. '管理':'management',
  79. '审核结果':'Audit results',
  80. '通过':'by',
  81. '拒绝':'Refuse',
  82. '审核意见':'Audit opinion',
  83. '文章分类':'Article Category',
  84. '文章标题':'Article Title',
  85. '显示':'display',
  86. '基本信息':'Basic Information',
  87. '内容编辑':'edit content',
  88. '添加':'Add to',
  89. '删除':'delete',
  90. '文章名称':'Article name',
  91. '请输入0~255的数字,值越小,显示越靠前':'Please enter a number from 0 to 255, the smaller the value, the display front',
  92. '文章内容':'Article content',
  93. '所属分类':'category',
  94. '是否显示':'Whether',
  95. '文章':'article',
  96. '会员名':'Username',
  97. '新密码':'new password',
  98. '新密码必填':'New password required',
  99. '确认新密码':'Confirm the new password',
  100. '请再次输入新密码':'Enter the new password again',
  101. '确认新密码必填':'Confirm New Password Required',
  102. '请输入6-20位中、英文、数字、"-"及"_",且不能全为数字':'Please enter 6-20 in English, numbers, "-" and "_", and can not be all-digital',
  103. '会员名必填':'Username Required',
  104. '密码':'password',
  105. '密码必填':'Password Required',
  106. '确认密码':'confirm password',
  107. '请再次输入密码':'Please enter your password again',
  108. '确认密码必填':'Confirm password required',
  109. '手机号':'phone number',
  110. '手机号必填':'Phone number required',
  111. '请输入正确的手机号':'please enter a valid phone number',
  112. '查看':'View',
  113. '会员':'member',
  114. '修改会员密码':'Modify password',
  115. '两次密码不一致,请重新输入':'The two passwords do not match, please re-enter',
  116. '订单号':'order number',
  117. '申请时间':'application time',
  118. '描述':'description',
  119. '评价人':'Appraisers',
  120. '下单时间':'order time',
  121. '全部订单':'All orders',
  122. '待付款订单':'Pending order',
  123. '待发货订单':'Orders to be shipped',
  124. '待收货订单':'Inbound orders',
  125. '已完成订单':'Completed Orders',
  126. '已取消订单':'Canceled orders',
  127. '订单管理':'Order Management',
  128. '退货状态':'Return Status',
  129. '全部':'All',
  130. '未处理':'Untreated',
  131. '审核通过':'examination passed',
  132. '审核失败':'Audit failure',
  133. '用户发货':'Users delivery',
  134. '店铺收货':'Shop receipt',
  135. '不予处理':'Pass',
  136. '退款状态':'Refund status',
  137. '未退款':'No refunds',
  138. '退款到账户':'Refund to account',
  139. '退款到银行':'Refund to the bank',
  140. '问题描述':'Problem Description',
  141. '退货数量':'The number of return',
  142. '退款金额':'The amount of the refund',
  143. '退回积分':'Return Points',
  144. '退回优惠券':'Return coupon',
  145. '用户名':'username',
  146. '退货管理':'Returns management',
  147. '品牌名称':'brand name',
  148. '品牌LOGO':'Brand LOGO',
  149. '建议上传宽200*高200的图片':'Recommend uploading images width * height 200 200',
  150. '品牌描述':'Brand Description',
  151. '品牌':'Brand',
  152. '请上传':'Please upload',
  153. '商品分类':'Categories',
  154. '选择品牌':'Select brand',
  155. '选择属性':'Select Properties',
  156. '上级分类':'Sub-headings',
  157. '默认为最顶级':'The default is the top',
  158. '关联品牌':'The brand association',
  159. '关联属性':'Correlation properties',
  160. '下级分类':'Lower classification',
  161. '分类管理':'Category management',
  162. '商品标签':'Product Tags',
  163. '标签描述':'Tag Description',
  164. '添加时间':'add time',
  165. '更新时间':'Updated',
  166. '属性名称':'Property Name',
  167. '属性值':'Attribute value',
  168. '请输入0~255的数字,数字越小顺序越靠前':'Please enter a number from 0 to 255, the smaller the number the more forward order',
  169. '启用':'Enable',
  170. '状态':'status',
  171. '停用':'Disable',
  172. '属性':'Attributes',
  173. '该项必填':'The required',
  174. '等级名称':'Grade name',
  175. '收费标准':'Charges',
  176. '收费标准,在会员开通或升级店铺时将显示在前台':'Fees, when members of the opening or upgrade shop will be displayed in the foreground',
  177. '申请说明':'Application Instructions',
  178. '申请说明,在会员开通或升级店铺时将显示在前台':'Application Instructions, when members of the opening or upgrade shop will be displayed in the foreground',
  179. '请输入0~255的数字,数值越大表明级别越高':'Please enter a number from 0 to 255, indicating that the higher the level the greater the value',
  180. '店铺等级':'Shop class',
  181. '商品类型':'Product Types',
  182. '装修':'Decoration',
  183. '模板编辑':'Template Edit',
  184. '操作提示':'Operating tips',
  185. '模板列表':'Template List',
  186. '点击上传图片':'Click Upload picture',
  187. '请严格根据提示要求上传规定尺寸的广告图片':'Please strictly in accordance with the provisions prompted to upload the ad image size',
  188. '编辑项中的“操作”指点击该内容所产生的链接地址,可通过下拉选项选择不同的方式':'Edit item in the "Operations" refers to the link address of the content generated by the pull-down option to choose different ways',
  189. '广告图设置':'FIG ad settings',
  190. '左侧图片设置':'The left picture settings',
  191. '人已买':'People have to buy',
  192. '立即抢购':'Buy now',
  193. '商品选择(该模块需要4个商品)':'Product selection (module requires four products)',
  194. '右侧图片设置':'The right side of the picture settings',
  195. '商品楼层(楼层类型)—楼层具体的名称':'Goods floor (floor type) - specific names floor',
  196. '标题名称':'Title Name',
  197. '标题名称不能为空,10个字符以内':'The title name can not be empty, less than 10 characters.',
  198. '颜色':'colour',
  199. '顶部标题设置':'Top header set',
  200. '示例产品':'Examples of products',
  201. '标题':'title',
  202. '清仓打折':'Clearance discount',
  203. '子标题':'Subtitle',
  204. '标题设置':'Title settings',
  205. '查看更多':'see more',
  206. '此处添加【298*482】图片':'Add here [298 * 482] picture',
  207. '左侧分类信息标题':'The left side of classified information title',
  208. '左侧分类选择9个':'The 9 classification left',
  209. '商品选择5个':'Product selection 5',
  210. '右侧标题设置':'Title setting right',
  211. '商品选择4个':'Product selection 4',
  212. '请输入页面名称':'Please enter a page name',
  213. '使用状态':'status of use',
  214. '禁用':'Disable',
  215. '名称':'name',
  216. '首页装修列表管理':'Home decoration list management',
  217. '请选择主轮播图模板':'Please select the main carousel chart template',
  218. '添加楼层':'Add floor',
  219. '选择主轮播模板':'Select the main carousel template',
  220. '选择装修模板':'Select a template decoration',
  221. '链接':'link',
  222. '请输入0~255的数字,数字越小,该项显示将越靠前':'Please enter a number from 0 to 255, the smaller the number, the more front displays',
  223. '分类图标':'Classification icon',
  224. '建议上传16*16的图片':'We recommend uploading images 16 * 16',
  225. '广告图':'Ads pictures',
  226. '分类图标设置':'Category Icon Settings',
  227. '分类广告设置':'Classified Ads Settings',
  228. '首页分类':'Home Category',
  229. '首页分类图标设置':'Home Categories icon set',
  230. '首页分类广告设置':'Home Classified Ads Settings',
  231. '设置首页开屏图':'Home screen is set to open map',
  232. '首页开屏图设置':'Home screen map setting open',
  233. '实例化名称':'Examples of the name',
  234. '模板类型':'Template type',
  235. '模板布局':'Template layout',
  236. '实例化模板名称':'Instantiate template name',
  237. '请输入排序':'Enter Sort',
  238. '请输入0~255的数字,数据越小显示越靠前':'Please enter a number from 0 to 255, the smaller the data show the front',
  239. '装修模版效果预览':'Stencil decoration effect preview',
  240. '选择模板':'Select a template',
  241. '装修模板':'Decoration template',
  242. '编辑装修模板基本信息':'Decoration template editing basic information',
  243. '实例化装修模板管理':'Examples of decoration template management',
  244. '轮播图':'FIG carousel',
  245. '数字越小越靠前':'The lower the number the more forward',
  246. '排序必填':'Sort required',
  247. '链接类型':'Link Type',
  248. '启用状态':'Enabled',
  249. '链接地址':'link address',
  250. '关键字':'Keyword',
  251. '添加导航':'Add navigation',
  252. '首页导航设置':'Home navigation settings',
  253. '提示':'prompt',
  254. '序号越小,显示越靠前':'The smaller the number, the display front',
  255. 'PC商城首页展示一行,超出部分不展示,需要根据页面效果调整展示的数据':'PC Mall to show on one line, the excess is not showing, you need to adjust the data to show the effect according to the page',
  256. '专题装修列表管理':'Thematic decoration list management',
  257. '基本设置':'basic settings',
  258. '微信配置':'Micro-channel configuration',
  259. '协议标题':'Agreement title',
  260. '协议':'protocol',
  261. '操作人':'Operator',
  262. '起止时间':'Start and end time',
  263. '操作行为':'Operation behavior',
  264. '操作日志管理':'Operation log management',
  265. '操作日志导出':'Operation Log Export',
  266. 'APP基本配置':'APP basic configuration',
  267. '订单导出字段设置':'Export orders field is set',
  268. '退回余额':'Return balance',
  269. '原路退回':'The same route back',
  270. '运营配置':'Operational configuration',
  271. '退款配置':'Refund configuration',
  272. '支付方式':'payment method',
  273. '信息':'information',
  274. '支付设置':'Payment settings',
  275. 'PC支付':'PC pay',
  276. '移动端支付':'Payment mobile terminal',
  277. '基本图片':'The basic picture',
  278. '默认图片':'Default picture',
  279. '站点基本配置':'The basic configuration of the site',
  280. '设置':'Settings',
  281. '请选择':'please choose',
  282. '保存并新增':'Save and New',
  283. '保存并返回':'Save and Return',
  284. '物流设置':'Stream provided',
  285. '快递鸟配置':'Express configuration birds',
  286. '物流名称':'Logistics name',
  287. '物流公司名称':'Logistics Company',
  288. '物流代码':'Stream code',
  289. '物流公司代码':'Logistics company code',
  290. '请输入排序,越小越靠前':'Enter sort, the smaller the front',
  291. '物流公司':'Logistics Company',
  292. '物流管理':'Logistics Management',
  293. '首页管理':'Home management',
  294. '一周概况':'One week Profile',
  295. '订单增长':'Order growth',
  296. '会员增长':'Membership growth',
  297. '销售总额增长':'Total sales growth',
  298. '销售额类别占比':'Category sales accounted for',
  299. '近一年':'Nearly a year',
  300. '近一月':'The past month',
  301. '近一周':'Nearly a week',
  302. '销售额':'Sales',
  303. '序号':'No.',
  304. 'TOP':'TOP',
  305. '7日内商品销售TOP20':'7 days of merchandise sales TOP20',
  306. '销量':'Sales',
  307. '(件)':'(Member)',
  308. '邮件配置':'Mail configuration',
  309. '发送测试邮件':'Send a test message',
  310. '短信配置':'SMS Configuration',
  311. '今日营业额':"Today's turnover",
  312. '今日下单数':'Today, under the singular',
  313. '新增会员数':'New membership',
  314. '会员总数':'Total Members',
  315. '新增店铺数':'The number of new shops',
  316. '新增商品数':'The number of new commodities',
  317. '(元)':'(yuan)',
  318. '同步':'Synchronize',
  319. '语言':'Language',
  320. //src/utils/util_data.js
  321. '规格名称':'Specification Name',
  322. '店铺名称':'Store Name',
  323. '店铺创建时间':'Shop creation time',
  324. '收货人':'Receiver',
  325. '电话':'phone',
  326. '地区':'area',
  327. '邮编':'Zip',
  328. '详细地址':'Address',
  329. '已选地址':'Selected Address',
  330. '使用该地址':'Using this address',
  331. '会员注册':'Sign Up',
  332. '会员注册送经验值数量':'The number of registered members to send Experience',
  333. '每日登录':'Daily Log',
  334. '会员每天第一次登陆送经验值数量':'Member login first to send the number of daily experience',
  335. '订单评论':'Order comments',
  336. '会员评论商品送经验值数量':'Member Reviews send the number of experience points',
  337. '会员购物':'Member shopping',
  338. '会员购物时送经验值的比例。如设定10,则表示会员消费200元时,送经验值:200/10=20,即送20经验值':'Send shopping experience when members of proportion. As set 10, when said member consumes 200, send Experience: 200/10 = 20, 20 experience value Ji Song',
  339. '会员购物时送经验值的上限。如设定100,会员消费金额根据上述规则换算后需要送出105经验值,则取上限值只送出100经验值':'Send shopping experience when membership limit. As set 100, the amount of consumption require feeding member 105 according to the experience value in terms of the rules above, the upper limit is taken out only experience value 100',
  340. '购物送值上限':'Shopping feed upper limit',
  341. '请选择使用状态':'Select use state',
  342. '开启':'Open',
  343. '关闭':'shut down',
  344. '积分换算比例':'Points conversion ratio',
  345. '用户下单使用积分时换算成人民币的比例,如填100表示100个积分当做1元钱使用':'When the user in terms of using a single RMB proportional to the integral, as represented by 100 fill 100 points used as a dollar',
  346. '索引初始化是清除solr里面所有的索引文件,下一次定时器从头开始执行建立索引。\n':'Solr index initialization is to remove all index files inside the next time the timer starts from the beginning indexing. \ N',
  347. '建议在必要时才使用此功能':"Is recommended when using this feature'where necessary",
  348. '关键词':'Key words',
  349. '请输入关键词':'Please enter a keyword',
  350. '关键字用英文逗号(,)隔开':'Keywords with commas (,) separated',
  351. '敏感词过滤':'Sensitive word filtering',
  352. '过滤':'filter',
  353. '启用敏感词过滤之后,输入敏感词将搜索不到任何结果':'After enabling sensitive word filtering, enter any sensitive words will not search results',
  354. '会员注册送积分数量':'Member registration to send number of points',
  355. '会员签到':'Member sign',
  356. '每日登陆':'Daily landing',
  357. '会员每天第一次登陆送积分数量':'Member login first to send daily number of points',
  358. '会员签到送积分数量':'Member sign to send the number of points',
  359. '会员购物时送积分的比例。如设定10,则表示会员消费200元时,送积分:200/10=20,即送20积分':'Present Points when shopping rate of membership. As set 10, when said member consumes 200, send Points: 200/10 = 20, gives the integrator 20',
  360. '会员评论商品送积分数量':'Member Reviews send number of points',
  361. '注册会员经验值':'Registered members experience',
  362. '会员购物时送积分的上限。如设定100,会员消费金额根据上述规则换算后需要送出105积分,则取上限值只送出100积分':'Send credit limit when members shop. As set 100, according to the above-described members of the amount of consumption conversion rule 105 requires feeding points, the upper limit is taken out only 100 points',
  363. '请输入注册会员经验值':'Enter the registered members experience',
  364. '铜牌会员经验值':'Bronze Member experience',
  365. '请输入铜牌会员经验值':'Please enter the Bronze Member experience',
  366. '银牌会员经验值':'Silver Member experience',
  367. '请输入银牌会员经验值':'Please enter Minder experience',
  368. '金牌会员经验值':'Gold Member experience',
  369. '请输入金牌会员经验值':'Please enter a Gold member experience',
  370. '钻石会员经验值':'Diamond Experience',
  371. '请输入钻石会员经验值':'Please enter the Diamond Experience',
  372. '注册会员年度减少值':'Registered members reduce annual value',
  373. '请输入注册会员年度减少值':'Enter the registered members to reduce the annual value',
  374. '铜牌会员年度减少值':'Bronze members to reduce the value of the Year',
  375. '请输入铜牌会员年度减少值':'Please enter the Bronze membership annual reduction value',
  376. '银牌会员年度减少值':'Silver Membership reduce the value of the Year',
  377. '请输入银牌会员年度减少值':'Please enter Minder annual reduction in value',
  378. '金牌会员年度减少值':'Gold member to reduce the value of the Year',
  379. '请输入金牌会员年度减少值':'Please enter a Gold member to reduce the annual value',
  380. '钻石会员年度减少值':'Diamond members to reduce the value of the Year',
  381. '请输入钻石会员年度减少值':'Please enter the Diamond annual reduction value',
  382. '会员账号':'member account',
  383. '支付方式名称':'Payment name',
  384. '支付金额':'Payment amount',
  385. '支付状态':'Payment status',
  386. '支付订单号':'Payment order number',
  387. '支付交易流水号':'Payment transaction serial number',
  388. '支付完成时间':'Payment completion time',
  389. '请选择使用场景':'Please select usage scenarios',
  390. '使用场景':'scenes to be used',
  391. '请选择状态':'Select state',
  392. '点击编辑按钮,添加或编辑改模块内容,并根据弹出框体中的提示文字完成内容提交':'Click the Edit button to add or edit the module to change the content, content submission and complete the prompts text pop-up body',
  393. '不启用':'Not enabled',
  394. '设置完成后,可点击返回模板列表按钮,回到模板列表页进行其他模板设置操作':'After the setup is complete, you can click the button to return to the list of templates, the template back to the list of other pages template settings operations',
  395. '小提示:该模版编辑预览页面为实际展示页面效果,所添加编辑的内容即见即所得。':'Tip: Edit the template preview page for the actual show results page, edit the content that is being added WYSIWYG.',
  396. '一行4张图片,宽度按照指定要求传,高度不限,建议4张图的高度一致':'Line 4 pictures, as specified in claim pass width, height not recommend highly consistent FIG 4',
  397. '一行3张图片,宽度按照指定要求传,高度不限,建议3张图的高度一致':'Line 3 pictures, as specified in claim pass width, height not recommend highly consistent FIG 3',
  398. '一行5张图片,宽度按照指定要求传,高度不限,建议5张图的高度一致':'5 line image, as specified in claim pass width, height not recommend highly consistent FIG 5',
  399. '“弹出广告开关” 开启后,会员访问PC端商城首页时,会弹出一个图片广告':'"Pop-up switch" is turned on, when members access the PC Mall home page, a pop-up image ads',
  400. '“弹出方式” 可以设置弹出广告是只弹出一次还是每次访问都会弹出。设置成“仅弹出一次”后访问首页时仅弹出一次。而设置成 “每次访问都弹出”后 ,弹出一次后间隔1个小时后会再次弹出':'"Pop-up mode" can be set only pop-up ads or pop-up once per visit will pop up. Set to "pop-up only once" pops up only once during the home visit. And after set to "visit each pop-up", a pop-up after an interval of one hour will pop up again',
  401. '“广告图片” 可以设置弹出广告显示的图片':'"Advertising picture" can be set to display pop-up ads picture',
  402. '“跳转链接” 可以设置点击图片的跳转地址':'"Hoplink" can be set clickable image jump address',
  403. '只弹出一次':'Pop up only once',
  404. '每次访问都弹出':'Each access pop-up',
  405. '无操作':'No action',
  406. '商品':'commodity',
  407. '专题':'Thematic',
  408. '品牌列表':'Brand list',
  409. '领券中心':'Collar coupons Center',
  410. '店铺街':'Hot Shops',
  411. '秒杀首页':'Home spike',
  412. '直播中心':'Live Center',
  413. '积分商城':'Points Mall',
  414. '短视频中心':'Short video center',
  415. '积分标签':'Points tag',
  416. '类型名称':'type name',
  417. '关联规格':'Related specifications',
  418. '企业名称':'Company Name',
  419. '企业简称':'Companies referred',
  420. '企业注册地址':'Registered address',
  421. '企业曾用名':'Enterprise formerly known as',
  422. '所在地域':'The geographical location',
  423. '修改配置成功后,需点击右上角更新配置按钮更新配置才可生效':'Modify the configuration is successful, need to click the top right button to update the configuration update configuration to become effective',
  424. '域名更改一定要确保正确,否则将影响该系统的使用':'Be sure to change the domain name correctly, otherwise it will affect the use of the system',
  425. '选中的字段将在订单导出的时候导出该数据,修改配置成功后,需点击右上角更新配置按钮更新配置才可生效':'Select the fields to export the data at the time of export orders, the modified configuration, and you need to update the upper right corner click the Configure button to update the configuration to become effective',
  426. '周日':'Sunday',
  427. '周一':'on Monday',
  428. '周二':'on Tuesday',
  429. '周三':'on Wednesday',
  430. '周四':'Thursday',
  431. '周五':'Friday',
  432. '周六':'on Saturday',
  433. '每个商家结算周期为一个月,每个月1号都会生成一个结算账单,平台依据结算单与商家进行结算':'Each merchant billing cycle for the month, No. 1 will generate a monthly bill settlement, settlement platform based on statements and businesses',
  434. '账单计算公式:本期应结 = 系统计算总额(订单总额-现金支付总额+积分转换总额-退款/退货总额-退回积分总额)+其他金额':'The bill is calculated: the current system should calculate the total knot = (order total - paid total cash + total points converted - refund / return of the total - total return points) + other amounts',
  435. '账单处理流程为:系统自动出账>平台审核> 商家核对 > 平台核对 > 财务支付(完成结算) 5个环节':'Billing process: the system automatically out of account> Platform Audit> Business checking> check platform> Financial payment (complete settlement) 5 links',
  436. '填写平台收款账号的信息,相关信息会出现在需要向平台汇款的页面':'Fill the platform receiving account information, related information will appear in the required remittances to the platform pages',
  437. '拼团':'Fight groups',
  438. '限时折扣':'Limit discounts',
  439. '团购':'Group buy',
  440. '一':'One',
  441. '二':'two',
  442. '三':'three',
  443. '四':'four',
  444. '五':'Fives',
  445. '支付宝账号':'Alipay account',
  446. '公司银行账号':'The company bank account',
  447. '开户银行':'Bank',
  448. '支付宝姓名':'Alipay name',
  449. //src/utils/util.js
  450. '万':'Wan',
  451. '默认页面':'The default page',
  452. '禁止操作':'Prohibit operation',
  453. '请输入正确的首字母':'Please enter the correct initials',
  454. '请输入6-20位的会员名':'Please enter 6-20 member name',
  455. '会员名不能全为数字':'Username can not be all digital',
  456. '会员名须由中、英文、数字、"-"及"_"组成':'Member name shall be in English, numbers, "-" and "_" component',
  457. '请输入6-20位的密码':'Please enter the password for 6-20',
  458. '密码不可以有中文':'Password can not have Chinese',
  459. '密码中不可以有空格':'Password can not have spaces',
  460. '请输入正整数':'Please enter a positive integer',
  461. '请输入2~999的整数':'Enter an integer of 2 to 999',
  462. '请输入1~99999的整数':'Please enter an integer of 1 to 99999',
  463. '请输入正确的数据':'Please enter the correct data',
  464. '请输入审核意见':'Please enter the audit opinion',
  465. '检测到有特殊字符,请重新输入':'Detected with special characters, please re-enter',
  466. '上传文件过大,请上传小于':'Upload the file is too large, please upload less than',
  467. 'M的图片':"M's picture",
  468. '请输入正确的邮箱':'please enter your vaild email',
  469. //src/pages/User/Login.js
  470. '用户名不能为空':'Username can not be empty',
  471. '密码不能为空':'password can not be blank',
  472. '验证码不能为空':'verification code must be filled',
  473. '平台管理中心':'Platform Management Center',
  474. '请输入用户名':'please enter user name',
  475. '请输入密码':'Please enter your password',
  476. '请输入验证码':'please enter verification code',
  477. '立即登录':'log in immediately',
  478. //src/pages/sysset/agreement/lists.js
  479. '时间':'time',
  480. //src/pages/sysset/authority/group.js
  481. '权限组名称':'Rights group name',
  482. '最多输入10个字':'Up to 10 characters',
  483. '请输入权限组名称':'Enter a permission group name',
  484. '请输入权限组描述':'Please enter a description permission group',
  485. '权限组描述':'Description permission group',
  486. '授权':'Authorization',
  487. '编辑权限组':'Editing rights group',
  488. '添加权限组':'Add rights group',
  489. '权限组管理':'Rights group management',
  490. '新增权限组':'New rights group',
  491. //src/pages/sysset/authority/member.js
  492. '账号':'account number',
  493. '请输入账号':'please enter account',
  494. '最多10个字符':'Up to 10 characters',
  495. '登录密码':'login password',
  496. '请设置6-20位的登录密码':'Please set 6-20 login password',
  497. '请设置登录密码':'Set Password',
  498. '确认密码需要与密码一致':'Confirm password needs to be consistent with the password',
  499. '请输入确认密码':'Please enter the confirmation code',
  500. '请输入邮箱':'please input your email',
  501. '权限组':'Rights Groups',
  502. '请选择权限组':'Select the permission group',
  503. '所属权限组':'Your rights group',
  504. '全部权限':'All rights',
  505. '冻结':'freeze',
  506. '解冻':'thaw',
  507. '重置密码':'reset Password',
  508. '编辑操作员':'Edit Operator',
  509. '添加操作员':'Add operator',
  510. '操作员管理':'Operator management',
  511. '新增操作员':'New operator',
  512. //src/pages/sysset/authority/operate.js
  513. '请输入操作行为':'Please enter the operational behavior',
  514. '结束时间':'End Time',
  515. '操作时间':'Operation time',
  516. '请先选中数据':'Please select the data',
  517. '批量删除':'batch deletion',
  518. //src/pages/sysset/base/order.js
  519. '订单导出配置':'Orders Export Configuration',
  520. //src/pages/sysset/express/add_transport.js
  521. '快递设置':'Express settings',
  522. '模板名称':'Template name',
  523. '请输入模板名称':'Enter a template name',
  524. '是否包邮':'Whether shipping',
  525. '计价方式':'Pricing',
  526. '请选择计价方式':'Please select pricing',
  527. '按件':'Press members',
  528. '按重量':'By weight',
  529. '按体积':'By volume',
  530. '全国':'National',
  531. //src/pages/sysset/express/express.js
  532. '丰桥配置':'Toyohashi configuration',
  533. //src/pages/sysset/express/express_lists.js
  534. '物流公司网址':'Logistics company website',
  535. '请输入物流公司网址':'Please enter the logistics company website',
  536. '网址(仅供参考)':'URL (for reference only)',
  537. '请输入物流公司名称':'Please enter the logistics company name',
  538. '新增物流公司':'New logistics company',
  539. //src/pages/sysset/express/transport.js
  540. '计费方式':'Billing',
  541. '默认模版':'The default template',
  542. '复制':'copy',
  543. '运费模板':'Freight template',
  544. '新增运费模板':'New freight template',
  545. //src/pages/sysset/home/basic.js
  546. '金额(元)':'Amount (yuan)',
  547. //src/pages/sysset/notice_set/email.js
  548. '请输入测试邮件':'Please enter a test message',
  549. //src/pages/sysset/notice_set/member_msg_tpl_list.js
  550. '是否开启':'Whether to open',
  551. '模板内容':'Template content',
  552. '请输入模板内容':'Enter the template content',
  553. '最多输入100个字':', Up to 100 characters',
  554. '邮件标题':'mail title',
  555. '请输入邮件标题':'Please enter the e-mail heading',
  556. '邮件内容':'content of email',
  557. '微信模板ID':'Micro-channel template ID',
  558. '请输入微信模板ID':'Please enter a micro-channel template ID',
  559. '站内信':'Station letter',
  560. '模板描述':'Template description',
  561. '邮件':'mail',
  562. '短信':'SMS',
  563. '编辑消息模板':'Edit Message Templates',
  564. //src/pages/sysset/notice_set/msg_tpl.js
  565. '消息模板管理':'Message template management',
  566. '会员消息模板':'Member News template',
  567. '商户消息模板':'Merchant message template',
  568. //src/pages/point/bill/detail.js
  569. '结算单号:':'Single Number Billing:',
  570. '结算起止时间:':'Billing Duration:',
  571. '店铺名称:':'Store Name:',
  572. '店铺联系人:':'Supplier Contact:',
  573. '店铺联系电话:':'Store Contact phone:',
  574. '生成结算单':'Generating statements',
  575. '店铺确认':'Shop confirming',
  576. '平台审核':'Platform audit',
  577. '结算完成':'Complete settlement',
  578. '打款备注:':'Play money Note:',
  579. '结算凭证:':'Settlement documents:',
  580. '打款备注':'Play money notes',
  581. '请输入汇款单号、支付方式等付款凭证信息,最多输入200字':'Please enter the remittance number, proof of payment such as payment information, enter up to 200 characters',
  582. '打款凭证':'Play money vouchers',
  583. '兑换现金':'Redeemable for cash',
  584. '兑换积分':'Redeem points',
  585. '兑换日期':'Redemption date',
  586. '完成日期':'Completion Date',
  587. '确认打款':'Confirm play money',
  588. '结算详情':'Billing details',
  589. '返回上级页面':'Return to the previous page',
  590. '确认审核通过该结算单?':'Audit confirmed by the statements?',
  591. '等待店铺确认':'Shop waiting for confirmation',
  592. '等待平台审核':'Platform waiting for review',
  593. '审核结算单':'Audit statements',
  594. '等待平台结算':'Platform waiting for settlement',
  595. '现金使用金额¥':'Use cash amount ¥',
  596. '结算金额¥':'Settlement Amount ¥',
  597. '积分抵扣金额¥':'Points deductions ¥',
  598. '结算凭证':'Settlement documents',
  599. '结算信息':'Billing information',
  600. '结算订单信息':'Billing order information',
  601. //src/pages/point/bill/lists.js
  602. '请输入店铺名称':'Please enter the shop name',
  603. '结算单号':'No statements',
  604. '请输入结算单号':'Please enter the number of statements',
  605. '结算状态':'Billing status',
  606. '请选择结算状态':'Please select a billing status',
  607. '待确认':'to be confirmed',
  608. '待审核':'Pending',
  609. '待结算':'To be settled',
  610. '积分':'integral',
  611. '出账时间':'Account the time',
  612. '结算时间':'Settlement time',
  613. '¥':'¥',
  614. '应结金额(元)':'Junction should amount ($)',
  615. '结算账单管理':'Settling the bill management',
  616. '温馨提示':'Tips',
  617. '计算公式:结算金额 = 现金使用金额 + 积分抵扣金额':'The formula: Cash Settlement Amount = Amount + integral use of deductions',
  618. ' 结算流程:生成结算单 > 店铺确认 > 平台审核 > 结算完成':'Settlement Process: Generate statements> Shops confirm> Platform Audit> complete settlement',
  619. //src/pages/point/goods/goods_check_lists.js
  620. '商品规格':'Product specifications',
  621. '拒绝理由':'Grounds for refusal',
  622. '请选择拒绝理由':'Please select the reason for rejection',
  623. '备注':'Remarks',
  624. '请输入审核拒绝理由':'Please enter the Audit grounds for refusal',
  625. '最多输入100字':'Up to 100 input characters',
  626. '请输入商品名称':'Please enter the product name',
  627. '发布时间':'release time',
  628. '审核状态':'Approval Status',
  629. '请选择审核状态':'Please select the approval status',
  630. '审核拒绝':'Audit refuse',
  631. '商品信息':'Product information',
  632. '商品价格':'Commodity prices',
  633. '商品库存':'Commodity stocks',
  634. ' + ¥':'+ ¥',
  635. '确认审核通过该商品吗?':'Confirm approval for this article?',
  636. '审核拒绝理由':'Examination of grounds for refusal',
  637. '确认审核通过选中的商品吗?':'Audit confirmed by checking the merchandise it?',
  638. //src/pages/point/goods/goods_lists.js
  639. '商品只有在审核通过才能正常出售。商品是否需审核可以在“商品设置”中配置。':'Only the sale of goods in the audit by the normal order. Whether the goods to be reviewed can be configured in the "Product Settings".',
  640. '违规下架或审核失败的商品,商家只能重新编辑后才能够进行出售。':'Merchandise off the shelf or violations of audit failure, only to re-edit after business can be sold.',
  641. '在“商品设置”中,开启商品审核后,商家发布、编辑商品需要管理员审核才能正常销售。':'In the "Product Setup", review product after opening, business publishing, editor of goods requires the administrator to review the normal sales.',
  642. '审核状态分为:审核通过、等待审核和审核失败三种状态,审核失败后请详细填写审核失败原因方便商家修改。':'Approval status is divided into: approved, pending review and audit failure three states, please fill out the reason for the failure to facilitate business audit modified audit failures.',
  643. '商品管理':'Commodity Management',
  644. '在售列表':'In the sale list',
  645. '待审核商品':'Pending commodity',
  646. '仓库中商品':'Warehouse goods',
  647. '违规下架商品':'Illegal merchandise off the shelf',
  648. //src/pages/point/goods/goods_online_lists.js
  649. '下架理由':'The shelf reason',
  650. '请选择下架理由':'Please select the reason for the shelf',
  651. '请输入违规下架理由':'Please enter a violation shelves reason',
  652. '所属店铺:':'Owned shop:',
  653. '批量违规下架':'Batch violation shelf',
  654. //src/pages/point/goods/goods_storage_lists.js
  655. '违规下架':'Violation shelf',
  656. '所属店铺':'Their stores',
  657. //src/pages/point/mdiy/edit_diy_page.js
  658. '客服电话:':'consumer hotline:',
  659. '华阳集团短视频':'Business Alliance of short video',
  660. '华阳集团直播':'Commercial Union of live',
  661. '首页':'Home',
  662. '顶部分类设置':'Top classification settings',
  663. '保存装修':'Save decoration',
  664. //src/pages/point/mdiy/home.js
  665. '页面名称':'Page name',
  666. 'Android':'Android',
  667. 'IOS':'IOS',
  668. '微商城':'Micro Mall',
  669. '微信小程序':'Micro-channel applet',
  670. '请严格根据提示要求上传规定尺寸的图片,图片不可以超过1M,否则影响页面加载效果':'Please strictly in accordance with the provisions prompted to upload the picture size, the picture can not be more than 1M, otherwise affect page load performance',
  671. '开屏图':'FIG opening screen',
  672. '添加首页装修':'Add Home decoration',
  673. '编辑首页装修':'Edit Home decoration',
  674. '编辑开屏图':'FIG open edit screen',
  675. '设置开屏图':'FIG open setting screen',
  676. '首页装修':'Home decoration',
  677. '新建页面':'New Page',
  678. //src/pages/point/order/order_detail.js
  679. '单位名称:':'company name:',
  680. '税号:':'Tax ID:',
  681. '收票人:':'Ticket collector:',
  682. '收票人电话:':'Ticket collector at the phone:',
  683. '收票地址:':'Invoice address:',
  684. '会员名称:':'Member Name:',
  685. '收货人:':'Receiver:',
  686. '收货人手机号:':'Consignee phone number:',
  687. '收货地址:':'Shipping address:',
  688. '订单号:':'order number:',
  689. '支付方式:':'payment method:',
  690. '订单备注:':'order notes:',
  691. '单价(元)':'Unit (RMB)',
  692. '数量':'The number',
  693. '提交订单':'Submit Order',
  694. '订单取消':'cancel the order',
  695. '付款成功':'Payment successful',
  696. '商品发货':'Delivery of goods',
  697. '订单完成':'Order completed',
  698. '*取消订单后,订单将自动关闭;':'* After canceled orders, the order will automatically shut down;',
  699. '取消订单':'cancel order',
  700. '取消理由':'Cancellation reason',
  701. '请选择取消理由':'Select Cancel grounds',
  702. '请输入取消备注,最多50个字':'Please enter Cancel notes, up to 50 words',
  703. '取消备注':'Cancel Remarks',
  704. '物流信息':'Logistics information',
  705. '商品单价(元)':'Commodity price (RMB)',
  706. '商品数量':'Number of Products',
  707. '订单详情':'order details',
  708. '订单已取消':'Order has been canceled',
  709. '订单已提交,等待买家付款':'Orders have been submitted, waiting for buyers payment',
  710. '付款成功,等待卖家发货':'Payment is successful, wait for the seller shipped',
  711. '商品已发出,等待买家收货':'Delivery has occurred, wait for the buyer receiving',
  712. '查看物流':'View Logistics',
  713. '买家已确认收货,订单完成':'The buyer has confirmed receipt, order fulfillment',
  714. '发票信息':'Invoice Information',
  715. '收货人信息':'Recipient information',
  716. '订单信息':'Order information',
  717. '* 请仔细填写物流公司及快递单号,发货后24小时内仅支持1次更正,逾期不可修改;':'* Please fill logistics companies and express a single number, within 24 hours after delivery support only once corrected, overdue can not be modified;',
  718. '收货人姓名':'Consignee name',
  719. '收货人电话':'Receiver Phone',
  720. '收货人地址':'recipient address',
  721. '发货方式':'Delivery',
  722. '请选择发货方式':'Please select shipping methods',
  723. '物流发货':'Logistics delivery',
  724. '请选择物流公司':'Please select the logistics company',
  725. '无需物流':'Without logistics',
  726. '请输入物流单号':'Please single input stream number',
  727. '快递单号':'tracking number',
  728. '联系人':'Contacts',
  729. '请输入联系人':'Please enter the contact',
  730. '联系方式':'contact details',
  731. '请输入联系方式':'Please enter the contact details',
  732. //src/pages/point/order/order_lists.js
  733. '请输入会员名称':'Please Enter your username',
  734. '会员名称':'Member Name',
  735. '兑换时间':'Exchange time',
  736. '订单导出':'Export orders',
  737. '实付金额':'The amount actually paid',
  738. '付款方式':'payment method',
  739. '订单状态':'Order Status',
  740. '店铺:':'Shop:',
  741. '店铺':'Shop',
  742. '兑换时间:':'Exchange Time:',
  743. '¥':'¥',
  744. //src/pages/point/label.js
  745. '新增':'New',
  746. '设置广告':'Set ad',
  747. '标签名称':'Label name',
  748. '最多输入4个字':'Enter up to four characters',
  749. '请输入标签名称':'Please enter a label name',
  750. '二级标签图':'FIG two labels',
  751. '添加子标签':'Add sublabel',
  752. '上级标签':'Superior label',
  753. '请选择上级标签':'Select the parent tag',
  754. '二级标签图片':'Two tag image',
  755. '最多上传8张图片,每张图片不可以超过1M':'Upload up to 8 pictures, each picture can not exceed 1M',
  756. '编辑广告':'Edit ad',
  757. '添加积分商城标签':'Add Points Mall label',
  758. '编辑积分标签':'Edit integral label',
  759. '请上传二级标签图片':'Please upload two pictures tag',
  760. '标签管理':'Label Management',
  761. '新增标签':'New label',
  762. //src/pages/point/label.js
  763. '立即更新商品数据':'Update Now product data',
  764. //src/pages/pcdecorate/home/adv_04.js
  765. '请点击选择颜色':'Click to select color',
  766. '请填写标题':'Please fill in the title',
  767. //src/pages/pcdecorate/home/adv_05.js
  768. '最多输入8个字':'Up to eight characters',
  769. //src/pages/pcdecorate/home/adv_06.js
  770. '编辑四栏广告':'Edit ad four columns',
  771. '此处添加【302*高度不限】图片':'Added here * [302] Any image height',
  772. //src/pages/pcdecorate/home/adv_07.js
  773. '编辑三栏广告':'Edit three-column ads',
  774. '此处添加【403*高度不限】图片':'* Added here [403] picture height limitation',
  775. //src/pages/pcdecorate/home/adv_08.js
  776. '编辑五栏广告':'Edited five columns advertising',
  777. '此处添加【242*高度不限】图片':'Added here * [242*Any image height]',
  778. //src/pages/pcdecorate/home/adv_09.js
  779. '标题颜色':'Title Color',
  780. '请点击选择标题颜色':'Click on the title to select colors',
  781. '请点击选择背景色':'Click to select background color',
  782. '背景色':'Background color',
  783. '请输入标题':'Please enter a title',
  784. '左侧标题设置':'Left of the title set',
  785. '请不要超过5个字':'Do not more than five words',
  786. '此处添加【187*123】图片':'Add here [187 * 123] picture',
  787. '中间标题设置':'The title intermediate settings',
  788. '中间图片设置':'Setting the intermediate image',
  789. '此处添加【376*123】图片':'Add here [376 * 123] picture',
  790. '此处添加【124*185】图片':'Add here [124 * 185] picture',
  791. //src/pages/pcdecorate/home/adv_10.js
  792. '顶部单图设置':'FIG single set top',
  793. '中间4图设置':'FIG disposed intermediate 4',
  794. '此处添加【1210*30】图片':'Add here [30] * 1210 picture',
  795. '此处添加【295*220】图片':'Add here [295 * 220] picture',
  796. '底部5图设置':'FIG 5 arranged at the bottom',
  797. '此处添加【234*130】图片':'Here to add 234 * [130] picture',
  798. //src/pages/pcdecorate/home/adv_11.js
  799. '右侧上部图片设置':'An upper right picture set',
  800. '右侧下部图片设置':'Lower right picture settings',
  801. '此处添加【400*170】图片':'Add here [400 * 170] picture',
  802. '此处添加【400*350】图片':'Add here [400 * 350] picture',
  803. //src/pages/pcdecorate/home/adv_12.js
  804. '此处添加【396*450】图片':'Add here [396 * 450] picture',
  805. '此处添加【183*210】图片':'Add here [183 * 210] picture',
  806. '标题不能为空,最多输入5个字':'The title can not be empty, enter up to five characters',
  807. '子标题不能为空,最多输入10个字':'The subtitle can not be empty, enter up to 10 characters',
  808. '添加标题':'Add the title',
  809. '添加子标题':'Add subtitle',
  810. '此处添加【376*180】图片':'Add here [376 * 180] picture',
  811. '此处添加【183*180】图片':'Add here [183 * 180] picture',
  812. //src/pages/pcdecorate/home/adv_13.js
  813. '标题不能为空,最多输入5个字,子标题不能为空,最多输入10个字':'The title can not be empty, enter up to five words, the subtitle can not be empty, enter up to 10 characters',
  814. '左侧上部图片设置':'Upper left picture set',
  815. '左侧下部图片设置':'The lower left side of the picture settings',
  816. '中间上部图片设置':'Upper intermediate image settings',
  817. '中间下部图片设置':'Lower intermediate image settings',
  818. //src/pages/pcdecorate/home/adv_19.js
  819. '最多输入5个字':'Enter up to 5 characters',
  820. '标题tab设置':'Title tab settings',
  821. '为达到页面效果,建议上传4张 172*106大小的图片,标题名称不能为空,最多输入4个字':'In order to achieve the results page, we recommend uploading a 172 * 106 size image 4, a title can not be empty, enter up to four characters',
  822. '添加内容':'Add Content',
  823. '中间左侧图片设置':'Middle left picture set',
  824. '图片标题':'Image Title',
  825. '图片子标题':'Pictures subtitle',
  826. '此处添加【186*340】图片':'Add here [186 * 340] picture',
  827. '此处添加【172*106】图片':'Add here [172 * 106] picture',
  828. '底部图片设置':'The bottom of the picture settings',
  829. '此处添加【187*120】图片':'Add here [187 * 120] picture',
  830. //src/pages/pcdecorate/home/edit_diy_page.js
  831. '保 存':'Save',
  832. //src/pages/pcdecorate/home/edit_diy_page_head.js
  833. '您好,欢迎来到':'Hello, welcome to',
  834. '登录':'log in',
  835. '注册':'registered',
  836. '商城首页':'Mall Home',
  837. '我的订单':'My Order',
  838. '待支付订单':'Orders to be paid',
  839. '待评价订单':'Orders to be evaluated',
  840. '商品收藏':'Collection of goods',
  841. '店铺收藏':'shop collection',
  842. '我的足迹':'My Tracks',
  843. '我的优惠券':'my discount coupon',
  844. '我的余额':'My balance',
  845. '个人中心':'Individual centers',
  846. '我的收藏':'my collection',
  847. '我的账户':'my account',
  848. '服务中心':'Service Center',
  849. '我的购物车':'my shopping cart',
  850. '产品分类':'product category',
  851. //src/pages/pcdecorate/home/footer.js
  852. '编辑页脚':'Edit Footer',
  853. '标题长度不能大于20':'Title not be greater than 20',
  854. '添加页脚':'Add a footer',
  855. '页脚管理':'Footer management',
  856. '新增页脚':'New footer',
  857. '请输入名称':'Please enter the name',
  858. //src/pages/pcdecorate/home/instance_template_lists.js
  859. '预览':'Preview',
  860. //src/pages/pcdecorate/home/nav.js
  861. '最多6个字':'Up to six characters',
  862. '请输入链接地址':'Please enter the link address',
  863. '请输入关键字':'Please enter key words',
  864. '请输入分类名称':'Please enter the product name',
  865. '请输入专题名称':'Enter a topic name',
  866. '编辑导航':'Edit navigation',
  867. //src/pages/mdecorate/edit_diy_page.js
  868. '顶部分类':'Top Category',
  869. //src/pages/mdecorate/information.js
  870. '文章首页':'Article Home',
  871. //src/pages/mdecorate/lists.js
  872. //src/pages/mdecorate/mcat.js
  873. '上传图片':'upload image',
  874. '设置分类广告':'Setting Classified Ads',
  875. '二级分类图片':'Two categories Pictures',
  876. '三级分类图片':'Three-tier classification picture',
  877. '建议上传160*160的图片':'We recommend uploading images of 160 * 160',
  878. '最多上传3张图片,每张图片不可以超过1M':'Recommendations upload up to three pictures, each picture can not exceed 1M picture',
  879. '编辑分类广告':'Edit classified ads.',
  880. '分类图片管理':'Category image management',
  881. //src/pages/mdecorate/topic_lists.js
  882. '添加专题装修':'Add Theme decoration',
  883. '编辑专题装修':'Editing topics decoration',
  884. '专题装修':'Thematic decoration',
  885. //src/pages/Exception/trigger_exception.js
  886. '触发401':'Trigger 401',
  887. '触发403':'Trigger 403',
  888. '触发500':'Trigger 500',
  889. '触发404':'Trigger 404',
  890. //src/pages/manage/store/apply_category_list.js
  891. '店主账号':'The owner of the account',
  892. '申请类目':'Application category',
  893. '确认审核通过该条申请吗?':'Confirmed by the audit clause apply?',
  894. //src/pages/manage/store/apply_store_detail.js
  895. '入驻类型':'Settled type',
  896. '所在地':'location',
  897. '联系人手机号':'Contact phone number',
  898. '身份证正面':'ID card front',
  899. '身份证反面':'ID card back',
  900. '营业执照':'business license',
  901. '开店时长':'Long shop',
  902. '一级类目':'A category',
  903. '二级类目':'Two categories',
  904. '三级类目':'Three categories',
  905. '佣金比例':'Commission rate',
  906. '佣金比例在0~1之间':'Commission rate between 0 and 1',
  907. '请输入审核拒绝理由,最多100字':'Please enter a reason for rejection audit, up to 100 words',
  908. '补充认证资质':'Supplementary certification and qualification',
  909. '年':'year',
  910. '入驻店铺审核':'Audit settled shop',
  911. '公司联系人信息':'Company contact information',
  912. '店铺信息':'Store Information',
  913. '营业执照信息':'Business License Information',
  914. '法人身份信息':'Corporate identity',
  915. '身份证信息':'ID card information',
  916. '补充认证信息':'Supplementary authentication information',
  917. '店铺经营信息':'Shop operators information',
  918. '经营类目':'Business category',
  919. '批量设置':'Batch settings',
  920. '确定审核通过该店铺?':'The audit determined by the shop?',
  921. //src/pages/manage/store/apply_store_list.js
  922. '请输入店主账号':'Please enter the account owner',
  923. '请选择店铺等级':'Please select a store level',
  924. '联系电话':'contact number',
  925. //src/pages/manage/store/edit_settled_store.js
  926. '请选择店铺所在地':'Please select a store location',
  927. '请输入店铺详细地址,最多30字':'Please enter a shop full address, up to 30 words',
  928. '请输入详细地址':'Enter Address',
  929. '请输入联系人姓名,最多6个字':'Please enter the contact name, up to six characters',
  930. '请输入联系人姓名':'Please enter the contact name',
  931. '请输入联系人手机号':'Please enter the contact phone number',
  932. '支持JPG/PNG,大小不超过20M':'Support JPG / PNG, the size of no more than 20M',
  933. '补充认证一':'A supplemental certification',
  934. '补充认证二':'Supplementary certification two',
  935. '补充认证三':'Supplementary certification three',
  936. '请选择开店时长':'Please select the duration shop',
  937. '结算周期':'Billing cycle',
  938. '按月结算':'Monthly billing',
  939. '按周结算':'Weekly settlement',
  940. '设置该商家每周几进行结算,可多选,全部选中则为按天结算。':'Set a few of the business weekly settlement, can be selected, Select All was settled by the day.',
  941. '请选择结算周期':'Please select a billing cycle',
  942. '设置该商家每月几号进行结算,可多选,若当月没有设置的日期则该日不进行结算。':'Setting the business day of the month the settlement, can be selected, if the date is not set in the month of May is not settled.',
  943. '请输入公司名称,最多20个字':'Please enter your company name, up to 20 characters',
  944. '请输入公司名称':'Please enter the company name',
  945. '请上传营业执照图片':'Please upload a business license picture',
  946. '请上传身份证正面图片':'Upload a picture ID card front',
  947. '请上传身份证反面图片':'Upload a picture ID card back',
  948. '编辑店铺信息':'Edit Store Information',
  949. '店铺结算信息':'Shop billing information',
  950. //src/pages/manage/store/grade_list.js
  951. '可推荐商品数':'We can recommend several commodities',
  952. '请输入可推荐商品数':'Please enter the number of items can be recommended',
  953. '可发布商品数':'Number of items can be published',
  954. '请输入可发布商品数':'Please enter the number of items can be published',
  955. '申请说明,在会员开通或升级店铺时将显示在前台,最多100字':'Application Instructions, when members of the opening or upgrade shop will be displayed in the foreground, a maximum of 100 words',
  956. '收费标准(每年)':'Fees (per year)',
  957. '新增等级':'New Level',
  958. //src/pages/manage/store/own_list.js
  959. '店铺状态':'Shop status',
  960. '店铺联系人':'Supplier Contact',
  961. '请选择店铺状态':'Please select a store status',
  962. '请输入店铺联系人':'Please enter Supplier Contact',
  963. '请输入手机号':'Please enter phone number',
  964. '店铺地址':'shop address',
  965. '请选择店铺地址':'Please select a store address',
  966. '店铺详细地址':'Store Address',
  967. '最多输入50字':'Up to 50 input characters',
  968. '店铺账号':'Store account',
  969. '最多输入15个字':'Input up to 15 characters',
  970. '请输入店铺账号':'Please enter a shop account',
  971. '请设置6~20位英文、数字或符号组成的密码':"Please set a password with 6 to 20 characters in letter, numbers or symbols",
  972. '请输入登录密码':'Please enter your password',
  973. '结算方式':'Settlement',
  974. '编辑自营店铺':'Edit own shops',
  975. '新增自营店铺':'New self-shops',
  976. '自营店铺':'Self-shops',
  977. //src/pages/manage/store/settle_store_list.js
  978. '入驻店铺管理':'Settled in store management',
  979. '入驻店铺列表':'Settled Store List',
  980. '临效期店铺':'Pro shop limitation period',
  981. '入驻审核':'Audit settled',
  982. '续签管理':'Renewal management',
  983. '经营类目审核':'Category management audit',
  984. //src/pages/manage/store/settled_store_detail.js
  985. '已付年费':'Paid an annual fee',
  986. '元':'yuan',
  987. '系统默认':'system default',
  988. //src/pages/manage/store/settled_store_list_data.js
  989. '开店时间':'Shop time',
  990. '有效期':'Valid',
  991. '设置结算周期':'Setting billing cycle',
  992. //src/pages/manage/store/settled_store_list_will_expired_data.js
  993. //src/pages/manage/store/settled_store_renew_list.js
  994. '续签等级':'Renewal grade',
  995. '收费标准(元/年)':'Fees (RMB / year)',
  996. '续签时长(年)':"Long (years)'upon renewal",
  997. '应付金额(元)':'Amount payable (dollars)',
  998. '续签起止有效期':'Renewal period beginning and ending',
  999. '店铺等级发生变化时,续签的店铺等级会在新的签约有效期内生效':'When the store level changes, the renewal of Shop Class will take effect in the new contract period',
  1000. //src/pages/busset/svideo/view_video_comments.js --busset
  1001. '评论人':'Commentator',
  1002. '评论人名称':'Review by name',
  1003. '评论内容':'comments',
  1004. '评论时间':'Comment time',
  1005. '获赞数':'Chan won several',
  1006. '查看回复':'Reply View',
  1007. '的评论':'the comment of',
  1008. //src/pages/busset/svideo/view_theme_video.js
  1009. '禁止发布':'Prohibited to publish',
  1010. '视频名称':'Video name',
  1011. '请输入视频名称':'Please enter the video name',
  1012. '封面':'Cover',
  1013. '视频简介':'Video Profile',
  1014. '删除后不可恢复,是否确定删除?':'When you delete can not be restored. Are you sure to delete?',
  1015. '推荐主题视频列表':'Recommended theme video list',
  1016. //src/pages/busset/svideo/video_manage.js
  1017. '视频管理':'Video management',
  1018. '视频列表':'Video list',
  1019. '视频审核':'Video review',
  1020. //src/pages/busset/svideo/video_list.js
  1021. '禁止理由':'Prohibited grounds',
  1022. '请输入禁止理由,最多输入150字':'Please enter the prohibited grounds, enter up to 150 characters',
  1023. '请输入禁止理由':'Please enter the prohibited grounds',
  1024. '会员昵称':'Members nickname',
  1025. '请输入会员昵称':'Please enter your membership nickname',
  1026. '视频状态':'Video Status',
  1027. '请选择视频状态':'Please select the video status',
  1028. '评论数:':'Reviews:',
  1029. '商品数:':'The number of items:',
  1030. '播放数:':'Views:',
  1031. '点赞数:':'Like Points:',
  1032. '视频简介:':'Video Description:',
  1033. '查看商品':'View product',
  1034. '禁止显示':'Suppress',
  1035. '确定解除禁止?':'OK unban?',
  1036. '解除禁止':'Unban',
  1037. //src/pages/busset/svideo/video_goods.js
  1038. '绑定的商品':'Binding of goods',
  1039. //src/pages/busset/svideo/video_check_lists.js
  1040. '视频内容':'Video content',
  1041. '商品数':'Number of items',
  1042. '审核':'Audit',
  1043. '查看详情':'Commodity prices',
  1044. //src/pages/manage/product/search_attr.js
  1045. '最多可添加20个,每个属性值最多可以输入10个字,且不可重复':'Can add up to 20, each attribute value may be up to 10 characters, and can not be repeated',
  1046. '请输入属性名称':'Please enter the attribute name',
  1047. '添加属性值':'Adding an Attribute Value',
  1048. '属性值最多可添加20个~':'Attribute value can be added up to 20 ~',
  1049. '属性值不可以重复~':'Attribute values ​​can not repeat ~',
  1050. '属性值必填~':'Required attribute value ~',
  1051. //src/pages/manage/product/goods_storage_lists.js
  1052. '实际/虚拟销量':'Real / virtual sales',
  1053. //src/pages/manage/product/goods_setting.js
  1054. '商品设置':'Product settings',
  1055. //src/pages/manage/product/goods_offline_lists.js
  1056. '商品价格:':'Price:',
  1057. '违规原因':'Illegal reason:',
  1058. //src/pages/manage/product/goods_list.js
  1059. '商品只有在审核通过才能正常出售。商品是否需审核可以在“商品设置”中配置。违规下架或审核失败的商品,商家只能重新编辑后才能够进行出售。':'Only the sale of goods in the audit by the normal order. Whether the goods to be reviewed can be configured in the "Product Settings". Merchandise off the shelf or violations of audit failure, only to re-edit after business can be sold.',
  1060. '在“商品设置”中,开启商品审核后,商家发布、编辑商品需要管理员审核才能正常销售。审核状态分为:审核通过、等待审核和审核失败三种状态,审核失败后请详细填写审核失败原因方便商家修改。':'In the "Product Setup", review product after opening, business publishing, editor of goods requires the administrator to review the normal sales. Approval status is divided into: approved, pending review and audit failure three states, please fill out the reason for the failure to facilitate business audit modified audit failures.',
  1061. //src\pages\bussset\bill\detail.js
  1062. '订单金额(元)':'Order Amount (yuan)',
  1063. '佣金(元)':'Commission (RMB)',
  1064. '退还佣金(元)':'Refund commission (RMB)',
  1065. '退单金额(元)':'Chargeback amount ($)',
  1066. '积分抵扣金额':'Points deductions',
  1067. '下单日期':'Order Date',
  1068. '结算金额':'Settlement Amount',
  1069. '订单金额¥':'Order amount ¥',
  1070. '平台佣金¥':'Platform commission ¥',
  1071. '退还佣金':'Refund of commission',
  1072. '退单金额¥':'Chargeback amount ¥',
  1073. '平台优惠券¥':'Platform coupon ¥',
  1074. //src\pages\bussset\bill\lists.js
  1075. '平台优惠券':'Platform coupons',
  1076. '积分抵扣金额(元)':'Points deductions (dollars)',
  1077. '结算单导出':'Derived statements',
  1078. '计算公式:结算金额 = 订单金额 - 平台佣金 + 退还佣金 - 退单金额 + 平台优惠券 + 积分抵现金额`, ` 结算流程:生成结算单 > 店铺确认 > 平台审核 > 结算完成':'The formula: Settlement Amount = order amount - Platform commission + refundable commission - Chargeback Amount + platform coupon + points against the amount of cash `` settlement process: generating statements> Shops confirm> Platform Audit> Billing Complete' ,
  1079. //src\pages\bussset\infomation\lists.js
  1080. '通知类型':'Notification type',
  1081. '请选择通知类型':'Please select the type of notification',
  1082. '通知状态':'Notification status',
  1083. '请选择通知状态':'Please select the notification status',
  1084. '未读':'unread',
  1085. '已读':'Have read',
  1086. '通知时间':'Notification time',
  1087. '确认删除选中的商品吗?':'Confirm delete the selected merchandise it?',
  1088. //src\pages\bussset\live\author_manage.js
  1089. '禁止直播':'Ban live',
  1090. '作者昵称':'On the nickname',
  1091. '直播状态':'Live status',
  1092. '请选择直播状态':'Select Live status',
  1093. '正常':'normal',
  1094. '禁止':'Prohibited',
  1095. '卖家账号:':'Seller Account:',
  1096. '直播次数:':'Live times:',
  1097. '关注数:':'Number of concern:',
  1098. '粉丝数:':'Number of fans:',
  1099. '头像':'Avatar',
  1100. '简介':'Introduction',
  1101. '主播管理':'Anchor Management',
  1102. //src\pages\bussset\live\label.js
  1103. '最多输入6个字':'Enter up to six words',
  1104. '编辑直播标签':'Edit Live label',
  1105. '新增直播标签':'New Live label',
  1106. //src\pages\bussset\live\live_goods.js
  1107. '商品列表':'Product List',
  1108. //src\pages\bussset\live\live_list.js
  1109. '结束理由':'The end of the grounds',
  1110. '请输入结束理由,最多输入150字':'Please enter the end of the grounds, enter up to 150 characters',
  1111. '请输入结束理由':'Please enter the end of reason',
  1112. '直播名称':'Live name',
  1113. '请输入直播名称':'Please enter the name Live',
  1114. '请输入作者昵称':'Please enter the nickname of',
  1115. '卖家账号':'Seller account',
  1116. '请输入卖家账号':'Please enter seller account',
  1117. '所属标签':'Owned label',
  1118. '请选择所属标签':'Please select your label',
  1119. '推荐状态':'Recommended status',
  1120. '请选择推荐状态':'Please select the recommended state',
  1121. '推荐':'recommend',
  1122. '不推荐':'Not recommended',
  1123. '观看数:':'Watch number:',
  1124. '人气数:':'Popularity Number:',
  1125. '结束':'end',
  1126. //src\pages\bussset\live\live_manage.js
  1127. '直播管理':'Live management',
  1128. '直播列表':'Live list',
  1129. '待直播列表':'To be broadcast list',
  1130. '回放列表':'Playback list',
  1131. //src\pages\bussset\live\replay_list.js
  1132. '直播时长:':'Long live:',
  1133. '禁止播放理由:':'Playback prohibited reason:',
  1134. '直播时间':'Live time',
  1135. '查看回放':'View Playback',
  1136. '禁止播放':'Playback prohibited',
  1137. //src\pages\bussset\live\setting.js
  1138. '直播开关':'Broadcast switch',
  1139. '绑定商品数量':'Binding quantity',
  1140. '直播间公告':'Studio announcement',
  1141. '直播设置':'Live Set',
  1142. //src\pages\bussset\promotion\coupon\add_coupon.js
  1143. '商品价格(¥)':'Commodity price (¥)',
  1144. '选择商品(最少选择1个)':'Selected item (select at least one)',
  1145. '发布优惠券':'Posted coupons',
  1146. '优惠券基本信息':'Coupons basic information',
  1147. '优惠券名称':'Coupons name',
  1148. '最多输入20个字':'A maximum of 20 characters',
  1149. '请输入优惠券名称':'Please enter the coupon name',
  1150. '发放总量':'Total issuances',
  1151. '最多100000000张,修改优惠券总量时只能增加不能减少,请谨慎设置':'Up to 100 million, while the total amount of modifying coupon can only increase not decrease, wary of setting',
  1152. '请输入发放总量':'Enter the total amount paid',
  1153. '与店铺优惠券叠加':'And the store coupon overlay',
  1154. '允许':'allow',
  1155. '不允许':'Not allowed',
  1156. '适用商品':'Applicable commodity',
  1157. '全部商品可用':'All available commodity',
  1158. '指定商品可用':'Designated goods available',
  1159. '指定分类可用':'Specified category Available',
  1160. '已选择商品':'Selected commodity',
  1161. '重新选择':'Re-select',
  1162. '活动时间':'Activity time',
  1163. '请选择活动时间':'Please select Time',
  1164. '使用时间':'usage time',
  1165. '固定使用时间':'Fixed time',
  1166. '灵活使用时间':'Flexible use of time',
  1167. '设置固定使用时间':'Set a fixed time',
  1168. '请先设置固定使用时间':'Please set a fixed time',
  1169. '设置灵活使用时间':'Flexible set time',
  1170. '以天为单位':'In days',
  1171. '请输入灵活使用时间':'Please enter the flexible use of time',
  1172. '获取方式':'method of obtaining',
  1173. '选择“免费领取”类型则领取方式为用户在领券中心等处直接点击领取':'Select "receive a free" type of way for users to receive the ticket center, etc. in the neck just click to receive',
  1174. '选择“活动赠送”类型则在成功参与指定商城活动后系统自动赠送该券':'Select "campaign gift" type after the successful participation in the activities specified mall system automatically presented the coupons',
  1175. '免费领取':'Receive free',
  1176. '活动赠送':'Activities gift',
  1177. '使用门槛':'Use threshold',
  1178. '订单满多少元时可以使用此优惠券,0元代表无使用门槛':'You can use this coupon when the number of dollars on orders over $ 0 represents no use threshold',
  1179. '订单满':'Orders over',
  1180. '请输入使用门槛':'Please enter the threshold of using',
  1181. '优惠券类型':'Coupons type',
  1182. '满减券':'Full cut coupons',
  1183. '折扣券':'Discount coupons',
  1184. '随机金额券':'Random amount of coupons',
  1185. '优惠内容':'Offer content',
  1186. '减免':'Relief',
  1187. '请输入优惠内容':'Please enter your offer',
  1188. '输入90代表9折,85代表85折':'Input 90 representative of 10%, 15% 85 a',
  1189. '打':'hit',
  1190. '请输入折扣':'Please enter discount',
  1191. '折':'fold',
  1192. '请输入优惠金额':'Enter the discount amount',
  1193. '请输入最小值':'Enter the minimum',
  1194. '请输入最大值':'Enter the maximum value',
  1195. '优惠总金额':'The total amount of concessions',
  1196. '本次生成的随机金额优惠券的金额之和':'The generated random amount of money and coupons',
  1197. '请输入优惠总金额':'Enter the total amount of benefits',
  1198. '领取和使用规则':'Receive and use rules',
  1199. '每人限领次数':'The number of times each person may receive',
  1200. '每位会员限制领取的次数,0代表不限制次数':'Limit the number of times each member to receive, and 0 means unlimited number of times',
  1201. '请输入限制领取次数':'Please enter the number of restrictions to receive',
  1202. '优惠券模块暂未开启':'Coupons module yet open',
  1203. //src\pages\bussset\promotion\coupon\home.js
  1204. '优惠券管理':'Coupon management',
  1205. '优惠券设置':'Coupons Set',
  1206. //src\pages\bussset\promotion\coupon\member_receive_lists.js
  1207. '优惠券规格':'Coupon specification',
  1208. '未使用':'Unused',
  1209. '已使用':'Used',
  1210. '已过期':'expired',
  1211. '领取时间':'Receive time',
  1212. '使用类型':'The use type',
  1213. '领取详情':'Receive details',
  1214. //src\pages\bussset\promotion\coupon\store_coupon.js
  1215. '优惠券状态':'Coupons state',
  1216. '请选择优惠券状态':'Please select coupons state',
  1217. '未开始':'has not started',
  1218. '进行中':'processing',
  1219. '已失效':'expired',
  1220. '已结束':'over',
  1221. '请选择优惠券类型':'Please select the type of coupons',
  1222. '请选择获取方式':'Please select acquisition mode',
  1223. '已领取/已使用/发布数':'It has already received / used / published number',
  1224. '领取后':'After receiving',
  1225. '天内':'Days',
  1226. '活动状态':'Active status',
  1227. '失效':'Failure',
  1228. '编码':'coding',
  1229. '违规下架优惠券':'Violation shelf coupons',
  1230. '店铺优惠券':'Shop Coupons',
  1231. //src\pages\bussset\promotion\coupon\system_lists.js
  1232. '新建优惠券':'New coupons',
  1233. '优惠券活动未开启':'Coupon event is not open',
  1234. //src\pages\bussset\promotion\coupon\view_coupon.js
  1235. '优惠券详情':'Coupon details',
  1236. '优惠券所属类型':'Coupons their type',
  1237. '领券当日起天':'Collar coupon days beginning on the date',
  1238. '内可以使用':'You may be used within',
  1239. '内可以使用免费领取':'You can receive free use within',
  1240. '内可以使用活动赠送':'You can use the activities presented within',
  1241. '元时可以使用此优惠券':"You can use this coupon'Yuan",
  1242. '无使用门槛':'None threshold',
  1243. '满足使用门槛后可以减免':'After the meet the threshold may be exempt',
  1244. '满足使用门槛后可以享受':'After the meet the threshold can enjoy',
  1245. ',最多可以优惠':', Up concessions',
  1246. '在':'in',
  1247. '元范围内随机生成,总共不超过':'Membered randomly generated within a range, to no more than',
  1248. '每位会员限制领取':'Each member limit to receive',
  1249. '次':'Times',
  1250. '不限制次数':'Does not limit the number of times',
  1251. //src\pages\bussset\promotion\full\add_full_acm.js
  1252. '活动基本信息':'Basic information activities',
  1253. '活动名称':'Event name',
  1254. '请输入活动名称':'Please enter the event name',
  1255. '活动时间不可与其他活动重叠':'Time may not overlap with other activities',
  1256. '请输入活动时间':'Enter the Time',
  1257. '优惠门槛':'Discount threshold',
  1258. '以元为单位,设置使用该活动的最低金额':'In dollars as a unit, set up to use the minimum amount of activity',
  1259. '请输入优惠门槛':'Please enter the discount threshold',
  1260. '以元为单位,满足优惠门槛后可以享受优惠的金额':'In dollars as a unit, meet the threshold can enjoy preferential discount amount',
  1261. '减':'Less',
  1262. '送优惠券':'Send coupons',
  1263. '您已选择如下优惠券:':'You have chosen the following coupons:',
  1264. '优惠券':'coupon',
  1265. '送赠品':'Free gifts',
  1266. '您已选择如下赠品:':'You have selected the following gifts:',
  1267. '赠品':'Gifts',
  1268. //src\pages\bussset\promotion\full\add_full_ald.js
  1269. '级优惠':'Grade discount',
  1270. '优惠折扣,满足优惠门槛后可以享受该优惠折扣,例如:输入90代表9折':'Discounts, promotions satisfy the threshold can enjoy the discount, for example: an input 90 representative of 10%',
  1271. '添加下级优惠':'Add sub concessions',
  1272. '提醒:每级优惠不叠加,如:满足二级优惠条件后则不再享有一级优惠,最多支持5级优惠~':'Reminder: Shipping each stage is not superimposed, such as: the condition is not satisfied two toy Related a toy, Shipping supports up to 5 ~',
  1273. //src\pages\bussset\promotion\full\add_full_nld.js
  1274. '满N件折扣活动':'N full member discounts',
  1275. '以件为单位,设置使用该活动的最低件数':'In unit quantities, is provided using a minimum number of pieces of the event',
  1276. //src\pages\bussset\promotion\full\discount.js
  1277. '满优惠活动':'Full of promotions',
  1278. '满减':'Full cut',
  1279. '阶梯满减':'Step full cut',
  1280. '满N元折扣':'Full N Discount',
  1281. '满N件折扣':'Full discount of N',
  1282. //src\pages\bussset\promotion\full\full_acm_list.js
  1283. '满减规格':'Full cut specifications',
  1284. '请选择活动状态':'Please select active',
  1285. '待发布':'To be released',
  1286. //src\pages\bussset\promotion\full\full_ald_list.js
  1287. '满N元折扣规格':'Full specifications N Discount',
  1288. //src\pages\bussset\promotion\full\full_asm_list.js
  1289. '阶梯满减规格':'Ladder full cut specifications',
  1290. //src\pages\bussset\promotion\full\full_nld_list.js
  1291. '满N件折扣规格':'N full discount of specifications',
  1292. //src\pages\bussset\mpromotion\seckill\detail.js
  1293. '秒杀活动详情':'Spike event details',
  1294. '活动场次':'Activity sessions',
  1295. '商品审核':'Product review',
  1296. //src\pages\bussset\promotion\seckill\label_lists.js
  1297. '编辑秒杀标签':'Edit spike label',
  1298. '新增秒杀标签':'New spike label',
  1299. //src\pages\bussset\promotion\seckill\lists.js
  1300. '秒杀活动':'Spike activity',
  1301. '秒杀标签':'Spike label',
  1302. '秒杀设置':'Spike set',
  1303. //src\pages\bussset\promotion\seckill\seckill_check_goods_lists.js
  1304. '请输入拒绝理由':'Please enter a reason for rejection',
  1305. '请选审核状态':'Please select approval status',
  1306. '活动标签':'Activities tag',
  1307. '参加场次':'Participate in the sessions',
  1308. '查看SKU':'View SKU',
  1309. '确定审核通过该商品吗':'The audit determined by the product you',
  1310. '原价(元)':'Original (RMB)',
  1311. '秒杀价(元)':'Price spike (RMB)',
  1312. '秒杀库存':'Inventory spike',
  1313. '限购数量':'Number of restriction',
  1314. '查看商品SKU':'View product SKU',
  1315. //src\pages\bussset\promotion\seckill\seckill_detail_lists.js
  1316. '请输入活动场次':'Please enter the activity sessions',
  1317. '场次状态':'Event state',
  1318. '请选择场次状态':'Select Event state',
  1319. '参加商品数量':'The number of participants goods',
  1320. //src\pages\bussset\promotion\seckill\seckill_goods_lists.js
  1321. '默认':'default',
  1322. '活动商品':'Event Goods',
  1323. //src\pages\bussset\promotion\seckill\seckill_lists.js
  1324. '每场活动时间为本场次整点开始时间到下一场次开始时间,当日设置的最后一场结束时间为当日24:00':'The time of each activity is from the start time of the current session to the start time of the next session, and the end time of the last session is set at 24:00 on the same day',
  1325. '活动日期':'Event Date',
  1326. '请选择活动日期':'Please select the date of the event',
  1327. '设置轮播图':'FIG set rotation',
  1328. '编辑秒杀活动':'Edit spike activity',
  1329. '新增秒杀活动':'New spike activity',
  1330. '请选择活动场次':'Please select the activity sessions',
  1331. '新增活动':'New activity',
  1332. '设置活动轮播图':'FIG active set rotation',
  1333. //src\pages\bussset\svideo\add_theme.js
  1334. '封面图':'cover picture',
  1335. '请上传封面图片~':'Please upload a cover image ~',
  1336. '请选择视频~':'Select Video ~',
  1337. '新增推荐主题':'Recommended new theme',
  1338. '封面图片':'cover image',
  1339. '建议上传宽375*高245的图片':'Upload recommended width 375 * 245 high picture',
  1340. '}主题图片':'} Theme picture',
  1341. '建议上传宽710*高345的图片':'Upload recommended width 710 * 345 high picture',
  1342. '主题名称':'Topic name',
  1343. '最多可输入5个字':'',
  1344. '请输入主题名称':'Enter a topic name',
  1345. '请输入0~255之间的数字,值越小,显示越靠前':'Please enter a number between 0 and 255, the smaller the value, the display front',
  1346. '不显示':'Do not show',
  1347. '选择视频':'Select video',
  1348. '保存':'save',
  1349. '预览视频':'Preview video',
  1350. //src\pages\bussset\svideo\author_check_lists.js
  1351. '作者审核':'Author audit',
  1352. //src\pages\bussset\svideo\author_lists.js
  1353. '发布状态':'Post status',
  1354. '请选择发布状态':'Please select the publishing status',
  1355. '作品数:':'Number of works:',
  1356. '获赞数:':'Number of won praise:',
  1357. //src\pages\bussset\svideo\author_manage.js
  1358. '作者管理':'On the management',
  1359. '作者列表':'List of authors',
  1360. //src\pages\bussset\svideo\comment_lists.js
  1361. '最多输入150字':'Enter up to 150 characters',
  1362. '评论数':'Reviews',
  1363. '查看评论':'View comments',
  1364. '删除评论':'Delete comment',
  1365. //src\pages\bussset\svideo\comment_reply_lists.js
  1366. '回复人名称':'Name of reply',
  1367. '被回复人名称':'Reply to name the person',
  1368. '请输入被回复人名称':'Please enter the name of the person replies,',
  1369. '回复内容':'Reply',
  1370. '请输入回复内容':'Please enter your reply',
  1371. '回复时间':'Response Time',
  1372. //src\pages\bussset\svideo\label.js
  1373. '显示状态':'Display state',
  1374. '编辑短视频标签':'When editing video tag',
  1375. '新增短视频标签':'New short video tag',
  1376. //src\pages\bussset\svideo\setting.js
  1377. '短视频设置':'Short video settings',
  1378. //src\pages\bussset\svideo\theme.js
  1379. '绑定视频数':'Binding number of videos',
  1380. '查看视频':'View Video',
  1381. '推荐主题':'recommended topic',
  1382. // src\components\SldAddForm\SldAddForm.js
  1383. '请输入搜索内容' :'Enter search content',
  1384. // src\components\SldComHeader\index.js
  1385. '隐藏提示':'Hide tips',
  1386. '显示提示':'Prompts',
  1387. //src\components\SldDiyMoreImgModal\SldDiyMoreImgModal.js
  1388. '图片':'image',
  1389. '此处对应上传上方选中标签项内容,要求宽度为':'Upload here above corresponds to the selected tag items required width',
  1390. '像素、高度':'Pixels, height',
  1391. '不限制':'not limited',
  1392. '像素':'Pixels',
  1393. '的图片;支持格式gif,jpg,png。':'Pictures; supported formats gif, jpg, png.',
  1394. '秒杀活动名称':'Spike activity name',
  1395. '请输入标题名称':'Please enter a title name',
  1396. //src\components\SldDiySingleImgModal\SldDiySingleImgModal.js
  1397. '请上传图片':'Please upload pictures',
  1398. '展示时间':'Show time',
  1399. '弹出方式':'Pop-up mode',
  1400. '弹出广告开关':'Pop-up switch',
  1401. '请选择展示时间':'Please select display time',
  1402. '请选择链接类型':'Please select the link type',
  1403. //src\components\SldEditTable\index.js
  1404. '请选择地址':'Please select the address',
  1405. //src\components\SldExpressCom\SldExpressCom.js
  1406. '选择地址':'Select Address',
  1407. '添加数据':'adding data',
  1408. '续费(元)':'Renewals (RMB)',
  1409. '续重/件(kg/元)':'Continued weight / piece (kg / million)',
  1410. '首费(元)':'The first fee (yuan)',
  1411. '首重/件(kg/元)':'First weight / piece (kg / million)',
  1412. '点击选择配送地区':'Click to select the distribution area',
  1413. '配送地区':'Distribution area',
  1414. '确定删除该行吗?':'OK to delete the trip?',
  1415. '默认运费-续费(元)':'Default shipping - renewals (yuan)',
  1416. '续重/件(kg/件)':'Continued weight / piece (kg / piece)',
  1417. '续重/件':'Continued weight / piece',
  1418. '默认运费-首费(元)':'Default shipping - the first fee (yuan)',
  1419. '首重/件(kg/件)':'First weight / piece (kg / piece)',
  1420. '首重/件':'The first weight / piece',
  1421. '选择地区':'Select area',
  1422. //src\components\SldModal\SldModal.js
  1423. '暂无物流进度':'No progress logistics',
  1424. '点击上传或者拖拽图片到该区域即可上传':'Click on the picture to upload, or drag the region to upload',
  1425. '该值已经存在,请重新输入':'This value already exists, please re-enter',
  1426. '请输入0-24的整点':'Enter the whole point of 0-24',
  1427. //src\components\SldSeleTpl\SldSeleTpl.js
  1428. '至少选择一个装修模板':'Select at least one fitting template',
  1429. //src\components\SldSelGoodsMore\index.js
  1430. '价格(元)':'Price (yuan)',
  1431. '商品状态':'Commodity status',
  1432. //src\components\SldSelGoodsSingle\index.js
  1433. '选择限时抢购商品':'Select limit buy merchandise',
  1434. '抢购价':'Buying price',
  1435. '选择团购商品':'Customers select commodities',
  1436. '团购价':'Tuangou Jia',
  1437. '选择阶梯团商品':'Product group selection step',
  1438. '初始价格':'The initial price',
  1439. '选择积分商品':'Select product integration',
  1440. '现金+积分':'Cash + Points',
  1441. '选择专题商品':'Select topics commodity',
  1442. //src\components\SldSelGoodsSingleDiy\index.js
  1443. '请选择专题':'Please select the topic',
  1444. '选择秒杀活动':'Select spike activity',
  1445. //src\components\SldSelMore\index.js
  1446. '请输入生产企业':'Please enter manufacturers',
  1447. '请输入类型名称':'Please enter a type name',
  1448. '请输入品牌名称':'Please enter the brand name',
  1449. '请输入规格名称':'Enter a specification name',
  1450. //src\components\SldSelMoreLeftRight\index.js
  1451. '请输入短视频名称':'Please enter a short video name',
  1452. '您还未选择数据':'You have not selected data',
  1453. '播放量':'The amount of playing',
  1454. '请选择短视频':'Please choose a short video',
  1455. '该模块最多选择':'The module select the most',
  1456. '个短视频':'Short video',
  1457. '请选择视频标签':'Please select the video tag',
  1458. '视频标签':'Video Tags',
  1459. //src\components\SldSelMoreLeftRightLive\index.js
  1460. '人观看':'People watch',
  1461. '请选择直播':'Select Live',
  1462. '个直播':'A live',
  1463. '请选择直播标签':'Select Live label',
  1464. '直播标签':'Live label',
  1465. '回放':'Playback',
  1466. '直播':'Live',
  1467. // src\components\SldTableSingleRow\index.js
  1468. '添加规格项':'Add item specifications',
  1469. '输入或选择规格项':'Enter or select key specifications',
  1470. '规格名':'Specification Name',
  1471. '添加规格值':'Adding value specification',
  1472. '输入或选择规格值':'Enter or select the specification value',
  1473. '规格值':'Specification Value',
  1474. '设为图片规格':'Set picture size',
  1475. '请先选中该规格再上传图片':'Please check the specifications before uploading pictures',
  1476. //src\pages\manage\member\balance_log.js
  1477. '请输入管理员名字':'Enter the administrator name',
  1478. '变更时间':'Change time',
  1479. '导出Excel':'Export Excel',
  1480. '资金明细':'Details funds',
  1481. '资金明细导出':'Export financing details',
  1482. '操作描述':'Operation Description',
  1483. '操作管理员':'Operations manager',
  1484. '当前冻结金额(元)':'Freeze the current amount (yuan)',
  1485. '当前总金额(元)':'The current total amount (yuan)',
  1486. '冻结金额(元)':'Freeze amount (yuan)',
  1487. '变动金额(元)':'Variable amount (yuan)',
  1488. //src\pages\manage\member\detail.js
  1489. '会员详情':'Membership details',
  1490. '资产信息':'Asset information',
  1491. '累计退款订单(单)':'Cumulative refund orders (single)',
  1492. '累计退款金额(元)':'A total refund amount (yuan)',
  1493. '累计消费订单(单':'Total consumption of the order (single',
  1494. '累计消费金额(元)':'Cumulative spending (dollars)',
  1495. '客单价(元)':'Customer price (yuan)',
  1496. '交易信息':'Trading Information',
  1497. '最近下单时间':'Recently single time',
  1498. '最近登陆IP':'Recently landed IP',
  1499. '注册时间':'Registration time',
  1500. '来源':'source',
  1501. '生日':'birthday',
  1502. '性别':'gender',
  1503. '昵称':'nickname',
  1504. '真实姓名':'actual name',
  1505. '会员头像':'Member Avatar',
  1506. //src\pages\manage\member\lists.js
  1507. '新增会员':'New Member',
  1508. '积分设置':'Integration Setup',
  1509. '可用':'Available',
  1510. '是否可用':"it's usable or not",
  1511. '账户余额':'Account Balance',
  1512. '请选择会员状态':'Please select the membership status',
  1513. '会员状态':'Membership status',
  1514. '请输入操作备注':'Please input operation Remarks',
  1515. '请输入操作备注,最多15字':'Remarks Please input operation, up to 15 characters',
  1516. '请输入积分数值':'Please enter the integral value',
  1517. '减少':'cut back',
  1518. '增加':'increase',
  1519. '请选择增减类型':'Please select the type of increase or decrease',
  1520. '操作类型':'Operation type',
  1521. '当前积分':'Current Credit',
  1522. '请输入真实姓名':'please enter your real name',
  1523. '最多输入6位':'Up to input 6',
  1524. //src\pages\manage\member\recharge.js
  1525. '请选择付款时间':'Please select the payment time',
  1526. '付款时间':'Payment time',
  1527. '请选择付款方式':'Please choose a payment method',
  1528. '请输入平台交易号':'Please enter the number Trading Platform',
  1529. '平台交易号':'Platform transaction number',
  1530. 'PC支付宝':'PC Alipay',
  1531. 'H5支付宝':'H5 Alipay',
  1532. 'PC微信':'PC micro letter',
  1533. 'H5微信':'H5 micro letter',
  1534. '请选择充值状态':'Please select a refill status',
  1535. '已支付':'Paid',
  1536. '未支付':'unpaid',
  1537. '充值状态':'A refill status',
  1538. '微信支付':'Micro payment letter',
  1539. '支付宝支付':'pay by AliPay',
  1540. '充值方式':'Recharge mode',
  1541. '支付时间':'Payment time',
  1542. '付款':'payment',
  1543. '充值管理':'Top management',
  1544. '累计充值人数':'The number of cumulative recharge',
  1545. '累计充值金额(元)':'The cumulative recharge amount (yuan)',
  1546. '充值流水号':'Recharge serial number',
  1547. '充值单号':'No single recharge',
  1548. '充值金额':'Recharge amount',
  1549. //src\pages\manage\order\aftersales_check_lists.js
  1550. '批量确认':'Batch confirmation',
  1551. '退款详情':'Refund details',
  1552. '退款退货详情':'Refund returns information',
  1553. '确认':'confirm',
  1554. '退款金额(元)':'Refund Amount (yuan)',
  1555. '订单编号':'Order Number',
  1556. '退款编号':'No refunds',
  1557. '请输入备注信息,最多100个字':'Please enter the windows, and a maximum of 100 words',
  1558. '备注信息':'Remarks information',
  1559. '退款明细':'Refund details',
  1560. '退款凭证':'Refund certificate',
  1561. '退款原因':'reason for return',
  1562. '退款数量':'The number of refunds',
  1563. '退款方式':'Refunds',
  1564. '申请商品':'Application of goods',
  1565. '待处理':'Pending',
  1566. '已完成':'completed',
  1567. '请选择退款方式':'Please choose a refund mode',
  1568. '请输入会员名':'Enter the member name',
  1569. '请输入退款编号':'Please enter the number refund',
  1570. //src\pages\manage\order\aftersales_lists.js
  1571. '售后状态':'Sale status',
  1572. '请选择退款状态':'Please choose a refund state',
  1573. '待商家审核':'Businesses to be reviewed',
  1574. '商家同意退款':'Merchant agree to a refund',
  1575. '商家拒绝退款':'Businesses refused to refund',
  1576. '待商家收货':'Pending receipt merchants',
  1577. '商家拒收':'Business reject',
  1578. '退款完成':'Complete refund',
  1579. '待平台处理':'Platform to be treated',
  1580. '仅退款':'Only refund',
  1581. '退货退款':'Refunds',
  1582. //src\pages\manage\order\evaluate_goods.js
  1583. '回复':'Reply',
  1584. '评价时间':'Evaluation time',
  1585. '商家回复:':'Owner response:',
  1586. '商品评分':'Product Rating',
  1587. '评价内容':'comment content',
  1588. '晒单图片':'Sun single picture',
  1589. '评价描述':'Evaluation description',
  1590. //src\pages\manage\order\evaluate_store.js
  1591. '描述相符':'Description match',
  1592. '服务态度':'Service attitude',
  1593. '发货速度':'Delivery speed',
  1594. '评分':'score',
  1595. //src\pages\manage\order\evaluation.js
  1596. '评价管理':'Evaluation of management',
  1597. '商品评价':'product review',
  1598. '店铺评价':'Shop evaluation',
  1599. //src\pages\manage\order\reason_list.js
  1600. '新增原因':'New reasons',
  1601. '申请原因':'Reason for request',
  1602. //src\pages\manage\order\service.js
  1603. '售后管理':'Aftermarket management',
  1604. '售后列表':'Sale list',
  1605. '退款审核':'Refund Audit',
  1606. //src\pages\manage\order\salereson_lists.js
  1607. '请输入违规下架原因':'Please enter a violation REASON',
  1608. '请输入内容':'Please enter content',
  1609. '请输入0~255的数字,值越小,显示越靠前':'Please enter a number from 0 to 255, the smaller the value, the display front',
  1610. '请输入取消原因':'Please enter a reason for cancellation',
  1611. '取消原因':'Reason for Cancellation',
  1612. '违规下架原因':'Reasons for illegal removal',
  1613. '拒绝原因':'Denial Reason',
  1614. '请输入拒绝原因':'Please enter a reason for rejection',
  1615. '编辑原因':'Edit reasons',
  1616. '订单原因管理':'Order management reasons',
  1617. '用于平台处理商品违规下架时选择下架理由,最多20条。':'Select the shelf when the reason for non-compliance merchandise off the shelf processing platforms, up to 20.',
  1618. '商品审核拒绝':'Commodity audit refuse',
  1619. '用于平台审核商品时选择拒绝理由,最多20条。':'Select the reason for rejection when auditing platform for commodities, up to 20.',
  1620. '入驻审核拒绝':'Assigned to audit refuse',
  1621. '用于平台审核入驻店铺时选择拒绝理由,最多20条。':'Select the reason for rejection when used platform auditing settled shop, up to 20.',
  1622. '会员取消原因':'Member reason for cancellation',
  1623. '会员待付款状态下取消订单可选择的原因,最多20条。':'The reason to cancel the order under alternative payment pending membership status, up to 20.',
  1624. '商户取消会员订单时可选择的原因,最多20条。':'Members of the merchant can choose to cancel an order reason, up to 20.',
  1625. '商户取消订单':'Merchant cancel the order',
  1626. '会员在申请退货退款时可选择的原因,最多20条。':'Members can choose when applying for refunds reason, up to 20.',
  1627. '退款退货原因':'Refund Return Reason',
  1628. '会员在已收货时申请仅退款可选择的原因,最多20条。':'Membership Application reason for a refund only alternative at the time was receiving, up to 20.',
  1629. '仅退款-已收货':'Only refund - has receipt',
  1630. '仅退款-未收货':'Only Refund - No receipt',
  1631. '会员在未收货时申请仅退款可选择的原因,最多20条。':'Membership Application reason for a refund only alternative when no receipt, up to 20.',
  1632. //src\pages\manage\product\brand.js
  1633. '商品品牌建立后可与商品分类进行绑定,新增一个品牌则需要重新与商品分类建立所属关系。':'Categories can be bound to establish the Brand, a brand new you need to re-establish your relationship with the commodity classification.',
  1634. '品牌绑定商品分类后,商家发布商品时,可根据发布的商品所在分类找到对应的所属品牌并选择。':'After binding brand commodity classification, when the release of goods merchant, you can find the corresponding brand belongs release of goods according to where the classification and selection.',
  1635. '审核通过后,申请品牌和分类的绑定关系生效,发布商品的时候选择该分类即可选择该品牌。':'After approval, the binding relationship between the brand and apply the classification into force, when the release of goods select the category to select the brand.',
  1636. '分类需绑定到第三级。':'Categories to be bound to the third level.',
  1637. '待审核品牌':'Pending brand',
  1638. '品牌管理':'Brand Management',
  1639. //src\pages\manage\product\brand_lists.js
  1640. '最多输入200个字':'Enter up to 200 characters',
  1641. //src\pages\manage\product\brand_lists_wait_check.js
  1642. '品牌分类':'Brand category',
  1643. '审核理由':'Audit reason',
  1644. '批量审核':'Batch review',
  1645. '确认删除选中的品牌吗?':'Confirm delete the selected brands do?',
  1646. //src\pages\manage\product\cate_lists.js
  1647. '分佣比例':'Division ratio commission',
  1648. '添加下级分类':'Add sub Category',
  1649. '绑定品牌':'Binding brand',
  1650. '请输入0~1的数字,最多3位小数':'Please enter a number from 0 to 1, and up to three decimal places',
  1651. '请输入分佣比例':'Please enter a sub commission ratio',
  1652. //src\pages\manage\product\goods_label.js
  1653. '请输入描述':'Please enter a description',
  1654. '请输入100字以内的描述':'Please enter a description within 100 words',
  1655. '请输入商品描述':'Enter the product description',
  1656. '抱歉,该账号未授予权限,请先授予权限~': 'Sorry, this account is not authorized. Please grant permission first~',
  1657. '系统配置':'System configuration',
  1658. '商城管理':'Mall management',
  1659. 'PC装修':'PC decoration',
  1660. '手机装修':'Mobile decoration',
  1661. '运营管理':'Operation management',
  1662. '修改密码':'Change Password',
  1663. '退出登录':'Log out',
  1664. '添加装修模板':'Add decoration template',
  1665. // src/locales/zh-CN/content.js
  1666. '刷新':'Refresh',
  1667. '有新内容':"There's something new",
  1668. '请点击"刷新"按钮或手动刷新页面':'Please click the "Refresh" button or refresh manually',
  1669. };