| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502 |
- [
- [
- "其他",
- "Other"
- ],
- [
- "文件管理",
- "File Management"
- ],
- [
- "该模板正在开发中",
- "This template is under development"
- ],
- [
- "未登录",
- "Not logged in"
- ],
- [
- "总点击",
- "Total clicks"
- ],
- [
- "赞",
- "Like"
- ],
- [
- "收藏",
- "Favorite"
- ],
- [
- "粉丝",
- "Fans"
- ],
- [
- "接单模式",
- "Order receiving mode"
- ],
- [
- "已关闭",
- "Closed"
- ],
- [
- "消息通知",
- "Message notification"
- ],
- [
- "待支付",
- "Pending payment"
- ],
- [
- "未发货",
- "Not shipped"
- ],
- [
- "已发货",
- "Shipped"
- ],
- [
- "售后 / 退款",
- "After-sales / Refund"
- ],
- [
- "我的钱包",
- "My wallet"
- ],
- [
- "数据看板",
- "Data dashboard"
- ],
- [
- "历史记录",
- "History"
- ],
- [
- "邀请好友",
- "Invite friends"
- ],
- [
- "设置",
- "Settings"
- ],
- [
- "转动图片",
- "Rotate Picture"
- ],
- [
- "验证通过",
- "Verification Passed"
- ],
- [
- "验证失败",
- "Verification Failed"
- ],
- [
- "操作",
- "Operation"
- ],
- [
- "清空",
- "Clear"
- ],
- [
- "预览",
- "Preview"
- ],
- [
- "设置高度",
- "Set Height"
- ],
- [
- "毛笔效果",
- "Brush Effect"
- ],
- [
- "添加LOGO",
- "Add LOGO"
- ],
- [
- "圆角定位点",
- "Rounded Corner Anchor Point"
- ],
- [
- "内间距",
- "Inner Spacing"
- ],
- [
- "导出图片",
- "Export Picture"
- ],
- [
- "矩形",
- "Rectangle"
- ],
- [
- "点",
- "Point"
- ],
- [
- "线性",
- "Linear"
- ],
- [
- "小方格",
- "Small Square"
- ],
- [
- "格式化",
- "Format"
- ],
- [
- "添加",
- "Add"
- ],
- [
- "减去",
- "Subtract"
- ],
- [
- "获取某个单位的开始时间",
- "Get the Start Time of a Certain Unit"
- ],
- [
- "密码输入",
- "Password input"
- ],
- [
- "可清除",
- "Clearable"
- ],
- [
- "左右插槽",
- "Left and right slots"
- ],
- [
- "左图标",
- "Left icon"
- ],
- [
- "右图标",
- "Right icon"
- ],
- [
- "自动聚焦",
- "Auto focus"
- ],
- [
- "长度为6",
- "Length is 6"
- ],
- [
- "步进为10",
- "Step is 10"
- ],
- [
- "最小为10",
- "Minimum is 10"
- ],
- [
- "最大为50",
- "Maximum is 50"
- ],
- [
- "可以小数",
- "Can be decimal"
- ],
- [
- "可以输入",
- "Can be input"
- ],
- [
- "用户名",
- "Username"
- ],
- [
- "请输入用户名",
- "Please enter username"
- ],
- [
- "邮箱",
- "Email"
- ],
- [
- "请输入邮箱地址",
- "Please enter email address"
- ],
- [
- "动态验证",
- "Dynamic verification"
- ],
- [
- "联系人",
- "Contact"
- ],
- [
- "添加联系人",
- "Add contact"
- ],
- [
- "身高",
- "Height"
- ],
- [
- "跑马灯",
- "Marquee"
- ],
- [
- "分页",
- "Pagination"
- ],
- [
- "时间轴",
- "Timeline"
- ],
- [
- "拖拽",
- "Drag"
- ],
- [
- "筛选栏",
- "Filter Bar"
- ],
- [
- "树形结构",
- "Tree Structure"
- ],
- [
- "状态组件",
- "Status Component"
- ],
- [
- "角标",
- "Badge"
- ],
- [
- "通知栏",
- "Notification Bar"
- ],
- [
- "倒计时",
- "Countdown"
- ],
- [
- "数字滚动",
- "Digital Scrolling"
- ],
- [
- "进度条",
- "Progress Bar"
- ],
- [
- "圆形进度条",
- "Circular Progress Bar"
- ],
- [
- "骨架图",
- "Skeleton Screen"
- ],
- [
- "加载更多",
- "Load More"
- ],
- [
- "反馈组件",
- "Feedback Component"
- ],
- [
- "操作菜单",
- "Operation Menu"
- ],
- [
- "弹窗",
- "Pop-up Window"
- ],
- [
- "确认框",
- "Confirmation Box"
- ],
- [
- "提示框",
- "Prompt Box"
- ],
- [
- "签名",
- "Signature"
- ],
- [
- "图片裁剪",
- "Image Cropping"
- ],
- [
- "Canvas",
- "Canvas"
- ],
- [
- "富文本",
- "Rich Text"
- ],
- [
- "该功能正在开发中",
- "This function is under development"
- ],
- [
- "圆形",
- "Circle"
- ],
- [
- "组合",
- "Combination"
- ],
- [
- "基础用法",
- "Basic Usage"
- ],
- [
- "自定义",
- "Customization"
- ],
- [
- "加快滚动速度",
- "Speed up scrolling"
- ],
- [
- "显示小数位数",
- "Display decimal places"
- ],
- [
- "自定义样式",
- "Custom style"
- ],
- [
- "自定义颜色",
- "Custom color"
- ],
- [
- "自定义宽度",
- "Custom width"
- ],
- [
- "不显示文本",
- "Do not display text"
- ],
- [
- "改个颜色",
- "Change the color"
- ],
- [
- "显示文本",
- "Display text"
- ],
- [
- "快一些",
- "Faster"
- ],
- [
- "带图标",
- "With icon"
- ],
- [
- "设置速度",
- "Set speed"
- ],
- [
- "左间隔",
- "Left interval"
- ],
- [
- "右移动",
- "Right move"
- ],
- [
- "左移动",
- "Left move"
- ],
- [
- "多个数据",
- "Multiple data"
- ],
- [
- "点击收起",
- "Click to collapse"
- ],
- [
- "点击展开",
- "Click to expand"
- ],
- [
- "ref 方式调用",
- "Call by ref method"
- ],
- [
- "自定义图标、文字、大小",
- "Customize icon, text, size"
- ],
- [
- "上传证件照",
- "Upload ID photo"
- ],
- [
- "多选",
- "Multiple selection"
- ],
- [
- "限制 3 个",
- "Limit 3"
- ],
- [
- "边框",
- "Border"
- ],
- [
- "显示字数",
- "Displayed characters"
- ],
- [
- "自动增高",
- "Auto increase"
- ],
- [
- "其他颜色",
- "Other colors"
- ],
- [
- "大一点",
- "Bigger"
- ],
- [
- "正方形",
- "Square"
- ],
- [
- "范围选择",
- "Range selection"
- ],
- [
- "显示值",
- "Display value"
- ],
- [
- "步长10",
- "Step 10"
- ],
- [
- "开发中,敬请期待",
- "Under development, please look forward to it"
- ],
- [
- "基础组件",
- "Basic components"
- ],
- [
- "文本",
- "Text"
- ],
- [
- "按钮",
- "Button"
- ],
- [
- "图片",
- "Image"
- ],
- [
- "图标",
- "Icon"
- ],
- [
- "标签",
- "Label"
- ],
- [
- "表单组件",
- "Form components"
- ],
- [
- "表单验证",
- "Form validation"
- ],
- [
- "输入框",
- "Input box"
- ],
- [
- "文本域",
- "Text area"
- ],
- [
- "计数器",
- "Counter"
- ],
- [
- "口令输入",
- "Password input"
- ],
- [
- "键盘",
- "Keyboard"
- ],
- [
- "单选框",
- "Radio box"
- ],
- [
- "多选框",
- "Checkbox"
- ],
- [
- "开关",
- "Switch"
- ],
- [
- "评分",
- "Rating"
- ],
- [
- "滑块",
- "Slider"
- ],
- [
- "选择器",
- "Selector"
- ],
- [
- "可滑动",
- "Swipeable"
- ],
- [
- "左滑编辑",
- "Swipe left to edit"
- ],
- [
- "编辑",
- "Edit"
- ],
- [
- "右滑删除",
- "Swipe right to delete"
- ],
- [
- "账号",
- "Account"
- ],
- [
- "我的订单",
- "My Orders"
- ],
- [
- "我的收藏",
- "My Favorites"
- ],
- [
- "筛选",
- "Filter"
- ],
- [
- "长按项即可拖动排序",
- "Long press on an item to drag and sort"
- ],
- [
- "单列排序",
- "Single-column sorting"
- ],
- [
- "不需要长按",
- "No long press required"
- ],
- [
- "结合列表使用",
- "Use in combination with a list"
- ],
- [
- "多列排序",
- "Multi-column sorting"
- ],
- [
- "结合图片使用",
- "Use in combination with images"
- ],
- [
- "禁用手势",
- "Disable gestures"
- ],
- [
- "自定义样式2",
- "Custom style 2"
- ],
- [
- "无图片",
- "No image"
- ],
- [
- "圆角",
- "Rounded corners"
- ],
- [
- "自定义大小",
- "Custom size"
- ],
- [
- "省略号",
- "Ellipsis"
- ],
- [
- "多行省略号",
- "Multi-line ellipsis"
- ],
- [
- "金额",
- "Amount"
- ],
- [
- "手机号脱敏",
- "Mobile number desensitization"
- ],
- [
- "姓名脱敏",
- "Name desensitization"
- ],
- [
- "邮箱脱敏",
- "Email desensitization"
- ],
- [
- "银行卡脱敏",
- "Bank card desensitization"
- ],
- [
- "自定义脱敏字符",
- "Custom desensitization character"
- ],
- [
- "主要",
- "Main"
- ],
- [
- "危险",
- "Dangerous"
- ],
- [
- "信息",
- "Information"
- ],
- [
- "邮件",
- "Mail"
- ],
- [
- "文件",
- "File"
- ],
- [
- "可关闭",
- "Closable"
- ],
- [
- "镂空",
- "Hollowed out"
- ],
- [
- "自定义无圆角",
- "Custom without rounded corners"
- ],
- [
- "不同裁剪",
- "Different cropping"
- ],
- [
- "点击可预览",
- "Click to preview"
- ],
- [
- "失败时显示",
- "Display when failed"
- ],
- [
- "自定义圆角",
- "Custom rounded corners"
- ],
- [
- "设置颜色",
- "Set color"
- ],
- [
- "垂直方向",
- "Vertical direction"
- ],
- [
- "3秒后加载完成",
- "Load completed after 3 seconds"
- ],
- [
- "隐藏为 00 的值",
- "Hide the value of 00"
- ],
- [
- "指定天数",
- "Specify the number of days"
- ],
- [
- "自定义模板",
- "Custom template"
- ],
- [
- "指定小时",
- "Specify the hour"
- ],
- [
- "指定分钟",
- "Specify the minute"
- ],
- [
- "指定秒",
- "Specify the second"
- ],
- [
- "完成后提示",
- "Prompt after completion"
- ],
- [
- "3秒后开始倒计时",
- "Start the countdown after 3 seconds"
- ],
- [
- "结合按钮",
- "Combine with button"
- ],
- [
- "购买",
- "Purchase"
- ],
- [
- "消息",
- "Message"
- ],
- [
- "结合图片",
- "Combine with picture"
- ],
- [
- "结合图标",
- "Combine with icon"
- ],
- [
- "点击触发",
- "Click to trigger"
- ],
- [
- "不同大小",
- "Different sizes"
- ],
- [
- "不同颜色",
- "Different colors"
- ],
- [
- "使用base64",
- "Use base64"
- ],
- [
- "没有错误提示",
- "No error prompt"
- ],
- [
- "体重",
- "Weight"
- ],
- [
- "所在地区",
- "Location"
- ],
- [
- "出生年月",
- "Date of Birth"
- ],
- [
- "个人简介",
- "Personal Introduction"
- ],
- [
- "请输入个人简介",
- "Please enter your personal introduction"
- ],
- [
- "公开状态",
- "Public Status"
- ],
- [
- "重置",
- "Reset"
- ],
- [
- "提交",
- "Submit"
- ],
- [
- "未知",
- "Unknown"
- ],
- [
- "篮球",
- "Basketball"
- ],
- [
- "足球",
- "Football"
- ],
- [
- "羽毛球",
- "Badminton"
- ],
- [
- "乒乓球",
- "Table Tennis"
- ],
- [
- "游泳",
- "Swimming"
- ],
- [
- "用户名不能为空",
- "Username cannot be empty"
- ],
- [
- "用户名长度在3-20个字符之间",
- "Username length should be between 3 and 20 characters"
- ],
- [
- "邮箱不能为空",
- "Email cannot be empty"
- ],
- [
- "邮箱格式不正确",
- "Invalid email format"
- ],
- [
- "身高不能为空",
- "Height cannot be empty"
- ],
- [
- "身高在160-190cm之间",
- "Height should be between 160 and 190 cm"
- ],
- [
- "显示星期",
- "Show week"
- ],
- [
- "显示其他月份",
- "Show other months"
- ],
- [
- "不同位置",
- "Different positions"
- ],
- [
- "顶部",
- "Top"
- ],
- [
- "中间",
- "Middle"
- ],
- [
- "底部",
- "Bottom"
- ],
- [
- "不同类型",
- "Different types"
- ],
- [
- "成功",
- "Success"
- ],
- [
- "失败",
- "Failure"
- ],
- [
- "警告",
- "Warning"
- ],
- [
- "问题",
- "Problem"
- ],
- [
- "停止",
- "Stop"
- ],
- [
- "自定义图标",
- "Custom icon"
- ],
- [
- "只存在一个",
- "Only one exists"
- ],
- [
- "不同位置提示",
- "Different position tips"
- ],
- [
- "不同类型提示",
- "Different type tips"
- ],
- [
- "带图标提示",
- "Tips with icon"
- ],
- [
- "移除其他已存在的提示",
- "Remove other existing tips"
- ],
- [
- "打开弹窗",
- "Open pop-up window"
- ],
- [
- "设置宽度 80%",
- "Set width 80%"
- ],
- [
- "充值1000元",
- "Recharge 1000 yuan"
- ],
- [
- "完成首笔交易",
- "Complete the first transaction"
- ],
- [
- "优选灵活配置混合A",
- "Preferred Flexible Allocation Hybrid A"
- ],
- [
- "1000元起",
- "Starting from 1000 yuan"
- ],
- [
- "禁用切换按钮",
- "Disable the switch button"
- ],
- [
- "自定义高度",
- "Customize height"
- ],
- [
- "多页数",
- "Multiple pages"
- ],
- [
- "上一页",
- "Previous page"
- ],
- [
- "下一页",
- "Next page"
- ],
- [
- "横向滚动",
- "Horizontal scroll"
- ],
- [
- "纵向滚动",
- "Vertical scroll"
- ],
- [
- "快一点",
- "Faster"
- ],
- [
- "暂停",
- "Pause"
- ],
- [
- "内容靠左",
- "Content aligned to the left"
- ],
- [
- "QQ",
- "QQ"
- ],
- [
- "带箭头",
- "With arrow"
- ],
- [
- "余额",
- "Balance"
- ],
- [
- "带图片",
- "With picture"
- ],
- [
- "神仙都没用",
- "Even the gods are useless"
- ],
- [
- "折叠",
- "Fold"
- ],
- [
- "插槽",
- "Slot"
- ],
- [
- "使用 PT 自定义颜色",
- "Use PT to customize color"
- ],
- [
- "自定义返回图标",
- "Customize back icon"
- ],
- [
- "自定义返回路径",
- "Customize back path"
- ],
- [
- "自定义标题内容",
- "Customize title content"
- ],
- [
- "显示滑块",
- "Show slider"
- ],
- [
- "添加间距",
- "Add spacing"
- ],
- [
- "横向填充",
- "Horizontal fill"
- ],
- [
- "适用于标签数量不多的情况",
- "Suitable for cases with few labels"
- ],
- [
- "居中",
- "Center"
- ],
- [
- "单个禁用",
- "Single disable"
- ],
- [
- "显示下划线",
- "Show underline"
- ],
- [
- "禁用",
- "Disable"
- ],
- [
- "取消订单",
- "Cancel order"
- ],
- [
- "立即购买",
- "Buy now"
- ],
- [
- "确认收货",
- "Confirm receipt of goods"
- ],
- [
- "评价",
- "Evaluate"
- ],
- [
- "禁用状态,无法拖拽",
- "Disabled state, cannot be dragged"
- ],
- [
- "不吸附边缘,任意位置可拖拽",
- "Does not adhere to the edge, can be dragged anywhere"
- ],
- [
- "这是一个提示",
- "This is a tip"
- ],
- [
- "标签格式化",
- "Label formatting"
- ],
- [
- "固定开始、结束日期",
- "Fixed start and end dates"
- ],
- [
- "自定义快捷选项",
- "Custom quick options"
- ],
- [
- "只读",
- "Read-only"
- ],
- [
- "显示分数",
- "Show scores"
- ],
- [
- "允许半星",
- "Allow half stars"
- ],
- [
- "换个图标",
- "Change the icon"
- ],
- [
- "纵向排列",
- "Vertical arrangement"
- ],
- [
- "换个样式",
- "Change the style"
- ],
- [
- "不显示图标",
- "Do not show the icon"
- ],
- [
- "其他样式",
- "Other styles"
- ],
- [
- "数字键盘",
- "Numeric keypad"
- ],
- [
- "打开键盘",
- "Open the keyboard"
- ],
- [
- "是否显示输入值",
- "Whether to display the input value"
- ],
- [
- "输入即绑定",
- "Bind on input"
- ],
- [
- "身份证键盘",
- "ID card keypad"
- ],
- [
- "密码键盘",
- "Password keypad"
- ],
- [
- "是否加密",
- "Whether to encrypt"
- ],
- [
- "车牌号键盘",
- "License plate number keypad"
- ],
- [
- "数字输入",
- "Numeric input"
- ],
- [
- "请输入验证码",
- "Please enter the verification code"
- ],
- [
- "登录",
- "Login"
- ],
- [
- "购物车 ({num})",
- "Shopping Cart ({num})"
- ],
- [
- "完成",
- "Complete"
- ],
- [
- "管理",
- "Manage"
- ],
- [
- "删除",
- "Delete"
- ],
- [
- "全选",
- "Select All"
- ],
- [
- "合计",
- "Total"
- ],
- [
- "去结算",
- "Go to Checkout"
- ],
- [
- "温馨提示",
- "Warm Prompt"
- ],
- [
- "确定删除该商品吗?",
- "Are you sure to delete this product?"
- ],
- [
- "删除成功",
- "Delete successfully"
- ],
- [
- "请先选择商品",
- "Please select a product first"
- ],
- [
- "确定删除选中的商品吗?",
- "Are you sure to delete the selected products?"
- ],
- [
- "您需支付 {price} 元,请确认支付",
- "You need to pay {price} yuan. Please confirm the payment"
- ],
- [
- "支付成功",
- "Payment successful"
- ],
- [
- "已设为默认",
- "Set as default"
- ],
- [
- "设为默认",
- "Set as default"
- ],
- [
- "修改",
- "Modify"
- ],
- [
- "添加地址",
- "Add address"
- ],
- [
- "Flex 弹性布局",
- "Flex Elastic Layout"
- ],
- [
- "Tabs 标签页",
- "Tabs"
- ],
- [
- "Collapse 折叠面板",
- "Collapse Panel"
- ],
- [
- "Sticky 吸顶",
- "Sticky"
- ],
- [
- "TopBar 导航栏",
- "TopBar Navigation Bar"
- ],
- [
- "FloatView 悬浮视图",
- "FloatView Floating View"
- ],
- [
- "Footer 底部视图",
- "Footer Bottom View"
- ],
- [
- "List 列表",
- "List"
- ],
- [
- "ListView 列表视图",
- "ListView List View"
- ],
- [
- "ListViewRefresh 列表刷新",
- "ListViewRefresh List Refresh"
- ],
- [
- "Waterfall 瀑布流",
- "Waterfall Flow"
- ],
- [
- "Banner 轮播图",
- "Banner Carousel"
- ],
- [
- "Marquee 跑马灯",
- "Marquee Moving Light"
- ],
- [
- "Pagination 分页",
- "Pagination"
- ],
- [
- "Timeline 时间轴",
- "Timeline Time Axis"
- ],
- [
- "Avatar 头像",
- "Avatar"
- ],
- [
- "ReadMore 查看更多",
- "ReadMore View More"
- ],
- [
- "Draggable 拖拽",
- "Draggable Drag"
- ],
- [
- "FilterBar 筛选栏",
- "FilterBar Filter Bar"
- ],
- [
- "Tree 树形结构",
- "Tree Tree Structure"
- ],
- [
- "获取某个单位的结束时间",
- "Get the end time of a certain unit"
- ],
- [
- "是否同一天",
- "Is it the same day"
- ],
- [
- "是否早于",
- "Is it earlier than"
- ],
- [
- "是否晚于",
- "Is it later than"
- ],
- [
- "差值",
- "Difference"
- ],
- [
- "差值(单位)",
- "Difference (unit)"
- ],
- [
- "选择图片",
- "Select a picture"
- ],
- [
- "可调节裁剪框大小",
- "Adjust the size of the cropping frame"
- ],
- [
- "预览图片",
- "Preview the picture"
- ],
- [
- "保存图片",
- "Save the picture"
- ],
- [
- "本页面内容由 canvas 渲染生成,是否立即预览图片效果?",
- "The content of this page is rendered by canvas. Do you want to preview the picture effect immediately?"
- ],
- [
- "基础动画",
- "Basic animation"
- ],
- [
- "淡入淡出",
- "Fade in and out"
- ],
- [
- "播放动画",
- "Play animation"
- ],
- [
- "滑入",
- "Slide in"
- ],
- [
- "旋转翻转",
- "Rotate and flip"
- ],
- [
- "摇摆抖动",
- "Sway and shake"
- ],
- [
- "特殊效果",
- "Special effects"
- ],
- [
- "组合动画",
- "Combined animation"
- ],
- [
- "标题",
- "Title"
- ],
- [
- "已阅读并同意",
- "Read and agreed"
- ],
- [
- "用户协议",
- "User Agreement"
- ],
- [
- "隐私政策",
- "Privacy Policy"
- ],
- [
- "请先阅读并同意《用户协议》和《隐私政策》",
- "Please read and agree to the User Agreement and Privacy Policy first"
- ],
- [
- "我的昵称",
- "My Nickname"
- ],
- [
- "简介",
- "Profile"
- ],
- [
- "介绍一下自己",
- "Introduce yourself"
- ],
- [
- "性别",
- "Gender"
- ],
- [
- "编辑性别",
- "Edit Gender"
- ],
- [
- "生日",
- "Birthday"
- ],
- [
- "选择生日",
- "Select Birthday"
- ],
- [
- "地区",
- "Region"
- ],
- [
- "选择所在的地区",
- "Select your region"
- ],
- [
- "选择性别",
- "Select Gender"
- ],
- [
- "保密",
- "Confidential"
- ],
- [
- "男",
- "Male"
- ],
- [
- "女",
- "Female"
- ],
- [
- "性别设置成功",
- "Gender settings successful"
- ],
- [
- "生日设置成功",
- "Birthday settings successful"
- ],
- [
- "地区设置成功",
- "Region settings successful"
- ],
- [
- "关于{name}",
- "About {name}"
- ],
- [
- "联系客服",
- "Contact customer service"
- ],
- [
- "退出登录",
- "Log out"
- ],
- [
- "确定退出登录吗?",
- "Are you sure you want to log out?"
- ],
- [
- "深色模式",
- "Dark mode"
- ],
- [
- "多语言",
- "Multi-language"
- ],
- [
- "字体大小",
- "Font size"
- ],
- [
- "访问官网",
- "Visit official website"
- ],
- [
- "商城",
- "Mall"
- ],
- [
- "商品分类",
- "Product category"
- ],
- [
- "商品详情",
- "Product details"
- ],
- [
- "商品列表、筛选",
- "Product list, filtering"
- ],
- [
- "购物车",
- "Shopping cart"
- ],
- [
- "订单列表、详情",
- "Order list, details"
- ],
- [
- "收货地址",
- "Delivery address"
- ],
- [
- "聊天",
- "Chat"
- ],
- [
- "对话列表、历史记录",
- "Conversation list, history"
- ],
- [
- "流式回复",
- "Streaming reply"
- ],
- [
- "语言合成",
- "Text-to-Speech"
- ],
- [
- "语音识别",
- "Speech recognition"
- ],
- [
- "Animation 动画",
- "Animation Animation"
- ],
- [
- "编辑地址",
- "Edit Address"
- ],
- [
- "cool-unix",
- "cool-unix"
- ],
- [
- "首页",
- "Home Page"
- ],
- [
- "我的",
- "Mine"
- ],
- [
- "删除地址后无法恢复,确认要删除该地址吗?",
- "The address cannot be restored after deletion. Are you sure you want to delete this address?"
- ],
- [
- "加载中",
- "Loading"
- ],
- [
- "收货人",
- "Consignee"
- ],
- [
- "请输入收货人姓名",
- "Please enter the consignee's name"
- ],
- [
- "手机号",
- "Mobile phone number"
- ],
- [
- "选择省市区",
- "Select province, city and district"
- ],
- [
- "详细地址",
- "Detailed address"
- ],
- [
- "小区楼栋、门牌号、村等",
- "Residential building number, house number, village, etc."
- ],
- [
- "默认地址",
- "Default address"
- ],
- [
- "保存",
- "Save"
- ],
- [
- "收货人不能为空",
- "The consignee cannot be empty"
- ],
- [
- "手机号不能为空",
- "The mobile phone number cannot be empty"
- ],
- [
- "手机号格式不正确",
- "The mobile phone number format is incorrect"
- ],
- [
- "详细地址不能为空",
- "The detailed address cannot be empty"
- ],
- [
- "所在地区不能为空",
- "The location cannot be empty"
- ],
- [
- "保存中",
- "Saving"
- ],
- [
- "开启通知",
- "Enable notifications"
- ],
- [
- "通用设置",
- "General settings"
- ],
- [
- "通知设置",
- "Notification settings"
- ],
- [
- "隐私设置",
- "Privacy settings"
- ],
- [
- "支付失败",
- "Payment failed"
- ],
- [
- "授权信息仅用于用户登录",
- "Authorization information is only used for user login"
- ],
- [
- "登录授权失败",
- "Login authorization failed"
- ],
- [
- "获取短信验证码",
- "Get SMS verification code"
- ],
- [
- "验证码",
- "Verification code"
- ],
- [
- "发送短信",
- "Send SMS"
- ],
- [
- "{n}s后重新获取",
- "Re-get after {n}s"
- ],
- [
- "获取验证码",
- "Get verification code"
- ],
- [
- "短信已发送,请查收",
- "SMS has been sent, please check"
- ],
- [
- "请填写验证码",
- "Please fill in the verification code"
- ],
- [
- "请填写正确的手机号格式",
- "Please fill in the correct mobile phone number format"
- ],
- [
- "全局字号",
- "Global font size"
- ],
- [
- "这是一段示例文字,用于预览不同字号的效果。",
- "This is a sample text for previewing the effects of different font sizes."
- ],
- [
- "默认 1.0",
- "Default 1.0"
- ],
- [
- "切换语言",
- "Switch language"
- ],
- [
- "切换中",
- "Switching"
- ],
- [
- "模板",
- "Template"
- ],
- [
- "编辑资料",
- "Edit profile"
- ],
- [
- "Text 文本",
- "Text"
- ],
- [
- "Button 按钮",
- "Button"
- ],
- [
- "滑块大点",
- "Slider larger"
- ],
- [
- "换个颜色",
- "Change color"
- ],
- [
- "最大50",
- "Maximum 50"
- ],
- [
- "自定义触发器",
- "Custom trigger"
- ],
- [
- "打开选择器",
- "Open selector"
- ],
- [
- "多列",
- "Multiple columns"
- ],
- [
- "通过 children 配置多级数据,并使用 column-count 参数指定显示的列数",
- "Configure multi-level data through children and use the column-count parameter to specify the number of columns to display"
- ],
- [
- "弹窗中使用",
- "Use in pop-up window"
- ],
- [
- "打开",
- "Open"
- ],
- [
- "选择地区",
- "Select region"
- ],
- [
- "绑定值",
- "Bind value"
- ],
- [
- "下一步",
- "Next"
- ],
- [
- "确定",
- "OK"
- ],
- [
- "关闭",
- "Close"
- ],
- [
- "显示取消按钮",
- "Show cancel button"
- ],
- [
- "修改按钮文案",
- "Modify button text"
- ],
- [
- "显示绑定值",
- "Show bound value"
- ],
- [
- "时",
- "When"
- ],
- [
- "时:分",
- "HH:MM"
- ],
- [
- "时:分:秒",
- "HH:MM:SS"
- ],
- [
- "设置大小",
- "Set Size"
- ],
- [
- "集成 iconfont 与 remixicon 图标库,展示部分示例",
- "Integrate iconfont and remixicon icon libraries and display some examples"
- ],
- [
- "iconfont",
- "iconfont"
- ],
- [
- "remixicon",
- "remixicon"
- ],
- [
- "复制成功",
- "Copy Success"
- ],
- [
- "普通",
- "Normal"
- ],
- [
- "浅色",
- "Light Color"
- ],
- [
- "深色",
- "Dark Color"
- ],
- [
- "只显示图标",
- "Only Show Icons"
- ],
- [
- "文本模式",
- "Text Mode"
- ],
- [
- "带边框",
- "With Border"
- ],
- [
- "圆角按钮",
- "Rounded Button"
- ],
- [
- "带左侧图标",
- "With Left Icon"
- ],
- [
- "小",
- "Small"
- ],
- [
- "默认",
- "Default"
- ],
- [
- "大",
- "Large"
- ],
- [
- "无权限",
- "No Permission"
- ],
- [
- "服务异常",
- "Service Exception"
- ],
- [
- "请在微信浏览器中打开",
- "Please Open in WeChat Browser"
- ],
- [
- "已取消支付",
- "Payment Cancelled"
- ],
- [
- "微信",
- "WeChat"
- ],
- [
- "父子关联",
- "Father-son association"
- ],
- [
- "选中值",
- "Selected value"
- ],
- [
- "选中操作",
- "Selection operation"
- ],
- [
- "选中部分节点",
- "Select some nodes"
- ],
- [
- "获取选中节点",
- "Get selected nodes"
- ],
- [
- "获取半选节点",
- "Get half-selected nodes"
- ],
- [
- "清空选中",
- "Clear selection"
- ],
- [
- "展开操作",
- "Expand operation"
- ],
- [
- "展开部分节点",
- "Expand some nodes"
- ],
- [
- "获取展开节点",
- "Get expanded nodes"
- ],
- [
- "展开所有",
- "Expand all"
- ],
- [
- "收起所有",
- "Collapse all"
- ],
- [
- "开通账号",
- "Open an account"
- ],
- [
- "赠送500元",
- "Give 500 yuan"
- ],
- [
- "完成实名认证",
- "Complete real-name authentication"
- ],
- [
- "通过身份证认证",
- "Pass ID card authentication"
- ],
- [
- "绑定银行卡",
- "Bind a bank card"
- ],
- [
- "绑定招商银行储蓄卡",
- "Bind China Merchants Bank savings card"
- ],
- [
- "首次充值",
- "First recharge"
- ],
- [
- "日期选择器",
- "Date Picker"
- ],
- [
- "时间选择器",
- "Time Picker"
- ],
- [
- "级联选择器",
- "Cascading Selector"
- ],
- [
- "文件上传",
- "File Upload"
- ],
- [
- "日历",
- "Calendar"
- ],
- [
- "布局组件",
- "Layout Component"
- ],
- [
- "弹性布局",
- "Flexible Layout"
- ],
- [
- "标签页",
- "Tab"
- ],
- [
- "折叠面板",
- "Collapsible Panel"
- ],
- [
- "吸顶",
- "Sticky"
- ],
- [
- "导航栏",
- "Navigation Bar"
- ],
- [
- "底部视图",
- "Bottom View"
- ],
- [
- "悬浮视图",
- "Floating View"
- ],
- [
- "数据展示",
- "Data Display"
- ],
- [
- "查看更多",
- "View More"
- ],
- [
- "列表",
- "List"
- ],
- [
- "列表视图",
- "ListView"
- ],
- [
- "列表刷新",
- "List Refresh"
- ],
- [
- "瀑布流",
- "Waterfall Flow"
- ],
- [
- "轮播图",
- "Carousel"
- ],
- [
- "无头",
- "Headless"
- ],
- [
- "左侧",
- "Left"
- ],
- [
- "右侧",
- "Right"
- ],
- [
- "隐藏取消按钮",
- "Hide Cancel Button"
- ],
- [
- "自定义文本",
- "Custom Text"
- ],
- [
- "关闭前钩子",
- "Pre-Close Hook"
- ],
- [
- "显示时长",
- "Display Duration"
- ],
- [
- "确定要删除吗?",
- "Are you sure you want to delete?"
- ],
- [
- "确定要删除吗?3秒后自动关闭",
- "Automatically close in 3 seconds after asking if you are sure you want to delete"
- ],
- [
- "带标题、描述",
- "With title and description"
- ],
- [
- "无法点击遮罩关闭",
- "Cannot close by clicking on the mask"
- ],
- [
- "不需要取消按钮",
- "Do not need Cancel Button"
- ],
- [
- "插槽用法",
- "Slot Usage"
- ],
- [
- "反馈",
- "Feedback"
- ],
- [
- "删除好友会同时删除所有聊天记录",
- "Deleting a friend will also delete all chat records"
- ],
- [
- "删除好友",
- "Delete Friend"
- ],
- [
- "确定要删除好友吗?",
- "Are you sure you want to delete the friend?"
- ],
- [
- "点我关闭",
- "Click me to close"
- ],
- [
- "确定要关闭吗?",
- "Are you sure you want to close?"
- ],
- [
- "支付宝",
- "Alipay"
- ],
- [
- "Badge 角标",
- "Badge Corner Mark"
- ],
- [
- "NoticeBar 通知栏",
- "NoticeBar Notification Bar"
- ],
- [
- "Countdown 倒计时",
- "Countdown Countdown Timer"
- ],
- [
- "Progress 进度条",
- "Progress Progress Bar"
- ],
- [
- "ProgressCircle 圆形进度条",
- "ProgressCircle Circular Progress Bar"
- ],
- [
- "Skeleton 骨架图",
- "Skeleton Skeleton Diagram"
- ],
- [
- "LoadMore 加载更多",
- "LoadMore Load More"
- ],
- [
- "RollingNumber 数字滚动",
- "RollingNumber Digital Scroll"
- ],
- [
- "ActionSheet 操作菜单",
- "ActionSheet Operation Menu"
- ],
- [
- "Popup 弹窗",
- "Popup Pop-up Window"
- ],
- [
- "Confirm 确认框",
- "Confirm Confirmation Box"
- ],
- [
- "Toast 提示框",
- "Toast Toast Message"
- ],
- [
- "QRCode 二维码",
- "QRCode QR Code"
- ],
- [
- "Sign 签名",
- "Sign Signature"
- ],
- [
- "DayUts 日期",
- "DayUts Date"
- ],
- [
- "Vibrate 震动",
- "Vibrate Vibration"
- ],
- [
- "Cropper 图片裁剪",
- "Cropper Image Cropper"
- ],
- [
- "Canvas 画布",
- "Canvas Canvas"
- ],
- [
- "SVG 图标",
- "SVG SVG Icon"
- ],
- [
- "SlideVerify 滑动验证",
- "SlideVerify Slide Verification"
- ],
- [
- "体重不能为空",
- "Weight cannot be empty"
- ],
- [
- "体重在40-100kg之间",
- "Weight should be between 40 - 100 kg"
- ],
- [
- "标签不能为空",
- "Label cannot be empty"
- ],
- [
- "标签最多选择2个",
- "At most 2 labels can be selected"
- ],
- [
- "性别不能为空",
- "Gender cannot be empty"
- ],
- [
- "出生年月不能为空",
- "Date of birth cannot be empty"
- ],
- [
- "出生年月不大于2010-01-01",
- "Date of birth should not be later than 2010-01-01"
- ],
- [
- "联系人不能为空",
- "Contact person cannot be empty"
- ],
- [
- "提交成功",
- "Submission successful"
- ],
- [
- "单个 true / false",
- "Single true / false"
- ],
- [
- "带索引、地区选择",
- "With index, area selection"
- ],
- [
- "换个分隔符",
- "Change the delimiter"
- ],
- [
- "列表高度小一点",
- "Make the list height smaller"
- ],
- [
- "范围选",
- "Range selection"
- ],
- [
- "禁用部分日期",
- "Disable some dates"
- ],
- [
- "日历长列表",
- "Calendar long list"
- ],
- [
- "打开日历长列表",
- "Open the calendar long list"
- ],
- [
- "日历面板",
- "Calendar panel"
- ],
- [
- "自定义文案和颜色",
- "Customize text and color"
- ],
- [
- "显示头",
- "Show the header"
- ],
- [
- "头像上传成功",
- "Profile picture uploaded successfully"
- ],
- [
- "编辑昵称",
- "Edit nickname"
- ],
- [
- "请输入昵称",
- "Please enter a nickname"
- ],
- [
- "请设置2-20个字符,不包括@<>/等无效字符",
- "Please set 2-20 characters, excluding invalid characters such as @<>/"
- ],
- [
- "确认",
- "Confirm"
- ],
- [
- "昵称长度需在2-20个字符之间",
- "Nickname length should be between 2-20 characters"
- ],
- [
- "昵称不能包含@<>/等特殊字符",
- "Nickname cannot contain special characters such as @<>/"
- ],
- [
- "编辑简介",
- "Edit profile"
- ],
- [
- "简介不能为空",
- "Profile cannot be empty"
- ],
- [
- "提示",
- "Tip"
- ],
- [
- "为提供更好的服务,我们邀请您填写昵称、头像等公开信息",
- "To provide better service, we invite you to fill in public information such as nickname and profile picture"
- ],
- [
- "头像",
- "Profile picture"
- ],
- [
- "昵称",
- "Nickname"
- ],
- [
- "点击输入昵称",
- "Click to enter nickname"
- ],
- [
- "取消",
- "Cancel"
- ],
- [
- "请上传头像",
- "Please upload a profile picture"
- ],
- [
- "登录中",
- "Logging in"
- ],
- [
- "手机登录",
- "Mobile login"
- ],
- [
- "未注册的手机号登录成功后将自动注册",
- "Unregistered mobile numbers will be automatically registered after successful login"
- ],
- [
- "请输入手机号",
- "Please enter a mobile number"
- ],
- [
- "Image 图片",
- "Image Picture"
- ],
- [
- "Icon 图标",
- "Icon Icon"
- ],
- [
- "Tag 标签",
- "Tag Tag"
- ],
- [
- "Form 表单验证",
- "Form Form Validation"
- ],
- [
- "Input 输入框",
- "Input Input Box"
- ],
- [
- "Textarea 文本域",
- "Textarea Text Area"
- ],
- [
- "InputNumber 计数器",
- "InputNumber Counter"
- ],
- [
- "InputOtp 口令输入",
- "InputOtp Password Input"
- ],
- [
- "Keyboard 键盘",
- "Keyboard Keyboard"
- ],
- [
- "Radio 单选框",
- "Radio Radio Button"
- ],
- [
- "Checkbox 多选框",
- "Checkbox Checkbox"
- ],
- [
- "Switch 开关",
- "Switch Switch"
- ],
- [
- "Rate 评分",
- "Rate Rating"
- ],
- [
- "Slider 滑块",
- "Slider Slider"
- ],
- [
- "Select 选择器",
- "Select Selector"
- ],
- [
- "SelectDate 日期选择器",
- "SelectDate Date Selector"
- ],
- [
- "SelectTime 时间选择器",
- "SelectTime Time Selector"
- ],
- [
- "Cascader 级联选择器",
- "Cascader Cascading Selector"
- ],
- [
- "Upload 文件上传",
- "Upload File Upload"
- ],
- [
- "Calendar 日历",
- "Calendar Calendar"
- ]
- ]
|