123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367 |
- export default {
- //中文
- "zh-CN": {
- index: {
- homepage: "主页",
- switchLanguage: "切换语言",
- address: "地址管理",
- addAndEdit: "新增/修改地址",
- account: "账号与安全",
- password: "修改密码/手机号",
- switch: "切换语言",
- user: "用户协议",
- privacy: "隐私政策",
- platform: "平台规则",
- merchant: "商户入驻申请协议",
- layout: "退出登录",
- setup: "账号设置",
- information: "个人信息",
- headerImg: "头像",
- nickname: "昵称",
- prompt: "限4-24个字符(1汉字=2字符,1英文活数字=1字符)",
- editNextname: "编辑昵称",
- inland: "中国内地",
- international: "国际",
- initial: "默认地址",
- edit: "编辑",
- delete: "删除",
- wx: "微信导入",
- add: "新增地址",
- contacts: "联系人信息",
- wxAddress: "微信地址薄",
- newAddress: "新建地址",
- name: "姓名",
- phone: "手机号",
- city: "省市区",
- detailed: "详细地址",
- goods: "请填写收货人信息",
- pleasePhoneNumber: "请填写收货人手机号",
- township: "省市区县、乡镇等",
- sect: "请输入详细地址精确到门牌号",
- company: "公司名称(选填)",
- preserve: "保存",
- empty: "清空",
- country: "国家",
- postalCode: "邮编",
- email: "电子邮箱",
- companyName: "公司名称",
- selection: "请选择",
- PleacePostalCode: "请输入邮编",
- addressBook: "保存到地址薄",
- pleaseEmail: "请输入电子邮箱(选填)",
- editPassword: "修改登录密码",
- editPhone: "修改手机号",
- accountCancellation: "账号注销",
- setPassword: "设置密码",
- cancellation: "注销后无法恢复,请谨慎操作",
- myDeposit: "我的保证金",
- balance: "余额",
- mineFollow: "我的关注",
- myPackage: "我的包裹",
- mallOrders: "商城订单",
- whole: "全部",
- pendingPayment: "待付款",
- joiningGroups: "拼团中",
- toBeShipped: "待发货",
- toBeReceived: "待收货",
- refund: "退款/售后",
- leaderunction: "团长功能",
- platform: "平台商品库",
- productManagement: "商品管理",
- orderManagement: "订单管理",
- afterSales: "售后管理",
- supplyChain: "供应链商品",
- PCEnd: "PC端",
- pontact: "联系客服",
- accountSettings: "账号设置",
- shop: "商城",
- border: "跨境速递",
- item: "物品信息",
- required: "必填",
- flow: "跨境物流",
- share: "分享给好友",
- compute: "物流计算器",
- deliver: "发往中转点",
- Sign: "中转已签收",
- overseas: "正发往海外",
- mail: "去寄件",
- mine: "我的",
- addsign: "添加寄往中转点包裹",
- more: "更多",
- price: "单价",
- already: "已拼",
- parcel: "包裹",
- residue: "剩余重量",
- plan: "进度",
- start: "开始时间",
- cut: "截止时间",
- parceling: "拼包发海外",
- goparceling: "去拼包",
- sender: "新建寄件人",
- recipient: "新建收件人",
- informat: "填写寄件地址信息",
- informate: "填写收件地址信息",
- addressbook: "地址簿",
- select: "请选择物品信息",
- //主页
- search: "搜索",
- Searchcon: "请输入要搜索的内容",
- expensive: "买贵必赔",
- Something: "全球好物",
- postage: "包邮",
- Trade: "以旧换新",
- sort: "分类",
- fill: "已补",
- RMB: "元",
- history: "历史地址",
- Fill: "请填写",
- //填写寄件人信息
- senderinfo: "填写寄件人信息",
- addressee: "请输入收件人姓名",
- enter: "确定",
- shoptype: "商品类型",
- estimated: "预估重量",
- piece: "件",
- rule: "了解计费规则",
- Starting: "起始地",
- destination: "目的地",
- Commodity: "商品重量",
- Acquisition: "获取价格",
- Calculated: "计算重量",
- Estimated: "预估运费",
- details: "查看详情",
- Normal: "普通商品",
- special: "特殊商品",
- orderSearch: "请输入订单编号搜索",
- orderWeight: "当前页面加载的订单总重量",
- purchase: "平台自购",
- OrderNumber: "订单编号",
- Parcelweight: "包裹重量",
- payment: "立即付款",
- Frozen: "冻结",
- recover: "恢复",
- total: "合计",
- selfPost: "自寄",
- receiveGoods: "待平台收货",
- TrackingNumber: "快递单号",
- trackingNumber: "输入快递单号,快速添加到我的包裹",
- Expresscompany: "快递公司",
- ExpressCompany: "输入快递公司名称",
- parcelWeight: "请输入包裹重量",
- Addlist: "添加到包裹列表",
- Addparcel: "添加包裹",
- Packlist: "拼包列表",
- classification: "商品分类",
- synthesis: "综合",
- sell: "销售",
- Pricea: "价格",
- screen: "筛选",
- Pricerange: "价格区间",
- Weightinterval: "重量区间",
- brand: "品牌",
- Proprietary: "自营商品",
- reset: "重置",
- yes: "是",
- Bottomprice: "最低价",
- highestprice: "最高价",
- Discounted: "折扣价",
- service: "服务",
- Netcontent: "净含量",
- sametype: "同款低价",
- review: "评论",
- Productdetails: "商品详情",
- Specification: "规格参数",
- Recommended: "推荐商品",
- material: "主要原料",
- specification: "规格",
- Shelflife: "保质期",
- Suitableobject: "适合对象",
- Customer: "客服",
- Shopping: "购物车",
- follow: "关注",
- notification: "到货通知",
- Sele: "选择",
- Salesvolume: "销售量",
- stroll: "逛逛",
- article: "条",
- know: "我知道了",
- shar: "分享",
- Copylink: "复制链接",
- Generatepicture: "生成图片",
- Cancel: "取消",
- Paymentsuccess: "支付成功",
- MyOrder: "可在“个人中心-我的订单”查看",
- Vieworder: "查看订单",
- Backtohomepage: "返回首页",
- Channelspecification: "渠道说明",
- Billingmode: "计费模式",
- Chargeableweight: "计费重量",
- Estimatedcost: "预估费用",
- Itemtype: "物品类型",
- Channelrule: "渠道规则",
- Copiedpaste: "已复制,快去粘贴吧~",
- Replicationfailure: "复制失败",
- shelves: "当该商品有库存并上架时我们会通过微信消息提醒您",
- Actual: "实付金额",
- Balancepayment: "余额支付",
- Currentbalance: "当前余额",
- WechatPay: "微信支付",
- applicable: "适用微信支付",
- Customerservicepayment: "客服支付",
- Contactpayment: "联系客服支付",
- Paymentinstructions: "付款须知",
- Confirmpayment: "确定付款",
- Commodityamount: "商品金额",
- Grosscommodityweight: "商品总重",
- Costperkilogram: "每公斤费用",
- freight: "运费",
- subtotal: "小计",
- Atotalof: "共",
- Submitorder: "提交订单",
- next: "下一步",
- Shipmentdate: "发柜日期",
- Estimatedtimeofarrival: "预计到达时间",
- Workingday: "个工作日",
- buy: "购买到",
- morefavorable: "会更优惠",
- Pleaseproductname: "请输入相关商品名称",
- Goodgoods: "品质好货",
- Saveeverything: "每款必省",
- willpay: "买贵必赔",
- Subsidized: "补贴价",
- typeof: "类型",
- weight: "重量",
- number: "数量",
- Immediatepayment: "立即支付",
- readandagree: "我阅读并同意",
- International: "国际快递服务协议",
- Estimatedprice: "预估总价",
- Marinetank: "号海运柜",
- Expressservice: "快递服务",
- Orderconfirmation: "确认下单",
- successful: "下单成功",
- pickpackage: "待快递员上门取件",
- Ordertime: "下单时间",
- // switch: '更换',
- Popularshipment: "热门寄件",
- manage: "管理",
- complete: "完成",
- selectall: "全选",
- Grossweight: "总重量",
- GotoResult: "去结算",
- orderpaysforitself: "坏单包赔",
- Soldout: "已售",
- //账户余额
- accountBalance: "账户余额",
- myBalance: "我的余额",
- withdrawal: "提现",
- recharge: "充值",
- balanceDetails: "余额明细",
- all: "全部",
- theres: "没有更多数据了",
- //我的关注
- mineCommodity: "商品",
- team: "团长",
- people: "人关注",
- see: "查看主页",
- //我的包裹
- orderNum: "请输入订单编号搜索",
- toTrasferimento: "发往中转点",
- firmaPer: "中转已签收",
- oltreoceano: "正发往海外",
- piattaforma: "平台自购",
- //个人功能
- thatPerson: "个人功能",
- become: "成为团长",
- chase: "购",
- Ladder: "阶梯首重续费模式",
- Ordinary: "普通包裹",
- Special: "特殊包裹",
- delivery: "寄快递",
- Toggle: "切换",
- Gross: "包裹总重",
- length: "长",
- wide: "宽",
- height: "高",
- accurately: "补充体积预估费用更精确",
- volume: "总体积",
- since: "起",
- Please: "请输入物品名称",
- Filling: "填写准确的寄送物品可帮助您推荐更合适的产品",
- Note: "注:实际重量体积以收派员确定为准,物品在包装后重量可能会增加,重量小体积大时会按体积重量收费",
- window: "请点击右上角浮窗进行复制",
- Recent: "最近使用",
- nodata: "暂无数据",
- Pleasecountry: "请先选择国家",
- container: "请选择货柜",
- skip: "跳过",
- Login: "登录成功",
- selectcity: "请先选择城市",
- shippingaddress: "请添加您的收货地址",
- shippingmethod: "请选择货运方式",
- Followed: "已关注",
- Addtocart: "加入购物车",
- grouping: "立即拼团",
- Selected: "已选",
- Buynow: "立即购买",
- closeaccount: "确定要注销账号吗?",
- other: "其他",
- store: "店铺",
- sales: "售前售后 安心无忧购物",
- album: "保存到相册",
- identify: "长按识别查看",
- evaluate: "评价",
- particulars: "详情",
- savesuccessfully: "保存成功",
- merchandiseNews: "商品信息",
- shutdown: "取关成功",
- Focus: "关注成功",
- understock: "库存不足",
- successfullyAdded: "添加成功",
- Nofurtherdata: "已无更多数据",
- Searchchat: "搜索聊天记录",
- customerService: "官方客服",
- picture: "图片",
- voiceMessage: "语音消息",
- return: "返回",
- Marginpayment: "保证金支付",
- itemtoSend: "请选择邮寄物品",
- selectitemType: "请选择物品类型",
- Weightnotlessthan: "重量不能小于",
- cannotbelessthan: "数量不能小于",
- Wechatlogin: "微信授权登录",
- readandAgree: "我已阅读并同意",
- useragreement: "用户协议",
- Privacyagreement: "隐私协议",
- offtheshelves: "商品下架",
- top: "顶部",
- Shiftfocus: "移入关注",
- successfullydelete: "删除成功",
- defaultTheme: "默认主题",
- and: "和",
- lowest: "低至",
- discount: "折扣",
- newcontainer: "请重新选择货柜",
- defaultaddress: "设为默认地址",
- information: "请先选择城市和物品信息",
- Protocol: "请勾选协议",
- logisticsMethod: "请选择物流方式",
- selectCourier: "请选择快递公司",
- trackingNumber: "请填写快递单号",
- parcelWeight: "请填写包裹重量",
- //团长主页
- comments: "评论总数",
- default: "默认",
- newProduct: "新品",
- salesVolume: "销量",
- favorableComment: "好评",
- //保证金余额
- saldo: "保证金余额",
- depositDetails: "保证金明细",
- noMore: "没有更多数据了",
- //保证金明细
- income: "收入",
- expenditure: "支出",
- marginStatement: "保证金说明",
- //我的包裹
- toPiattaforma: "商品已寄往平台,正在运输中",
- peso: "商品已打包称重,等待用户付款",
- waitPiattaforma: "等待平台发货",
- prodottoInviato: "商品已发出,很快将发货至您的手中",
- insiemeDetail: "拼包详情",
- orderCompleto: "订单签收,交易已完成",
- pesoEmissione: "等待中转称重发出",
- orderClose: "订单关闭",
- orderRefund: "订单已退款",
- refunding: "订单正在申请退款",
- waitCommity: "商品等待发货中",
- origin: "始发地",
- weighingWeight: "称重重量",
- weighingImage: "称重图片",
- paymentRequired: "需付款",
- send: "寄",
- putAway: "收",
- goodsNum: "件数",
- cope: "复制",
- payTime: "付款时间",
- sendTime: "发货时间",
- signForTime: "签收时间",
- pengingPay: "待付",
- paid: "已付",
- checkLogistics: "查看物流",
- logisticsInformation: "填写物流信息",
- saved: "已保存",
- //余额提现
- balanceWithdrawal: "余额提现",
- paymentMethod: "到账方式",
- weChatBalance: "微信余额",
- withdrawalAmount: "提现金额",
- withdrawAllFunds: "全部提现",
- moneyAmount: "可提现金额",
- withdrawImmediately: "立即提现",
- withdrawalDetails: "提现明细",
- submitWith: "已提交提现申请",
- //充值
- goMoney: "去提现",
- balanceRecharge: "余额账户充值",
- customAmount: "输入自定义金额",
- payMethod: "支付方式",
- //商城订单
- differenzaPrezzo: "待补差价",
- completato: "已完成",
- annullato: "已取消",
- refundService: "退款/售后",
- confirmGoods: "是否确认收货",
- cancelOrder: "订单已取消",
- takeOrder: "订单已收货",
- cancellationOrder: "取消订单",
- continuePayment: "继续付款",
- deleteOrder: "删除订单",
- buyAgain: "再次购买",
- anotherOrder: "再来一单",
- confirmReceipt: "确认收货",
- toEvaluate: "去评价",
- orderRefunding: "退款中",
- refundSuccessful: "退款成功",
- refuseRefund: "拒绝退款",
- platformIntervention: "平台介入",
- orderRefund: "退款",
- deleteRecord: "删除记录",
- afterDetails: "售后详情",
- ContinueApply: "继续申请",
- applying: "申请中",
- waitingRefund: "等待卖家同意退款",
- seller: "卖家拒绝退款",
- searchOrder: "搜索我的订单",
- refundFailed: "退款失败",
- //订单详情
- leftOver: "剩",
- hour: "小时",
- automaticShutdown: "分自动关闭",
- additionalPostage: "商品已打包称重,等待用户补邮费",
- needPostage: "需补邮费",
- requestRefund: "申请退款",
- goodsPrice: "商品总价",
- goodsWeight: "商品总重量",
- accountsPayable: "应付款",
- //平台商品库
- searchGoods: "搜索商品名称",
- platformGoods: "平台商品库",
- inReview: "审核中",
- auditFailed: "审核失败",
- removed: "已下架",
- supplier: "供应商",
- selfSupport: "自营",
- inventory: "库存",
- removeProducts: "下架商品",
- listingProducts: "上架商品",
- wantDiscount: "我要打折",
- offShelf: "下架",
- business: "商家",
- //商品管理
- alreadyListed: "已上架",
- batchDiscount: "批量打折",
- listingGoods: "上架平台商品",
- cancelDiscount: "取消打折",
- deleteGoods: "是否删除商品",
- removeGoods: "是否下架商品",
- beenDeleted: "商品已删除",
- cannotDiscount: "取消成功,商品初始折扣无法取消",
- takenDown: "商品已下架",
- takenUp: "商品已上架",
- selectGoods: "请选择至少一个商品",
- originalPrice: "打8折请输入80,以原价计算",
- preferential: "优惠",
- myGoods: "我的商品",
- operatedProducts: "平台自营商品",
- //订单管理
- audit: "待审核",
- depositPaid: "待缴纳保证金",
- waitTeam: "待团长发货",
- headquarters: "待总部发货",
- shipped: "已发货",
- actualPayment: "买家实付",
- merchantRemarks: "商家备注",
- PayDeposit: "缴纳保证金",
- sendOutGoods: "发货",
- searchOrderNumber: "搜索订单号/手机号/商品/姓名",
- //订单管理订单详情
- logisticsNumber: "物流单号",
- creationTime: "创建时间",
- modeTransport: "运输方式",
- immediateDelivery: "立即发货",
- replicatingSuccess: "复制成功",
- orderNotes: "订单备注",
- //售后管理
- pendingRefund: "待退款",
- refunded: "已退款",
- appliedIntervene: "已申请平台介入",
- salesRecords: "是否确认删除售后记录",
- confirmRefund: "是否确认退款",
- agreeRefund: "已同意退款",
- juJueRefund: "已拒绝退款",
- goodsDelete: "商品已删除",
- AfterSalesOrder: "售后订单",
- pleaseAmount: "请输入退款金额",
- refuseApplication: "拒绝申请",
- AccettareRestituzione: "同意退款",
- //售后管理详情
- pleaseRefund: "请处理退款申请",
- ifAgree: "如果您同意,请点击“同意退款”",
- refundRequest: "您拒绝了退款申请",
- haveAgreed: "您同意了退款申请",
- pleaseConfirm: "请确认是否退款",
- applicationInformation: "申请信息",
- theGoods: "是否收货",
- receivedGoods: "已收货",
- notReceivedGoods: "未收货",
- AfterSalesInstructions: "售后说明",
- pictureVoucher: "图片凭证",
- reasonForRefusal: "拒绝理由",
- pleaseEnterReason: "请输入拒绝原因",
- submitTo: "提交",
- refundStatus: "退款状态",
- ReasonRefund: "退款原因",
- refundAmount: "退款金额",
- applyForTime: "申请时间",
- refundNumber: "退款编号",
- PendingProcessing: "待商家处理",
- //我的供应链商品
- // supplyChain: "我的供应链商品",
- removedSuccessfully: "下架成功",
- successfullyListed: "上架成功",
- //结果反馈
- WaitingReview: "审核中,请耐心等待~",
- failedReview: "未通过,请重新提交信息",
- rejectReason: "拒绝原因",
- successfullySettled: "您已入驻成功",
- goodsRelease: "请访问以下pc端地址进行店铺信息维护以及 商品信息的发布",
- copyLink: "复制链接",
- accountNumber: "账号",
- accountPassword: "密码",
- resubmit: "重新提交",
- resultFeedback: "结果反馈",
- //寄快递
- warehouseAddress: "跨境中转仓库地址",
- addressFirst: "请先将包裹寄往这个地址~",
- pleaseCompany: "请输入快递公司名称",
- useDelivery: "寄快递",
- //团长入驻
- teamSettle: "团长入驻",
- pleaseName: "请输入真实姓名",
- IDCard: "身份证号",
- enterCard: "请输入您的身份证",
- backCard: "银行卡号",
- pleaseBackCard: "请输入您的银行卡号",
- pleasePhone: "请输入手机号",
- QRCode: "验证码",
- pleaseQrCode: "请输入短信验证码",
- getQrCode: "获取验证码",
- startVerification: "开始人脸识别验证",
- userServiceAgreement: "用户服务协议",
- checkFirst: "请先勾选",
- applicationResult: "申请成功,请等待审核结果",
- pleaseIdentity: "请先完成身份核验",
- //申请退款
- reasonApplication: "申请原因",
- applicationDescription: "申请说明",
- detailedDescription: "请您详细填写申请说明",
- uploadCredentials: "上传凭证",
- upSheets: "最多9张",
- submitApplication: "提交申请",
- selectRefund: "请选择退款原因",
- beCompleted: "请等待图片上传完毕",
- appliedReview: "已申请,请等待审核",
- wrongShot: "拍错/多拍/不喜欢",
- pageDescription: "商品与页面描述不符",
- productDamage: "商品破损/包装问题",
- incorrectly: "收货地址/手机号填错了",
- wrongItem: "卖家发错货",
- otherReasons: "其他原因",
- },
- },
- //英语
- "en-US": {
- index: {
- homepage: "Homepage",
- switchLanguage: "Switch Language",
- address: "Address Management",
- addAndEdit: "add/modify Address",
- account: "Account and Security",
- password: "Change password/Phone Number",
- switch: "Switch Language",
- user: "User Agreement",
- privacy: "Privacy Policy",
- platform: "Platform rules",
- merchant: "Merchant Entry Application Agreement",
- layout: "Log out and log in",
- setup: "Account Settings",
- information: "Personal Information",
- headerImg: "Avatar",
- nickname: "Nickname",
- prompt:
- "Limited to 4-24 characters (1 Chinese character=2 characters, 1 English live number=1 character)",
- editNextname: "Edit Nickname",
- inland: "Mainland China",
- international: "International",
- initial: "Default Address",
- edit: "Edit",
- delete: "Delete",
- wx: "WeChat import",
- add: "Add Address",
- contacts: "Contact Information ",
- wxAddress: "WeChat Address Book",
- newAddress: "New Address",
- name: "Name",
- phone: "Mobile phone number",
- city: "Provinces, cities, and districts",
- detailed: "Detailed address",
- goods: "Please fill in the recipient information",
- pleasePhoneNumber: "Please fill in the recipient's mobile phone number",
- township: "Provinces, cities, counties, townships, etc",
- sect: "Please enter a detailed address accurate to the house number",
- company: "Company name (optional)",
- preserve: "Preserve",
- empty: "Empty",
- country: "Country",
- postalCode: "Postal code",
- email: "E-mail",
- companyName: "Company Name",
- selection: "Please Select",
- PleacePostalCode: "Please enter your postal code",
- addressBook: "Save to Address Book",
- pleaseEmail: "Please enter your email address (optional)",
- cancellation:
- "Unable to recover after logging out, please operate with caution",
- editPassword: "Change login password",
- editPhone: "Change phone number",
- accountCancellation: "Account Cancellation",
- setPassword: "Set password",
- myDeposit: "My deposit",
- balance: "Balance",
- mineFollow: "My following",
- myPackage: "My Package",
- mallOrders: "Mall orders",
- whole: "Whole",
- pendingPayment: "Pending payment",
- joiningGroups: "Joining groups",
- toBeShipped: "To be shipped",
- toBeReceived: "To be received",
- refund: "Refund/After sales",
- leaderunction: "Leader function",
- platform: "Platform product library",
- productManagement: "Product Management",
- orderManagement: "order management",
- afterSales: "After sales",
- supplyChain: "Supply chain goods",
- PCEnd: "PC end",
- pontact: "Contact customer service",
- accountSettings: "Account Settings",
- shop: "store",
- border: "border",
- item: "Item information",
- required: "required",
- flow: "Cross border logistics",
- share: "Share",
- compute: "The Reckoner",
- deliver: "To transfer point",
- Sign: "Transfer has been signed for",
- overseas: "Sending overseas",
- mail: "Go and send the package",
- mine: "mine",
- addsign: "Add package to transit point",
- more: "more",
- price: "unit price",
- already: "Spliced",
- parcel: "package",
- residue: " weight",
- plan: "schedule",
- start: "start time",
- cut: "Deadline",
- parceling: "parceling",
- goparceling: "Go pack up",
- sender: "New sender",
- recipient: "New recipient",
- informat: "Fill in the mailing address information",
- informate: "Fill in the shipping address information",
- addressbook: "Address Book",
- select: "Please select item information",
- //主页
- search: "search",
- Searchcon: "you want to search for",
- expensive: "Buy high Must compensate",
- Something: "Global goodies",
- postage: "postage",
- Trade: "Trade-in",
- sort: "sort",
- fill: "subsidy",
- RMB: "RMB",
- history: "Historical address",
- Fill: "Fill out",
- senderinfo: "Sender information",
- addressee: "Indicare il nome del destinatario",
- enter: "confirm",
- shoptype: "type of merchandise",
- estimated: "estimated weight",
- piece: "piece",
- rule: "Understanding billing rules",
- Starting: "Starting place",
- destination: "destination",
- Commodity: "Commodity weight",
- Acquisition: "Acquisition price",
- Calculated: "Calculated weight",
- Estimated: "Estimated freight",
- details: "View details",
- Normal: "General goods",
- special: "Special goods",
- orderSearch: "Please enter the order number to search",
- orderWeight: "The total weight of the order currently loaded on the page",
- purchase: "Platform purchase",
- OrderNumber: "Order number",
- Parcelweight: "Parcel weight",
- payment: "Immediate payment",
- Frozen: "Frozen",
- recover: "recover",
- total: "total",
- selfPost: "self-post",
- receiveGoods: "Wait for the platform to receive the goods",
- TrackingNumber: "Tracking number",
- trackingNumber: "Enter the tracking number to quickly add to my package",
- Expresscompany: "Express company",
- ExpressCompany: "Enter the name of the Courier company",
- parcelWeight: "Please enter the parcel weight",
- Addlist: "Add to package list",
- Addparcel: "Add parcel",
- Packlist: "Pack list",
- classification: "Commodity classification",
- synthesis: "synthesis",
- sell: "sell",
- Pricea: "Price",
- screen: "screen",
- Pricerange: "Price range",
- Weightinterval: "Weight section",
- brand: "brand",
- Proprietary: "Proprietary commodities",
- reset: "reset",
- yes: "yes",
- Bottomprice: "Bottom price",
- highestprice: "The highest price",
- Discounted: "Discounted price",
- service: "service",
- Netcontent: "Net content",
- sametype: "Lower price of the same type",
- review: "review",
- Productdetails: "Product details",
- Specification: "Specification parameter",
- Recommended: "Recommended goods",
- material: "Main raw material",
- specification: "specification",
- Shelflife: "Shelf life",
- Suitableobject: "Suitable object",
- Customer: "Customer service",
- Shopping: "Shopping",
- follow: "follow",
- notification: "Notice of arrival",
- Sele: "Select",
- Salesvolume: "Sales volume",
- stroll: "stroll",
- article: "article",
- know: "I know",
- shar: "Share",
- Copylink: "Copy link",
- Generatepicture: "Generate picture",
- Cancel: "Cancel",
- Paymentsuccess: "Payment success",
- MyOrder: 'It can be viewed in "Personal Center - My Order"',
- Vieworder: "View order",
- Backtohomepage: "Back to home page",
- Channelspecification: "Channel specification",
- Billingmode: "Billing mode",
- Chargeableweight: "Chargeable weight",
- Estimatedcost: "Estimated cost",
- Itemtype: "Item type",
- Channelrule: "Channel rule",
- Copiedpaste: "Copied, go paste ~",
- Replicationfailure: "Replication failure",
- shelves:
- "We will alert you via wechat message when the item is in stock and on the shelves",
- Actual: "Actual amount paid",
- Balancepayment: "Balance payment",
- Currentbalance: "Current balance",
- WechatPay: "Wechat Pay",
- applicable: "Wechat Pay is applicable",
- Customerservicepayment: "Customer service payment",
- Contactpayment: "Contact customer service payment",
- Paymentinstructions: "Payment instructions",
- Confirmpayment: "Firm payment",
- Commodityamount: "Commodity amount",
- Grosscommodityweight: "Gross commodity weight",
- Costperkilogram: "Cost per kilogram",
- freight: "freight",
- subtotal: "subtotal",
- Atotalof: "A total of",
- Submitorder: "Submit an order",
- next: "next",
- Shipmentdate: "Shipment date",
- Estimatedtimeofarrival: "Estimated time of arrival",
- Workingday: "Working day",
- buy: "buy",
- morefavorable: "Will be more favorable",
- Pleaseproductname: "Please enter the relevant product name",
- Goodgoods: "Good quality goods",
- Saveeverything: "Save everything",
- willpay: "If you buy, you will pay",
- Subsidized: "price",
- typeof: "Type",
- weight: "Weight",
- number: "Number",
- Immediatepayment: "Immediate Payment",
- readandagree: "Read and Agree",
- International: "International",
- Estimatedprice: "Estimated Price",
- Marinetank: "Sea Freight Container",
- Expressservice: "Express Service",
- Orderconfirmation: "Order Confirmation",
- successful: "Successful",
- pickpackage: "Waiting for Courier Pickup",
- Ordertime: "Order Time",
- // switch: 'Switch',
- Popularshipment: "Popular Shipment",
- manage: "Management",
- complete: "Complete",
- selectall: "Select All",
- Grossweight: "Gross Weight",
- GotoResult: "Go to Checkout",
- orderpaysforitself: "Order Pays for Itself",
- Soldout: "Sold Out",
- //账户余额
- accountBalance: "Account balance",
- myBalance: "my Balance",
- withdrawal: "withdrawal",
- recharge: "recharge",
- balanceDetails: "balance Details",
- all: "whole",
- theres: "There's no more data left",
- //我的关注
- mineCommodity: "commodity",
- team: "Team leader",
- people: "people follow",
- see: "View Home Page",
- //个人功能
- thatPerson: "Personal functions",
- become: "Become a team leader",
- chase: "purchase",
- Ladder: "Ladder first renewal fee model",
- Ordinary: "Ordinary parcel",
- Special: "Special parcel",
- delivery: "Delivery",
- Toggle: "Toggle",
- Gross: "Gross",
- length: "Length",
- wide: "Width",
- height: "Height",
- accurately:
- "Estimate the cost more accurately by supplementing the volume",
- volume: "Total Volume",
- since: "since",
- Please: "Please enter the item name",
- Filling:
- "Filling in the accurate items for shipment can help us recommend more suitable products for you",
- Note: "Note: The actual weight and volume are subject to the determination by the courier. The weight may increase after packaging, and if the item has a small weight but a large volume, it will be charged based on the volumetric weight",
- window:
- "Please click the floating window in the upper right corner to copy.",
- Recent: "Recently Used",
- nodata: "No Data Available",
- Pleasecountry: "Please Select a Country First",
- container: "Please Select a Container",
- skip: "Skip",
- Login: "Login Successful",
- selectcity: "Please Select a City First",
- shippingaddress: "Please Add Your Shipping Address",
- shippingmethod: "Please Select a Shipping Method",
- Followed: "Followed",
- Addtocart: "Add to Cart",
- grouping: "Join Group Now",
- Selected: "Selected",
- Buynow: "Buy Now",
- closeaccount: "Are you sure you want to close your account?",
- other: "other",
- store: "store",
- sales: "Pre-sales and after-sales, worry-free shopping",
- album: "Save to album",
- identify: "Long press to identify and view",
- evaluate: "Evaluate",
- particulars: "Details",
- savesuccessfully: "Save successfully",
- merchandiseNews: "Merchandise News",
- shutdown: "Unfollowed successfully",
- Focus: "Followed successfully",
- understock: "Out of stock",
- successfullyAdded: "Added successfully",
- Nofurtherdata: "No more data available",
- Searchchat: "Search chat history",
- customerService: "Customer Service",
- picture: "Picture",
- voiceMessage: "Voice message",
- return: "Return",
- Marginpayment: "Margin payment",
- itemtoSend: "Please select item to send",
- selectitemType: "Please select item type",
- Weightnotlessthan: "Weight must not be less than",
- cannotbelessthan: "Quantity must not be less than",
- Wechatlogin: "Login with WeChat",
- readandAgree: "I have read and agree to",
- useragreement: "User Agreement",
- Privacyagreement: "Privacy Agreement",
- offtheshelves: "Item is off the shelves",
- top: "Top",
- Shiftfocus: "Shift to focus",
- successfullydelete: "Deleted successfully",
- defaultTheme: "Default theme",
- and: "and",
- lowest: "lowest",
- discount: "discount",
- newcontainer: "Please select a new container",
- defaultaddress: "Set this parameter to the default address",
- information: "Please select the city and item information first.",
- Protocol: "Please tick the agreement.",
- logisticsMethod: "Please select the logistics method.",
- selectCourier: "Please select the courier company.",
- trackingNumber: "Please enter the tracking number.",
- parcelWeight: "Please enter the parcel weight.",
- //团长主页
- comments: "Total number of comments",
- default: "default",
- newProduct: "new product",
- salesVolume: "sales volume",
- favorableComment: "favorable comment",
- //保证金余额
- saldo: "margin balance",
- depositDetails: "Deposit details",
- noMore: "There is no more data available",
- //保证金明细
- income: "income",
- expenditure: "expenditure",
- marginStatement: "Margin Statement",
- //我的包裹
- toPiattaforma:
- "The product has been sent to the platform and is currently in transit",
- peso: "The product has been packaged and weighed, waiting for user payment",
- waitPiattaforma: "Waiting for the platform to ship",
- prodottoInviato:
- "The product has been shipped and will be delivered to you soon",
- insiemeDetail: "Package Details",
- orderCompleto: "Order signed for, transaction completed",
- pesoEmissione: "Waiting for transit weighing to be sent out",
- orderClose: "Order closure",
- orderRefund: "Order refunded",
- refunding: "The order is applying for a refund",
- waitCommity: "The product is waiting for shipment",
- origin: "ORIGIN",
- weighingWeight: "Weighing weight",
- weighingImage: "Weighing image",
- paymentRequired: "Payment required",
- send: "send",
- putAway: "put away",
- goodsNum: "number",
- cope: "copy",
- payTime: "Payment Time",
- sendTime: "delivery time",
- signForTime: "Sign in time",
- pengingPay: "Pending payment",
- paid: "paid",
- checkLogistics: "View logistics",
- logisticsInformation: "Fill in logistics information",
- saved: "saved",
- //余额提现
- balanceWithdrawal: "Withdrawal of balance",
- paymentMethod: "Payment method",
- weChatBalance: "WeChat balance",
- withdrawalAmount: "Withdrawal amount",
- withdrawAllFunds: "Withdraw all funds",
- moneyAmount: "Withdrawable amount",
- withdrawImmediately: "Withdraw immediately",
- withdrawalDetails: "Withdrawal details",
- submitWith: "Submitted withdrawal request",
- //充值
- goMoney: "Go withdraw money",
- balanceRecharge: "Recharge balance account",
- customAmount: "Enter custom amount",
- payMethod: "Payment method",
- //商城订单
- differenzaPrezzo: "Pending price difference",
- completato: "Completed",
- annullato: "Cancelled",
- refundService: "Refund/after-sales service",
- confirmGoods: "Have you confirmed receipt of the goods",
- cancelOrder: "Order cancelled",
- takeOrder: "Order received",
- cancellationOrder: "cancellation of order",
- continuePayment: "Continue payment",
- deleteOrder: "Delete Order",
- buyAgain: "Buy again",
- anotherOrder: "Another order",
- confirmReceipt: "Confirm receipt",
- toEvaluate: "Go evaluate",
- orderRefunding: "refunding",
- refundSuccessful: "Refund successful",
- refuseRefund: "Refuse refund",
- platformIntervention: "Platform intervention",
- orderRefund: "refund",
- deleteRecord: "delete record",
- afterDetails: "After sales details",
- ContinueApply: "Continue to apply",
- applying: "applying",
- waitingRefund: "Waiting for the seller to agree to a refund",
- seller: "Seller refuses refund",
- searchOrder: "Search for my order",
- refundFailed: "Refund failed",
- //订单详情
- leftOver: "residue",
- hour: "hour",
- automaticShutdown: "minute Automatic shutdown",
- additionalPostage:
- "The product has been packaged and weighed, waiting for the user to pay the shipping fee",
- needPostage: "Additional postage is required",
- requestRefund: "Request a refund",
- goodsPrice: "Total price of the product",
- goodsWeight: "Total weight of the product",
- accountsPayable: "Accounts payable",
- //平台商品库
- searchGoods: "Search for product name",
- platformGoods: "Platform Product Library",
- inReview: "in review",
- auditFailed: "Audit failed",
- removed: "Removed",
- supplier: "supplier",
- selfSupport: "self-support",
- inventory: "inventory",
- removeProducts: "Remove products",
- listingProducts: "Listing products",
- wantDiscount: "I want a discount",
- offShelf: "Off shelf",
- business: "business",
- //商品管理
- alreadyListed: "Already listed",
- batchDiscount: "Batch discount",
- listingGoods: "Listing platform products",
- cancelDiscount: "Cancel discount",
- deleteGoods: "Do you want to delete the product",
- removeGoods: "Should the product be taken down",
- beenDeleted: "The product has been deleted",
- cannotDiscount:
- "Cancelled successfully, the initial discount on the product cannot be cancelled",
- takenDown: "The product has been taken down",
- takenUp: "The product has been listed",
- selectGoods: "Please select at least one product",
- originalPrice:
- "20% off, please enter 80% and calculate based on the original price",
- preferential: "preferential",
- myGoods: "My Products",
- operatedProducts: "Platform self operated products",
- //订单管理
- audit: "Audit",
- depositPaid: "Deposit to be paid",
- waitTeam: "Waiting for the team leader to ship the goods",
- headquarters: "Awaiting shipment from headquarters",
- shipped: "Shipped",
- actualPayment: "Buyer's actual payment",
- merchantRemarks: "Merchant remarks",
- PayDeposit: "Pay the deposit",
- sendOutGoods: "send out goods",
- searchOrderNumber: "Search for order number/phone number/product/name",
- //订单管理订单详情
- logisticsNumber: "Logistics tracking number",
- creationTime: "Creation time",
- modeTransport: "mode of transport",
- immediateDelivery: "immediate delivery",
- replicatingSuccess: "Replicating Success",
- orderNotes: "Order Notes",
- //售后管理
- pendingRefund: "Pending refund",
- refunded: "Refunded",
- appliedIntervene: "Platform intervention has been applied for",
- salesRecords: "Are you sure to delete the after-sales record",
- confirmRefund: "Are you sure about the refund",
- agreeRefund: "Refund has been agreed upon",
- juJueRefund: "Refund has been refused",
- goodsDelete: "The product has been deleted",
- AfterSalesOrder: "After sales order",
- pleaseAmount: "Please enter the refund amount",
- refuseApplication: "refuse an application",
- AccettareRestituzione: "Agree to refund",
- //售后管理详情
- pleaseRefund: "Please process the refund request",
- ifAgree: "If you agree, please click on 'Agree to Refund'",
- refundRequest: "You have rejected the refund request",
- haveAgreed: "You have agreed to the refund request",
- pleaseConfirm: "Please confirm if a refund is required",
- applicationInformation: "application information",
- theGoods: "Have you received the goods",
- receivedGoods: "Received goods",
- notReceivedGoods: "Not received goods",
- AfterSalesInstructions: "After sales instructions",
- pictureVoucher: "Picture voucher",
- reasonForRefusal: "Reason for refusal",
- pleaseEnterReason: "Please enter the reason for rejection",
- submitTo: "submit to",
- refundStatus: "Refund status",
- ReasonRefund: "Reason for refund",
- refundAmount: "refund amount",
- applyForTime: "time",
- refundNumber: "Refund number",
- PendingProcessing: "Pending merchant processing",
- //我的供应链商品
- supplyChain: "My supply chain products",
- removedSuccessfully: "Removed successfully",
- successfullyListed: "Successfully listed",
- //结果反馈
- WaitingReview: "Under review, please be patient and wait~",
- failedReview: "Failed, please resubmit the information",
- rejectReason: "Reject Reason",
- successfullySettled: "You have successfully joined",
- goodsRelease:
- "Please visit the following PC address to maintain store information and publish product information",
- copyLink: "copy link",
- accountNumber: "account number",
- accountPassword: "password",
- resubmit: "resubmit",
- resultFeedback: "Result feedback",
- //寄快递
- warehouseAddress: "Cross border transit warehouse address",
- addressFirst: "Please send the package to this address first",
- pleaseCompany: "Please enter the name of the courier company",
- useDelivery: "use express delivery",
- //团长入驻
- teamSettle: "The team leader has settled in",
- pleaseName: "Please enter your real name",
- IDCard: "ID",
- enterCard: "Please enter your ID card",
- backCard: "Bank card number",
- pleaseBackCard: "Please enter your bank card number",
- pleasePhone: "Please enter your phone number",
- QRCode: "Code",
- pleaseQrCode: "Please enter the SMS verification code",
- getQrCode: "Obtain verification code",
- startVerification: "Start facial recognition verification",
- userServiceAgreement: "User Service Agreement",
- checkFirst: "Please check the box first",
- applicationResult:
- "Application successful, please wait for the review result",
- pleaseIdentity: "Please complete the identity verification first",
- //申请退款
- reasonApplication: "Reason for application",
- applicationDescription: "Application Description",
- detailedDescription: "Please provide detailed application instructions",
- uploadCredentials: "Upload credentials",
- upSheets: "Up to 9 sheets",
- submitApplication: "Submit application",
- selectRefund: "Please select the reason for refund",
- beCompleted: "Please wait for the image upload to be completed",
- appliedReview: "Applied, please wait for review",
- wrongShot: "Wrong shot/multiple shots/dislike",
- pageDescription: "The product does not match the page description",
- productDamage: "Product damage/packaging issues",
- incorrectly: "The shipping address/phone number is filled in incorrectly",
- wrongItem: "The seller sent the wrong item",
- otherReasons: "Other reasons",
- },
- },
- // 西班牙
- "es-ES": {
- index: {
- homepage: "La página",
- switchLanguage: "Cambiar el idioma",
- address: "Gestión de direcciones",
- addAndEdit: "Añadir/cambiar dirección",
- account: "Cuenta y seguridad",
- password: "Cambiar contraseña/número de teléfono móvil",
- switch: "Cambiar el idioma",
- user: "Acuerdo de usuario",
- privacy: "Política de privacidad",
- platform: "Reglas de plataforma",
- merchant: "Acuerdo de solicitud de entrada comercial",
- layout: "Salir del login",
- setup: "Configuración de cuenta",
- information: "Información personal",
- headerImg: "avatares",
- nickname: "apodo",
- prompt:
- "Limitado a 4-24 caracteres (1 kanji =2 caracteres, 1 número vivo en inglés =1 carácter)",
- editNextname: "Editar el apodo",
- inland: "China continental",
- international: "internacional",
- initial: "Dirección por defecto",
- edit: "editor",
- delete: "borrar",
- wx: "Importación de wechat",
- add: "Nueva dirección añadida",
- contacts: "Información de contacto",
- wxAddress: "Dirección wechat delgada",
- newAddress: "Nueva dirección",
- name: "Los nombres",
- phone: "Teléfono móvil no",
- city: "Provincia y ciudad",
- detailed: "Dirección completa",
- goods: "Por favor complete la información del destinatario",
- pleasePhoneNumber:
- "Por favor, introduzca el número de teléfono móvil del destinatario",
- township: "Provincia ciudad distrito condado pueblo etc",
- sect: "Por favor, introduzca la dirección exacta al número de la casa",
- company: "Nombre de la empresa (opcional)",
- preserve: "guardar",
- empty: "vacíe",
- country: "países",
- postalCode: "Código postal",
- email: "Correo electrónico",
- companyName: "Nombre de empresa",
- selection: "favor seleccione",
- PleacePostalCode: "Por favor ingrese su código postal",
- addressBook: "Guardar a la dirección delgada",
- pleaseEmail: "Por favor, introduzca su correo electrónico (opcional)",
- editPassword: "Cambiar contraseña de acceso",
- editPhone: "Cambiar el número de teléfono",
- accountCancellation: "Cierre de cuenta",
- setPassword: "Establecer una contraseña",
- cancellation:
- "No se puede restaurar después de la cancelación, por favor, tenga cuidado",
- myDeposit: "Mi depósito de seguridad",
- balance: "El saldo",
- mineFollow: "Mi preocupación por",
- myPackage: "Mi paquete de",
- mallOrders: "Orden del centro",
- whole: "total",
- pendingPayment: "Pendiente de pago",
- joiningGroups: "En grupo",
- toBeShipped: "Listo para enviar",
- toBeReceived: "Para recibir",
- refund: "Reembolso/post-venta",
- leaderunction: "Función jefe",
- platform: "Plataforma mercancía biblioteca",
- productManagement: "Gestión de mercancías",
- orderManagement: "Gestión de pedidos",
- afterSales: "Gestión post-venta",
- supplyChain: "Cadena de suministro commodities",
- PCEnd: "PC cliente",
- pontact: "Contactar servicio al cliente",
- accountSettings: "Configuración de cuenta",
- shop: "Comercial",
- border: "transfronterizo",
- item: "Artículos",
- required: "Obligatorio",
- flow: "Logística transfronteriza",
- share: "Compartir",
- compute: "Calculadora",
- deliver: "Enviado al punto de tránsito",
- Sign: "El tránsito ha sido firmado",
- overseas: "Se está enviando al extranjero",
- mail: "Ir a enviar",
- mine: "El mío",
- addsign: "Añadir paquetes de puntos de tránsito",
- more: "Más",
- price: "Precio unitario",
- already: "Se ha luchado",
- parcel: "Paquete",
- residue: "residual",
- plan: "Progreso",
- start: "Hora de inicio",
- cut: "Plazo",
- parceling: "paquete",
- goparceling: "Ir a empacar",
- sender: "Nuevo remitente",
- recipient: "Nuevo destinatario",
- informat: "Rellene la información de la dirección de envío",
- informate: "Rellene la información de la dirección de recepción",
- addressbook: "Libreta de direcciones",
- select: "Por favor, seleccione la información del artículo",
- //主页
- search: "Buscar",
- Searchcon: "Contenido de la búsqueda",
- expensive: "Comprar caro Debe pagar",
- Something: "Cosas buenas del mundo",
- postage: "Envío gratis",
- Trade: "Cambiar lo viejo por lo nuevo",
- sort: "clase",
- fill: "Subvenciones",
- RMB: "RMB",
- history: "Dirección histórica",
- Fill: "Por favor, rellene",
- senderinfo: "Rellene la información del remitente",
- addressee: "Por favor ingrese el nombre del destinatario",
- enter: "determinar",
- shoptype: "Tipo de mercancía",
- estimated: "Peso estimado estimado",
- piece: "algo",
- rule: "Entender las reglas de facturación",
- Starting: "incipiente",
- destination: "destino",
- Commodity: "Peso de mercancía",
- Acquisition: "Obtener el precio",
- Calculated: "Calcula el peso",
- Estimated: "Gastos de envío estimados",
- details: "Ver los detalles",
- Normal: "Bienes comunes",
- special: "Mercancía especial",
- orderSearch: "Por favor, introduzca el número de pedido buscar",
- orderWeight: "Peso total del pedido cargado por la página actual",
- purchase: "Plataforma de compra propia",
- OrderNumber: "Número de pedido",
- Parcelweight: "Peso del paquete",
- payment: "Pague ahora mismo",
- Frozen: " congelación",
- recover: " recuperación",
- total: "total",
- selfPost: "Postal desde",
- receiveGoods: "A recibir en la plataforma",
- TrackingNumber: "Número de seguimiento",
- trackingNumber:
- "Ingrese el número de seguimiento para agregar rápidamente a mi paquete",
- Expresscompany: "Empresa de mensajería",
- ExpressCompany: "Introduzca el nombre de la empresa de mensajería",
- parcelWeight: "Por favor ingrese el peso del paquete",
- Addlist: "Añadir a la lista de paquetes",
- Addparcel: "Añadir un paquete",
- Packlist: "Lista de paquetes",
- classification: "Clasificación de mercancías",
- synthesis: "integrado",
- sell: "venta",
- Pricea: "precio",
- screen: "selección",
- Pricerange: "Rango de precios",
- Weightinterval: "Intervalo de peso",
- brand: "La marca",
- Proprietary: "Mercancía por cuenta propia",
- reset: "restaurar",
- yes: "es",
- Bottomprice: "Precio más bajo",
- highestprice: "Precio máximo",
- Discounted: "Precio con descuento",
- service: "servicios",
- Netcontent: "Contenido neto",
- sametype: "Mismo modelo bajo precio",
- review: "comentarios",
- Productdetails: "Detalles de mercancía",
- Specification: "Especificaciones y parámetros",
- Recommended: "Artículos recomendados para",
- material: "Materia prima principal",
- specification: "Las especificaciones",
- Shelflife: "caducidad",
- Suitableobject: "Apto para objetos",
- Customer: "call",
- Shopping: "carrito",
- follow: "atención",
- notification: "Notificación de llegada",
- Sele: "seleccione",
- Salesvolume: "Las ventas",
- stroll: "alrededores",
- article: "Art",
- know: "Lo sé",
- shar: "compartir",
- Copylink: "Copiar el enlace",
- Generatepicture: "Generar una imagen",
- Cancel: "cancelación",
- Paymentsuccess: "Pago realizado con éxito",
- MyOrder: "Disponible en personal center - mis pedidos",
- Vieworder: "Ver el pedido",
- Backtohomepage: "Volver al inicio",
- Channelspecification: "Descripción del canal",
- Billingmode: "Modelo de facturación",
- Chargeableweight: "Peso facturable",
- Estimatedcost: "Estimación de gastos",
- Itemtype: "Tipos de artículos",
- Channelrule: "Reglas del canal",
- Copiedpaste: "Ya copiado, ir y pegar",
- Replicationfailure: "Falla en copiar",
- shelves:
- "Le recordaremos a través del mensaje de wechat cuando el artículo está en stock y en estante",
- Actual: "Cantidad a pagar",
- Balancepayment: "Pago del saldo",
- Currentbalance: "Balance actual",
- WechatPay: "Pago con wechat",
- applicable: "Pago wechat aplicable",
- Customerservicepayment: "Servicio al cliente pago",
- Contactpayment: "Contacto servicio al cliente pago",
- Paymentinstructions: "Notas de pago",
- Confirmpayment: "Determine su pago",
- Commodityamount: "Cantidad de bienes",
- Grosscommodityweight: "Peso total de la mercancía",
- Costperkilogram: "Coste por kg",
- freight: "El flete",
- subtotal: "subtotal",
- Atotalof: "total",
- Submitorder: "Enviar un pedido",
- next: "Siguiente paso",
- Shipmentdate: "Fecha del gabinete de salida",
- Estimatedtimeofarrival: "Hora estimada de llegada",
- Workingday: "Días laborables",
- buy: "Comprar hasta",
- morefavorable: "Será mejor",
- Pleaseproductname: "Por favor ingrese el nombre comercial relevante",
- Goodgoods: "Productos de buena calidad",
- Saveeverything: "Cada estilo debe ahorrar",
- willpay: "Comprar caro, pagar",
- Subsidized: "Precio",
- typeof: "tipo",
- weight: "peso",
- number: "número",
- Immediatepayment: "pago inmediato",
- readandagree: "he leído y acepto",
- International: "internacional",
- Estimatedprice: "precio estimado",
- Marinetank: "contenedor marítimo",
- Expressservice: "servicio de expreso",
- Orderconfirmation: "confirmación de pedido",
- successful: "exitoso",
- pickpackage: "esperando recogida del mensajero",
- Ordertime: "hora del pedido",
- // switch: 'cambio',
- Popularshipment: "envío popular",
- manage: "gestionar",
- complete: "completar",
- selectall: "seleccionar todo",
- Grossweight: "peso bruto",
- GotoResult: "ir al pago",
- orderpaysforitself: "compensación por pedidos defectuosos",
- Soldout: "agotado",
- //账户余额
- accountBalance: "Saldo de la cuenta",
- myBalance: "Mi saldo",
- withdrawal: "Retiro de efectivo",
- recharge: "Recargar",
- balanceDetails: "Detalles del saldo",
- all: "Todo",
- theres: "No hay más datos",
- //我的关注
- mineCommodity: "Básicos",
- team: "Jefe del regimiento",
- people: "Atención humana",
- see: "Ver página de inicio",
- //个人功能
- thatPerson: "Función personal",
- become: "Convertirse en Jefe de grupo",
- chase: "compra",
- Ladder: "Modelo de renovación de cabeza de escalera",
- Ordinary: "Paquete comúnl",
- Special: "Paquetes especiales para",
- delivery: "Entrega de paquetes",
- Toggle: "Alternar",
- Gross: "Peso bruto del paquete",
- length: "Largo",
- wide: "Ancho",
- height: "Alto",
- accurately:
- "Estimación de los costos más precisa al complementar con el volumen",
- volume: "Volume totale",
- since: "Desde",
- Please: "Por favor, introduzca el nombre del artículo",
- Filling:
- "Rellene el artículo de envío con precisión para que podamos recomendarle productos más adecuados",
- Note: "Nota: El peso y el volumen reales se determinan por el mensajero. El peso puede aumentar después del empaque, y si el artículo tiene un peso pequeño pero un volumen grande, se cobrará según el peso volumétrico",
- closeaccount: "Seguro que desea cerrar su cuenta?",
- other: "otros",
- store: "trozos",
- sales:
- "Ventas: Compra tranquila con atención antes y después de la venta",
- album: "Guardar en álbum",
- identify: "Presiona y mantén para identificar y ver",
- evaluate: "Evaluar",
- particulars: "Particulares",
- savesuccessfully: "Guardado con éxito",
- merchandiseNews: "Noticias de productos",
- shutdown: "Desuscrito con éxito",
- Focus: "Siguiendo con éxito",
- understock: "Sin stock",
- successfullyAdded: "Agregado con éxito",
- Nofurtherdata: "No hay más datos",
- Searchchat: "Buscar historial de chat",
- customerService: "Servicio al cliente oficial",
- picture: "Imagen",
- voiceMessage: "Mensaje de voz",
- return: "Regresar",
- Marginpayment: "Pago de margen",
- itemtoSend: "Seleccione el artículo a enviar",
- selectitemType: "Seleccione el tipo de artículo",
- Weightnotlessthan: "El peso no debe ser menor que",
- cannotbelessthan: "La cantidad no debe ser menor que",
- Wechatlogin: "Iniciar sesión con WeChat",
- readandAgree: "He leído y acepto",
- useragreement: "Acuerdo del usuario",
- Privacyagreement: "Acuerdo de privacidad",
- offtheshelves: "Producto retirado de la estantería",
- top: "Parte superior",
- Shiftfocus: "Mover el enfoque",
- successfullydelete: "Eliminado con éxito",
- defaultTheme: "Tema predeterminado",
- and: "y",
- lowest: "mínimo",
- discount: "descuento",
- newcontainer: "Por favor, vuelva a seleccionar contenedor",
- window:
- "Por favor, haga clic en el icono flotante en la esquina superior derecha para copiar",
- Recent: "Recientemente utilizado",
- nodata: "No hay datos disponibles",
- Pleasecountry: "Por favor, seleccione un país",
- container: "Por favor, seleccione su contenedor",
- skip: "Omitir",
- Login: "Inicio de sesión exitoso",
- selectcity: "Por favor, seleccione una ciudad",
- shippingaddress: "Por favor, añada su dirección de envío",
- shippingmethod: "Por favor, seleccione el método de envío",
- Followed: "Siguiendo",
- Addtocart: "carrito",
- grouping: "Únete al grupo de compras inmediatamente",
- Selected: "Seleccionado",
- Buynow: "Comprar ahora",
- closeaccount: "¿Está seguro de que desea cerrar su cuenta?",
- other: "Otro",
- store: "Tienda",
- defaultaddress: "Establecer como dirección predeterminada",
- information:
- "Por favor, seleccione primero la ciudad e información del artículo.",
- Protocol: "Por favor, marque el acuerdo.",
- logisticsMethod: "Por favor, seleccione el método de logística.",
- selectCourier: "Por favor, seleccione la empresa de mensajería.",
- trackingNumber:
- "Por favor, introduzca el número de seguimiento del paquete.",
- parcelWeight: "Por favor, introduzca el peso del paquete.",
- //团长主页
- comments: "Número total de comentarios",
- default: "Predeterminado",
- newProduct: "Nuevos productos",
- salesVolume: "Ventas",
- favorableComment: "Elogios",
- //保证金余额
- saldo: "Saldo del margen",
- depositDetails: "Detalles de la fianza",
- noMore: "No hay más datos",
- //保证金明细
- income: "Ingresos",
- expenditure: "Gastos",
- marginStatement: "Descripción de la fianza",
- //我的包裹
- toPiattaforma:
- "Los productos han sido enviados a la Plataforma y están en transporte.",
- peso: "Los productos han sido empaquetados y pesados, a la espera de que los usuarios paguen",
- waitPiattaforma: "Esperando el envío de la plataforma",
- prodottoInviato:
- "Los productos han sido enviados y pronto se enviarán a usted.",
- insiemeDetail: "Detalles del paquete",
- orderCompleto: "Firma del pedido, la transacción se ha completado",
- pesoEmissione: "A la espera de que se emita el pesaje de tránsito",
- orderClose: "Cierre de pedidos",
- orderRefund: "El pedido ha sido reembolsado",
- refunding: "El pedido está solicitando un reembolso",
- waitCommity: "Los productos están a la espera de ser enviados",
- origin: "Lugar de origen",
- weighingWeight: "Peso de pesaje",
- weighingImage: "Imagen de pesaje",
- paymentRequired: "Pago a pagar",
- send: "Enviar",
- putAway: "Recibir",
- goodsNum: "Número de piezas",
- cope: "Copiar",
- payTime: "Tiempo de pago",
- sendTime: "Tiempo de envío",
- signForTime: "Tiempo de firma",
- pengingPay: "Pendiente de pago",
- paid: "Pagado",
- checkLogistics: "Ver logística",
- logisticsInformation: "Rellene la información logística",
- saved: "Guardado",
- //余额提现
- balanceWithdrawal: "Retiro de efectivo del saldo",
- paymentMethod: "Método de llegada",
- weChatBalance: "Saldo de Wechat",
- withdrawalAmount: "Importe del retiro",
- withdrawAllFunds: "Todos los retiros de efectivo",
- moneyAmount: "Cantidad que se puede retirar en efectivo",
- withdrawImmediately: "Retiro inmediato de efectivo",
- withdrawalDetails: "Detalles del retiro de efectivo",
- submitWith: "Se ha presentado la solicitud de retiro de efectivo",
- //充值
- goMoney: "Ir a retirar efectivo",
- balanceRecharge: "Recarga de la cuenta de saldo",
- customAmount: "Introduzca la cantidad personalizada",
- payMethod: "Método de pago",
- //商城订单
- differenzaPrezzo: "Diferencia por compensar",
- completato: "Completado",
- annullato: "Cancelado",
- refundService: "Reembolso / posventa",
- confirmGoods: "Si se confirma la recepción",
- cancelOrder: "El pedido ha sido cancelado",
- takeOrder: "El pedido ha sido recibido",
- cancellationOrder: "Cancelación del pedido",
- continuePayment: "Seguir pagando",
- deleteOrder: "Eliminar pedido",
- buyAgain: "Comprar de nuevo",
- anotherOrder: "Otro pedido",
- confirmReceipt: "Confirmación de la recepción",
- toEvaluate: "Para evaluar",
- orderRefunding: "En reembolso",
- refundSuccessful: "Reembolso exitoso",
- refuseRefund: "Denegación de reembolso",
- platformIntervention: "Intervención de la plataforma",
- orderRefund: "Reembolso",
- deleteRecord: "Borrar registro",
- afterDetails: "Detalles post - venta",
- ContinueApply: "Continuar solicitando",
- applying: "En la solicitud",
- waitingRefund: "A la espera de que el vendedor acepte el reembolso",
- seller: "El vendedor se niega a reembolsar",
- searchOrder: "Buscar mi pedido",
- refundFailed: "Falló el reembolso",
- //订单详情
- leftOver: "Sobra",
- hour: "Horas",
- automaticShutdown: "Min Apagado automático",
- additionalPostage:
- "Los productos han sido empaquetados y pesados, esperando que los usuarios reembolsen los gastos de envío.",
- needPostage: "Franqueo necesario",
- requestRefund: "Solicitar un reembolso",
- goodsPrice: "Precio total de los productos básicos",
- goodsWeight: "Peso total de la mercancía",
- accountsPayable: "Cuentas por pagar",
- //平台商品库
- searchGoods: "Buscar el nombre del producto",
- platformGoods: "Biblioteca de productos básicos de la plataforma",
- inReview: "En revisión",
- auditFailed: "La auditoría falló",
- removed: "Ha sido retirado de los estantes",
- supplier: "Proveedores",
- selfSupport: "Autónomo",
- inventory: "Inventario",
- removeProducts: "Productos retirados de los estantes",
- listingProducts: "Productos en los estantes",
- wantDiscount: "Quiero un descuento.",
- offShelf: "Fuera de los estantes",
- business: "Comerciantes",
- //商品管理
- alreadyListed: "En los estantes",
- batchDiscount: "Descuentos por lotes",
- listingGoods: "Productos de la plataforma en los estantes",
- cancelDiscount: "Cancelación de descuentos",
- deleteGoods: "Si eliminar la mercancía",
- removeGoods: "Si se retiran los productos de los estantes",
- beenDeleted: "La mercancía ha sido eliminada",
- cannotDiscount:
- "Cancelación exitosa, el descuento inicial de la mercancía no se puede cancelar",
- takenDown: "La mercancía ha sido retirada de los estantes",
- takenUp: "Los productos están en los estantes.",
- selectGoods: "Por favor, elija al menos un producto",
- originalPrice:
- "Con un descuento del 20%, introduzca el 80 y calcule al precio original.",
- preferential: "Concesiones",
- myGoods: "Mi mercancía",
- operatedProducts: "Productos autónomos de la plataforma",
- //订单管理
- audit: "Pendiente de revisión",
- depositPaid: "Fianza pendiente de pago",
- waitTeam: "A la espera de que el Jefe del Grupo envíe",
- headquarters: "A la espera de que la Sede envíe",
- shipped: "Enviado",
- actualPayment: "Pago real del comprador",
- merchantRemarks: "Nota del comerciante",
- PayDeposit: "Pago de la fianza",
- sendOutGoods: "Envío",
- searchOrderNumber:
- "Buscando número de pedido / número de teléfono móvil / producto / nombre",
- //订单管理订单详情
- logisticsNumber: "Número de lista logística",
- creationTime: "Tiempo de creación",
- modeTransport: "Modo de transporte",
- immediateDelivery: "Envío inmediato",
- replicatingSuccess: "Copia exitosa",
- orderNotes: "Nota del pedido",
- //售后管理
- pendingRefund: "Pendiente de reembolso",
- refunded: "Reembolsado",
- appliedIntervene: "Se ha solicitado la intervención de la plataforma",
- salesRecords: "Si confirmar la eliminación de los registros post - venta",
- confirmRefund: "Si se confirma el reembolso",
- agreeRefund: "Se ha acordado el reembolso",
- juJueRefund: "Se ha denegado el reembolso",
- goodsDelete: "La mercancía ha sido eliminada",
- AfterSalesOrder: "Pedidos post - venta",
- pleaseAmount: "Por favor, introduzca el monto del reembolso.",
- refuseApplication: "Rechazar la solicitud",
- AccettareRestituzione: "Acordar un reembolso",
- //售后管理详情
- pleaseRefund: "Por favor, procese la solicitud de reembolso.",
- ifAgree: "Si está de acuerdo, haga clic en 'aceptar reembolso'",
- refundRequest: "Usted rechazó la solicitud de reembolso",
- haveAgreed: "Usted acepta la solicitud de reembolso",
- pleaseConfirm: "Por favor, confirme si se reembolsa.",
- applicationInformation: "Información de la solicitud",
- theGoods: "Si recibir o no",
- receivedGoods: "Recibido",
- notReceivedGoods: "No recibido",
- AfterSalesInstructions: "Instrucciones post - venta",
- pictureVoucher: "Comprobante de imagen",
- reasonForRefusal: "Motivos de rechazo",
- pleaseEnterReason: "Por favor, introduzca la razón del rechazo.",
- submitTo: "Presentación",
- refundStatus: "Estado del reembolso",
- ReasonRefund: "Razones del reembolso",
- refundAmount: "Importe del reembolso",
- applyForTime: "Tiempo de solicitud",
- refundNumber: "Número de reembolso",
- PendingProcessing:
- "Pendiente de tramitación por parte de los comerciantes",
- //我的供应链商品
- supplyChain: "Mis productos de la cadena de suministro",
- removedSuccessfully: "Retirado con éxito de los estantes",
- successfullyListed: "éxito en los estantes",
- //结果反馈
- WaitingReview: "En la revisión, por favor espere pacientemente.",
- failedReview: "No aprobado, vuelva a presentar la información",
- rejectReason: "Razones del rechazo",
- successfullySettled: "Usted se ha establecido con éxito.",
- goodsRelease:
- "Por favor, visite la siguiente dirección de PC para el mantenimiento de la información de la tienda y la publicación de la información del producto.",
- copyLink: "Copiar enlace",
- accountNumber: "Cuenta",
- accountPassword: "Contraseña",
- resubmit: "Volver a presentar",
- resultFeedback: "Retroalimentación de resultados",
- //寄快递
- warehouseAddress: "Dirección del almacén de tránsito transfronterizo",
- addressFirst: "Por favor, envíe el paquete a esta dirección primero.",
- pleaseCompany:
- "Por favor, introduzca el nombre de la empresa de mensajería.",
- useDelivery: "Enviar mensajería",
- //团长入驻
- teamSettle: "El Jefe del regimiento se instaló",
- pleaseName: "Por favor, introduzca su nombre real.",
- IDCard: "Número de identificación",
- enterCard: "Introduzca su tarjeta de identificación",
- backCard: "Número de tarjeta bancaria",
- pleaseBackCard: "Introduzca su número de tarjeta bancaria",
- pleasePhone: "Por favor, introduzca el número de teléfono móvil",
- QRCode: "Código de verificación",
- pleaseQrCode: "Por favor, introduzca el Código de verificación de SMS",
- getQrCode: "Obtener el Código de verificación",
- startVerification: "Comienza la verificación de reconocimiento facial",
- userServiceAgreement: "Protocolo de servicio al usuario",
- checkFirst: "Por favor, marque primero",
- applicationResult:
- "La solicitud es exitosa, por favor espere los resultados de la auditoría.",
- pleaseIdentity:
- "Por favor, complete la verificación de identidad primero.",
- //申请退款
- reasonApplication: "Razones de la solicitud",
- applicationDescription: "Descripción de la solicitud",
- detailedDescription:
- "Por favor, rellene la descripción de la solicitud en detalle.",
- uploadCredentials: "Cargar comprobantes",
- upSheets: "Hasta 9",
- submitApplication: "Presentación de la solicitud",
- selectRefund: "Por favor, elija la razón del reembolso.",
- beCompleted: "Por favor, espere a que la imagen se suba.",
- appliedReview: "Se ha solicitado, por favor espere la revisión.",
- wrongShot: "Disparar mal / disparar más / no gustar",
- pageDescription:
- "El producto no coincide con la descripción de la página",
- productDamage: "Problemas de rotura / embalaje de mercancías",
- incorrectly:
- "Dirección de recepción / número de teléfono móvil rellenado incorrectamente",
- wrongItem: "El vendedor envía los productos equivocados",
- otherReasons: "Otras razones",
- },
- },
- //意大利
- "it-IT": {
- index: {
- homepage: "Home page",
- switchLanguage: "Cambio di lingua",
- address: "Gestione degli indirizzi",
- addAndEdit: "Nuovi indirizzi/modifiche",
- account: "Numero di conto e sicurezza",
- password: "Modificare la parola d’ordine/numero di cellulare",
- switch: "Cambio di lingua",
- user: "Accordi per gli utenti",
- privacy: "Politica in materia di tutela della vita privata",
- platform: "Regole per le piattaforme",
- merchant: "Accordo di adesione di un commerciante",
- layout: "Uscita logon",
- setup: "Fissazione del numero di conto",
- information: "Dati personali",
- headerImg: "avatar",
- nickname: "soprannome",
- prompt:
- "Limite da 4 a 24 caratteri (1 cinese =2 caratteri, 1 inglese vivo =1 carattere)",
- editNextname: "Soprannomi di redazione",
- inland: "Cina continentale",
- international: "internazionale",
- initial: "Indirizzo predefinito",
- edit: "editoriale",
- delete: "cancellare",
- wx: "Importazioni di wechat",
- add: "Nuovo indirizzo",
- contacts: "Información de contacto",
- wxAddress: "Dirección wechat delgada",
- newAddress: "Nuovi indirizzi",
- name: "nomi",
- phone: "Numero di telefono",
- city: "Aree metropolitane",
- detailed: "Indirizzo completo",
- goods: "Per piacere, completare l’informazione del destinatario",
- pleasePhoneNumber:
- "Per piacere, completare il numero di telefono del destinatario",
- township: "I comuni e le province le regioni, le città, ecc",
- sect: "Si prega di indicare l’indirizzo completo con il numero della targa",
- company: "Nome della società (indicare il nome della società)",
- preserve: "conservazione",
- empty: "svuotati",
- country: "paesi",
- postalCode: "P.",
- email: "Posta elettronica",
- companyName: "Nome della società",
- selection: "selezione",
- PleacePostalCode: "Per favore digitate il codice postale",
- addressBook: "Conservare all’indirizzo sottile",
- pleaseEmail:
- "Per abbonarsi, digitare la casella di posta elettronica (indirizzatela)",
- editPassword: "Modificare la password logon",
- editPhone: "Modifica del numero di telefono",
- accountCancellation: "Annullamento dei conti",
- setPassword: "Stabilire la password",
- cancellation:
- "Se il recupero non è possibile dopo l’annullamento, occorre procedere con cautela",
- myDeposit: "I margine",
- balance: "saldo",
- mineFollow: "La mia preoccupazione",
- myPackage: "Il mio pacco",
- mallOrders: "Orden del centro",
- whole: "totale",
- pendingPayment: "Pagamenti da effettuare",
- joiningGroups: "Nella composizione",
- toBeShipped: "Prodotti in attesa di spedizione",
- toBeReceived: "Para recibir",
- refund: "Rimborso/assistenza post-vendita",
- leaderunction: "Funzioni del capo servizio",
- platform: "Banca di prodotti di base",
- productManagement: "Gestione dei prodotti di base",
- orderManagement: "Gestione delle ordinazioni",
- afterSales: "Gestione post-vendita",
- supplyChain: "Prodotti della catena d’approvv igionamento",
- PCEnd: "PC, copiglie, pernotti",
- pontact: "Contatti con il servizio clienti",
- accountSettings: "Fissazione del numero di conto",
- shop: "posta",
- border: "transfrontaliero",
- item: "Informazioni sugli articoli",
- required: "Sarà compilata",
- flow: "La logistica transfrontaliera",
- share: "condividere",
- compute: "calcolatrici",
- deliver: "Punti di transito",
- Sign: "I trasferimenti sono stati firmati",
- overseas: "Sta andando all’estero",
- mail: "Per inviare gli articoli",
- mine: "La mia",
- addsign: "Aggiungere i pacchi ai punti di transito",
- more: "più",
- price: "Prezzo",
- already: "scritto",
- parcel: "pacchi",
- residue: "residuo",
- plan: "processo ",
- start: "Ora di inizio",
- cut: "Tempo di chiusura",
- parceling: "Scrive borsa",
- goparceling: "dischetti",
- sender: "Nuovi mittenti",
- recipient: "Nuovi destinatari",
- informat: "Compilare il tagliando di spedizione",
- informate: "Indicare l’indirizzo per il ricevimento",
- addressbook: "Indirizzo sottile",
- select: "Si prega di selezionare informazioni sugli articoli",
- //主页
- search: "ricerca",
- Searchcon: "Contenuto della ricerca",
- expensive: "Comprare costoso Mosto del",
- Something: "Il bene globale",
- postage: "Circostanze eccezionali",
- Trade: "Cambiare vecchio per nuovo",
- sort: "tipo",
- fill: "sovvenzioni",
- RMB: "RMB",
- history: "Indirizzo storico",
- Fill: "Per piacere",
- senderinfo: "Compilare le informazioni inviate ai mittenti",
- addressee: "Indicare il nome del destinatario",
- enter: "definire",
- shoptype: "Tipo di merce",
- estimated: "Peso stimato",
- piece: "cosa",
- rule: "Conoscenza delle norme di fatturazione",
- Starting: "Verso l’alto",
- destination: "destinazione",
- Commodity: "Peso delle merci",
- Acquisition: "Accesso ai prezzi",
- Calculated: "Calcolo del peso",
- Estimated: "Nolo stimato",
- details: "Esaminare i dettagli",
- Normal: "Merci comuni",
- special: "Prodotti speciali",
- orderSearch: "Digitare il numero d’ordine per effettuare la ricerca",
- orderWeight: "Peso totale delle ordinazioni attualmente caricate",
- purchase: "Acquisto di piattaforme",
- OrderNumber: "Numero d’ordine",
- Parcelweight: "Peso del pacco",
- payment: "Pagamenti immediati",
- Frozen: "congelamento",
- recover: "ripristino",
- total: "totale",
- selfPost: "Inviata dal",
- receiveGoods: "Lascia alla piattaforma il carico",
- TrackingNumber: "Numero del corriere espresso",
- trackingNumber:
- "Inserire il numero d’ordine del corriere rapido e completare rapidamente il pacco",
- Expresscompany: "Società di corriere rapido",
- ExpressCompany: "Indicare il nome del servizio di corriere espresso",
- parcelWeight: "Per piacere indicare il peso del pacco",
- Addlist: "Aggiunta all’elenco dei colli",
- Addparcel: "Aggiunta di pacchi",
- Packlist: "Elenco degli statuti",
- classification: "Classificazione delle merci",
- synthesis: "integrato",
- sell: "vendita",
- Pricea: "prezzi",
- screen: "screening",
- Pricerange: "Fascia di prezzo",
- Weightinterval: "Intervallo di peso",
- brand: "marca",
- Proprietary: "Prodotti per uso proprio",
- reset: "sostituzione",
- yes: "è",
- Bottomprice: "Prezzo più basso",
- highestprice: "Prezzo massimo",
- Discounted: "Prezzo ridotto",
- service: "servizi",
- Netcontent: "Tenore netto",
- sametype: "Prezzo ridotto dello stesso articolo",
- review: "commenti",
- Productdetails: "Dettaglio delle merci",
- Specification: "Parametri delle specifiche",
- Recommended: "Prodotti raccomandati",
- material: "Principali materie prime",
- specification: "Le specifiche",
- Shelflife: "Periodo di validità",
- Suitableobject: "Adatto agli oggetti",
- Customer: "servizio",
- Shopping: "acquisti",
- follow: "attenzione",
- notification: "Notifica di ricevimento",
- Sele: "scelta",
- Salesvolume: "Volume delle vendite",
- stroll: "gira",
- article: "articolo",
- know: "Io so che",
- shar: "condividere",
- Copylink: "Riproduzione di un link",
- Generatepicture: "Creazione di immagini",
- Cancel: "soppressione",
- MyOrder: "Disponibile presso il centro personale",
- Vieworder: "Controllare l’ordine",
- Backtohomepage: "Ritorno alla pagina iniziale",
- Channelspecification: "Descrizione dei canali",
- Billingmode: "Modelli di fatturazione",
- Chargeableweight: "Peso della fatturazione",
- Estimatedcost: "Oneri stimati",
- Itemtype: "Tipo di articolo",
- Channelrule: "Regolamentazione del canale",
- Copiedpaste: "Già copiato. Andiamo a fare affissione",
- Replicationfailure: "Fallimento della riproduzione",
- shelves:
- "Vi ricorderemo tramite wechat quando la merce è in stock e si mette sul mercato",
- Actual: "Importo versato",
- Balancepayment: "Pagamenti del saldo",
- Currentbalance: "Saldo delle partite correnti",
- WechatPay: "Pagamento tramite wechat",
- applicable: "Si applicano i pagamenti di wechat",
- Customerservicepayment: "Retribuzione del trasporto passeggeri",
- Contactpayment: "Contatti con i clienti pagamento",
- Paymentinstructions: "Avvisi di pagamento",
- Confirmpayment: "Determinazione dei pagamenti",
- Commodityamount: "Volume delle merci",
- Grosscommodityweight: "Peso totale delle merci",
- Costperkilogram: "Onere per kg",
- freight: "nolo",
- subtotal: "Totale parziale",
- Atotalof: "total",
- Submitorder: "Presentazione delle ordinazioni",
- next: "Le fasi successive",
- Shipmentdate: "Data di spedizione",
- Estimatedtimeofarrival: "Orario d’arrivo previsto",
- Workingday: "Giorni lavorativi",
- buy: "acquisti",
- morefavorable: "Più favorevole",
- Pleaseproductname: "Indicare il nome commerciale",
- Goodgoods: "Prodotti di qualità",
- Saveeverything: "Ogni contributo sarà provinciale",
- willpay: "L’acquisto è a pagamento",
- Subsidized: "Prezzo ",
- typeof: "tipo",
- weight: "peso",
- number: "numero",
- Immediatepayment: "pagamento immediato",
- readandagree: "ho letto e accetto",
- International: "internazionale",
- Estimatedprice: "prezzo stimato",
- Marinetank: "container marittimo",
- Expressservice: "servizio di espressione",
- Orderconfirmation: "conferma dell'ordine",
- successful: "riusciti",
- pickpackage: "in attesa della raccolta dal corriere",
- Ordertime: "tempo dell'ordine",
- switch: "commutare",
- Popularshipment: "spedizione popolare",
- manage: "gestire",
- complete: "completare",
- selectall: "seleziona tutto",
- Grossweight: "peso lordo",
- GotoResult: "vai al checkout",
- orderpaysforitself: "risarcimento per gli ordini difettosi",
- Soldout: "esaurito",
- //账户余额
- accountBalance: "Saldo del conto",
- myBalance: "Il mio equilibrio",
- withdrawal: "Ritiro",
- recharge: "Ricarica",
- balanceDetails: "Dettagli del saldo",
- all: "intero",
- theres: "Non ci sono più dati",
- //我的关注
- mineCommodity: "merce",
- team: "Team leader",
- people: "La gente segue",
- see: "Visualizza Home Page",
- //个人功能
- thatPerson: "Funzioni personali",
- become: "Diventa un team leader",
- chase: "acquisto",
- Ladder:
- "Negli ultimi anni si è registrato un aumento delle tasse di rinnovo",
- Ordinary: "Colli comuni",
- Special: "Spedizioni speciali",
- delivery: "Spedizione",
- Toggle: "Commuta",
- Gross: "Peso lordo del pacco",
- length: "Lunghezza",
- wide: "Larghezza",
- height: "Altezza",
- accurately:
- "Stimare il costo con maggiore precisione integrando il volume",
- volume: "Volume totale",
- since: "Da",
- Please: "Per favore, inserisci il nome dell'oggetto",
- Filling:
- "Compilare il nome dell'oggetto da spedire con precisione può aiutarci a consigliare prodotti più adatt",
- Note: "Nota: Il peso e il volume effettivi sono determinati dal corriere. Il peso potrebbe aumentare dopo l'imballaggio, e se l'oggetto ha un peso basso ma un volume elevato, verrà addebitato in base al peso volumetrico",
- window:
- "Si prega di cliccare sulla finestra fluttuante nell angolo in alto a destra per copiare.",
- Recent: "Usato di recente",
- nodata: "Nessun dato disponibile",
- Pleasecountry: "Si prega di selezionare un paese prima",
- container: "Si prega di scegliere un contenitore",
- skip: "Salta",
- Login: "Accesso riuscito",
- selectcity: "Si prega di selezionare una città prima",
- shippingaddress:
- "Si prega di aggiungere il proprio indirizzo di spedizione",
- shippingmethod: "Si prega di scegliere un metodo di spedizione",
- Followed: "Seguito",
- Addtocart: "acquist",
- grouping: "Unisciti al gruppo immediatamente",
- Selected: "Selezionato",
- Buynow: "Acquista ora",
- closeaccount: "E’ sicuro di voler cancellare il numero di conto?",
- other: "altri",
- store: "Del negozio",
- sales: "Pre-vendita e post-vendita, acquisti senza preoccupazioni",
- album: "Salva nell album",
- identify: "Tieni premuto per riconoscere e visualizzare",
- evaluate: "Valuta",
- particulars: "Particolari",
- savesuccessfully: "Salvato con successo",
- merchandiseNews: "Notizie sui prodotti",
- shutdown: "Rimosso dai seguiti con successo",
- Focus: "Seguito con successo",
- understock: "Scarso magazzino",
- successfullyAdded: "Aggiunto con successo",
- Nofurtherdata: "Nessun altro dato disponibile",
- Searchchat: "Cerca nella cronologia della chat",
- customerService: "Servizio clienti ufficiale",
- picture: "Immagine",
- voiceMessage: "Messaggio vocale",
- return: "Ritorna",
- Marginpayment: "Pagamento della cauzione",
- itemtoSend: "Seleziona l oggetto da spedire",
- selectitemType: "Seleziona il tipo di oggetto",
- Weightnotlessthan: "Il peso non deve essere inferiore a",
- cannotbelessthan: "La quantità non deve essere inferiore a",
- Wechatlogin: "Accedi con WeChat",
- readandAgree: "Ho letto e accetto",
- useragreement: "Accordo utente",
- Privacyagreement: "Accordo sulla privacy",
- offtheshelves: "Prodotto non più in vendita",
- top: "In cima",
- Shiftfocus: "Sposta la attenzione",
- successfullydelete: "Eliminato con successo",
- defaultTheme: "Tema predefinito",
- and: "e",
- lowest: "minimo",
- discount: "sconti",
- newcontainer: "Per favore riprendete il contenitore",
- defaultaddress: "Definite l’indirizzo di default",
- information: "Seleziona prima la città e le informazioni sull oggetto.",
- Protocol: "Seleziona prima il protocollo.",
- logisticsMethod: "Seleziona il metodo di logistica.",
- selectCourier: "Seleziona la compagnia di corriere.",
- trackingNumber: "Inserisci il numero di traccia del pacco.",
- parcelWeight: "Inserisci il peso del pacco.",
- //团长主页
- comments: "Tổng số bình luận",
- default: "Mặc định",
- newProduct: "Sản phẩm mới",
- salesVolume: "Bán hàng",
- favorableComment: "Recensioni positive",
- //保证金余额
- saldo: "saldo del margine",
- depositDetails: "Dettagli del deposito",
- noMore: "Non ci sono più dati disponibili",
- //保证金明细
- income: "reddito",
- expenditure: "spese",
- marginStatement: "Dichiarazione di margine",
- //我的包裹
- toPiattaforma:
- "Il prodotto è stato inviato alla piattaforma ed è attualmente in transito",
- peso: "Il prodotto è stato confezionato e pesato, in attesa del pagamento dell'utente",
- waitPiattaforma: "In attesa della spedizione della piattaforma",
- prodottoInviato:
- "Il prodotto è stato spedito e ti verrà consegnato presto",
- insiemeDetail: "Dettagli del pacchetto",
- orderCompleto: "Ordine firmato, transazione completata",
- pesoEmissione: "In attesa dell'invio della pesatura in transito",
- orderClose: "Chiusura dell'ordine",
- orderRefund: "Ordine rimborsato",
- refunding: "L'ordine richiede un rimborso",
- waitCommity: "Il prodotto è in attesa di spedizione",
- origin: "Origine",
- weighingWeight: "Peso di pesatura",
- weighingImage: "Pesatura dell'immagine",
- paymentRequired: "Pagamento richiesto",
- send: "invia",
- putAway: "raccogliere",
- goodsNum: "numero",
- cope: "copia",
- payTime: "Tempi di pagamento",
- sendTime: "Tempi di consegna",
- signForTime: "Orario di accesso",
- pengingPay: "Pagamento in sospeso",
- paid: "pagato",
- checkLogistics: "Visualizza la logistica",
- logisticsInformation: "Compila le informazioni logistiche",
- saved: "Salvato",
- //余额提现
- balanceWithdrawal: "Ritiro del saldo",
- paymentMethod: "Metodo di pagamento",
- weChatBalance: "Saldo WeChat",
- withdrawalAmount: "Importo del prelievo",
- withdrawAllFunds: "Prelevare tutti i fondi",
- moneyAmount: "Importo prelevabile",
- withdrawImmediately: "Ritira immediatamente",
- withdrawalDetails: "Dettagli sul ritiro",
- submitWith: "Richiesta di recesso presentata",
- //充值
- goMoney: "Vai a prelevare denaro",
- balanceRecharge: "Conto di ricarico",
- customAmount: "Inserisci importo personalizzato",
- payMethod: "Metodo di pagamento",
- //商城订单
- differenzaPrezzo: "Differenza di prezzo in sospeso",
- completato: "Completato",
- annullato: "Annullato",
- refundService: "Rimborso/servizio post-vendita",
- confirmGoods: "Avete confermato il ricevimento della merce",
- cancelOrder: "Ordine annullato",
- takeOrder: "Ordine ricevuto",
- cancellationOrder: "annullamento dell'ordine",
- continuePayment: "Continuare il pagamento",
- deleteOrder: "Elimina ordine",
- buyAgain: "Compra di nuovo",
- anotherOrder: "Un altro ordine",
- confirmReceipt: "Confermare la ricezione della merce",
- toEvaluate: "Vai a valutare",
- orderRefunding: "Restituzioni in corso",
- refundSuccessful: "Rimborso riuscito",
- refuseRefund: "Rimborso dei rifiuti",
- platformIntervention: "Intervento sulla piattaforma",
- orderRefund: "rimborso",
- deleteRecord: "Elimina record",
- afterDetails: "Dettagli post vendita",
- ContinueApply: "Continuare ad applicare",
- applying: "Applicazione in corso",
- waitingRefund: "In attesa che il venditore accetti un rimborso",
- seller: "Il venditore rifiuta il rimborso",
- searchOrder: "Cerca il mio ordine",
- refundFailed: "Rimborso fallito",
- //订单详情
- leftOver: "Resto",
- hour: "ora",
- automaticShutdown: "minuto Arresto automatico",
- additionalPostage:
- "Il prodotto è stato confezionato e pesato, in attesa che l'utente paghi la tassa di spedizione",
- needPostage: "È richiesta una spedizione supplementare",
- requestRefund: "Richiedere il rimborso",
- goodsPrice: "Prezzo totale del prodotto",
- goodsWeight: "Peso totale del prodotto",
- accountsPayable: "Conti passivi",
- //平台商品库
- searchGoods: "Ricerca del nome del prodotto",
- platformGoods: "Libreria di prodotti della piattaforma",
- inReview: "In corso di revisione",
- auditFailed: "Revisione fallita",
- removed: "Rimosso",
- supplier: "fornitore",
- selfSupport: "autosufficienza",
- inventory: "stock",
- removeProducts: "Rimuovi prodotti",
- listingProducts: "Elenco prodotti",
- wantDiscount: "Voglio uno sconto",
- offShelf: "Rimuovere dagli scaffali",
- business: "affari",
- //商品管理
- alreadyListed: "Già elencato",
- batchDiscount: "Sconto lotto",
- listingGoods: "Elenco dei prodotti della piattaforma",
- cancelDiscount: "Annulla sconto",
- deleteGoods: "Vuoi eliminare il prodotto",
- removeGoods: "In caso di ritiro del prodotto",
- beenDeleted: "Il prodotto è stato cancellato",
- cannotDiscount:
- "Cancellato con successo, lo sconto iniziale sul prodotto non può essere annullato",
- takenDown: "Il prodotto è stato rimosso",
- takenUp: "Il prodotto è stato elencato",
- selectGoods: "Seleziona almeno un prodotto",
- originalPrice:
- "20% di sconto, inserisci l'80% e calcola in base al prezzo originale",
- preferential: "Sconto",
- myGoods: "Il mio prodotto",
- operatedProducts: "Prodotti autonomi della piattaforma",
- //订单管理
- audit: "Revisione in sospeso",
- depositPaid: "Deposito da versare",
- waitTeam: "Aspettando che il leader del team spedisca la merce",
- headquarters: "In attesa della spedizione dal quartier generale",
- shipped: "Già spedito",
- actualPayment: "Pagamento effettivo dell'acquirente",
- merchantRemarks: "Osservazioni commerciali",
- PayDeposit: "Paga la caparra",
- sendOutGoods: "consegnare merci",
- searchOrderNumber:
- "Ricerca del numero d'ordine/numero di telefono/prodotto/nome",
- //订单管理订单详情
- logisticsNumber: "Numero di tracciamento logistico",
- creationTime: "Tempo di creazione",
- modeTransport: "tipo di spedizione",
- immediateDelivery: "Nave immediatamente",
- replicatingSuccess: "Copia riuscita",
- orderNotes: "Osservazioni d'ordine",
- //售后管理
- pendingRefund: "Restituzioni in sospeso",
- refunded: "Rimborsato",
- appliedIntervene: "È stato richiesto l'intervento della piattaforma",
- salesRecords: "Sei sicuro di eliminare il record post-vendita",
- confirmRefund: "Sei sicuro del rimborso",
- agreeRefund: "Il rimborso è stato concordato",
- juJueRefund: "La restituzione è stata rifiutata",
- goodsDelete: "Il prodotto è stato cancellato",
- AfterSalesOrder: "Ordine post vendita",
- pleaseAmount: "Inserisci l'importo del rimborso",
- refuseApplication: "Rifiuta la domanda",
- AccettareRestituzione: "Accettare la restituzione",
- //售后管理详情
- pleaseRefund: "Si prega di elaborare la richiesta di rimborso",
- ifAgree: "Se sei d'accordo, clicca su 'Accetto il rimborso'",
- refundRequest: "Hai rifiutato la richiesta di rimborso",
- haveAgreed: "Hai accettato la richiesta di rimborso",
- pleaseConfirm: "Si prega di confermare se è richiesto un rimborso",
- applicationInformation: "Informazioni sull'applicazione",
- theGoods: "Avete ricevuto la merce",
- receivedGoods: "Merci ricevute",
- notReceivedGoods: "Merci non ricevute",
- AfterSalesInstructions: "Istruzioni post vendita",
- pictureVoucher: "Voucher fotografico",
- reasonForRefusal: "Motivo del rifiuto",
- pleaseEnterReason: "Inserisci il motivo del rifiuto",
- submitTo: "Invia",
- refundStatus: "Stato del rimborso",
- ReasonRefund: "Motivo della restituzione",
- refundAmount: "importo del rimborso",
- applyForTime: "Tempo di applicazione",
- refundNumber: "Numero della restituzione",
- PendingProcessing: "Elaborazione dei commercianti in sospeso",
- //我的供应链商品
- supplyChain: "I miei prodotti della catena di fornitura",
- removedSuccessfully: "Rimosso con successo",
- successfullyListed: "Elenco riuscito",
- //结果反馈
- WaitingReview:
- "In fase di revisione, si prega di essere paziente e attendere~",
- failedReview: "Impossibile, inviare nuovamente le informazioni",
- rejectReason: "Motivo del rifiuto",
- successfullySettled: "Hai aderito con successo",
- goodsRelease:
- "Visita il seguente indirizzo PC per mantenere le informazioni sul negozio e pubblicare le informazioni sul prodotto",
- copyLink: "Copia collegamento",
- accountNumber: "numero di conto",
- accountPassword: "password",
- resubmit: "Riprendi",
- resultFeedback: "Feedback sui risultati",
- //寄快递
- warehouseAddress: "Indirizzo del deposito di transito transfrontaliero",
- addressFirst: "Si prega di inviare il pacco a questo indirizzo prima",
- pleaseCompany: "Inserisci il nome della compagnia di corriere",
- useDelivery: "utilizzare la consegna espressa",
- //团长入驻
- teamSettle: "Il capo squadra si è sistemato",
- pleaseName: "Inserisci il tuo vero nome",
- IDCard: "Numero identificativo",
- enterCard: "Inserisci la tua carta d'identità",
- backCard: "Numero della carta di credito",
- pleaseBackCard: "Inserisci il numero della tua carta di credito",
- pleasePhone: "Inserisci il tuo numero di telefono",
- QRCode: "Codice di verifica",
- pleaseQrCode: "Inserisci il codice di verifica SMS",
- getQrCode: "Ottenere il codice di verifica",
- startVerification: "Avvia la verifica del riconoscimento facciale",
- userServiceAgreement: "Accordo di servizio utente",
- checkFirst: "Seleziona prima la casella",
- applicationResult:
- "Applicazione riuscita, si prega di attendere il risultato della recensione",
- pleaseIdentity: "Si prega di completare prima la verifica dell'identità",
- //申请退款
- reasonApplication: "Motivo della domanda",
- applicationDescription: "Descrizione dell'applicazione",
- detailedDescription: "Fornire istruzioni dettagliate per l'applicazione",
- uploadCredentials: "Carica credenziali",
- upSheets: "Fino a 9 fogli",
- submitApplication: "Invia domanda",
- selectRefund: "Seleziona il motivo del rimborso",
- beCompleted: "Attendi che il caricamento dell'immagine sia completato",
- appliedReview: "Applicato, si prega di attendere la revisione",
- wrongShot: "Colpo sbagliato/scatti multipli/antipatia",
- pageDescription:
- "Il prodotto non corrisponde alla descrizione della pagina",
- productDamage: "Problemi di danneggiamento del prodotto/imballaggio",
- incorrectly:
- "L'indirizzo di spedizione / numero di telefono è inserito in modo errato",
- wrongItem: "Il venditore ha inviato l'articolo sbagliato",
- otherReasons: "Altri motivi",
- },
- },
- };
|