ASLocalized.strings 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748
  1. /*
  2. Infoplist.strings
  3. BuguLive
  4. Created by 宋晨光 on 2021/1/25.
  5. Copyright © 2021 xfg. All rights reserved.
  6. */
  7. "语言" = "Language";
  8. "转子动画销毁了" = "Rotor animation destroyed";
  9. "加载失败,点击重试" = "Load failed, click to retry";
  10. "没有实现代理或者没有设置代理人" = "No proxy is implemented or no proxy is set";
  11. "加载失败" = "Failed to load";
  12. "播放器被销毁了" = "The player is destroyed";
  13. "和" = "with";
  14. "keyValues参数不是一个字典" = "The keyValues ​​parameter is not a dictionary";
  15. "filename参数为nil" = "The filename parameter is nil";
  16. "file参数为nil" = "The file parameter is nil";
  17. "keyValuesArray参数不是一个数组" = "keyValuesArray parameter is not an array";
  18. "不是自定义的模型类" = "Not a custom model class";
  19. "objectArray参数不是一个数组" = "objectArray parameter is not an array";
  20. "取消" = "cancel";
  21. "重做" = "Redo";
  22. "重做键入" = "Redo typing";
  23. "撤销" = "Revoke";
  24. "撤销键入" = "Undo typing";
  25. "重做輸入" = "Redo input";
  26. "還原輸入" = "Restore input";
  27. "请检查 mj_label's `font` 是否设置正确" = "Please check if mj_label's `font` is set correctly";
  28. "%@ 没有初始实现,%@\n%@" = "%@ has no initial implementation, %@\n%@";
  29. "%@, 上一次界面切换的动画尚未结束就试图进行新的 push 操作,为了避免产生 bug,拦截了这次 push。\n%s, isViewControllerTransiting" = "%@, the last time the animation of the interface switch has not ended, a new push operation was attempted. In order to avoid bugs, this push was intercepted. \n%s, isViewControllerTransiting";
  30. "push 的时候 navigationController 存在一个盖在上面的 presentedViewController,可能导致一些 UINavigationControllerDelegate 不会被调用" = "There is a presentedViewController covered on the navigationController when pushing, which may cause some UINavigationControllerDelegate not to be called";
  31. "手势返回放弃了" = "Gesture back to give up";
  32. "执行手势返回" = "Perform gesture return";
  33. "%@ 里的标题、输入框、分隔线数量不匹配" = "The number of titles, input boxes, and dividers in %@ does not match";
  34. "尝试为 %@ 添加方法 %@ 失败,可能该类里已经实现了这个方法" = "Attempt to add method %@ to %@ failed, it may be implemented in the class";
  35. "开启全部" = "Open all";
  36. "禁用全部" = "Disable all";
  37. "清空全部" = "Empty all";
  38. "无结果" = "no result";
  39. "请使用initWithView:初始化" = "Please use initWithView: initialization";
  40. "view不能为空" = "view cannot be empty";
  41. "%@ 需要实现 %@ 方法才能自动缓存 cell 高度" = "%@ needs to implement %@ method to automatically cache cell height";
  42. "必须为 estimatedRowHeight 赋一个不为0的值,或者实现 tableView:estimatedHeightForRowAtIndexPath: 方法,否则无法开启 self-sizing cells 功能" = "You must assign a value other than 0 to estimatedRowHeight, or implement the tableView:estimatedHeightForRowAtIndexPath: method, otherwise the self-sizing cells function cannot be enabled";
  43. "复制" = "copy";
  44. "dataSource 里的图片数量和当前显示出来的图片数量不匹配, collectionView.numberOfItems" = "%@, collectionViewDataSource.numberOfItems";
  45. "尝试通过 %s 获取 QMUIZoomImageView 所在的 index,但找不到 QMUIZoomImageView 所在的 cell,index 获取失败。%@" = "Try to get the index where QMUIZoomImageView is located through %s, but the cell where QMUIZoomImageView is located cannot be found, and the index acquisition fails. %@";
  46. "%@ 需要响应 %@ 的方法 -%@" = "%@ needs a way to respond to %@ -%@";
  47. "QMUIDisplayLinkAnimation 使用错误,当前没有 CADisplayLink 对象,请查看头文件再试试。" = "QMUIDisplayLinkAnimation is used incorrectly. There is no CADisplayLink object currently. Please check the header file and try again.";
  48. "没有动画Block" = "No animation block";
  49. "%@ 还需要实现以下方法:%@" = "%@ also needs to implement the following methods: %@";
  50. "%@ 需要显示 extendLayer,但却被父级 clip 掉了,可能看不到" = "%@ needs to display extendLayer, but it is dropped by the parent clip, and may not be visible";
  51. "iOS 版本更新导致 UISearchController 无法响应方法 %@" = "The iOS version update causes UISearchController to fail to respond to the method %@";
  52. "UIView 本身的 Layer 无须开启该属性" = "The Layer of UIView itself does not need to enable this property";
  53. "UIBarItem (QMUIBadge) addSubview:, 把自己作为 subview 添加到自己身上,self" = "%@, visibleViewController";
  54. "返回" = "return";
  55. "关闭" = "shut down";
  56. "拦截了一次可能产生顶部按钮混乱的操作" = "Intercepted an operation that may cause confusion on the top button";
  57. "%@个结果" = "%@ results";
  58. "点击的是当前页里的第 %@ 个表情,%@" = "Click on the %@ emoticon on the current page, %@";
  59. "发送" = "send";
  60. "被屏蔽的 %@, contentOffset.y" = "%.2f";
  61. "预览" = "Preview";
  62. "你最多只能选择%@张图片" = "You can only select %@ pictures at most";
  63. "我知道了" = "I know";
  64. "照片" = "photo";
  65. "请在设备的" = "Please in the device";
  66. "空照片" = "Empty photo";
  67. "self.%@ 必须实现 %@ 并返回一个 %@ 对象" = "self.%@ must implement %@ and return a %@ object";
  68. "无法自动找到 UINavigationBar,请通过 %@.%@ 手动设置一个" = "Unable to find UINavigationBar automatically, please set one manually via %@.%@";
  69. "%@, 因为上下都不够空间,所以最大高度被强制改为%@, 位于目标的%@" = "%@, because there is not enough space up and down, the maximum height is forced to change to %@, which is located at %@";
  70. "上方" = "Above";
  71. "下方" = "Below";
  72. "%@, 因为左右都不够空间,所以最大宽度被强制改为%@, 位于目标的%@" = "%@, because there is not enough space on the left and right, the maximum width is forced to change to %@, which is located at %@ of the target";
  73. "左边" = "left";
  74. "右边" = "right";
  75. "搜索" = "search";
  76. "出现不合法的indexPath" = "The number to be converted must be a single digit in hexadecimal, that is, less than 16, but you pass it to me as %@";
  77. "UITableView 的 estimatedRow(SectionHeader / SectionFooter)Height 属性会影响 contentSize、sizeThatFits:、rectForXxx 等方法的计算,导致计算结果不准确,建议重新考虑是否要使用 estimated。可添加 '%@' 的 Symbolic Breakpoint 以捕捉此类信息\n%@" = "prompt";
  78. "窗口 : %@ 设置了 overrideUserInterfaceStyle 属性,可能会影响 QMUIUserInterfaceStyleWillChangeNotification 的时机" = "You are in a mobile network environment, do you want to use data playback";
  79. "测" = "determine";
  80. "qmui_visibleViewControllerIfExist:,找不到可见的viewController。self" = "jump over";
  81. "必现在 navigationController 栈内才能正确判断" = "Failed to get LaunchImage! Please check if the launch image is added or if the specifications are wrong.";
  82. "UIView (QMUI) addSubview:, 把自己作为 subview 添加到自己身上,self" = "Failed to get the launch map from LaunchScreen!";
  83. "尝试让一个处于非 keyWindow 上的 %@ becomeFirstResponder,可能导致界面显示异常,请添加 '%@' 的 Symbolic Breakpoint 以捕捉此类信息\n%@" = "GIF does not loop, playback is complete";
  84. "进行坐标系转换运算的 %@ 和 %@ 不存在共同的父 view,可能导致运算结果不准确(特别是在横竖屏旋转时,如果两个 view 处于不同的 window,由于 window 旋转有先后顺序,可能转换时两个 window 的方向不一致,坐标就会错乱)" = "No ad image is set";
  85. "%@ setFrame:%@,参数包含 NaN,已被拦截并处理为 0。%@" = "video does not loop, playback is complete";
  86. "UIView setFrame: 出现 NaN" = "Error: The ad video was not found, please check if the name is wrong!";
  87. "搜索框放大镜图片(SearchBarSearchIconImage)的大小最好为 (14, 14),否则会失真,目前的大小为 %@" = "No ad video set";
  88. "使用 KVC 访问了 UIKit 的私有属性,会触发系统的 NSException,建议尽量避免此类操作,仍需访问可使用 BeginIgnoreUIKVCAccessProhibited 和 EndIgnoreUIKVCAccessProhibited 把相关代码包裹起来,或者直接使用 qmui_valueForKey: 、qmui_setValue:forKey:" = "Default text";
  89. "%@ setBounds:%@,参数包含 NaN,已被拦截并处理为 0。%@" = "Please set the spacing after an added item";
  90. "CALayer setBounds: 出现 NaN" = "Button";
  91. "%@ setPosition:%@,参数包含 NaN,已被拦截并处理为 0。%@" = "Failed to create BGM directory";
  92. "CALayer setPosition: 出现 NaN" = "time out:%@";
  93. "提示" = "Tips";
  94. "您正处于移动网络环境下,是否要使用流量播放" = "You are in a mobile network environment, do you want to use data playback";
  95. "确定" = "Determine";
  96. "跳过" = "jump over";
  97. "获取LaunchImage失败!请检查是否添加启动图,或者规格是否有误." = "Failed to get LaunchImage! Please check if the launch image is added or if the specifications are wrong.";
  98. "GIF不循环,播放完成" = "GIF does not loop, playback is complete";
  99. "未设置广告图片" = "No ad image is set";
  100. "video不循环,播放完成" = "video does not loop, playback is complete";
  101. "Error:广告视频未找到,请检查名称是否有误!" = "Error: The ad video was not found, please check if the name is wrong!";
  102. "未设置广告视频" = "No ad video set";
  103. "默认文字" = "Default text";
  104. "请在添加的某一项后面设置间距" = "Please set the spacing after an added item";
  105. "按钮" = "Button";
  106. "创建BGM目录失败" = "Failed to create BGM directory";
  107. "暂停:%@" = "time out:%@";
  108. "恢复:%@" = "restore:%@";
  109. "BGM List 加载成功" = "BGM List loaded successfully";
  110. "青花瓷" = "Blue and white porcelain";
  111. "启动录制成功" = "Start recording successfully";
  112. "启动录制失败" = "Failed to start recording";
  113. "视频录制成功" = "Video recording successfully";
  114. "视频录制失败" = "Video recording failed";
  115. "json解析失败:%@" = "json parsing failed: %@";
  116. "霓虹鼠" = "Neon Rat";
  117. "疯狂打call" = "Call crazy";
  118. "Q星座" = "Q constellation";
  119. "彩色丝带" = "Color ribbon";
  120. "刘海发带" = "Bangs hair band";
  121. "紫色小猫" = "Purple kitten";
  122. "花仙子" = "Flower Fairy";
  123. "小公举" = "Small public";
  124. "眼镜狗" = "Glasses dog";
  125. "彩虹云" = "Rainbow cloud";
  126. "皮卡丘" = "Pikachu";
  127. "原宿复古" = "Harajuku Retro";
  128. "AI抠背" = "AI pull back";
  129. "清除" = "Clear";
  130. "无动效" = "No animation";
  131. "美颜(光滑)" = "Beauty (smooth)";
  132. "美颜(自然)" = "Beauty (natural)";
  133. "美颜(P图)" = "Beauty (P picture)";
  134. "美白" = "Whitening";
  135. "红润" = "rosy";
  136. "大眼" = "big eyes";
  137. "瘦脸" = "Face-lift";
  138. "V脸" = "V face";
  139. "下巴" = "chin";
  140. "短脸" = "Short face";
  141. "瘦鼻" = "Thin nose";
  142. "亮眼" = "Dazzling";
  143. "白牙" = "White teeth";
  144. "祛皱" = "Wrinkle";
  145. "祛眼袋" = "Eye bags";
  146. "祛法令纹" = "Remove the law lines";
  147. "发际线" = "hairline";
  148. "眼距" = "Eye distance";
  149. "眼角" = "Corner of eye";
  150. "嘴型" = "Mouth type";
  151. "鼻翼" = "Nose";
  152. "鼻子位置" = "Nose position";
  153. "嘴唇厚度" = "Lip thickness";
  154. "脸型" = "Face shape";
  155. "美颜" = "Beauty";
  156. "滤镜" = "Filter";
  157. "动效" = "Dynamic effect";
  158. "抠背" = "Pull back";
  159. "绿幕" = "Green screen";
  160. "手势" = "gesture";
  161. "美妆" = "makeups";
  162. "原图" = "Original image";
  163. "标准" = "standard";
  164. "樱红" = "Cherry red";
  165. "云裳" = "Yunshang";
  166. "纯真" = "Innocence";
  167. "白兰" = "Bailan";
  168. "元气" = "vitality";
  169. "超脱" = "Detached";
  170. "香氛" = "Fragrance";
  171. "浪漫" = "romantic";
  172. "清新" = "Refreshing";
  173. "唯美" = "Beautiful";
  174. "粉嫩" = "Matte";
  175. "怀旧" = "Nostalgia";
  176. "蓝调" = "Blues";
  177. "清凉" = "Cool";
  178. "日系" = "Japanese";
  179. "VIP秀场" = "VIP show";
  180. "账号" = "id";
  181. "印票" = "coins";
  182. "钻石" = "Diamond";
  183. "%@:关" = "%@:turn off";
  184. "%@:开" = "%@:open";
  185. "沙盒中存在 %@" = "%@ exists in the sandbox";
  186. "沙盒中不存在 %@" = "%@ does not exist in the sandbox";
  187. "从本地获取图片 %@" = "Get pictures from local %@";
  188. "文件夹创建失败 err %@" = "Folder creation failed err %@";
  189. "文件夹创建成功" = "Folder created successfully";
  190. "图片写入本地地址 %@" = "Write picture to local address %@";
  191. "图片地址URL-》%@ \n下载失败" = "Image URL-》%@ \ndownload failed";
  192. "大学" = "the University";
  193. "中学" = "Middle school";
  194. "图片下载失败" = "Image download failed";
  195. "保存失败" = "Save failed";
  196. "成功保存到相册" = "Successfully saved to album";
  197. "收到广播消息了" = "Received a broadcast message";
  198. "存储失败" = "Storage failure";
  199. "emojiDictForKey:参数不得为空" = "emojiDictForKey: The parameter must not be empty";
  200. "表情字典%@找不到" = "Emoji dictionary %@ not found";
  201. "regularExpressionForKey:参数不得为空" = "regularExpressionForKey: The parameter must not be empty";
  202. "正则%@有误" = "Regular %@ is wrong";
  203. "归档expression.plist成功" = "Successfully archived expression.plist";
  204. "归档到expressionImage.plist成功" = "Filed to expressionImage.plist successfully";
  205. "拍照" = "Take pictures";
  206. "相册" = "Photo album";
  207. "下拉即可刷新" = "Pull down to refresh";
  208. "松开即可更新" = "Release to update";
  209. "上拉即可刷新" = "Pull up to refresh";
  210. "id %@ 上传成功,信息 %@" = "id %@ uploaded successfully, notification %@";
  211. "id %@ 上传失败,信息 %@" = "id %@ upload failed, notification %@";
  212. "任务均完成,刷新界面" = "All tasks are completed, refresh the interface";
  213. "商品介绍" = "Product desciption";
  214. "付款价格" = "Payment price";
  215. "剩%02d分%02d秒 自动关闭" = "%02d minutes and %02d seconds left, automatic shutdown";
  216. "付款" = "payment";
  217. "充值" = "Recharge";
  218. "虚拟竞拍" = "Virtual auction";
  219. "实物竞拍" = "Physical auction";
  220. "最终价" = "Final price";
  221. "立即付款" = "Immediate payment";
  222. "%@付款成功" = "%@Payment successful";
  223. "恭喜你付款成功" = "Congratulations on your successful payment";
  224. "无人参拍" = "Unattended";
  225. "中拍者超时未付款" = "The bidder has not paid overtime";
  226. "您参与的竞拍超时未付款" = "Your bidding timed out and did not pay";
  227. "选择位置" = "Select location";
  228. "我的位置" = "my position";
  229. "请输入要查询的地址名称" = "Please enter the name of the address to be queried";
  230. "定位失败" = "Positioning failed";
  231. "您关闭了该应用的定位权限.请在设置->隐私->定位服务->本App下选择使用期间" = "You have turned off the location permission of this app. Please select the usage period under Settings -> Privacy -> Location Services -> This App";
  232. "用户关闭了该应用的定位权限." = "The user has turned off the location permission of the app.";
  233. "商品" = "commodity";
  234. "请描述商品" = "Please describe the product";
  235. "发布" = "release";
  236. "虚拟商品拍卖设置" = "Virtual goods auction settings";
  237. "修改商品信息" = "Modify product notification";
  238. "编辑购物商品" = "Edit shopping items";
  239. "编辑" = "edit";
  240. "星店商品拍卖设置" = "Star shop merchandise auction settings";
  241. "实物商品拍卖设置" = "Physical goods auction settings";
  242. "商品设置" = "Commodity settings";
  243. "产品设置" = "Product settings";
  244. "商品ID不能为空" = "Product ID cannot be empty";
  245. "请上传图片" = "Please upload a picture";
  246. "至少上传一张图片(最多5张)" = "Upload at least one picture (up to 5)";
  247. "商品名称不能为空" = "Product name cannot be empty";
  248. "商品价格不能为空" = "Commodity price cannot be empty";
  249. "请保证输入的商品价格小数点最多两位" = "Please ensure that the entered product price has a maximum of two decimal points";
  250. "请输入网址" = "Please enter the URL";
  251. "快递费不能为空" = "Courier fee cannot be empty";
  252. "正在发布请等待" = "Posting please wait";
  253. "商品描述不能为空" = "Product description cannot be empty";
  254. "请输入地址" = "Please enter the address";
  255. "请输入商品名称" = "Please enter the product name";
  256. "请输入联系人姓名" = "Please enter the contact name";
  257. "手机号限制11位数!" = "The phone number is limited to 11 digits!";
  258. "请输入电话号码" = "Please enter your phone number";
  259. "竞拍起拍价格不能为空或0" = "The starting price of the auction cannot be empty or 0";
  260. "竞拍保证金不能为空或0" = "The bidding deposit cannot be empty or 0";
  261. "加价幅度不能为空或0" = "The markup cannot be empty or 0";
  262. "请输入有效的竞拍时间" = "Please enter a valid bid time";
  263. "请输入延时值" = "Please enter a delay value";
  264. "请输入最大延时" = "Please enter the maximum delay";
  265. "描述不能为空" = "Description cannot be empty";
  266. "直播间已关闭" = "The live broadcast room is closed";
  267. "请输入竞拍保证金" = "Please enter the bid margin";
  268. "请输入加价幅度" = "Please enter the price increase";
  269. "请输入竞拍时间" = "Please enter the auction time";
  270. "请输入延时时间" = "Please enter the delay time";
  271. "相机" = "camera";
  272. "从手机相册选择" = "Choose from phone album";
  273. "上传头像失败" = "Failed to upload avatar";
  274. "确定放弃修改商品信息?" = "Are you sure to give up editing product notification?";
  275. "确定放弃新增商品?" = "Are you sure to abandon the new product?";
  276. "确定放弃新增竞拍商品?" = "Are you sure to abandon the newly added auction products?";
  277. "竞拍时间" = "Bidding time";
  278. "延时值" = "Delay value";
  279. "最大延时" = "Maximum delay";
  280. "小时" = "hour";
  281. "分钟" = "minute";
  282. "次" = "Times";
  283. "拍品名称" = "Lot name";
  284. "请输入拍品名称" = "Please enter the lot name";
  285. "约会时间" = "Appointment time";
  286. "点击选择约会时间" = "Click to select an appointment time";
  287. "约会地点" = "Meeting place";
  288. "联系人" = "Contact person";
  289. "联系电话" = "contact number";
  290. "点击设置约会地点" = "Click to set appointment location";
  291. "预置主播昵称" = "Preset anchor nickname";
  292. "预置主播手机号" = "Preset anchor mobile phone number";
  293. "定位中。。。" = "Positioning. . .";
  294. "请在设置->隐私->定位服务->本App下选择使用期间" = "Please select the usage period under Settings->Privacy->Location Services->This App";
  295. "请输入起拍价" = "Please enter the starting price";
  296. "请输入保证金额度" = "Please enter the guarantee amount";
  297. "起拍价" = "Starting price";
  298. "保证金" = "Margin";
  299. "加价幅度" = "Markup";
  300. "商品名称" = "product name";
  301. "商品价钱" = "Commodity price";
  302. "商品链接" = "Commodity link";
  303. "快递费" = "Courier fee";
  304. "请输入商品价钱(最多两位小数)" = "Please enter the product price (up to two decimals)";
  305. "请输入商品链接" = "Please enter the product link";
  306. "请输入快递费" = "Please enter the courier fee";
  307. "商品描述" = "Product description";
  308. "请输入小于30个字符的名称" = "Please enter a name less than 30 characters";
  309. "请输入最大延时时间" = "Please enter the maximum delay time";
  310. "最大延时不超过9次合法字符" = "The maximum delay does not exceed 9 legal characters";
  311. "请输入商品价格" = "Please enter the product price";
  312. "请输入小于24的合法字符" = "Please enter legal characters less than 24";
  313. "请输入小于60的合法字符" = "Please enter legal characters less than 60";
  314. "你输入的金额超过当前限制" = "The amount you entered exceeds the current limit";
  315. "商品描述不能超过25字" = "Product description cannot exceed 25 words";
  316. "新增地址" = "Add address";
  317. "保存" = "Save";
  318. "修改地址" = "Change address";
  319. "修改" = "modify";
  320. "请输入收货人姓名" = "Please enter the name of the consignee";
  321. "请输入收货手机号" = "Please enter the receiving phone number";
  322. "请输入行政地区信息" = "Please enter administrative area notification";
  323. "请输入详细地址" = "Please enter the detailed address";
  324. "收货地址保存成功" = "The delivery address is saved successfully";
  325. "收货地址保存不成功" = "The delivery address was not saved successfully";
  326. "请输入11位电话号码" = "Please enter an 11-digit phone number";
  327. "请输入正确的电话号码" = "Please enter the correct phone number";
  328. "参拍交保证金" = "Participate in deposit";
  329. "为保证竞拍成功后能顺利联系到您,请填写联系方式" = "To ensure that you can be contacted smoothly after the bid is successful, please fill in the contact notification";
  330. "我的竞拍" = "My bid";
  331. "账户余额不够,请您先充值" = "The account balance is not enough, please recharge first";
  332. "请输入联系人的姓名" = "Please enter the name of the contact";
  333. "请填写收货信息" = "Please fill in the receiving notification";
  334. "请填写联系人" = "Please fill in the contact person";
  335. "请填写联系电话号码" = "Please fill in the contact phone number";
  336. "请填写详细地址" = "Please fill in the detailed address";
  337. "竞拍详情" = "Auction details";
  338. "%.2f万" = "%.2f million";
  339. "竞拍记录" = "Auction record";
  340. "设为拍卖" = "Set as auction";
  341. "竞拍结束" = "End of auction";
  342. "竞拍成功" = "Successful bidding";
  343. "结算中" = "Settlement";
  344. "流拍" = "Pass by";
  345. "竞拍失败" = "Bid failed";
  346. "主播关闭竞拍" = "The anchor closes the auction";
  347. "延时周期: %@分钟/次" = "Delay period: %@minutes/time";
  348. "最大延时次数: %@次" = "Maximum delay times: %@ times";
  349. "竞拍记录 (%d)" = "Auction record (%d)";
  350. "竞拍需同意 XXX 竞拍协议" = "Bidding requires agreement to XXX bidding agreement";
  351. "查看协议" = "View agreement";
  352. "竞拍名称:%@" = "Auction name: %@";
  353. "拍品详情" = "Lot details";
  354. "[收起]" = "[Collapse]";
  355. "[展开]" = "[Expand]";
  356. "系统将在您的账户中扣取%@%@作为拍卖保证金暂时托管。" = "The system will deduct %@%@ from your account as a temporary custody of the auction deposit.";
  357. "%.3f万" = "%.3f million";
  358. "领先" = "Lead";
  359. "出局" = "Out";
  360. "约会地点: 福建省 厦门市 万达广场" = "Dating location: Wanda Plaza, Xiamen City, Fujian Province";
  361. "约会地点: %@" = "Dating location: %@";
  362. "约会时间: 2016年06月06日 18:00" = "Date: June 06, 2016 18:00";
  363. "约会时间: %@" = "Appointment time: %@";
  364. "拍品详情:%@" = "Lot details: %@";
  365. "1<=价格<=100" = "1<=price<=100";
  366. "按时付费定价" = "Pay on time pricing";
  367. "请输入价格(%@/分钟)" = "Please enter the price (%@/minute)";
  368. "%ld<=价格<=%ld" = "%ld<=price<=%ld";
  369. "请输入正确的价格" = "Please enter the correct price";
  370. "按时付费提档" = "Pay on time";
  371. "确定要提档?" = "Are you sure you want to file?";
  372. "按场付费定价" = "Pay-per-use pricing";
  373. "请输入该场价格(%@/场)" = "Please enter the price of the show (%@/show)";
  374. "该直播%d%@/场" = "This live broadcast %d%@/show";
  375. "直播间付费人数:%d" = "Paying number in the live broadcast room: %d";
  376. "%d秒后付费开始" = "Payment starts in %d seconds";
  377. "%d%@/分钟" = "%d%@/minute";
  378. "已观看:%d分钟" = "Watched: %d minutes";
  379. "温馨提示" = "Tips";
  380. "账户余额:%d%@" = "Account balance: %d%@";
  381. "主播开启了付费直播,%d%@/场,是否进入?" = "The anchor opened a paid live broadcast, %d%@/show, do you want to enter?";
  382. "主播开启了付费直播,%d%@/分钟,是否进入?" = "The anchor opened a paid live broadcast, %d%@/minute, do you want to enter?";
  383. "付费直播" = "Paid live broadcast";
  384. "上庄成功" = "Shangzhuang success";
  385. "输入金额不得大于账户余额" = "The amount entered cannot be greater than the account balance";
  386. "输入金额不得小于底金" = "The input amount must not be less than the deposit";
  387. "请输入有效金额" = "Please enter a valid amount";
  388. "用户%@不足" = "Insufficient user %@";
  389. "还没选择礼物哦" = "Haven't chosen a gift yet";
  390. "请选择玩家" = "Please select a player";
  391. "暂时没有玩家上庄" = "No players are currently on the bank";
  392. "%@游戏币" = "%@Game currency";
  393. "大" = "Big";
  394. "小" = "small";
  395. "历史记录" = "history record";
  396. "关闭游戏失败" = "Failed to close the game";
  397. "金额不足,请充值" = "Insufficient amount, please recharge";
  398. "是否确定结束游戏?" = "Are you sure to end the game?";
  399. "关闭游戏中,请稍后!" = "Close the game, please wait!";
  400. "%.1f万" = "%.1f million";
  401. "%@倍" = "%@Fold";
  402. "余额不足" = "Insufficient balance";
  403. "歌曲:%@ 演唱:%@" = "Song: %@ Singing: %@";
  404. "点歌" = "Song";
  405. "删除" = "delete";
  406. "正在删除..." = "deleting...";
  407. "原声" = "Original sound";
  408. "悠扬" = "Melodious";
  409. "流行" = "popular";
  410. "热门" = "Popular";
  411. "最新" = "Newest";
  412. "附近" = "Nearby";
  413. " VIP会员 " = " VIP member";
  414. " 座驾商城 " = " Car mall";
  415. " 靓号 " = " Liang ";
  416. "VIP会员" = "VIP member";
  417. "座驾" = "Car";
  418. "靓号" = "Liang";
  419. "关注" = "follow";
  420. "关注" = "follow";
  421. "请输入房间密码" = "Please enter the room code";
  422. "请输入密码" = "Please enter password";
  423. "密码不正确" = "Incorrect password";
  424. "关注成功" = "Followed";
  425. "魅力榜" = "Charm list";
  426. " 日榜 " = " daily";
  427. " 月榜 " = " monthly";
  428. " 总榜 " = " overall icons";
  429. "榜单介绍" = "List introduction";
  430. "日榜" = "daily";
  431. "周榜" = "Weekly List";
  432. "月榜" = "monthly";
  433. "总榜" = "overall icons";
  434. "贡献榜" = "Contribution list";
  435. "============调起首页刷新机制时间点:%@" = "============ Time to activate the homepage refresh mechanism: %@";
  436. "富豪榜" = "sending";
  437. "主播榜" = "receiving";
  438. "不能查看神秘人信息" = "Cannot view mystery notification";
  439. "推荐主播" = "Hot live";
  440. "全部主播" = "All creators";
  441. "亲~暂无任何内容" = "No data";
  442. "小视频" = "short video";
  443. "消费" = "consumption";
  444. "获得" = "get";
  445. "已关注" = "Followed";
  446. "消费%@%@" = "consumption%@%@";
  447. "用户不存在" = "User does not exist";
  448. "%@ 在看" = "%@ look in";
  449. "%@%@/场" = "%@%@/field";
  450. "%@%@/分钟" = "%@%@/minute";
  451. "想撩TA,先评论" = "Want to tease TA, comment first";
  452. "全部评论" = "All comments";
  453. "发表评论" = "Post a comment";
  454. "回复" = "Reply";
  455. "回复:%@" = "Reply:%@";
  456. "复制成功" = "Copy successfully";
  457. "评论举报" = "Comment report";
  458. "说点什么···" = "Say something...";
  459. "请输入评论的内容" = "Please enter the content of the comment";
  460. "回复%@" = "Reply%@";
  461. "选择标签" = "Select label";
  462. "首次弹窗背景" = "First popup background";
  463. "每日首次登录奖励" = "Daily first login reward";
  464. "知道了按钮" = "Got it button";
  465. "+%@经验" = "+%@ Experience";
  466. "直播" = "Live broadcast";
  467. "回播" = "Playback";
  468. "火星" = "Mars";
  469. "看全部" = "See all";
  470. "只看女" = "Just look at women";
  471. "只看男" = "Just look at men";
  472. "性别" = "gender";
  473. "地区" = "area";
  474. "完成" = "carry out";
  475. "换一换" = "Change";
  476. "已关注主播" = "Followed anchor";
  477. "关注背景" = "关注背景";
  478. "加关注按钮" = "Add follow button";
  479. "小草莓" = "Small strawberry";
  480. "%@之前" = "%@prior to";
  481. "分享到" = "share to";
  482. "朋友圈" = "Circle of friends";
  483. "微信" = "WeChat";
  484. "微博" = "Weibo";
  485. "QQ空间" = "QQ space";
  486. "取消分享" = "Unshare";
  487. "举报" = "Report";
  488. "尽显王者荣耀" = "Show the glory of the king";
  489. "魅力释放中" = "Charm release";
  490. "选择" = "select";
  491. "删除动态" = "Delete activity";
  492. "是否删除此条视频" = "Whether to delete this video";
  493. "结束PK请求失败error:%@" = "Failed to end PK request error:%@";
  494. "当前余额不足,充值才能继续送礼,是否去充值?" = "If the current balance is insufficient, the gift can only be continued by recharging. Should you recharge?";
  495. "%@ 已发送" = "%@ Has been sent";
  496. "新浪微博未安装" = "Sina Weibo not installed";
  497. "微信未安装" = "WeChat is not installed";
  498. "QQ未安装" = "QQ is not installed";
  499. "分享成功" = "Successful sharing";
  500. "分享失败: %@" = "Sharing failed: %@";
  501. "下载数据失败" = "Failed to download data";
  502. "按住 说话" = "Hold to speak";
  503. "松开 结束" = "Release end";
  504. "无私信权限,请联系客服" = "No private message permission, please contact customer service";
  505. "[删除]" = "[delete]";
  506. "手指上滑,取消发送" = "Swipe up to cancel sending";
  507. "松开手指,取消发送" = "Release your finger to cancel sending";
  508. "操作中..." = "In operation...";
  509. "交易" = "transaction";
  510. "好友" = "friend";
  511. "未关注" = "unknown";
  512. "忽略未读" = "remove ignore";
  513. "拍摄" = "Shoot";
  514. "礼物" = "gift";
  515. "赠送游戏币" = "Free game currency";
  516. "赠送%@" = "Gift %@";
  517. "播放该消息失败" = "Failed to play the message";
  518. "图片无效!请重新选择" = "Picture is invalid! Please select again";
  519. "请先输入发送内容" = "Please enter the sending content first";
  520. "获取麦克风权限失败" = "Failed to obtain microphone permission";
  521. "录音失败" = "Recording failed";
  522. "说话时间太短,取消发送!" = "The speaking time is too short, cancel sending!";
  523. "游戏币" = "Game currency";
  524. "正在发送礼物..." = "Sending gift...";
  525. "请输入金额" = "Please enter the amount";
  526. "游戏币余额:%@" = "Game currency balance: %@";
  527. "钻石余额:%@" = "Balance: %@";
  528. "正在赠送游戏币..." = "Gifting game currency...";
  529. "=========js调起的方法:%@" = "=========How to call up by js: %@";
  530. "当前版本不支持该支付方式" = "The current version does not support this payment method";
  531. "appid为空" = "appid is empty";
  532. "partnerid为空" = "partnerid is empty";
  533. "prepayid为空" = "prepayid is empty";
  534. "noncestr为空" = "noncestr is empty";
  535. "timestamp为空" = "timestamp is empty";
  536. "packagevalue为空" = "packagevalue is empty";
  537. "sign为空" = "sign is empty";
  538. "直播退出异常" = "Live broadcast exited abnormally";
  539. "退出成功" = "exit successfully";
  540. "URL Schemes 为空" = "URL Schemes is empty";
  541. "已复制到粘贴板" = "Copied to pasteboard";
  542. "分享失败" = "Sharing failed";
  543. "正在加载..." = "loading...";
  544. "加载异常" = "Loading exception";
  545. "微信好友" = "WeChat friends";
  546. "微信朋友圈" = "WeChat Moments";
  547. "QQ好友" = "QQ friends";
  548. "复制链接" = "copy Link";
  549. "生成海报" = "Generate poster";
  550. "保存到相册" = "save into the album";
  551. "正在保存中" = "Saving";
  552. "成功保存,请到相册中查看" = "Saved successfully, please check in the album";
  553. "好友邀请您一起看直播!" = "Friends invite you to watch the live broadcast!";
  554. "新鲜、有趣、好玩、精彩......你想要的都在这里!" = "Fresh, interesting, fun, exciting...All you want is here!";
  555. "保存照片到相册\n打开711 Live\n立即看到" = "Save photos to album \ n Open 711 Live \ n See now";
  556. "保存图片\n到相册" = "Save picture\nto album";
  557. "打开711Live\n立即看到" = "OOpen 711Live \ n See now";
  558. "第%d行" = "Line %d";
  559. "立即体验" = "Experience now";
  560. "资料" = "data";
  561. "我的动态" = "My activity";
  562. "直播中" = "Live";
  563. "回播中" = "Playing back";
  564. "当前有视频正在播放" = "There is a video currently playing";
  565. "我的回播" = "My playback";
  566. "最热" = "Hottest";
  567. "%d个精彩回放" = "%d highlights";
  568. "删除回播视频成功" = "Successfully deleted the playback video";
  569. "删除回播视频失败,请重新操作" = "Failed to delete the playback video, please try again";
  570. "保存头像成功!" = "Save the avatar successfully!";
  571. "管理员列表" = "Administrator list";
  572. "当前管理员(%d/%d)" = "Current administrator (%d/%d)";
  573. "取消管理员成功" = "Cancel the administrator successfully";
  574. "管理员设置失败,请重新操作" = "Administrator setup failed, please try again";
  575. "oss上传头像失败" = "oss failed to upload avatar";
  576. "头像更换成功" = "Avatar changed successfully";
  577. "%@贡献榜" = "%@Contribution";
  578. "当天排行" = "Ranking of the day";
  579. "累计排行" = "Cumulative ranking";
  580. "关注" = "followig";
  581. "粉丝" = "Fans";
  582. "黑名单" = "blacklist";
  583. "保存成功" = "Saved successfully";
  584. "请选择要踢出的观众" = "Please select the audience to be kicked out";
  585. "请选择要邀请的好友" = "Please select friends to invite";
  586. "踢出观众" = "Kick out the audience";
  587. "邀请好友" = "invite friends";
  588. "请输入用户名或用户ID" = "Please enter username or user ID";
  589. "请搜索用户名或用户ID" = "Please search for username or user ID";
  590. "直播 %.1f万" = "Live %.1f million";
  591. "直播 %@" = "Live %@";
  592. "关注 %.1f万" = "Follow %.1f million";
  593. "关注 %@" = "Follow %@";
  594. "粉丝 %.1f万" = "Followers %.1f million";
  595. "粉丝 %@" = "Fan %@";
  596. "%@级" = "%@level";
  597. "%.2f万钻石" = "%.2f million diamonds";
  598. "%@钻石" = "%@diamond";
  599. "已开通" = "already opened";
  600. "%.3f万%@" = "%.3f万%@";
  601. "%@ 个订单" = "%@ orders";
  602. "%@ 个竞拍" = "%@ auctions";
  603. "%@ 个商品" = "%@ items";
  604. "未认证" = "not certified";
  605. "等待审核" = "Moderated";
  606. "已认证" = "verified";
  607. "审核不通过" = "Audit not passed";
  608. "我的等级" = "My Level";
  609. "订单管理" = "Order management";
  610. "竞拍管理" = "Auction management";
  611. "我的订单" = "My Order";
  612. "商品管理" = "Commodity management";
  613. "我的购物车" = "my shopping cart";
  614. "0游戏币" = "0 game currency";
  615. "加入公会" = "Join a guild";
  616. "创建公会" = "Create a guild";
  617. "方维" = "Fang Wei";
  618. "贡献 %@ %@" = "Contribute %@ %@";
  619. "解除拉黑" = "Unblock black";
  620. "拉黑" = "block";
  621. "暂时还未命名" = "Not yet named";
  622. "TA好像忘记签名了" = "It seems that he forgot to sign";
  623. "释放充值" = "Release recharge";
  624. "兑换" = "exchange";
  625. "余额:%zd" = "Balance: %zd";
  626. "请先勾选是否同意用户充值免责协议" = "Please check whether you agree to the user recharge exemption agreement";
  627. "正在提交中" = "submitting";
  628. "支付请求中,请稍后" = "Payment request, please wait";
  629. "正在提交iTunes Store,请等待..." = "Submitting to the iTunes Store, please wait...";
  630. "您已禁止应用内付费购买商品" = "You have banned in-app purchases";
  631. "错误" = "error";
  632. "请求失败" = "Request failed";
  633. "支付成功" = "payment successful";
  634. "支付失败" = "Payment failed";
  635. "支付出现异常" = "Payment is abnormal";
  636. "支付异常" = "Payment exception";
  637. "请求开始请等待..." = "Please wait for the request to start...";
  638. "无法获取产品信息,购买失败。" = "Unable to obtain product notification, purchase failed.";
  639. "产品付费数量:%lu" = "Product payment quantity: %lu";
  640. "交易失败" = "transaction failed";
  641. "已经购买过该产品" = "Already purchased this product";
  642. "商品添加进列表" = "Add product to list";
  643. "购买失败" = "Failed purchase";
  644. "用户取消交易" = "User cancels transaction";
  645. "您已经取消交易" = "You have cancelled the transaction";
  646. "同意" = "agree";
  647. " 用户充值免责协议" = " User recharge exemption agreement";
  648. "支付宝" = "Alipay";
  649. "苹果内购" = "Apple in-app purchase";
  650. "微信支付" = "WeChat Pay";
  651. "售价:0.01" = "Price: 0.01";
  652. "赠送10000游戏币" = "Give 10,000 game coins";
  653. "输入其它金额" = "Enter another amount";
  654. "售价:%@" = "Price: %@";
  655. "%@余额:1239398" = "%@Balance:1239398";
  656. "兑换比例:20" = "Exchange ratio: 20";
  657. "单次兑换超过上限" = "A single exchange exceeds the upper limit";
  658. "%zd游戏币" = "%zd game currency";
  659. "当前%@不足" = "Current %@ is insufficient";
  660. "%@余额:%zd" = "%@Balance:%zd";
  661. "兑换比例: %@" = "Exchange ratio: %@";
  662. "存储数据失败" = "Failed to store data";
  663. "存储数据成功" = "Data stored successfully";
  664. "获取数据成功" = "Get data successfully";
  665. "删除数据失败" = "Failed to delete data";
  666. "删除表成功" = "Delete table successfully";
  667. "删除表失败" = "Failed to delete table";
  668. "无效的数据" = "Invalid data";
  669. "操作成功" = "Successful operation";
  670. "操作失败" = "operation failed";
  671. "网络请求失败" = "Network request failed";
  672. "服务器返回不支持的支付方式" = "The server returned an unsupported payment method";
  673. "正在请求Itunes Store请等待" = "Requesting Itunes Store please wait";
  674. "无法获取产品信息,购买失败" = "Unable to obtain product notification, purchase failed";
  675. "您已取消交易" = "You have cancelled the transaction";
  676. "下载中" = "downloading";
  677. "下载地址错误" = "Download address error";
  678. "~~~~~~~~~~~~~~音乐下载地址:%@" = "~~~~~~~~~~~~~~ Music download address: %@";
  679. "下载文件歌曲失败" = "Failed to download file song";
  680. "下载完成" = "Download completed";
  681. "保存歌曲失败" = "Failed to save song";
  682. "什么歌曲" = "What song";
  683. "什么作者" = "What author";
  684. "什么歌曲2" = "What song 2";
  685. "什么作者2" = "What author 2";
  686. "加载成功" = "Successfully loaded";
  687. "获取歌曲地址失败" = "Failed to get song address";
  688. "获取歌曲成功" = "Get the song successfully";
  689. "售价:¥%.2f元" = "Price: ¥%.2f dollar";
  690. "兑换比例:%@" = "Exchange ratio: %@";
  691. "请输入有效的兑换金额" = "Please enter a valid exchange amount";
  692. "附近的人" = "People nearby";
  693. "全部话题" = "All topics";
  694. "短视频" = "Video";
  695. "美女live" = "Beauty live";
  696. "话题" = "Topic";
  697. "%@人参与了该话题" = "%@人 participated in this topic";
  698. "#大约在冬季#" = "#About in winter#";
  699. "今日更新" = "Update today";
  700. "支付宝认证" = "Alipay certification";
  701. "昵称" = "nickname";
  702. "讨论" = "discuss";
  703. "时间" = "time";
  704. "距离" = "distance";
  705. "%@ 人讨论" = "%@ discussion";
  706. "发帖" = "Post";
  707. "刚刚" = "just";
  708. "%d分前" = "%ld minutes ago";
  709. "%d小前" = "%ld small front";
  710. "%d天前" = "%ld days ago";
  711. "%d月前" = "%ld months ago";
  712. "凌晨" = "Early morning";
  713. "上午" = "morning";
  714. "下午" = "in the afternoon";
  715. "晚上" = "at night";
  716. "昨天%@" = "yesterday%@";
  717. "昨天 HH:mm" = "Yesterday HH:mm";
  718. "前天 HH:mm" = "The day before yesterday HH:mm";
  719. "M月d日" = "M month d";
  720. "yyyy年MM月dd日" = "MM dd, yyyy";
  721. "系统消息" = "System notification";
  722. "创建中..." = "Creating...";
  723. "录音机创建失败..." = "Recorder creation failed...";
  724. "录音器创建失败" = "Recorder creation failed";
  725. "创建完成..." = "Created...";
  726. "麦克风未开启权限" = "Microphone is not enabled";
  727. "初始化..." = "initialization...";
  728. "初始化录音机失败" = "Failed to initialize the recorder";
  729. "录音器初始化失败" = "Recorder failed to initialize";
  730. "无法录音" = "Can't record";
  731. "请在“设置-隐私-麦克风”中允许访问麦克风。" = "Please allow access to the microphone in \”Settings-Privacy-Microphone“.";
  732. "确认" = "confirm";
  733. "准备播放...%@" = "Ready to play...%@";
  734. "播放..." = "Play...";
  735. "试听..." = "Audition...";
  736. "取消发送..." = "Cancel sending...";
  737. "发送语音" = "Send voice";
  738. "开始录音" = "start recording";
  739. "发送录音111111" = "Send recording 111111";
  740. "录音时间太短" = "The recording time is too short";
  741. "准备中......" = "preparing......";
  742. "失败:%@" = "failure:%@";
  743. "按住说话" = "Hold to speak";
  744. "点击录音" = "Click to record";
  745. "按住变声" = "Press and hold to change the voice";
  746. "松手试听" = "Let go";
  747. "松手取消发送" = "Let go to cancel sending";
  748. "准备中" = "preparing";
  749. "endRecord---------结束录音" = "endRecord---------End recording";
  750. "变声" = "Voice Changer";
  751. "对讲" = "Intercom";
  752. "录音" = "recording";
  753. "发送...path: %@" = "Send...path: %@";
  754. "取消发送并删除录音" = "Cancel sending and delete recording";
  755. "跳转到变声界面" = "Jump to the voice changer interface";
  756. "萝莉" = "Loli";
  757. "大叔" = "Uncle";
  758. "惊悚" = "Horror";
  759. "空灵" = "Ethereal";
  760. "搞怪" = "Funny";
  761. "取消发送并删除录音/删除变声文件" = "Cancel sending and delete recording/delete voice-changing file";
  762. "您未指定cell排列中最后的视图对象,无法计算cell的高度" = "You have not specified the last view object in the cell arrangement, and the height of the cell cannot be calculated";
  763. " 保存成功 " = " Saved successfully ";
  764. " 保存失败 " = " Save failed";
  765. "保存图片" = "save Picture";
  766. "图片加载失败" = "Image failed to load";
  767. "发布成功" = "Successful";
  768. "置顶" = "Top";
  769. "动态内容已复制" = "Dynamic content copied";
  770. "匿名头像" = "Anonymous avatar";
  771. "匿名用户" = "Anonymous User";
  772. "查看全部" = "View all";
  773. "收起" = "Put away";
  774. "确定删除该动态?" = "Are you sure to delete this activity?";
  775. "-时间戳---%lld_----" = "-Timestamp---%lld_----";
  776. "昨天" = "yesterday";
  777. "星期日" = "on Sunday";
  778. "星期一" = "Monday";
  779. "星期二" = "Tuesday";
  780. "星期三" = "Wednesday";
  781. "星期四" = "Thursday";
  782. "星期五" = "Friday";
  783. "星期六" = "Saturday";
  784. "转发" = "Forward";
  785. "暂无数据" = "No data";
  786. "加载中..." = "Loading...";
  787. "网络未连接" = "Network not connected";
  788. "请检查网络后重新加载页面" = "Please check the network and reload the page";
  789. "重新加载" = "Reload";
  790. "动态" = "Moment";
  791. "语音" = "Voice";
  792. "请设置图片容器的宽度" = "Please set the width of the image container";
  793. "分享" = "share it";
  794. "素材1" = "Material 1";
  795. "提醒谁看" = "Remind who to watch";
  796. "王%d明" = "Wang %d Ming";
  797. "添加图片/视频" = "Add picture/video";
  798. "添加图片" = "add pictures";
  799. "视频播放完成" = "Video playback complete";
  800. "播放失败" = "Playback failed";
  801. "正在播放...视频中长度为:%f" = "Now playing...The length of the video is: %f";
  802. "共缓冲:%.2f,总时长为:%f" = "Total buffer: %.2f, total duration: %f";
  803. "缓冲区为空" = "Buffer is empty";
  804. "缓冲区不为空======" = "The buffer is not empty ======";
  805. "最后一张观看的图片的index是:%zd" = "The index of the last picture viewed is: %zd";
  806. "%@人讨论" = "%@人 Discussion";
  807. "删除音频" = "Delete audio";
  808. "添加图片不超过9张,文字备注不超过300字" = "Add no more than 9 pictures and no more than 300 words for text remarks";
  809. "添加图片不超过9张,文字备注不超过%d字" = "Add no more than 9 pictures, and no more than %d words for text remarks";
  810. "录制音频" = "Record audio";
  811. "当前输入框文字个数:%ld" = "Number of text in the current input box: %ld";
  812. "文本框没字" = "No text in text box";
  813. "请输入文字" = "please enter text";
  814. "文本框字数超过300" = "More than 300 words in the text box";
  815. "超出文字限制" = "Text limit exceeded";
  816. "正在上传" = "uploading";
  817. "正在上传数据中..." = "Uploading data...";
  818. "上传中" = "uploading";
  819. "发布成功!" = "Successfully released!";
  820. "内存警告..." = "Memory warning...";
  821. "放弃上传" = "Abort upload";
  822. "选择照片" = "choose a photo";
  823. "选择视频" = "Select video";
  824. "拍摄视频" = "Shoot video";
  825. "选择视频不能再选择图片" = "Select video can no longer select pictures";
  826. "选择图片不能再选择视频" = "Select picture can no longer select video";
  827. "dynamic(动态 前缀:dn)" = "dynamic (dynamic prefix: dn)";
  828. "想和大家分享些什么呢?(正文不能多于%ld字)" = "What do you want to share with you? (The text cannot be more than %ld)";
  829. "退出" = "drop out";
  830. " 定位" = " Positioning";
  831. "匿名" = "anonymous";
  832. "济南市" = "Jinan City";
  833. "删除话题" = "Delete topic";
  834. "参与话题,让更多人看到" = "Participate in topics, let more people see";
  835. "进入" = "enter";
  836. "打开" = "turn on";
  837. "视频" = "Video";
  838. "定位中..." = "Positioning...";
  839. "定位" = "Positioning";
  840. "只有内容部分才能发表情" = "Only the content part can express love";
  841. "经度=%f 纬度=%f 高度=%f" = "Longitude=%f Latitude=%f Height=%f";
  842. "访问被拒绝" = "Access denied";
  843. "无法获取位置信息" = "Unable to get location notification";
  844. "有修改,是否放弃上传" = "There are modifications, whether to abandon the upload";
  845. "不能少于20字哦" = "No less than 20 words";
  846. "内容不能为空!" = "the content can not be blank!";
  847. "视频时长%d" = "Video duration %d";
  848. "选取视频时长太小" = "The selected video duration is too small";
  849. "选取视频时长太大" = "The selected video is too long";
  850. "正在上传图片..." = "Uploading picture...";
  851. "上传失败" = "upload failed";
  852. "正在上传视频..." = "Uploading video...";
  853. "正文不能多于%ld字" = "The text cannot be more than %ld words";
  854. "标题(选填)" = "Title (optional)";
  855. "搜索框" = "search bar";
  856. "话题%d" = "Topic %d";
  857. "话题搜索" = "Topic search";
  858. "评论" = "comment";
  859. "返回按钮被点击" = "Back button was clicked";
  860. "播放完成" = "Play complete";
  861. "删除动态成功" = "Successfully deleted activity";
  862. "确定删除该动态?" = "Are you sure to delete this activity?";
  863. "转发成功" = "Forward successfully";
  864. "立即\n参与" = "Participate now\n";
  865. "立即参与按钮" = "Participate now button";
  866. "推荐" = "Recommend";
  867. "我的" = "My";
  868. "请输入内容" = "Please enter content";
  869. "请输入评论内容" = "Please enter comment content";
  870. "评论成功" = "Comment successful";
  871. "是否删除评论" = "Delete comment";
  872. "动态详情" = "Dynamic details";
  873. "删除成功" = "successfully deleted";
  874. "去看看" = "Go see";
  875. "主播协议" = "Host Agreement";
  876. "已阅读并同意" = "Have read and agree";
  877. "选择分类" = "Choose category";
  878. "直播分类:%@" = "Live stream category: %@";
  879. "取消 " = "Cancel";
  880. "第一次用户拒绝" = "First time user rejected";
  881. "请前往设置'隐私-麦克风'开启应用权限" = "Please go to settings'Privacy-Microphone' to enable application permissions";
  882. "已经开启授权,可继续" = "Authorization has been turned on, you can continue";
  883. "请前往设置'隐私-麦克风'打开应用权限" = "Please go to the settings'Privacy-Microphone' to open the app permissions";
  884. "点击确认" = "Click to confirm";
  885. "请设置房间密码" = "Please set the room password";
  886. "请设置一个数字密码" = "Please set a digital password";
  887. "请选择分类" = "please select a type";
  888. "请选择封面" = "Please select cover";
  889. "#添加标题上热门更轻松" = "#Adding popular titles is easier";
  890. "请填写直播标题" = "Please fill in the title of the live broadcast";
  891. "房间密码应为四位数!" = "The room code should be four digits!";
  892. "正在努力配置直播..." = "Working hard to configure live broadcast...";
  893. "开始直播" = "Start live broadcast";
  894. "开定位" = "Open positioning";
  895. "私密" = "Private";
  896. "密码" = "Password";
  897. "购物" = "shopping";
  898. "直播分类:请选择" = "Live stream classification: please select";
  899. "选择封面" = "Choose cover";
  900. "举报原因" = "Reason for reporting";
  901. "举报小视频" = "Report short video";
  902. "其他原因" = "other reasons";
  903. "请选择举报类型" = "Please select report type";
  904. "提交" = "submit";
  905. "举报理由" = "Reason for reporting";
  906. "举报描述(选填)" = "Report description (optional)";
  907. "请详细描述您的举报理由" = "Please describe in detail your reason for reporting";
  908. "举报成功" = "Report successful";
  909. "举报提交成功" = "Report submitted successfully";
  910. "我们将在24小时之内进行处理" = "We will process it within 24 hours";
  911. "小视频详情" = "short video details";
  912. "请输入您的评论" = "Please enter your comment";
  913. "举报该动态" = "Report this post";
  914. "举报该用户" = "Report this user";
  915. "视频简介:%@" = "Video introduction: %@";
  916. "写真简介:%@" = "Photo profile: %@";
  917. "回复 %@: %@" = "Reply %@: %@";
  918. "%d人看了照片,共收入%.2f元" = "%d people saw the photos and earned a total of %.2f dollar";
  919. "我要购买" = "I want to buy";
  920. "分享至:" = "share to:";
  921. "这一刻你的想法" = "Your thoughts at this moment";
  922. "所在位置" = "location";
  923. "图片不写本地吧" = "The picture is not written locally";
  924. "设备不支持视频" = "Device does not support video";
  925. "相册中获取视频" = "Get videos in album";
  926. "不显示" = "Do not show";
  927. "输入恰当的关键字" = "Enter appropriate keywords";
  928. "编辑封面" = "Edit cover";
  929. "短视频发布按钮" = "Short video release button";
  930. "发布小视频" = "Post a short video";
  931. "图片保存失败" = "Picture save failed";
  932. "请编辑这一刻你的想法" = "Please edit your thoughts at this moment";
  933. "视频数据不小心丢失了,请重新选择" = "Video data was accidentally lost, please select again";
  934. "帧图数据不小心丢失了,请重新选择" = "The frame image data is accidentally lost, please reselect";
  935. "图片参数配置失败" = "Picture parameter configuration failed";
  936. "正在发布中..." = "Publishing...";
  937. "视频上传超时" = "Video upload timed out";
  938. "封面图未上传完" = "The cover image has not been uploaded";
  939. "视频未上传完" = "The video is not finished uploading";
  940. "发布失败!" = "Publish failed!";
  941. "编辑视频封面" = "Edit video cover";
  942. "分类" = "classification";
  943. "添加短视频分类" = "Add short video category";
  944. "短视频分类" = "Short video classification";
  945. "反geo检索发送成功" = "Anti-geo retrieval sent successfully";
  946. "反geo检索发送失败" = "Anti-geo retrieval sending failed";
  947. "搜索成功" = "Search successful";
  948. "搜索失败" = "Search failed";
  949. "搜索成功1" = "Search successful 1";
  950. "搜索失败2" = "Search failed 2";
  951. "这是_search 对应的POI搜索结果" = "This is the POI search result corresponding to _search";
  952. "这是_search2对应的POI搜索结果" = "This is the POI search result corresponding to _search2";
  953. "最近删除" = "Recently deleted";
  954. "我的照片流" = "My photo stream";
  955. "保存照片出错:%@" = "Error saving photo: %@";
  956. "保存图片失败:%@" = "Failed to save picture: %@";
  957. "No supported file types 视频类型暂不支持导出" = "No supported file types The video type does not currently support export";
  958. "最近添加" = "Recently added";
  959. "相机胶卷" = "Camera Roll";
  960. "所有照片" = "All photos";
  961. "模拟器中无法打开照相机,请在真机中使用" = "The camera cannot be opened in the emulator, please use it in the real machine";
  962. "相册权限" = "Album permissions";
  963. "无法访问相册,请在系统设置中允许访问" = "Cannot access the album, please allow access in the system settings";
  964. "设置" = "Set up";
  965. "发起直播" = "Start live broadcast";
  966. "邀请规则" = "Invitation rules";
  967. "可提现金额(元)" = "Available cash amount (dollar)";
  968. "成功邀请(人)" = "Successfully invited (people)";
  969. "立即邀请好友赚钱" = "Invite friends to make money now";
  970. "我的团队" = "my team";
  971. "一级团队" = "First-level team";
  972. "详情 >" = "Details>";
  973. "二级团队" = "Second-level team";
  974. "三级团队" = "Three-level team";
  975. "提现记录" = "Withdrawals record";
  976. "账户余额:" = "Account Balance:";
  977. "自定义金额" = "Custom amount";
  978. "兑换:" = "exchange:";
  979. "账户余额:%@" = "Account Balance:%@";
  980. "公会列表" = "Family list";
  981. "请输入您想要加入的公会" = "Please enter the family you want to join";
  982. "是否申请加入该公会" = "Whether to apply to join the family";
  983. "申请已提交" = "Application submitted";
  984. "我的公会" = "My Family";
  985. "邀请码" = "Invitation code";
  986. "邀请赚钱" = "Invite";
  987. "我的账户" = "My account";
  988. "我的收益" = "My earnings";
  989. "道具商城" = "Props Mall";
  990. "道具商店" = "Shop";
  991. "贵族中心" = "Noble Center";
  992. "座驾商城" = "Car mall";
  993. "购买会员" = "Buy membership";
  994. "靓号商城" = "Lianghao Mall";
  995. "兑换游戏币" = "Exchange game currency";
  996. "送出" = "send";
  997. "主播认证" = "Anchor certification";
  998. "主播中心" = "Anchor Center";
  999. "我的小店" = "My shop";
  1000. "直播间收支记录" = "Live room revenue and expenditure records";
  1001. "分享收益" = "Share revenue";
  1002. "游戏分享收益" = "Game share revenue";
  1003. "我的公会" = "My Family";
  1004. "车" = "car";
  1005. "77票贡献榜" = "Cuckoo vote contribution list";
  1006. "三级分销" = "Tertiary distribution";
  1007. "0印票" = "0 printed tickets";
  1008. "未开通" = "nonactivated";
  1009. "0级" = "Level 0";
  1010. "0 个商品" = "0 products";
  1011. "0 个订单" = "0 orders";
  1012. "公会资料修改" = "Guild notification modification";
  1013. "请输入公会名称" = "Please enter the name of the guild";
  1014. "请输入公会宣言" = "Please enter the guild declaration";
  1015. "编辑公会头像" = "Edit guild avatar";
  1016. "请填写公会名称" = "Please fill in the name of the guild";
  1017. "请填写公会宣言" = "Please fill in the Guild Declaration";
  1018. "请编辑头像" = "Please edit avatar";
  1019. "正在创建公会请等待" = "Creating a guild please wait";
  1020. "正在上传修改请等待" = "Uploading changes please wait";
  1021. "超过最大字数限制" = "Exceed the maximum word limit";
  1022. "公会资料修改" = "Family notification modification";
  1023. "请输入公会名称" = "Please enter the family name";
  1024. "请输入公会宣言" = "Please enter a family declaration";
  1025. "编辑公会头像" = "Edit family profile picture";
  1026. "请填写公会名称" = "Please fill in the family name";
  1027. "请填写公会宣言" = "Please fill in the family declaration";
  1028. "正在创建公会请等待" = "Creating family please wait";
  1029. "编辑资料" = "edit notification";
  1030. "提现" = "withdraw";
  1031. "总%@数" = "total";
  1032. "今日可领%@数" = "Can claim %@number today";
  1033. "%@提现" = "%@withdraw";
  1034. "请输入要提现的%@数" = "Please enter %@number to withdraw";
  1035. "提现成功" = "Withdraw successfully";
  1036. "0元" = "0 dollar";
  1037. "%0.2lf元" = "%0.2lf dollar";
  1038. "成员列表" = "Member list";
  1039. "公会成员(%d)" = "Family members (%d)";
  1040. "成员申请(%d)" = "Member application (%d)";
  1041. "成员申请(?人)" = "Member application (? people)";
  1042. "公会成员(%@)" = "family members(%@)";
  1043. "成员申请(%@)" = "Member application (%@)";
  1044. "是否踢出该成员" = "Whether to kick the member";
  1045. "是否同意该成员加入公会" = "Whether to agree to the member to join the family";
  1046. "是否拒绝该成员加入公会" = "Whether to refuse the member to join the family";
  1047. "收益" = "income";
  1048. "领取记录" = "Collection record";
  1049. "我拍卖的商品收入" = "My auctioned goods revenue";
  1050. "我销售的商品收入" = "My sales revenue";
  1051. "微信提现" = "WeChat withdrawal";
  1052. "您还有未处理的提现" = "You still have unprocessed withdrawals";
  1053. "支付宝提现" = "Alipay withdrawal";
  1054. "请前往“%@”公众号进行提现" = "Please go to the ”%@“ public account to withdraw";
  1055. "微信搜索关注“%@”公众号领取红包" = "WeChat search, follow the ”%@“ public account to receive red envelopes";
  1056. "绑定成功" = "Bind successfully";
  1057. "绑定失败" = "Binding failed";
  1058. "男" = "male";
  1059. "女" = "Female";
  1060. "性别只能修改保存一次" = "Gender can only be modified and saved once";
  1061. "推荐人信息" = "Referrer notification";
  1062. "推荐人ID" = "Referrer ID";
  1063. "请输入邀请码" = "Please enter the invitation code";
  1064. "邀请码不能为空" = "Invitation code cannot be empty";
  1065. "提交成功" = "Submitted successfully";
  1066. "签到" = "Sign in";
  1067. "竞拍" = "Bidding";
  1068. "按时收费" = "Charge on time";
  1069. "按场收费" = "Fee-based";
  1070. "付费记录" = "Payment record";
  1071. "收费记录" = "Charge record";
  1072. "我的推荐人" = "My referrer";
  1073. "性别不可编辑" = "Gender cannot be edited";
  1074. "编辑成功" = "Edit successfully";
  1075. "VIP充值" = "VIP recharge";
  1076. "永久会员" = "Permanent member";
  1077. "请选择会员套餐" = "Please select a membership package";
  1078. "请选择支付金额" = "Please select payment amount";
  1079. "请选择支付方式" = "Please select mode of payment";
  1080. "会员到期日期:" = "Member expiration date:";
  1081. "恢复已购买商品" = "Restore purchased items";
  1082. "充值成功" = "Top up successfully";
  1083. "账号绑定" = "Account binding";
  1084. "请输入支付宝名称" = "Please enter Alipay name";
  1085. "请输入支付宝账号" = "Please enter Alipay account";
  1086. "账户:%@%@" = "Account: %@%@";
  1087. "请输入%@金额" = "Please enter %@Amount";
  1088. "兑换%@" = "exchange%@";
  1089. "请输入兑换的%@金额" = "Please enter the %@ amount of the exchange";
  1090. "%d游戏币" = "%d game currency";
  1091. "请输入足够的兑换金额" = "Please enter enough exchange amount";
  1092. "兑换金额不得大于账户余额" = "The exchange amount cannot be greater than the account balance";
  1093. "兑换失败" = "Redemption failed";
  1094. "兑换成功" = "Successful redemption";
  1095. "推送管理" = "Push management";
  1096. "公会列表" = "Guild List";
  1097. "请输入您想要加入的公会" = "Please enter the guild you want to join";
  1098. "是否申请加入该公会" = "Whether to apply to join the guild";
  1099. "我的星店" = "My star shop";
  1100. "新增" = "Add";
  1101. "编辑星店地址" = "Edit star store address";
  1102. "请输入正确的网址链接" = "Please enter the correct URL link";
  1103. "帐号与安全" = "Account and security";
  1104. "安全等级:高" = "Security level: high";
  1105. "您已绑定手机" = "You have bound your phone";
  1106. "认证" = "Certification";
  1107. "带星号项为必填项,为了保证您的利益,请如实填写" = "Items with an asterisk are required. To ensure your interests, please fill in truthfully";
  1108. "基本资料" = "basic notification";
  1109. "认证消息" = "Authentication message";
  1110. "身份认证" = "Authentication";
  1111. "公会邀请码" = "Guild Invitation Code";
  1112. "(选填)" = "(Optional)";
  1113. "请输入您的公会邀请码" = "Please enter your guild invitation code";
  1114. "昵称:%@" = "nickname:%@";
  1115. "性别:%@" = "gender:%@";
  1116. "认证类型" = "Authentication type";
  1117. "请选择认证类型" = "Please select certification type";
  1118. "请输入真实姓名" = "please enter your real name";
  1119. "请输入联系方式" = "Please enter contact notification";
  1120. "请输入18位有效的身份证号码" = "Please enter 18 valid ID number";
  1121. "请上传身份证正面照" = "Please upload the front photo of your ID card";
  1122. "请上传身份证反面照" = "Please upload the reverse photo of your ID card";
  1123. "请上传手持身份证正面照" = "Please upload the front photo";
  1124. "请输入%@" = "please enter%@";
  1125. "身份证反面照片上传成功" = "Uploaded successfully";
  1126. "手持身份证正面照上传成功" = "Uploaded successfully";
  1127. "推荐人信息类型" = "Referrer notification type";
  1128. "公会详情" = "Family details";
  1129. "道道道非常道" = "All the way";
  1130. "公会族长" = "Family patriarch";
  1131. "公会人数" = "Family size";
  1132. "公会详情描述" = "Family description";
  1133. "成员管理" = "Member management";
  1134. "公会成员" = "family members";
  1135. "退出公会" = "Leave the family";
  1136. "公会族长 : %@" = "Family patriarch: %@";
  1137. "公会人数 : %@人" = "Number of family members: %@人";
  1138. "申请中" = "Applying";
  1139. "已加入" = "joined";
  1140. "是否退出该公会" = "Whether to leave the family";
  1141. "您的公会未通过审核" = "Your family is not approved";
  1142. "您的公会已解散" = "Your family has been dissolved";
  1143. "退出申请" = "Exit application";
  1144. "公会成员(%@)" = "Guild members (%@)";
  1145. "退出申请(%@)" = "Exit application (%@)";
  1146. "公会成员(%d)" = "Guild members (%d)";
  1147. "是否拒绝该成员加入公会" = "Whether to reject the member to join the guild";
  1148. "是否同意该成员退出公会" = "Do you agree to the member's withdrawal from the guild";
  1149. "退出申请(%d)" = "Exit application (%d)";
  1150. "是否拒绝该成员退出公会" = "Whether to refuse the member to withdraw from the guild";
  1151. "入会申请中" = "Application for membership";
  1152. "退会申请中" = "Application for withdrawal";
  1153. "状态:审核中" = "Status: Under review";
  1154. "重新申请" = "Re-apply";
  1155. "邀请码:%@" = "Invitation code:%@";
  1156. "会长:%@" = "President: %@";
  1157. "公会人数:%d" = "Number of guilds: %d";
  1158. "主播" = "Anchor";
  1159. "成员申请" = "Member application";
  1160. "查看详情" = "see details";
  1161. "观看直播" = "Watch live";
  1162. "踢出公会" = "Kicked out of the guild";
  1163. "你没有操作权限" = "You don't have permission";
  1164. "公会正在审核中" = "The guild is under review";
  1165. "退出公会" = "Withdraw from the guild";
  1166. "是否退出公会:%@?" = "Whether to withdraw from the guild: %@?";
  1167. "退会申请已提交" = "The withdrawal application has been submitted";
  1168. "是否加入公会:%@?" = "Join the guild: %@?";
  1169. "入会申请已提交" = "Application for membership has been submitted";
  1170. "已复制" = "Copied";
  1171. "踢出成员" = "Kicked out members";
  1172. "是否踢出该成员?" = "Did you kick the member out?";
  1173. "拒绝加入公会" = "Refuse to join the guild";
  1174. "是否拒绝该成员加入公会?" = "Do you deny the member to join the guild?";
  1175. "拒绝退出公会" = "Refuse to leave the guild";
  1176. "是否拒绝该成员退出公会?" = "Do you refuse the member to withdraw from the guild?";
  1177. "同意加入公会" = "Agree to join the guild";
  1178. "是否同意该成员加入公会?" = "Do you agree to the member to join the guild?";
  1179. "同意退出公会" = "Agree to withdraw from the guild";
  1180. "是否同意该成员退出公会?" = "Do you agree to the member's withdrawal from the guild?";
  1181. "%@元" = "%@dollar";
  1182. "兑换中" = "Redeeming";
  1183. "累计领取:%@元" = "Cumulative collection: %@元";
  1184. "编辑昵称" = "Edit nickname";
  1185. "编辑签名" = "Edit signature";
  1186. "编辑职业" = "Editing profession";
  1187. "请输入小于33个文字" = "Please enter less than 33 characters";
  1188. "请输入小于17个文字" = "Please enter less than 17 characters";
  1189. "请编辑昵称" = "Please edit nickname";
  1190. "请编辑签名" = "Please edit signature";
  1191. "请编辑职业" = "Please edit occupation";
  1192. "帮助与反馈" = "Help and feedback";
  1193. "关于我们" = "About us";
  1194. "发现新版本,需要升级吗?" = "A new version is found, do I need to upgrade?";
  1195. "当前已是最新版本!" = "It is currently the latest version!";
  1196. "公会详情" = "Guild Details";
  1197. "公会人数" = "Number of guilds";
  1198. "公会详情描述" = "Guild details description";
  1199. "公会成员" = "Guild members";
  1200. "公会会长 : %@" = "Guild President: %@";
  1201. "公会人数 : %@人" = "Guild population: %@人";
  1202. "是否退出该公会" = "Whether to withdraw from the guild";
  1203. "人数:%@" = "Number of people: %@";
  1204. "%@余额:%@" = "%@Balance:%@";
  1205. "赠送" = "Give away";
  1206. "输入金额大于账户余额" = "The amount entered is greater than the account balance";
  1207. "%ld游戏币" = "%ld game currency";
  1208. "请输入足够的金额" = "Please enter enough amount";
  1209. "兑换比例为0,不能兑换" = "The exchange rate is 0 and cannot be exchanged";
  1210. "天使的眼泪" = "Angel's tears";
  1211. "人数 :" = "Number of people:";
  1212. "会长 : %@" = "President: %@";
  1213. "人" = "people";
  1214. "神秘人" = "Mystery man";
  1215. "检查更新" = "Check for updates";
  1216. "%.2f万%@" = "%.2f万%@";
  1217. "保密" = "Keep secret";
  1218. "单身" = "single";
  1219. "恋爱中" = "In love";
  1220. "已婚" = "married";
  1221. "同性" = "homosexual";
  1222. "消费%@:%@" = "consumption%@:%@";
  1223. "贡献%@:%@" = "contribution%@:%@";
  1224. "开始观看时间:%@" = "Start viewing time: %@";
  1225. "观看时长:%@" = "Watching time: %@";
  1226. "签到成功背景" = "Sign in success background";
  1227. "签到成功" = "Sign in successfully";
  1228. "签到成功按钮" = "Sign in success button";
  1229. "恭喜获得%@个钻石" = "Congratulations on getting %@ diamonds";
  1230. "知道啦" = "Know it";
  1231. "暂无昵称" = "No nickname";
  1232. "账号" = "id";
  1233. "认证:%@" = "Certification: %@";
  1234. "回播\n%@" = "Playback\n%@";
  1235. "回播\n0" = "Playback\n0";
  1236. "小视频\n%@" = "short video\n%@";
  1237. "小视频\n0" = "short video\n0";
  1238. "关注\n%@" = "Follow\n%@";
  1239. "关注\n0" = "Follow\n0";
  1240. "粉丝\n%@" = "Fans\n%@";
  1241. "粉丝\n0" = "Fans\n0";
  1242. "点击签到按钮" = "Click the sign-in button";
  1243. "签到按钮" = "Sign in button";
  1244. "立即签到" = "Sign in now";
  1245. "请输入兑换金额" = "Please enter the exchange amount";
  1246. "兑换金额有误" = "The exchange amount is wrong";
  1247. "会长" = "President";
  1248. "头像" = "Avatar";
  1249. "个性签名" = "Signature";
  1250. "生日" = "Birthday";
  1251. "情感状态" = "Emotional state";
  1252. "家乡" = "Hometown";
  1253. "职业" = "Profession";
  1254. "获得%@" = "get%@";
  1255. "族长 : %@" = "Patriarch: %@";
  1256. "%ld年" = "%ld years";
  1257. "0%ld月" = "0%ld month";
  1258. "%ld月" = "%ld month";
  1259. "0%ld日" = "0% ld day";
  1260. "%ld日" = "%ld day";
  1261. "共%d个精彩回放" = "A total of %d wonderful replays";
  1262. "第1天" = "Day 1";
  1263. "第%@天" = "%@Day";
  1264. "签到页背景" = "Sign page background";
  1265. "插画" = "illustration";
  1266. "数字显示" = "Digital Display";
  1267. "已连续签到" = "Checked in continuously";
  1268. "天" = "day";
  1269. "%@的主页" = "%@'S homepage";
  1270. "用户主页" = "User homepage";
  1271. "踢出公会" = "Kick out of the family";
  1272. "提现说明:%@" = "Withdrawal instructions: %@";
  1273. "玄铁" = "Black iron";
  1274. "青铜" = "bronze";
  1275. "白银" = "silver";
  1276. "黄金" = "gold";
  1277. "铂金" = "Platinum";
  1278. "星耀" = "Starshine";
  1279. "王者" = "King";
  1280. "贵族立即开通按钮" = "Noble immediately activate button";
  1281. "立即获得%@钻石" = "Get %@ Diamond immediately";
  1282. "立即获得" = "Get it now";
  1283. "%@元/%@天" = "%@元/%@天";
  1284. "玄铁身份" = "Xuan Tie Identity";
  1285. "身份-选中" = "Identity-selected";
  1286. "贵族背景" = "Noble background";
  1287. "贵族特权" = "Noble privileges";
  1288. "拥有特权2/9" = "With privileges 2/9";
  1289. "发送验证码" = "Verification code";
  1290. "发送失败" = "Failed to send";
  1291. "重新获取(%lds)" = "Resend (%lds)";
  1292. "获取验证码" = "Verification code";
  1293. "获取登录参数失败,请稍后尝试" = "Failed to get login parameters, please try later";
  1294. "手机绑定" = "Phone binding";
  1295. "手机登录" = "login by phone";
  1296. "%ld秒" = "%ld seconds";
  1297. "发验证码" = "Send verification code";
  1298. "请输入验证码" = "please enter verification code";
  1299. "验证码过程出错,请重新尝试" = "An error occurred during the verification code, please try again";
  1300. "为您推荐的主播" = "Recommended anchor for you";
  1301. "成功responseJson:%@" = "Successful responseJson:%@";
  1302. "失败responseJson:%@" = "Failed responseJson: %@";
  1303. "—— 热门主播 ——" = "—— Popular anchor ——";
  1304. "—— 官方推荐 ——" = "—— Official recommendation ——";
  1305. "手机注册" = "Register your phone";
  1306. "填写昵称" = "Fill in nickname";
  1307. "请输入你的昵称" = "Please enter your nickname";
  1308. "注册账号" = "Register an account";
  1309. "完成注册" = "Complete registration";
  1310. "找回密码" = "Retrieve password";
  1311. "验证码登录" = "Verification code login";
  1312. "登录" = "Log in";
  1313. "中国" = "China";
  1314. "请输入手机号" = "Please enter phone number";
  1315. "再次输入密码" = "Enter the password again";
  1316. "两次密码输入不一致" = "Two password entries are inconsistent";
  1317. "修改密码成功" = "successfully change password";
  1318. "登录即代表你同意" = "Login means you agree";
  1319. "《用户隐私政策》" = "User Privacy Policy";
  1320. "lr换一批" = "lr change batch";
  1321. "lr进入按钮" = "lr enter button";
  1322. "换一批" = "Change batch";
  1323. "点击进入" = "click to enter";
  1324. "log背景" = "log background";
  1325. "log选中输入框" = "log selected input box";
  1326. "log手机号输入" = "log phone number input";
  1327. "log输入验证码" = "log enter the verification code";
  1328. "log手机号" = "log phone number";
  1329. "log验证码" = "log verification code";
  1330. "国家和地区" = "Countries and regions";
  1331. "手机号" = "Phone number";
  1332. "请输入您的手机号" = "Please enter your mobile number";
  1333. "忘记密码" = "Forget password";
  1334. "其他登录方式" = "Other login methods";
  1335. "游客身份登录" = "Guest login";
  1336. "注册" = "registered";
  1337. "手机号验证码登录" = "Mobile phone number verification code login";
  1338. "立即登录" = "log in immediately";
  1339. "登录即代表同意" = "Sign in means consent";
  1340. "-----其他方式登录-----" = "-----Other ways to log in-----";
  1341. "经验+%@" = "Experience+%@";
  1342. "恭喜您升到%ld级!" = "Congratulations on your promotion to the %ld level!";
  1343. "lr男生" = "lr boys";
  1344. "lr女生" = "lr girls";
  1345. "lr选中" = "lr selected";
  1346. "lr未选" = "lr not selected";
  1347. "lr头像" = "lr avatar";
  1348. "神奇" = "magical";
  1349. "立即查看" = "View now";
  1350. "发布动态" = "Release news";
  1351. "首页" = "Home";
  1352. "消息" = "notification";
  1353. "发来了一条消息" = "Sent a message";
  1354. "请填写邀请码" = "Please fill in the invitation code";
  1355. "加入在线用户大群成功" = "Successfully joined the online user group";
  1356. "加入在线用户大群失败,错误码:%d,错误原因:%@" = "Failed to join the online user group, error code: %d, error reason: %@";
  1357. "退出在线用户大群成功" = "Successfully exit the online user group";
  1358. "退出在线用户大群失败,错误码:%d,错误原因:%@" = "Failed to exit the online user group, error code: %d, error reason: %@";
  1359. "=====初始化接口失败,错误码:%ld" = "=====Failed to initialize the interface, error code: %ld";
  1360. "链接为空" = "Link is empty";
  1361. "哎呀!网络不大给力!" = "Damn! The network is not great!";
  1362. "您正在使用手机自带网络进行访问" = "You are using the phone's own network to access";
  1363. "您正在使用wifi进行访问" = "You are using wifi for access";
  1364. "发送媒体消息结果" = "Send media message result";
  1365. "用户取消了支付" = "User canceled payment";
  1366. "支付结果" = "Payment result";
  1367. "支付成功!" = "payment successful!";
  1368. "支付成功-PaySuccess,retcode" = "%d";
  1369. "用户取消" = "User canceled";
  1370. "支付结果:错误,retcode" = "%d, retstr";
  1371. "用户拒绝授权!" = "User refused to authorize!";
  1372. "用户取消!" = "User canceled!";
  1373. "您当前正在直播" = "You are currently streaming";
  1374. "您当前正在直播间内" = "You are currently in the live broadcast room";
  1375. "请退出当前直播间后重新尝试!" = "Please exit the current live broadcast room and try again!";
  1376. "白方胜" = "Bai Fangsheng";
  1377. "黑方胜" = "Black wins";
  1378. "只能悔一步棋!!!" = "Can only regret one move!!!";
  1379. "请先落子!!!" = "Please settle first!!!";
  1380. "初级棋盘" = "Elementary board";
  1381. "悔棋" = "Regret chess";
  1382. "新游戏" = "new game";
  1383. "设置游戏背景" = "Set the game background";
  1384. "没有位置信息" = "No location notification";
  1385. "高级棋盘" = "Advanced chess board";
  1386. "欢迎来自%@的棋手" = "Welcome to the chess player from %@";
  1387. "知道了" = "understood";
  1388. "已达到最大限制字数" = "The maximum number of characters has been reached";
  1389. "UIView (CustomAutoLayout)参数出错" = "UIView (CustomAutoLayout) parameter error";
  1390. "UIView (CustomAutoLayout)父控件没有设置参数出错" = "UIView (CustomAutoLayout) parent control does not set parameters error";
  1391. "所排列的View的父控件不同" = "The parent controls of the arranged View are different";
  1392. "%d秒前" = "%d seconds ago";
  1393. "%d分钟前" = "%d minutes ago";
  1394. "今天 HH:mm" = "Today HH:mm";
  1395. "昨天HH:mm" = "Yesterday HH:mm";
  1396. "前天HH:mm" = "The day before yesterday HH:mm";
  1397. "%d个月前" = "%d months ago";
  1398. "%d年前" = "%d years ago";
  1399. "kvo,修改name为%@" = "kvo, modify the name to %@";
  1400. "通知名" = "Notification name";
  1401. "收到通知1:%@" = "Received notification 1: %@";
  1402. "昨天 %@" = "Yesterday %@";
  1403. "亲,您的网络有点小卡哦!" = "Dear, your network has a small card!";
  1404. "亲,您的网络开小差啦!" = "Dear, your network has gone away!";
  1405. "扫描二维码" = "Scan QR code";
  1406. "开启" = "Turn on";
  1407. "将二维码放入取景框中,即可自动扫描" = "Put the QR code into the viewfinder and it will scan automatically";
  1408. "点击演示添加Icon后该做的操作" = "Click the demo to add the icon";
  1409. "新浪微博" = "Sina Weibo";
  1410. "%@ 分享了直播" = "%@ shared the live broadcast";
  1411. "=======将JSON串转化为NSDictionary失败" = "=======Failed to convert JSON string to NSDictionary";
  1412. "没有定位权限" = "No positioning permission";
  1413. "没有摄像头权限" = "No camera permission";
  1414. "没有录音权限" = "No recording permission";
  1415. "没有相册权限" = "No album permission";
  1416. "值为nil" = "Value is nil";
  1417. "腾讯云视频进度 %llu" = "Tencent Cloud Video Progress %llu";
  1418. "上传成功" = "Upload successfully";
  1419. "删除的文件不存在" = "The deleted file does not exist";
  1420. "copySourceFile成功" = "copySourceFile succeeded";
  1421. "copySourceFile失败" = "copySourceFile failed";
  1422. "网络断开了ReachableViaWWAN" = "Network disconnected ReachableViaWWAN";
  1423. "网络断开了NotReachable" = "Network disconnected NotReachable";
  1424. "请检查当前网络" = "Please check the current network";
  1425. "请求链接-----------------------------------------------------\n%@" = "Request link ------------------------------------------------ -----\n%@";
  1426. "您的AES加密密码长度不是16位!" = "The length of your AES encryption password is not 16 bits!";
  1427. "加入全员广播大群成功" = "Join the all-member radio group successfully";
  1428. "加入全员广播大群失败,错误码:%d,错误原因:%@" = "Failed to join the all-member broadcast group, error code: %d, error reason: %@";
  1429. "IM还未登录成功" = "IM has not logged in successfully";
  1430. "还未获取到全员广播大群ID" = "Have not obtained all members' broadcast group ID";
  1431. "请求中。。。" = "Requesting. . .";
  1432. "获取到全员广播大群信息失败" = "Failed to get all members' broadcast notification";
  1433. "域名列表不为空,但是没有数据!" = "The domain name list is not empty, but there is no data!";
  1434. "域名列表为空!" = "The domain name list is empty!";
  1435. "============加载webview开始时间点:%f" = "============ Starting time of loading webview: %f";
  1436. "刷新" = "Refresh";
  1437. "不同意用户协议将无法发布视频" = "Disagree to the user agreement will not be able to publish the video";
  1438. "视频提交至服务器中..." = "The video is submitted to the server...";
  1439. "合拍" = "In time";
  1440. "未知" = "unknown";
  1441. "视频生成中..." = "Video generation...";
  1442. "测试" = "test";
  1443. "确认使用" = "Confirm use";
  1444. "需要设置 ACL 的对象名" = "The name of the object whose ACL needs to be set";
  1445. "第一个对象名" = "First object name";
  1446. "第二个对象名" = "Second object name";
  1447. "存储桶名" = "Bucket name";
  1448. "对象名" = "Object name";
  1449. "sendHttpRequest failed,参数转成json格式失败" = "sendHttpRequest failed, the parameter conversion to json format failed";
  1450. "参数错误" = "Parameter error";
  1451. "服务请求失败" = "Service request failed";
  1452. "视频流播放失败,Error:" = "Video stream playback failed, Error:";
  1453. "开始通过用户id拉取用户资料信息" = "Start pulling user profile notification through user id";
  1454. "从服务器上拉取用户资料信息成功%@" = "Pull user profile notification from the server successfully%@";
  1455. "从服务器上拉取用户资料信息失败 errCode" = "%d, errMsg";
  1456. "开始保存用户昵称信息到服务器 \n" = "Start saving user nickname notification to the server \n";
  1457. "开始保存用户头像Url地址到服务器 \n" = "Start to save the user avatar Url address to the server \n";
  1458. "开始保存用户性别信息到服务器 \n" = "Start saving user gender notification to the server \n";
  1459. "编辑个人信息" = "Edit personal notification";
  1460. "获取技术支持服务" = "Get technical support services";
  1461. "关注公众号“腾讯云视频”" = "Follow the public account ”Tencent Cloud Video“";
  1462. "给公众号发送“小视频”" = "Send ”short video“ to the official account";
  1463. "点击关于SDK" = "Click About SDK";
  1464. "音乐不存在" = "Music does not exist";
  1465. "发现" = "Find";
  1466. "收藏" = "Favorites";
  1467. "选择音乐" = "Choose music";
  1468. " 搜索音乐" = " Search music";
  1469. "视频data存在" = "Video data exists";
  1470. "导出失败:Failed:%@" = "Export failed: Failed:%@";
  1471. "导出取消:Canceled:%@" = "Export canceled: Canceled:%@";
  1472. "音轨提取失败" = "Audio track extraction failed";
  1473. "唯播ID:%@" = "Weibo ID: %@";
  1474. "生成中..." = "Building...";
  1475. "横屏" = "Horizontal screen";
  1476. "竖屏" = "Portrait";
  1477. "全屏/非全屏" = "Full screen/not full screen";
  1478. "//添加播放进度条更新" = "//Add play progress bar update";
  1479. "当前已经播放%.2fs。" = "%.2fs is currently playing.";
  1480. "请输入或扫二维码获取播放地址" = "Please enter or scan the QR code to get the playback address";
  1481. "合唱事件" = "Chorus event";
  1482. "视频播放成功" = "Video played successfully";
  1483. "网络断连,且经多次重连抢救无效,可以放弃治疗,更多重试请自行重启播放" = "The network is disconnected, and the rescue is invalid after multiple reconnections, you can give up the treatment, more retry please restart the playback by yourself";
  1484. "获取加速拉流地址失败" = "Failed to obtain the accelerated streaming address";
  1485. "播放文件不存在" = "Play file does not exist";
  1486. "H265解码失败" = "H265 decoding failed";
  1487. "HLS解码key获取失败" = "HLS decoding key acquisition failed";
  1488. "获取点播文件信息失败" = "Failed to get the file notification on demand";
  1489. "播放地址不合法,点播目前仅支持flv,hls,mp4播放方式!" = "The playback address is illegal. Currently, VOD only supports flv, hls, and mp4 playback methods!";
  1490. "注册成功" = "registration success";
  1491. "用户ID已经被注册" = "User ID has been registered";
  1492. "自动登录成功" = "Automatic login successful";
  1493. "自动登录失败" = "Automatic login failed";
  1494. "账号未注册" = "Account not registered";
  1495. "密码错误" = "wrong password";
  1496. "登录成功" = "login successful";
  1497. "如何获取技术支持服务?" = "How to obtain technical support services?";
  1498. "逻辑不可达" = "Logically unreachable";
  1499. "[图片]" = "[image]";
  1500. "[文件]" = "[file]";
  1501. "[语音]" = "[voice]";
  1502. "[表情]" = "[expression]";
  1503. "[位置]" = "[position]";
  1504. "群" = "group";
  1505. "讨论组" = "Discussion group";
  1506. "聊天室" = "chatroom";
  1507. "%@退出了%@" = "%@quit%@";
  1508. "%@的禁言限制已取消" = "The ban on %@ has been removed";
  1509. "%@被禁言%d秒" = "%@ is banned for %d seconds";
  1510. "%@修改%@名称为%@" = "%@Modify%@Name is%@";
  1511. "%@修改了%@介绍" = "%@ modified %@ introduction";
  1512. "%@修改了%@公告" = "%@ modified %@ announcement";
  1513. "%@修改%@头像" = "%@Modify avatar";
  1514. "%@已转让%@" = "%@ has been transferred%@";
  1515. "邀请" = "invite";
  1516. "进%@" = "Into %@";
  1517. "踢" = "kick";
  1518. "出%@" = "Out %@";
  1519. "为管理员" = "As an administrator";
  1520. "管理员身份" = "Administrator status";
  1521. "[群提醒]" = "[Group reminder]";
  1522. "[视频]" = "[video]";
  1523. "[自定义消息]" = "[Custom Message]";
  1524. "撤回了一条消息" = "Withdrawn a message";
  1525. "%@申请加入群%@请求" = "%@Apply to join the group%@Request";
  1526. "%@同意你加入群%@请求" = "%@Agree to join the group %@Request";
  1527. "%@拒绝你加入群%@请求" = "%@Rejects you to join the group%@ request";
  1528. " 理由:%@" = " reason:%@";
  1529. "您被%@踢出群%@" = "You are kicked out of the group by %@%@";
  1530. "%@解散群%@" = "%@解散群%@";
  1531. "%@创建群%@成功" = "%@Create Group%@success";
  1532. "%@邀请你加入群%@" = "%@ invites you to join the group%@";
  1533. "%@退群%@成功" = "%@出群%@ Success";
  1534. "%@设置你为群%@管理员" = "%@Set you as a group%@administrator";
  1535. "%@取消你群%@管理员资格" = "%@Cancel your group%@Administrator qualification";
  1536. "群%@已被回收" = "Group %@ has been recycled";
  1537. "%@同意你发出的加入群%@的邀请" = "%@ agrees to your invitation to join the group %@";
  1538. "%@拒绝你发出的加入群%@的邀请" = "%@ rejects your invitation to join the group %@";
  1539. "%@添加你为好友\n" = "%@Add you as a friend\n";
  1540. "%@与你解除好友关系\n" = "%@ unfriended you\n";
  1541. "%@请求加为好友\n" = "%@Request to be added as friend\n";
  1542. "%@删除你的好友请求\n" = "%@Delete your friend request\n";
  1543. "%@将你添加到黑名单\n" = "%@Added you to the blacklist\n";
  1544. "%@将你移出黑名单\n" = "%@Remove you from the blacklist\n";
  1545. "未决已读上报" = "Pending read report";
  1546. "%@修改了资料\n" = "%@ modified the notification\n";
  1547. "推荐数据增加" = "Recommended data increase";
  1548. "推荐数据删除" = "Recommended data deletion";
  1549. "已决增加" = "Determined increase";
  1550. "已决删除" = "Deleted";
  1551. "推荐已读上报" = "Recommend read report";
  1552. "已决已读上报" = "Decisions and reports";
  1553. "[资料变更消息]" = "[Data change message]";
  1554. "同意任何用户加好友" = "Allow any user to add friends";
  1555. "需要验证" = "Need verification";
  1556. "拒绝任何人加好友" = "Reject anyone to add friends";
  1557. "请求理由:%@" = "Reason for request: %@";
  1558. "添加理由:%@" = "Add reason: %@";
  1559. "推荐好友:%@" = "Recommend friends: %@";
  1560. "已添加" = "added";
  1561. "你" = "you";
  1562. "申请理由:%@" = "Reason for application: %@";
  1563. "邀请理由:%@" = "Reason for invitation: %@";
  1564. "拒绝理由:%@" = "Reason for rejection: %@";
  1565. "同意理由:%@" = "Reason for consent: %@";
  1566. "申请加入群%@" = "Apply to join the group %@";
  1567. "邀请%@加入群%@" = "Invite %@ to join group%@";
  1568. "已同意%@进群%@" = "Agreed %@进群%@";
  1569. "受%@邀请进群%@" = "Invited by %@ to join the group%@";
  1570. "审核" = "Review";
  1571. "已拒绝" = "rejected";
  1572. "已同意" = "approved";
  1573. "发送消息失败:%@" = "Failed to send message: %@";
  1574. "该词被禁用" = "The word is banned";
  1575. "您已被禁言" = "You have been muted";
  1576. "TIMConversation 为空" = "TIMConversation is empty";
  1577. "[礼物]" = "[gift]";
  1578. "未知消息" = "Unknown message";
  1579. "语音消息" = "Voice Message";
  1580. "视频消息" = "Video Message";
  1581. "收到一个" = "Receive one";
  1582. "获得" = "get";
  1583. "可以去个人主页>我的收益 查看哦" = "You can go to Personal Homepage > My Income to check it out";
  1584. "语音通话时间:" = "Voice call time:";
  1585. "视频通话时间:" = "Video call time:";
  1586. "获取消息数据失败" = "Failed to get message data";
  1587. "转换语音数据错误" = "Convert voice data error";
  1588. "最近消息" = "Recent news";
  1589. "暂无会话" = "No sessions";
  1590. "获取用户信息失败" = "Failed to obtain user notification";
  1591. "删除会话成功" = "Session deleted successfully";
  1592. "获取消息成功" = "Get message successfully";
  1593. "发送消息成功" = "Message sent successfully";
  1594. "上传图片失败" = "Failed to upload picture";
  1595. "语音数据格式转换失败" = "Voice data format conversion failed";
  1596. "不支持的消息类型" = "Unsupported message type";
  1597. "删除成功:%d" = "Successfully deleted: %d";
  1598. "自定义消息不是CustomElemCmd类型" = "The custom message is not of type CustomElemCmd";
  1599. "参数不正确" = "The parameter is incorrect";
  1600. "---修改角色失败code=%d,err=%@---" = "---Failed to modify the role code=%d,err=%@---";
  1601. "---禁言失败code=%d,err=%@---" = "---Failed to mute code=%d,err=%@---";
  1602. "禁止加群" = "Prohibit group";
  1603. "需要管理员审批" = "Need administrator approval";
  1604. "任何人可以加入" = "Anyone can join";
  1605. "接收消息" = "Receive message";
  1606. "不接收消息" = "Not receiving messages";
  1607. "接收但不提醒" = "Receive but don't remind";
  1608. "与当前群名一致" = "Same as the current group name";
  1609. "群名称过长" = "Group name is too long";
  1610. "群名片过长" = "Group business card is too long";
  1611. "与当前群介绍一致" = "Consistent with the current group introduction";
  1612. "群公告过长" = "Group announcement is too long";
  1613. "与当前群公告一致" = "Consistent with the current group announcement";
  1614. "我的好友" = "my good friend";
  1615. "参数为空" = "Parameter is empty";
  1616. "获取群成员失败.code=%d,err=%@" = "Failed to obtain group members. code=%d,err=%@";
  1617. "获取群列表失败.code=%d,err=%@" = "Failed to get the group list. code=%d,err=%@";
  1618. "移除群成员失败.code=%d,err=%@" = "Failed to remove group members. code=%d,err=%@";
  1619. "获取群成员信息失败.code=%d,err=%@" = "Failed to obtain group member notification. code=%d,err=%@";
  1620. "获取群管理员失败.code=%d,err=%@" = "Failed to obtain the group administrator. code=%d,err=%@";
  1621. "未知类型" = "Unknown type";
  1622. "昵称不能为空" = "Nickname should be filled";
  1623. "昵称超过长度限制" = "Nickname exceeds length limit";
  1624. "IMAGroupMember禁用此方法" = "IMAGroupMember disables this method";
  1625. "未取到最后一条消息" = "The last message was not retrieved";
  1626. "发送消息失败" = "Failed to send message";
  1627. "消息撤回失败,code=%d,msg=%@" = "Message recall failed, code=%d,msg=%@";
  1628. "新朋友" = "new friend";
  1629. "群系统消息" = "Group system message";
  1630. "我创建的群" = "Group i created";
  1631. "我管理的群" = "The group I manage";
  1632. "我加入的群" = "The group I joined";
  1633. "群名称不能包含表情" = "Group name cannot contain emoticons";
  1634. "未选择加入群组的好友" = "Friends not opted into the group";
  1635. "登录成功:%@ tinyid:%llu sig:%@" = "Successful login: %@ tinyid:%llu sig:%@";
  1636. "下线通知" = "Offline notification";
  1637. "您的帐号于另一台手机上登录。" = "Log in with your account on another mobile phone.";
  1638. "重新登录" = "re-register";
  1639. "参数sgName不能为空" = "The parameter sgName cannot be empty";
  1640. "分组不能为空" = "Group cannot be empty";
  1641. "不能删除默认分组" = "Cannot delete default group";
  1642. "参数有误" = "Incorrect parameters";
  1643. "不存在的分组" = "Non-existent group";
  1644. "不存在的User" = "User that does not exist";
  1645. "网络连接失败" = "Network connection failed";
  1646. "网络连接断开 code" = "%d, err";
  1647. "连接中" = "connecting";
  1648. "踢下线通知" = "Kick offline notification";
  1649. "您的帐号于另一台手机上登录,是否重新登录?" = "Your account is logged in on another mobile phone. Do you want to log in again?";
  1650. "断线重连失败" = "Reconnect failed after disconnection";
  1651. "断线重连失败,是否重新登录?" = "Reconnect failed after disconnection, do you want to log in again?";
  1652. "刷新票据,登录失败" = "Refresh the ticket, login failed";
  1653. "刷新票据失败\ncode:%d, error:%@" = "Failed to refresh the ticket\ncode:%d, error:%@";
  1654. "刷新票据失败,正在退出" = "Failed to refresh ticket, exiting";
  1655. "=========>>>>> 刷新会话列表" = "=========>>>>> Refresh the conversation list";
  1656. "同步状态为:%d" = "The synchronization status is: %d";
  1657. "%@ 必须是IMAHost的子类型" = "%@ must be a subtype of IMAHost";
  1658. "不支持的会话模式" = "Unsupported session mode";
  1659. "网络切换到(-1:未知 0:无网 1:wifi 2:移动网):%d" = "Network switch to (-1: unknown 0: no network 1: wifi 2: mobile network): %d";
  1660. "收到广播消息%d" = "Received broadcast message %d";
  1661. "%@申请加入群:%@\n申请理由:%@" = "%@Apply to join the group:%@\nReason for application:%@";
  1662. "加群申请" = "Add group application";
  1663. "忽略" = "ignore";
  1664. "拒绝" = "Refuse";
  1665. "备注名过长" = "Remark name is too long";
  1666. "用户已在该分组" = "User is already in this group";
  1667. "移动失败,已将好友移动到默认分组" = "The move failed, the friend has been moved to the default group";
  1668. "key为空" = "key is empty";
  1669. "备注名不能包含表情" = "Remarks cannot contain emoticons";
  1670. "备注名超长" = "Remark name is too long";
  1671. "验证信息过长" = "Verification notification is too long";
  1672. "添加好友成功后,获取好友资料失败,%@" = "After adding a friend successfully, getting friend notification failed, %@";
  1673. "remark过长" = "remark is too long";
  1674. "必须是TIM_FUTURE_FRIEND_PENDENCY_IN_TYPE" = "Must be TIM_FUTURE_FRIEND_PENDENCY_IN_TYPE";
  1675. "删除推荐好友失败,code=%d,msg=%@" = "Failed to delete recommended friends, code=%d,msg=%@";
  1676. "删除未决好友失败,code=%d,msg=%@" = "Failed to delete pending friends, code=%d,msg=%@";
  1677. "删除已决好友失败,code=%d,msg=%@" = "Failed to delete decided friends, code=%d,msg=%@";
  1678. "解散或退出历史直播房间:%@" = "Disband or exit the historical live broadcast room: %@";
  1679. "直播房房间信息不正确" = "Incorrect room notification in the live broadcast room";
  1680. "直播房房间信息liveTitle不正确" = "The liveTitle of the live room notification is incorrect";
  1681. "----->>>>>主播开始创建直播聊天室:%@ title" = "%@";
  1682. "----->>>>>主播开始创建直播聊天室成功" = "----->>>>>The host started to create a live chat room successfully";
  1683. "----->>>>>主播开始创建直播聊天室失败 code: %d , msg" = "%@";
  1684. "----->>>>>主播重新加入自己的直播聊天室成功" = "----->>>>>The anchor rejoins his live chat room successfully";
  1685. "----->>>>>主播重新加入自己的直播聊天室失败 code: %d , msg" = "%@";
  1686. "----->>>>>主播开始创建IM聊天室成功" = "----->>>>>The host started to create IM chat room successfully";
  1687. "----->>>>>主播开始创建IM聊天室失败 code: %d , msg" = "%@";
  1688. "----->>>>>观众加入直播聊天室ID为空" = "----->>>>>The ID of the audience joining the live chat room is empty";
  1689. "直播聊天室ID为空" = "Live chat room ID is empty";
  1690. "----->>>>>观众加入直播聊天室成功" = "----->>>>>The audience successfully joined the live chat room";
  1691. "----->>>>>观众加入直播聊天室失败 code: %d , msg" = "%@";
  1692. "----->>>>>观众退出的直播聊天室ID为空" = "----->>>>>The ID of the live chat room where the audience exited is empty";
  1693. "-----> 上传token成功 " = "-----> upload token successfully";
  1694. "-----> 上传token失败 " = "-----> Failed to upload token";
  1695. "在线主播列表" = "Online anchor list";
  1696. "上拉加载更多" = "Pull up to load more";
  1697. "加载中" = "Loading";
  1698. "没有更多了" = "No more";
  1699. "立即购买" = "Buy now";
  1700. "请先选择座驾" = "Please select a car first";
  1701. "是否要购买此座驾" = "Do you want to buy this car";
  1702. "确定购买" = "Confirm purchase";
  1703. "购买成功" = "Successful purchase";
  1704. "乘坐【%@】驾到" = "Take [%@] to drive";
  1705. "座驾播放错误%@" = "Car playback error%@";
  1706. "%@经验值" = "%@Experience";
  1707. "获取到的liveInfo为空" = "The obtained liveInfo is empty";
  1708. "=========加载get_video接口出错 code: %d , msg" = "%@";
  1709. "获取聊天室信息失败,请稍候尝试" = "Failed to get chat room notification, please try later";
  1710. "抱歉,推流地址为空,请稍后尝试" = "Sorry, the ingest address is empty, please try later";
  1711. "视频已删除." = "The video has been deleted.";
  1712. "抱歉,播放地址为空,请稍后尝试" = "Sorry, the play address is empty, please try later";
  1713. "主播有未处理的连麦请求,请稍候再试" = "The host has an unprocessed request to connect with the microphone, please try again later";
  1714. "已达到请求上限,不能再请求" = "Request limit has been reached, no more requests";
  1715. "当前主播主播连麦数已上限,请稍后尝试" = "The current host has the upper limit on the number of hosts, please try later";
  1716. "观众(%@)申请参加您的互动直播" = "Viewers (%@) apply to participate in your interactive live broadcast";
  1717. "互动直播申请" = "Interactive Live Application";
  1718. "连麦申请中..." = "Lianmai application...";
  1719. "是否结束与主播的互动直播?" = "Do you end the interactive live broadcast with the host?";
  1720. "是否请求与主播连麦?" = "Do you want to connect with the anchor?";
  1721. "您的连麦申请发送失败" = "Your Lianmai application failed to send";
  1722. "申请连麦中,等待对方应答..." = "Applying for connecting wheat, waiting for the answer from the other party...";
  1723. "取消连麦" = "Cancel mic";
  1724. "主播拒绝了您的连麦请求" = "The anchor rejected your request";
  1725. "亲,音乐模块后期开放,敬请期待..." = "Dear, the music module will open later, so stay tuned...";
  1726. "已打开麦克风" = "Microphone turned on";
  1727. "已关闭麦克风" = "Microphone turned off";
  1728. "前置摄像头下暂时不能打开闪光灯" = "The flash cannot be turned on temporarily under the front camera";
  1729. "已打开镜像" = "Mirror turned on";
  1730. "已关闭镜像" = "Mirror turned off";
  1731. "退出后直播管理层" = "Live management after exit";
  1732. "有呼叫到来,用户ID:%s;呼叫状态码:%d" = "A call arrives, user ID: %s; call status code: %d";
  1733. "断开连接" = "Disconnect";
  1734. "408超时" = "408 timeout";
  1735. "KSYAgoraStreamerKit 释放%s" = "KSYAgoraStreamerKit release %s";
  1736. "美颜key为空,请尝试重新打开app获取!" = "The beauty key is empty, please try to reopen the app to get it!";
  1737. "错误的视频帧格式!" = "Wrong video frame format!";
  1738. "等待观众推流···" = "Waiting for the audience to push the stream...";
  1739. "拉流失败,结束连麦" = "Failed to pull stream, end Lianmai";
  1740. "连麦观众视频断流,结束连麦" = "Lianmai audience video is cut off, ending Lianmai";
  1741. "拉流失败,继续尝试连麦" = "Failed to pull stream, continue to try to connect wheat";
  1742. "系统不支持硬编或硬解" = "The system does not support hard programming or hard decoding";
  1743. "播放地址不合法,目前仅支持rtmp,flv,hls,mp4播放方式!" = "The playback address is illegal, currently only supports rtmp, flv, hls, mp4 playback methods!";
  1744. "播放地址不合法,直播目前仅支持rtmp,flv播放方式!" = "The playback address is illegal, and the live broadcast currently only supports rtmp and flv playback methods!";
  1745. "非腾讯云链接,若要放开限制请联系腾讯云商务团队" = "Non-Tencent Cloud link, please contact Tencent Cloud Business Team to release restrictions";
  1746. "播放器启动失败" = "Player failed to start";
  1747. "iOS 版本低于8.0,不支持硬件加速." = "The iOS version is lower than 8.0 and does not support hardware acceleration.";
  1748. "切换为硬解码. 重启播放流程" = "Switch to hard decoding. Restart the playback process";
  1749. "切换为软解码. 重启播放流程" = "Switch to soft decoding. Restart the playback process";
  1750. "缓存策略" = "Caching strategy";
  1751. "极速" = "Speed";
  1752. "流畅" = "Smooth";
  1753. "自动" = "automatic";
  1754. "连麦中···" = "Lianmaizhong...";
  1755. "连麦请求超时,主播没有做出回应" = "The mic request timed out and the host did not respond";
  1756. "获取麦克风权限失败,请前往隐私-麦克风设置里面打开应用权限" = "Failed to obtain microphone permission, please go to privacy-microphone settings to open application permission";
  1757. "获取摄像头权限失败,请前往隐私-相机设置里面打开应用权限" = "Failed to obtain camera permission, please go to privacy-camera settings to open application permission";
  1758. "系统不支持硬编码, 启动连麦失败" = "The system does not support hard coding, failed to start connecting the microphone";
  1759. "推流失败,结束连麦" = "Failed to push stream, end Lianmai";
  1760. "启动硬编码失败,结束连麦" = "Failed to start hard code, end linking";
  1761. "iOS模拟器不支持推流和播放,请使用真机体验" = "iOS simulator does not support streaming and playback, please use the real machine to experience";
  1762. "==========腾讯SDK版本号:%@" = "========== Tencent SDK version number: %@";
  1763. "获取推流地址失败" = "Failed to obtain push URL";
  1764. "推流地址不合法,目前支持rtmp推流!" = "The streaming address is illegal, and rtmp streaming is currently supported!";
  1765. "推流器启动失败:%d" = "The pusher failed to start: %d";
  1766. "网络状况不佳:上行带宽太小,上传数据受阻" = "Poor network status: Uplink bandwidth is too small, and data upload is blocked";
  1767. "闪光灯启动失败" = "Flash activation failed";
  1768. "直播推流" = "Live streaming";
  1769. "iphone 6 及以上机型适合开启720p!" = "iPhone 6 and above models are suitable for 720p!";
  1770. "iphone 5 及以上机型适合开启540p!" = "iPhone 5 and above models are suitable for opening 540p!";
  1771. "主播不在直播" = "The anchor is not live";
  1772. "可拖曳" = "Draggable";
  1773. "橙色view被点击了" = "The orange view is clicked";
  1774. "是否结束与主播的互动连麦?" = "Do you end the interaction with the host?";
  1775. "获取连麦参数失败" = "Failed to get the MIC parameter";
  1776. "当前主播连麦数已上限,请稍后尝试" = "The current host has an upper limit on the number of microphones, please try later";
  1777. "切换直播间成功!" = "Successfully switched live room!";
  1778. "亲,大约%d秒后进入直播间" = "Dear, enter the live broadcast room in about %d seconds";
  1779. "普通美颜" = "Ordinary beauty";
  1780. "恭贺您pk取得胜利" = "Congratulations on your pk victory";
  1781. "连麦中不能pk" = "Can't pk in mic";
  1782. "发送PK消息成功" = "Send PK message successfully";
  1783. "发送PK消息失败msg:%@" = "Failed to send PK message msg:%@";
  1784. "主播暂时离开下,马上回来!" = "The anchor will leave temporarily and come back soon!";
  1785. "网络加载失败" = "Network load failed";
  1786. "收到拒绝PK消息" = "Receive rejection PK message";
  1787. "结束PK请求成功responseJson:%@" = "The end of the PK request is successful responseJson:%@";
  1788. "结束PK请求失败responseJson:%@" = "End PK request failed responseJson:%@";
  1789. "pk消息" = "pk news";
  1790. "%@请求与您pk" = "%@Request and you pk";
  1791. "消息类型type:%ld" = "Message type type:%ld";
  1792. "退出群:%@ 成功" = "Exit group: %@ success";
  1793. "退出群:%@ 失败,错误码:%d,错误原因:%@" = "Exit group: %@ failed, error code: %d, error reason: %@";
  1794. "恭喜您中奖%@倍" = "Congratulations on your winning %@ Fold";
  1795. "您确定需要前往该直播间吗?" = "Are you sure you need to go to the live broadcast room?";
  1796. "pk中不可以连麦" = "Can not connect wheat in pk";
  1797. "已收到举报消息,我们将尽快落实处理" = "The report has been received and we will implement it as soon as possible";
  1798. "点击了开通守护功能" = "Click to activate the guard function";
  1799. "开通守护成功" = "Successfully opened guard";
  1800. "开通守护之后发送群组消息成功" = "Send group message successfully after opening guard";
  1801. "开通守护之后发送群组消息失败:code:%d msg:%@" = "Failed to send group message after opening guard: code:%d msg:%@";
  1802. "开通守护失败responseJson:%@" = "Failed to activate guardian responseJson:%@";
  1803. "开通守护失败error:%@" = "Failed to activate the guardian error:%@";
  1804. "直播间已处于竞拍中" = "The live room is under auction";
  1805. "%s释放" = "%s release";
  1806. "是否发起pk请求?" = "Whether to initiate a pk request?";
  1807. "申请pk中,等待对方应答.." = "While applying for pk, wait for the answer from the other party..";
  1808. "取消pk" = "Cancel pk";
  1809. "对方取消PK" = "The opponent cancels the PK";
  1810. "我方" = "Our side";
  1811. "对方" = "other side";
  1812. "弹窗背景" = "Popup background";
  1813. "PK结束" = "PK ends";
  1814. "pk关闭" = "pk off";
  1815. "PK后" = "After PK";
  1816. "胜利" = "victory";
  1817. "成功" = "success";
  1818. "平局" = "draw";
  1819. "贡献:%@" = "contribution:%@";
  1820. "贡献:1234" = "Contribution: 1234";
  1821. "该直播按场收费,您还能预览倒计时%d秒" = "The live broadcast is charged per scene, and you can also preview the countdown %d seconds";
  1822. "1分钟内重复进入,不重复扣费,请能正常预览视频后,点击进入,以免扣费后不能正常进入,您还能预览倒计时%d秒" = "Repeat entry within 1 minute, no deduction will be repeated, please be able to preview the video normally, click enter, so as not to enter normally after deduction, you can also preview the countdown %d seconds";
  1823. "直播间人数未达到收费人数" = "The number of people in the live room has not reached the number of charges";
  1824. "直播间已处于收费模式中" = "The live room is already in charging mode";
  1825. "pk中不能滑动直播间!" = "You cannot slide the live room in pk!";
  1826. "连麦中不能滑动直播间!" = "You can't slide the live room in Lianmai!";
  1827. "主播回来啦,视频即将恢复" = "The anchor is back, the video will be restored soon";
  1828. "正在退出直播中" = "Exiting live broadcast";
  1829. "您当前正在直播,是否退出直播?" = "You are currently live streaming, do you want to exit the live broadcast?";
  1830. "直播间退出群:%@ 成功1" = "Live room exit group: %@ success 1";
  1831. "直播间退出群:%@ 失败1,错误码:%d,错误原因:%@" = "Live room exit group: %@ Failed 1, error code: %d, error reason: %@";
  1832. "加入聊天室失败,请稍候尝试" = "Failed to join the chat room, please try later";
  1833. "=========加入直播聊天室失败 code: %d , msg" = "%@";
  1834. "创建" = "create";
  1835. "加入" = "Join";
  1836. "当前是移动网络,是否继续%@直播?" = "It is currently on the mobile network. Do you want to continue %@live?";
  1837. "网络提示" = "Network tips";
  1838. "当前无网络,无法%@直播" = "There is currently no network, cannot %@live";
  1839. "当前是移动网络,是否继续直播?" = "Currently it is a mobile network. Do you want to continue live streaming?";
  1840. "当前是移动网络,是否继续观看直播?" = "It’s currently on a mobile network. Do you want to continue watching the live broadcast?";
  1841. "当前无网络,无法继续%@直播!" = "There is currently no network, %@live cannot be continued!";
  1842. "观看" = "Watch";
  1843. "电话中断处理:电话状态为call.callState" = "%@";
  1844. "电话中断处理:在前如的时候处理的电话,挂断后,立即回到前台" = "Call interruption processing: the call processed at the time before, after hanging up, immediately return to the front desk";
  1845. "电话中断处理:退到后台接话:不处理" = "Call interruption processing: return to the background to answer the call: no processing";
  1846. "电话中断处理:已在后台接电话话:不处理" = "Phone interruption processing: the phone has been answered in the background: no processing";
  1847. "主播离开一下,精彩不中断,不要走开哦" = "The anchor will leave for a while, the excitement will not stop, don’t go away";
  1848. "初中断" = "Initial interruption";
  1849. "直播间预加载参数出错" = "Error preloading parameters in the live broadcast room";
  1850. "抱歉,房间信息出错" = "Sorry, the room notification is wrong";
  1851. "视频已结束或正在创建中!" = "The video has ended or is being created!";
  1852. "确定退出当前直播?" = "Are you sure to exit the current live broadcast?";
  1853. "该直播已结束" = "The live broadcast has ended";
  1854. "参数错误!" = "Parameter error!";
  1855. "请先关闭键盘" = "Please close the keyboard first";
  1856. "直播消息:" = "Live message:";
  1857. "我点亮了" = "I lit up";
  1858. "金光一闪,%@ 加入了..." = "Golden light flashed, %@ joined...";
  1859. "%@ 来了" = "%@ coming";
  1860. "神秘人加入了房间" = "The mysterious man joined the room";
  1861. "是隐身了" = "Is invisible";
  1862. "当前余额不足,充值才能继续发送弹幕,是否去充值?" = "The current balance is insufficient, the top up can continue to send bullet, do you want to top up?";
  1863. "是否开启上庄?" = "Whether to open Shangzhuang?";
  1864. "确定要移除该庄家?" = "Are you sure you want to remove the dealer?";
  1865. "余额:%@" = "Balance: %@";
  1866. "剩余底金%@" = "Remaining deposit%@";
  1867. "星店" = "Star shop";
  1868. "小店" = "Small shop";
  1869. "底金:%@" = "Deposit: %@";
  1870. "是否切换为手动发牌" = "Whether to switch to manual licensing";
  1871. "是否切换为自动发牌" = "Whether to switch to automatic licensing";
  1872. "守护 : 虚席以待" = "Guardian: Waiting for nothing";
  1873. "守护 : %@人" = "Guardian: %@人";
  1874. "守护列表请求数据失败responseJson:%@" = "The guard list request data failed responseJson:%@";
  1875. "守护列表请求数据失败error:%@" = "The guard list request data failed error:%@";
  1876. "精彩回放" = "Replay";
  1877. "直播Live" = "Live";
  1878. "不能查看神秘人的信息" = "Cannot view the notification of the mysterious person";
  1879. "开启大喇叭,%ld%@/条" = "Turn on the loudspeaker, %ld%@/piece";
  1880. "和大家说点什么" = "Talk to everyone";
  1881. "发送按钮" = "Send button";
  1882. "您当前等级不能发言!" = "You cannot speak at your current level!";
  1883. "请勿刷屏" = "Do not swipe";
  1884. "请勿频繁发言" = "Do not speak frequently";
  1885. "每日任务" = "Daily task";
  1886. "已领" = "Received";
  1887. "领取" = "receive";
  1888. "击败了%@%%的用户" = "Defeated %@%% users";
  1889. "击败了" = "Defeated";
  1890. "PK中" = "PK";
  1891. "0秒" = "0 seconds";
  1892. "%d秒" = "%d s";
  1893. "结束" = "End";
  1894. "我方:%f" = "Ours: %f";
  1895. "%f:对方" = "%f: the other party";
  1896. "对方:%f" = "Other party: %f";
  1897. "%f:我方" = "%f: our";
  1898. "我方: %.0f" = "Our side: %.0f";
  1899. "对方: %.0f" = "Other party: %.0f";
  1900. "我方 %.0f" = "Our %.0f";
  1901. "%.0f 对方" = "%.0f partner";
  1902. "我方:%.0f" = "Our side: %.0f";
  1903. "%.0f:对方" = "%.0f: the other party";
  1904. "PK时长 " = "PK duration";
  1905. "设置PK时长" = "Set PK duration";
  1906. "确定发起PK" = "Determine to initiate PK";
  1907. "约战PK" = "PK";
  1908. "结束PK" = "End PK";
  1909. "%@%@分钟" = "%@%@minute";
  1910. "PKList接口请求成功responseJson:%@" = "PKList interface request is successful responseJson:%@";
  1911. "PKList接口请求失败responseJson:%@" = "PKList interface request failed responseJson:%@";
  1912. "PKList接口请求失败error:%@" = "PKList interface request failed error:%@";
  1913. "获取对方用户信息成功responseJson:%@" = "Succeeded in obtaining the other party's user notification responseJson:%@";
  1914. "获取对方用户信息失败responseJson:%@" = "Failed to obtain the user notification of the other party responseJson:%@";
  1915. "获取对方用户信息失败error:%@" = "Failed to obtain the user notification of the other party error:%@";
  1916. "%@分钟" = "%@minute";
  1917. "PK时间选择" = "PK time selection";
  1918. "关闭连麦" = "Close mic";
  1919. "选择付款方式" = "choose to pay by cash";
  1920. "立即支付" = "pay immediately";
  1921. "%ld钻石" = "%ld diamond";
  1922. "钻石充值" = "Diamond recharge";
  1923. "余额:%ld" = "Balance: %ld";
  1924. "%@的红包" = "%@'S red envelope";
  1925. "布谷" = "Cuckoo";
  1926. "TA好像忘记写签名了" = "It seems that he forgot to write his signature";
  1927. "%@\n关注" = "%@\nFollow";
  1928. "%@\n粉丝" = "%@\nfans";
  1929. "%@\n送出" = "%@\nsend";
  1930. "管理" = "management";
  1931. "解除禁言" = "Unmute";
  1932. "禁言" = "Mute";
  1933. "踢人" = "Kick";
  1934. "设置为管理员" = "Set as administrator";
  1935. "取消管理员" = "Cancel administrator";
  1936. "10分钟" = "10 minutes";
  1937. "1小时" = "1 hour";
  1938. "12小时" = "12 hours";
  1939. "1天" = "1 day";
  1940. "永久" = "permanent";
  1941. "禁言失败" = "Muting failed";
  1942. "设置管理员成功" = "Set up the administrator successfully";
  1943. "管理员设置,请重新操作" = "Administrator settings, please operate again";
  1944. "举报类型" = "Report type";
  1945. "%d钻石" = "%d diamond";
  1946. "正在拖拽视图,所以需要将自动播放暂停掉" = "The view is being dragged, so you need to pause the autoplay";
  1947. "开启定时器" = "Start timer";
  1948. "七彩火箭" = "Colorful Rockets";
  1949. "添加礼物和数量" = "Add gift and quantity";
  1950. "选择礼物" = "Choose a gift";
  1951. "心愿单" = "wish list";
  1952. "请选择礼物" = "Please choose a gift";
  1953. "请填写礼物数量" = "Please fill in the number of gifts";
  1954. "添加数量" = "Add quantity";
  1955. "报答方式(选填)" = "Repay method (optional)";
  1956. "无" = "no";
  1957. "点击输入礼物数量" = "Click to enter the number of gifts";
  1958. "编辑8字以内" = "Edit within 8 characters";
  1959. "心愿一" = "Wish one";
  1960. "心愿二" = "Wish Two";
  1961. "心愿三" = "Wish Three";
  1962. "添加" = "Add to";
  1963. "奇才火箭" = "Wizards Rockets";
  1964. "%@个" = "%@个";
  1965. "200个" = "200 pcs";
  1966. "直播心愿单(0/3)" = "Live Wish List (0/3)";
  1967. "直播心愿单(%ld/3)" = "Live Wish List (%ld/3)";
  1968. "请添加心愿" = "Please add wish";
  1969. "心愿单不能超过三个!" = "The wish list cannot exceed three!";
  1970. "删除心愿成功" = "Delete wish successfully";
  1971. "报答方式(选填):编辑8个字以内" = "Repayment method (optional): edit within 8 characters";
  1972. "添加心愿" = "Add wish";
  1973. "生成心愿" = "Generate a wish";
  1974. "余额:" = "Balance:";
  1975. "充值 >" = "Recharge>";
  1976. "送礼" = "Give gifts";
  1977. "连发" = "Burst";
  1978. "幸运" = "lucky";
  1979. "彩钻" = "Fancy diamond";
  1980. "您当前没有贵族礼物特权,无法发送贵族专属礼物" = "You currently do not have noble gift privileges and cannot send noble gifts";
  1981. "道具礼物(%@)" = "Item gift (%@)";
  1982. "URL不合法" = "URL is illegal";
  1983. "商品列表" = "Product list";
  1984. "贵族列表" = "List of nobles";
  1985. "svga播放错误%@" = "svga playback error%@";
  1986. "TA的守护" = "Guardian of TA";
  1987. "守护特权" = "Guardian privileges";
  1988. "成为Ta的守护,享受独一无二的特权" = "Become Ta's guardian and enjoy unique privileges";
  1989. "开通守护" = "Open";
  1990. "续费守护" = "Renewal";
  1991. "到期: " = "Expiry:";
  1992. "我的钻石: %@" = "My diamond: %@";
  1993. "我的钻石: " = "My diamond:";
  1994. "守护类型接口请求失败responseJson:%@" = "The daemon type interface request failed responseJson:%@";
  1995. "守护类型接口请求失败error:%@" = "The daemon type interface request failed error:%@";
  1996. "点击了第%ld个按钮" = "%Ld button clicked";
  1997. "点击了开通守护按钮" = "Clicked the enable guard button";
  1998. "我的钻石: 0" = "My diamond: 0";
  1999. "贡献%@%@" = "contribution%@%@";
  2000. "77票" = "coins";
  2001. "守护(%@)" = "Guard(%@ people)";
  2002. "快去为你喜爱的主播开通守护吧!" = "Go ahead and turn on the guardian for your favorite anchor!";
  2003. "我的守护正星夜兼程的赶来" = "My guardian is coming to the starry night";
  2004. "成为TA的第一个守护" = "Become the first guardian of TA";
  2005. "点击了守护列表中的第%ld项" = "Clicked the %ld item in the guard list";
  2006. "守护" = "guard";
  2007. "推送" = "Push";
  2008. "购买" = "buy";
  2009. "送主播" = "Send anchor";
  2010. "购买了%@商品" = "Purchased %@goods";
  2011. "购买了%@商品送主播" = "Purchased %@产品送主播";
  2012. "送给主播" = "For the anchor";
  2013. "买给自己" = "Buy it for yourself";
  2014. "星店商品管理" = "Star store merchandise management";
  2015. "查看星店" = "View Star Store";
  2016. "音乐" = "music";
  2017. "麦克风" = "microphone";
  2018. "翻转" = "Flip";
  2019. "闪光灯" = "flash";
  2020. "镜像" = "Mirror";
  2021. "直播开启中,请稍候!" = "The live broadcast is starting, please wait!";
  2022. "lr背景" = "lr background";
  2023. "lr声音" = "lr sound";
  2024. "音效" = "Sound effect";
  2025. "基础工具" = "Basic tools";
  2026. "游戏与功能列表" = "List of games and features";
  2027. "使用中" = "Using";
  2028. "上传" = "Upload";
  2029. "lr上传" = "lr upload";
  2030. "参与%@次出价" = "Participate in %@ bids";
  2031. "关闭美颜" = "Turn off beauty";
  2032. "嫩肤" = "Skin rejuvenation";
  2033. "白肤" = "White skin";
  2034. "自然" = "natural";
  2035. "柔肤" = "Soft skin";
  2036. "白皙" = "Fair";
  2037. "1 小清新" = "1 small fresh";
  2038. "2 靓丽" = "2 Beautiful";
  2039. "3 甜美可人" = "3 sweet";
  2040. "4 怀旧" = "4 Nostalgia";
  2041. "5 蓝调" = "5 blues";
  2042. "6 老照片" = "6 old photos";
  2043. "磨皮" = "Microdermabrasion";
  2044. "参数" = "parameter";
  2045. "关" = "turn off";
  2046. "简单美颜" = "Simple beauty";
  2047. "美颜pro" = "Beauty pro";
  2048. "红润美颜" = "Ruddy Beauty";
  2049. "美颜特效" = "Beauty effects";
  2050. "特效" = "Special effects";
  2051. "支付宝认证" = "Alipay certification";
  2052. "设置" = "Set up";
  2053. "回播" = "Replay";
  2054. "最后更新:今天 14:14" = "Last update: today 14:14";
  2055. "昵称" = "nickname";
  2056. "《用户隐私政策》" = "《User Privacy Policy》";
  2057. "送出" = "send";
  2058. "签到" = "Sign in";
  2059. "微信登录" = "WeChat login";
  2060. "登录即代表你同意" = "Login means you agree";
  2061. "游客登录" = "Guest login";
  2062. "账号" = "id";
  2063. "身份认证" = "Authentication";
  2064. "关注" = "Follow";
  2065. "小视频" = "short video";
  2066. "上拉可以加载更多" = "Pull up to load more";
  2067. "登录即代表你同意" = "Login means you agree";
  2068. "粉丝" = "Fans";
  2069. "私信" = "message";
  2070. "主播暂时离开下;马上回来!" = "The anchor will leave temporarily; come back soon!";
  2071. "最后更新:无记录" = "Last update: No record";
  2072. "签名" = "signature";
  2073. "下拉可以刷新" = "Pull down to refresh";
  2074. "拉黑" = "block";
  2075. "忽略未读" = "Ignore unread";
  2076. "手机登录" = "login by phone";
  2077. "其他方式" = "other methods";
  2078. "退出登录" = "Sign out";
  2079. "我们将关闭启动程序,请重新启动" = "We will close the startup program, please restart";
  2080. "切换语言" = "Change language";
  2081. "主页" = "Home";
  2082. //2021.11.30
  2083. "广场" = "video";
  2084. "商城" = "Shop";
  2085. "热门主播" = "Popular anchor";
  2086. "请输入搜索内容" = "Enter search content";
  2087. "搜索历史" = "Search history";
  2088. "相关用户" = "Related User";
  2089. "相关短视频" = "Related Short Video";
  2090. "相关动态" = "Related News";
  2091. "相关用户" = "Related User";
  2092. "资料" = "material";
  2093. "限时秒杀" = "Limited time spike";
  2094. "直播好物" = "Live Goods";
  2095. "热销榜单" = "Hot List";
  2096. "猜你喜欢" = "you may also like";
  2097. "精选" = "Featured";
  2098. "商品详情" = "product details";
  2099. "加入购物车" = "add to the cart";
  2100. "立即购买" = "Buy now";
  2101. "店铺" = "Shop";
  2102. "客服" = "Service";
  2103. "购物车" = "Shopping cart";
  2104. "宝贝详情" = "Detail";
  2105. "规格" = "Specification";
  2106. "请选择" = "Please choose";
  2107. "运费" = "Freight";
  2108. "月售" = "Monthly Sale";
  2109. "库存" = "In stock";
  2110. "原价" = "Original Price";
  2111. "购买数量" = "Purchase quantity";
  2112. "未添加规格" = "No specification added";
  2113. //确认订单
  2114. "确认订单" = "Confirm Order";
  2115. "请填写收货地址" = "Please fill in the delivery address";
  2116. "收货地址" = "Shipping address";
  2117. "快递" = "Express delivery";
  2118. "订单备注" = "Order notes";
  2119. "选填" = "Optional";
  2120. "合计" = "total";
  2121. "合计:" = "total:";
  2122. "去支付" = "Go to pay";
  2123. "小计" = "Subtotal";
  2124. "添加新地址" = "add new address";
  2125. //添加地址
  2126. "收货人" = "Receiver";
  2127. "手机号码" = "mobile phone number";
  2128. "所在地区" = "Location";
  2129. "如街道、门牌号、小区、楼栋号、单元室等" = "Such as street, house number, community, building number, unit room, etc.";
  2130. "设为默认地址" = "set as the default address";
  2131. "保存并使用" = "Save and use";
  2132. //购物车
  2133. "全选" = "select all";
  2134. "删除" = "delete";
  2135. "结算" = "Settlement";
  2136. "请选择一个商品" = "Please select a product";
  2137. //购买订单管理
  2138. "全部订单" = "All orders";
  2139. "退款" = "Refund";
  2140. "购买订单管理" = "Purchase Order Management";
  2141. "已完成" = "Completed";
  2142. //Mineviewcontroller
  2143. "直播贵族" = "Noble";
  2144. "| 开通贵族享受专属特权" = "| Open nobles to enjoy exclusive privileges";
  2145. "贵族" = "noble";
  2146. "待付款" = "Pending payment";
  2147. "待发货" = "To be delivered";
  2148. "待收货" = "To be received";
  2149. "退款/售后" = "Refund/After-sale";
  2150. "商品橱窗" = "Merchandise window";
  2151. "申请开店" = "Apply to open a store";
  2152. "店铺数据" = "Store data";
  2153. "更多服务" = "More services";
  2154. "实名认证" = "Verified";
  2155. "收支记录" = "Records";
  2156. "系统设置" = "Settings";
  2157. "店铺存在异常,已被关停" = "The shop has an abnormality and has been closed";
  2158. "您还未开通店铺,请先去申请开店" = "You have not opened a store yet, please apply for opening a store first";
  2159. //settings
  2160. "黑名单管理" = "Blacklist management";
  2161. "隐私特权设置" = "Privacy Settings";
  2162. "清理缓存" = "Clear cache";
  2163. //账号与安全
  2164. "账号与安全" = "Account and security";
  2165. "确定解除账号与微信的关联吗?" = "Are you sure to unlink the account from WeChat??";
  2166. "登录密码" = "login password";
  2167. "绑定第三方账号" = "Bind a third-party account";
  2168. "去绑定" = "Unbind";
  2169. "青少年模式" = "Youth mode";
  2170. "注销账号" = "Logout";
  2171. "注销账号后无法恢复,请谨慎操作" = "The account cannot be restored after logging out";
  2172. "未开启" = "Unopened";
  2173. "已开启" = "Activated";
  2174. //青少年模式
  2175. "启动青少年模式需要先设置独立密码,修改或者关闭青少年模式都需要此密码。" = "You need to set an independent password to activate the youth mode, and you need this password to modify or close the youth mode.";
  2176. "验证码已发送至" = "Verification code has been sent to";
  2177. "输入验证码" = "Enter confirmation code";
  2178. "请输入绑定的手机号,通过验证码验证后,即可关闭青少年模式。" = "Please enter the bound mobile phone number, after passing the verification code verification, you can turn off the youth mode.";
  2179. "重新获取" = "Resend";
  2180. "输入的手机号与绑定的手机号不一致" = "The entered mobile phone number is inconsistent with the bound mobile phone number";
  2181. "关闭青少年模式" = "Turn off teen mode";
  2182. "关闭青少年模式,需输入密码进行确认" = "Turn off the youth mode, you need to enter the password to confirm";
  2183. "两次密码不一致" = "The two passwords are inconsistent";
  2184. "进入青少年模式 >" = "Enter Youth Mode >";
  2185. "我知道了" = "I see";
  2186. "为呵护未成年人健康成长,711Live特别推出青少年模式,该模式下部分功能无法正常使用。请监护人主动选择,并设置监护密码。" = "To protect the healthy growth of minors, 711Live has specially launched a youth mode, in which some functions cannot be used normally. Please ask the guardian to actively choose and set a guardian password.";
  2187. "输入关键词搜索" = "Enter keyword search";
  2188. "青少年模式是711LiveApp为促进青少年健康成长做出的设置。若您手机被未成年使用,建议您开启此模式。\n开启青少年模式后,将无法正常使用App功能,只能观看短视频。\n每日开启青少年模式使用40分钟需要输入监护密码\n开启青少年模式需要先设置独立密码,用户需要牢记密码,如果忘记可通过手机验证码重置密码,需要输入正确密码才能关闭" = "Teenage mode is a setting made by 711LiveApp to promote the healthy growth of teenagers. If your phone is being used by a minor, we recommend that you enable this mode. \After enabling the teenage mode, the app's functions will not be able to be used normally and only short videos can be watched. \To activate the youth mode for 40 minutes daily, a monitoring password is required. To activate the youth mode, a separate password needs to be set first, and users need to remember the password. If they forget it, they can reset the password through a mobile verification code. They need to enter the correct password to turn it off";
  2189. "开启青少年模式" = "Enable Youth Mode";
  2190. "设置密码" = "Set password";
  2191. "确认密码" = "Confirm Password";
  2192. "请再次确认密码" = "Please confirm your password again";
  2193. "您已开启青少年模式" = "You have turned on youth mode";
  2194. //shouzhijil
  2195. "充值明细" = "Recharge Details";
  2196. "消费明细" = "Consumer details";
  2197. "账户还未进行实名认证,不能申请开店" = "The account has not been verified by real name, so you cannot apply to open a shop";
  2198. "解锁更多专属特权" = "Unlock more exclusive privileges";
  2199. "查看权益" = "View Rights";
  2200. //手机号登录、注册、修改
  2201. "手机号验证" = "Mobile phone number verification";
  2202. "当前手机号" = "Current phone number";
  2203. "再次确认新密码" = "Reconfirm the new password";
  2204. "PK对战" = "Battle";
  2205. "榜单" = "List";
  2206. "动态" = "Moment";
  2207. "请选择一件商品" = "Please select a product";
  2208. "请选择要删除的商品" = "Please select the product to be deleted";
  2209. "全部" = "All";
  2210. "用户" = "User";
  2211. "点赞" = "Likes";
  2212. "真实姓名" = "Real name";
  2213. "联系方式" = "Contact notification";
  2214. "认证类型" = "Authentication Type";
  2215. "安全" = "Safety";
  2216. "设置登录密码" = "Setting login password";
  2217. //账户注销"
  2218. "账户注销" = "Logout";
  2219. "账号注销后,
  2220. 以下信息将会被清空且无法找回" = "After the account is cancelled,
  2221. The following notification will be cleared and cannot be retrieved";
  2222. "确认注销" = "Confirm logout";
  2223. "我已同意并阅读《注销协议》" = "I have agreed and read the 《Cancellation Agreement》";
  2224. "外设直播" = "Peripheral Live";
  2225. "视频直播" = "Live";
  2226. "查看全部订单" = "View all orders";
  2227. "开通" = "Open";
  2228. "钻石余额" = "Diamond balance";
  2229. //限时秒杀
  2230. "已开抢" = "已开抢";
  2231. "抢购中" = "抢购中";
  2232. "即将开始" = "即将开始";
  2233. //公会
  2234. "公会排行榜" = "Guild Ranking";
  2235. "我的公会" = "My Family";
  2236. "账户还未进行实名认证,不能创建公会" = "The account has not been authenticated with real name, so a guild cannot be created";
  2237. "实名认证审核中" = "Real-name authentication under review";
  2238. "您的加入申请还在审核中,此时创建公会则会撤销之前的加入申请" = "Your application to join is still under review. At this time, creating a guild will cancel the previous application to join";
  2239. "您的创建公会申请,正在审核中..." = "Your application for creating a guild is under review...";
  2240. "您还未加入公会哦 您可以创建一个自己的公会也可以选择加入一个公会" = "You haven't joined the guild yet
  2241. You can create your own guild or choose to join a guild";
  2242. "完善公会资料" = "Complete Guild notification";
  2243. "公会宣言" = "Guild Declaration";
  2244. "请输入公会宣言,最多50个字" = "Please enter the guild declaration, up to 50 characters";
  2245. "公会名称" = "Guild Name";
  2246. "选择加入公会验证方式" = "Choose to join the guild verification method";
  2247. "·申请人只要申请就可以加入" = "·Applicants can join as long as they apply";
  2248. "·申请人需要我同意才能加入" = "·Applicants need my consent to join";
  2249. "请输入公会名称,最多8个字" = "Please enter the name of the guild, up to 8 characters";
  2250. "请输入公会宣言,最多50个字" = "Please enter the guild declaration, up to 50 characters";
  2251. "创建公会" = "Create Guild";
  2252. "编辑公会资料" = "Edit Guild notification";
  2253. "未输入公会名称" = "No guild name entered";
  2254. "未输入公会宣言" = "The guild declaration was not entered";
  2255. "请输入您要搜索的公会昵称" = "Please enter the nickname of the guild to be searched";
  2256. "会长" = "President";
  2257. "公会成员" = "Guild Member";
  2258. "公会贡献榜" = "Guild Contribution List";
  2259. "您的创建公会申请,正在审核中..." = "Your application for creating a guild is under review...";
  2260. "待处理申请" = "Pending application";
  2261. "确定要解散该公会吗?解散后所有的积分值都会清空" = "Are you sure you want to dissolve this guild? All points will be cleared after dissolution";
  2262. "解散公会" = "Disbanding the Guild";
  2263. "公会族长" = "Guild patriarch";
  2264. "榜单隐身" = "List Stealth";
  2265. "隐身进场" = "Incognito Entry";
  2266. "您被主播踢出直播间" = "You were kicked out of the live room by the host";
  2267. "贡献钻石最多的守护者为守护之星" = "The guardian who contributed the most diamonds is the guardian star";
  2268. "虚位以待" = "Vacant";
  2269. "守护时长" = "Guardian Duration";
  2270. "守护特权" = "Guardian Privileges";
  2271. "我的钻石" = "My Diamond";
  2272. "到期时间" = "Expire date";
  2273. "自己不能购买自己的商品" = "You cannot buy your own goods";
  2274. "还未选择规格" = "No specification selected";
  2275. "加入购物车成功" = "Successfully added to shopping cart";
  2276. "请选择" = "Please select";
  2277. "人已买" = "People have bought";
  2278. "选择省市" = "Select Province and City";
  2279. "商铺类型" = "Shop Type";
  2280. "选择类型" = "Select Type";
  2281. "店铺头像" = "Shop Avatar";
  2282. "商铺名称" = "Shop Name";
  2283. "请输入商铺名称" = "Please enter the shop name";
  2284. "默认快递" = "Default Express";
  2285. "发货地址" = "Shipping Address";
  2286. "退货地址" = "Return Address";
  2287. "选择快递公司" = "Select Courier Company";
  2288. "运费" = "Freight";
  2289. "订单编号" = "Order Number";
  2290. "下单时间" = "Order Time";
  2291. "下单ID" = "Order ID";
  2292. "支付方式" = "Payment Method";
  2293. "备注" = "Remarks";
  2294. "配送方式" = "Delivery Method";
  2295. "退款原因" = "Refund Reason";
  2296. "退款金额" = "Refund amount";
  2297. "申请时间" = "Application Time";
  2298. "退款编号" = "Refund Number";
  2299. "退货物流公司" = "Return Goods Flow Company";
  2300. "凭证" = "Certificate";
  2301. "退款说明" = "Refund Instructions";
  2302. "商铺名称不得多于八个字" = "The name of the shop cannot be more than eight characters";
  2303. "提醒买家付款" = "Remind Buyer to Pay";
  2304. "发货" = "Shipment";
  2305. "查看物流" = "View Logistics";
  2306. "物流单号已复制到剪贴板" = "Logistics number has been copied to clipboard";
  2307. "已完成" = "Completed";
  2308. "收到商品并退款" = "Received goods and refunded";
  2309. "确认收货" = "Confirm receipt";
  2310. "确认收货成功" = "Confirm successful receipt";
  2311. "取消订单" = "Cancel Order";
  2312. "确定取消订单?" = "Are you sure to cancel the order?";
  2313. "取消订单成功" = "Order cancelled successfully";
  2314. "删除订单" = "Delete Order";
  2315. "退款待处理" = "Refund pending";
  2316. "同意退款" = "Agree to refund";
  2317. "退款已完成" = "Refund completed";
  2318. "取消订单" = "Cancel Order";
  2319. "等待卖家发货" = "Waiting for seller to ship";
  2320. "卖家已发货" = "Seller has shipped";
  2321. "已发货" = "Shipped";
  2322. "售卖订单管理" = "Sales Order Management";
  2323. "已退款" = "Refunded";
  2324. "卖家拒绝退款" = "Seller refused to refund";
  2325. "退款申请中" = "Refund requesting";
  2326. "取消退款" = "Cancel refund";
  2327. "完成退款" = "Complete refund";
  2328. "已取消" = "Cancelled";
  2329. "请先添加收货地址" = "Please add shipping address first";
  2330. "快递:" = "Express delivery:";
  2331. "万" = "ten thousand";
  2332. "说点什么吧..." = "send something...";
  2333. "发布短视频" = "Release video";
  2334. "选择商品" = "Select Product";
  2335. "添加新地址" = "Add new address";
  2336. "收货地址" = "Receiving Address";
  2337. "请使用真实姓名" = "Please use real name";
  2338. "月前" = "month ago";
  2339. "天前" = "day ago";
  2340. "小时前" = "hour ago";
  2341. "您还未加入公会哦 您可以创建一个自己的公会也可以选择加入一个公会" = "You have not joined the guild, you can create your own guild or choose to join a guild";
  2342. "公会" = "Guild";
  2343. "免运费" = "free shipping";
  2344. "您的加入申请还在审核中,如再加入其他公会则自动撤销之前的加入申请" = "Your application for joining is still under review. If you join another guild, your previous application for joining will be automatically cancelled";
  2345. "宝贝详情" = "Details";
  2346. //登录
  2347. "手机验证码登录" = "Mobile phone verification code login";
  2348. "未注册的用户验证后将自动创建账户" = "Unregistered users will automatically create an account after verification";
  2349. "账号密码登录" = "Account Password Login";
  2350. "请输入忘记密码的账号" = "Please enter the account that has forgotten the password";
  2351. "下一步" = "Next";
  2352. "忘记密码?" = "Forget";
  2353. "第三方登录" = "Third Login";
  2354. "请输入注册手机号" = "Please enter the registered mobile phone number";
  2355. "绑定手机号" = "Bind mobile phone number";
  2356. "已阅读并同意《用户服务协议》和《隐私政策》" = "Have read and agreed to the 'User Service Agreement' and 'Privacy Policy'";
  2357. "点击同意即表示您已阅读并同意《平台用户协议》和《隐私协议》。" = "Clicking to agree means that you have read and agreed to the 'latform User Agreement' and 'Privacy Agreement'.";
  2358. "《平台用户协议》" = "'Platform User Agreement'";
  2359. "《隐私协议》" = "'Privacy Agreement'";
  2360. "《用户服务协议》" = "'User Service Agreement'";
  2361. "用户取消了授权请求" = "User cancelled authorization request";
  2362. "授权请求失败" = "Authorization request failed";
  2363. "授权请求响应无效" = "Invalid response to authorization request";
  2364. "未能处理授权请求" = "Failed to process authorization request";
  2365. "授权请求失败未知原因" = "Authorization request failed for unknown reason";
  2366. "暂无消息" = "No news yet";
  2367. "验证码将发送至" = "Verification code will be sent to";
  2368. "不同意" = "disagree";
  2369. "同意" = "agree";
  2370. "请先阅读并勾选协议" = "Please read and tick the agreement first";
  2371. //中文图片转英文
  2372. "bogo_live_Vip" = "bogo_live_Vip_en";
  2373. "bogo_live_ward" = "bogo_live_ward_en";
  2374. "bogo_publish_btn" = "bogo_publish_btn_en";
  2375. "bogo_publish_btn" = "bogo_publish_btn_en";
  2376. "lr_img_back_ward_Head_Star" = "lr_img_back_ward_Head_Star_en";
  2377. "mg_zhifu_certication" = "mg_zhifu_certication_en";
  2378. "bogo_follow_btn" = "bogo_follow_btn_en";
  2379. "输入关键字"="Enter keywords";
  2380. "神秘人" = "Mystery man";
  2381. "主播回来啦,视频即将恢复~" = "The anchor is back, the video will resume soon~";
  2382. "正在退出直播中" = "exiting live stream";
  2383. "您当前正在直播,是否退出直播?" = "You are currently live streaming, do you want to exit the live streaming?";
  2384. "加入聊天室失败,请稍候尝试" = "Failed to join chat room, please try later";
  2385. "创建" = "create";
  2386. "当前是移动网络,是否继续%@直播?" = "It is currently a mobile network, do you want to continue %@ live broadcast?";
  2387. "网络提示" = "Network Tips";
  2388. "退出成功" = "exit successfully";
  2389. "当前无网络,无法%@直播" = "There is currently no network, unable to %@ live broadcast";
  2390. "加入" = "join in";
  2391. "当前是移动网络,是否继续直播?" = "It is currently a mobile network, do you want to continue live streaming?";
  2392. "当前是移动网络,是否继续观看直播?" = "It is currently a mobile network, do you want to continue watching the live broadcast?";
  2393. "当前无网络,无法继续%@直播!" = "There is currently no network, unable to continue the %@ live broadcast!";
  2394. "观看" = "watch";
  2395. "主播离开一下,精彩不中断,不要走开哦" = "The anchor leave for a while, the excitement will not be interrupted, don't go away";
  2396. "其他设备推流中" = "Other devices are streaming";
  2397. "直播已结束" = "The live broadcast has ended";
  2398. "消费数" = "consumption";
  2399. "开播设置" = "Launch settings";
  2400. "获取直播信息失败" = "Failed to get live broadcast notification";
  2401. "复制成功" = "Copy successfully";
  2402. "消息撤回失败,code=%d,msg=%@" = "Message recall failed, code=%d, msg=%@";
  2403. "该词被禁用" = "the word is banned";
  2404. "您已被禁言" = "you have been banned";
  2405. "TIMConversation 为空" = "TIMConversation is empty";
  2406. "备注名过长" = "Comment name is too long";
  2407. "用户已在该分组" = "User is already in this group";
  2408. "移动失败,已将好友移动到默认分组" = "Move failed, friends have been moved to default group";
  2409. "参数有误" = "wrong parameter";
  2410. "备注名不能包含表情" = "Comment name cannot contain emoticons";
  2411. "备注名超长" = "Comment name is too long";
  2412. "验证信息过长" = "Verification notification is too long";
  2413. "添加好友成功后,获取好友资料失败,%@" = "After adding friends successfully, getting friend notification failed,%@";
  2414. "删除推荐好友失败,code=%d,msg=%@" = "Failed to delete recommended friends,code=%d,msg=%@";
  2415. "删除未决好友失败,code=%d,msg=%@" = "Failed to delete pending friends, code=%d, msg=%@";
  2416. "删除已决好友失败,code=%d,msg=%@" = "Failed to delete decided friends,code=%d,msg=%@";
  2417. "下线通知" = "Offline notification";
  2418. "您的账号在其他设备登录,如果不是您的操作,请及时修改密码" = "Your account is logged in on another device. If it is not your operation, please change the password in time";
  2419. "断线重连失败,是否重新登录?" = "Failed to reconnect after disconnection, do you want to log in again?";
  2420. "刷新票据,登录失败" = "Refresh ticket, login failed";
  2421. "刷新票据失败\ncode:%d, error:%@" = "Refresh ticket failed\ncode:%d, error:%@";
  2422. "刷新票据失败,正在退出" = "Refresh ticket failed, exiting";
  2423. "保存图片成功" = "Save the picture successfully";
  2424. "邀请规则" = "Invitation Rules";
  2425. "提现" = "withdraw";
  2426. "请先授权微信" = "Please authorize WeChat first";
  2427. "请先进行实名认证" = "Please do real-name authentication first";
  2428. "请先选择提现金额" = "Please select the withdrawal amount first";
  2429. "邀请好友" = "invite friends";
  2430. "未安装微信" = "WeChat is not installed";
  2431. "暂无记录" = "No records";
  2432. "暂无数据" = "No data";
  2433. "提现记录" = "Withdrawals record";
  2434. "我的邀请详情" = "My invitation details";
  2435. "已绑定" = "bound";
  2436. "未绑定" = "unbound";
  2437. "%@元" = "%@dollar";
  2438. "资料" = "material";
  2439. "动态" = "Moment";
  2440. "小视频" = "short video";
  2441. "解除拉黑" = "unblock";
  2442. "加入黑名单" = "add to blacklist";
  2443. "取消" = "Cancel";
  2444. "主页_更多" = "Home_more";
  2445. "您已开启青少年模式" = "You have teen mode turned on";
  2446. "为呵护未成年人健康成长,711Live特别推出青少年模式,该模式下部分功能无法正常使用。请监护人主动选择,并设置监护密码。" = "To protect the healthy growth of minors, 711Live has specially launched a youth mode, in which some functions cannot be used normally. Please ask the guardian to actively choose and set a guardian password.";
  2447. "两次密码不一致" = "The two passwords do not match";
  2448. "保密" = "keep secret";
  2449. "删除动态成功" = "delete dynamic success";
  2450. "选择国家/地区" = "Select country";
  2451. "发送验证码" = "Send the verification code";
  2452. "发送失败" = "Failed to send";
  2453. "重新获取(%lds)" = "Refetch (%lds)";
  2454. "重新获取验证码" = "Get the verification code again";
  2455. "中国" = "China";
  2456. "获取验证码" = "get verification code";
  2457. "微信未安装" = "WeChat is not installed";
  2458. "QQ未安装" = "QQ is not installed";
  2459. "新浪微博未安装" = "Sina Weibo is not installed";
  2460. "获取登录参数失败,请稍后尝试" = "Failed to get login parameters, please try later";
  2461. "元/1月" = "dollar/January";
  2462. "%@钻石/%@%@" = "%@diamond/%@%@";
  2463. "已开通" = "already opened";
  2464. "隐身进场" = "stealthy approach";
  2465. "评论了你:%@" = "commented on you: %@";
  2466. "系统消息" = "system notification";
  2467. "%@年%@月" = "%@years";
  2468. "选择时间" = "selection period";
  2469. "充值" = "recharge";
  2470. "请输入搜索内容" = "Enter search content";
  2471. "推荐" = "Recommend";
  2472. "浏览历史" = "Browsing History";
  2473. "确认删除全部历史搜索记录?" = "Are you sure you want to delete all search history?";
  2474. "确定" = "Sure";
  2475. "删除失败" = "failed to delete";
  2476. "神秘人" = "Mystery man";
  2477. "神秘人%@" = "Mystery man%@";
  2478. "%.1f万" = "%.1f million";
  2479. "%@礼物送出成功" = "%@ gift sent successfully";
  2480. "举报" = "report";
  2481. "未上榜" = "Not on the list";
  2482. "不能查看神秘人身份信息" = "Unable to view the identity notification of the mysterious person";
  2483. "我的排名:" = "My ranking:";
  2484. "开始直播" = "start live";
  2485. "创建外设直播" = "Create Peripheral Live";
  2486. "账户信息、会员、贵族等权限" = "Account notification, membership, nobility and other permissions";
  2487. "账户剩余钻石数量:%@" = "Number of diamonds remaining in the account: %@";
  2488. "账户剩余可提现77票:%@" = "The remaining account can withdraw cuckoo tickets:%@";
  2489. "交易记录及其他个人上传信息" = "Transaction History and Other Personally Uploaded notification";
  2490. "《注销协议》" = "\"Cancellation Agreement\"";
  2491. "确认注销该账户?" = "Are you sure to cancel this account?";
  2492. "签到" = "sign in";
  2493. "已签到" = "signed in";
  2494. "兑换钻石" = "Redeem diamonds";
  2495. "%@钻" = "%@Drill";
  2496. "男用户暂时不支持提现" = "Male users do not currently support withdrawals";
  2497. "男" = "male";
  2498. "女" = "Female";
  2499. "兑换%@" = "exchange%@";
  2500. "未认证" = "not certified";
  2501. "%@余额:%@" = "%@Balance: %@";
  2502. "已为您自动匹配昵称“%@”和默认头像是否修改?" = "The nickname \"%@\" and the default avatar have been automatically matched for you. Modify?";
  2503. "选择分类" = "Choose category";
  2504. "照片" = "photo";
  2505. "拍摄" = "shoot";
  2506. "赠送游戏币" = "Gift game currency";
  2507. "赠送%@" = "Gift %@";
  2508. "播放该消息失败" = "Failed to play this message";
  2509. "图片无效!请重新选择" = "Invalid image! Please reselect";
  2510. "请先输入发送内容" = "Please enter the content to send first";
  2511. "获取麦克风权限失败" = "Failed to get microphone permission";
  2512. "录音失败" = "Recording failed";
  2513. "青少年模式已关闭" = "Teen Mode is off";
  2514. "确定要结束直播吗?" = "Are you sure you want to end the broadcast?";
  2515. "返回首页" = "Back to Home";
  2516. "观看人数" = "Viewers";
  2517. "直播时长" = "Live minutes";
  2518. "%@守护" = "%@ guard";
  2519. " 当前人气" = "popularity";
  2520. "发起PK" = "PK";
  2521. "当前资料未保存,是否放弃编辑" = "The current data has not been saved, do you want to give up editing";
  2522. "请输入您的联系方式"="Please enter your contact notification";
  2523. "请输入您的真实姓名"="please enter your real name";
  2524. "身份证正面照"="ID card front photo";
  2525. "身份证反面照"="Reverse photo of ID card";
  2526. "手持身份证正面照"="Front photo with ID card in hand";
  2527. "立即开通"="Activate now";
  2528. "已开通"="Activated";
  2529. "明细" = "Details";
  2530. "我的邀请奖励" = "My invitation reward";
  2531. "我的奖励(元)" = "My reward";
  2532. "一级邀请(人)" = "Level 1 invitation (person)";
  2533. "二级邀请(人)" = "Level 2 invitation (person)";
  2534. "查看我的邀请记录" = "View my invitation history";
  2535. "邀请用户充值奖励" = "Invite users to recharge rewards";
  2536. "一级邀请奖励:" = "Tier 1 Invitation Rewards:";
  2537. "二级邀请奖励:" = "Tier 2 Invitation Rewards:";
  2538. "我的邀请成绩" = "my invitation grades";
  2539. "立即提现" = "Withdraw now";
  2540. "可领取红包(元)" = "Red envelopes available";
  2541. "兑换钻石1:%@比例兑换(结果取整去零)" = "Exchange diamond 1:%@ proportion exchange (the result is rounded to zero)";
  2542. "自定义金额兑换" = "Custom amount exchange";
  2543. "%@提现金额" = "%@Withdrawal Amount";
  2544. "绑定/修改提现账号" = "Bind/Modify Withdrawal Account";
  2545. "一级邀请" = "Level 1 invitation";
  2546. "二级邀请" = "Level 2 invitation";
  2547. "%@向你发来连麦请求" = "%@Sending you a request for Lianmai";
  2548. "来了"="join in";
  2549. "%@成为了%@的%@守护"="%@ became the %@ guardian of %@";
  2550. "到期时间:" = "Expire date:";
  2551. "剩余%@" = "%@ remaining";
  2552. "开通守护成功" = "Successfully opened the guardian";
  2553. "守护续费成功" = "Guard renewal is successful";
  2554. "给你发了一个红包" = "sent you a red envelope";
  2555. "查看大家手气" = "Check everyone's luck";
  2556. "数量最多输入5个" = "Enter a maximum of 5";
  2557. "备注:1. 1个月=30天
  2558. 2.装备该贵族,才可使用该贵族的所有特权" = "Remarks:
  2559. 1. 1 month = 30 days
  2560. 2. Equip the noble before you can use all the privileges of the noble";
  2561. "%@积分" = "%@points";
  2562. "进行中,剩余%ld天 %02ld:%02ld:%02ld" = "In progress, %ld days remaining %02ld:%02ld:%02ld";
  2563. "确定要退出该公会吗?退出后所有的积分值都会清空" = "Are you sure you want to quit this guild? All points will be cleared after exit";
  2564. "开启定位" = "Enable position";
  2565. "直播码:" = "Live code:";
  2566. "rtmp地址:" = "rtmp address:";
  2567. "推流提示:
  2568. 1、打开推流软件,复制并输入推流地址和直播码(每次开播都需要重新输入新的推流地址) 2、为保证开播效果,开播前先预览直播推流效果
  2569. 3、成功推流后,再在App内点击开始直播" = "Streaming tips:
  2570. 1. Open the streaming software, copy and enter the streaming address and live code (you need to re-enter a new streaming address every time you start broadcasting) 2. To ensure the streaming effect, preview the streaming effect of live streaming before launching
  2571. 3. After successfully pushing the stream, click on the app to start the live broadcast";
  2572. "青少年模式简介" = "Introduction to Teen Mode";
  2573. "进行中,剩余 %02ld:%02ld:%02ld" = "In progress, remaining %02ld:%02ld:%02ld";
  2574. "踢出家族"="delete";
  2575. "推流地址" = "Push URL";
  2576. "贡献%@积分" = "Contribute %@points";
  2577. "赠送礼物"="Send gifts";
  2578. "%d天前" = "%%d days ago";
  2579. "%d小时前" = "%d hours ago";
  2580. "%d分钟前" = "%d minutes ago";
  2581. "立即认证" = "Authenticate now";
  2582. "您当前还未实名认证,需要认证后才能开始直播" = "You have not been authenticated by your real name, and you need to be authenticated before you can start live streaming";
  2583. "贡献" = "contribute";
  2584. "关注主播" = "Followig";
  2585. "语音直播" = "voice";
  2586. "公告" = "Announcement";
  2587. "一起聊聊" = "Chat~";
  2588. "%@ 在线" = "%@ online";
  2589. "主持" = "Host";
  2590. "退出直播间" = "Exit the live room";
  2591. "关闭直播间" = "Close the live room";
  2592. "您当前未开通VIP,需要开通后才能发送此礼物" = "You have not activated VIP, you need to activate it before sending this gift";
  2593. "您当前未开通贵族,需要开通后才能发送此礼物" = "You have not activated Nobles currently, you need to activate before sending this gift";
  2594. "房间" = "Voice Room";
  2595. "直播间红包" = "Red envelopes";
  2596. "剩余" = "Remaining";
  2597. "派发了一个即时红包" = "Distributed an instant red envelope";
  2598. "恭喜发财,大吉大利" = "Good luck";
  2599. "恭喜你" = "Congratulations!";
  2600. "抢到了钻石红包" = "Got the diamond red envelope";
  2601. "查看领取详情"= "View pick up details";
  2602. "给当前直播间观众发红包"="Send red envelopes to the audience in the current live room";
  2603. "总金额" = "Total amount";
  2604. "数量" = "Number";
  2605. "发送红包" = "Confirm";
  2606. "个"="piece";
  2607. "请输入数量" = "Please enter number";
  2608. "请输入直播标题" = "Click to input a room title~";
  2609. "查看资料" = "View Profile";
  2610. "上麦" = "Go on the mic";
  2611. "下麦" = "Leave the microphone";
  2612. "打开麦克风" = "Turn on sound";
  2613. "关闭麦克风" = "Turn off sound";
  2614. "房间背景图片设置" = "room background image setting";
  2615. "5人房" = "5 People";
  2616. "10人房" = "10 People";
  2617. "15人房" = "15 People";
  2618. "20人房" = "20 People";
  2619. "设置申请上麦" = "Set up microphone application";
  2620. "上麦申请" = "Mic Apply";
  2621. "麦位管理" = "Mic management";
  2622. "密码" = "Password";
  2623. "输入密码" = "Enter password";
  2624. "上麦后才能发送表情" = "Emoji can only be sent after being on the microphone";
  2625. "客服"="Service";
  2626. "收益"="Earnings";
  2627. "最新"="Newest";
  2628. "游戏"="Game";
  2629. "直播分类"="Room Tag";
  2630. "未播放" = "Not playing";
  2631. "请输音乐名称" = "Enter the song name";
  2632. "游戏" = "Game";
  2633. "工具" = "Tool";
  2634. "红包" = "Red envelope";
  2635. "心愿单" = "Wish list";
  2636. "房间管理" = "Management";
  2637. "麦位数量" = "Mic mode";
  2638. "更改房间头像" = "Choose a cover";
  2639. "保存" = "Save";
  2640. "请设置房间公告" = "Fill in the room announcement";
  2641. "房间数据" = "Room data";
  2642. "房间背景" = "Room background";
  2643. "管理员" = "Admin";
  2644. "搜索用户ID/昵称" = "Search online user lD/nickname";
  2645. "添加管理员" = "Add admin";
  2646. "在线观众" = "Online Audience";
  2647. "上麦后才能播放音乐" = "Music can only be played after being on the microphone";
  2648. "排行榜" = "Ranking List";
  2649. "派对" = "Party";
  2650. "推荐房间" = "Recommended Room";
  2651. "官方消息" = "Official News";
  2652. "回关" = "Return";
  2653. "实名" = "Real name";
  2654. "续费贵族" = "Renewal Noble";
  2655. "更多功能" = "More features";
  2656. "获更多权益,享专属特权。" = "Get more rights and enjoy exclusive privileges.";
  2657. "金币" = "Gold coins";
  2658. "实名认证,更加安全" = "Real name authentication, more secure";
  2659. "请输入您的身份证号码" = "Please enter your ID card number";
  2660. "请输入4-8位数字密码" = "Please enter a 4-8 digit password";
  2661. "进入门票" = "Entry Ticket";
  2662. "最低设置为1钻石" = "The minimum setting is 1 diamond";
  2663. "房间密码" = "Room password";
  2664. "排行" = "Ranking";
  2665. "在线:%@" = "Online:%@ ";
  2666. "账户余额" = "Account balance";
  2667. "金币提现" = "Withdrawal of gold coins";
  2668. "请输入要提现的额度" = "Please enter the amount to withdraw";
  2669. "我的金币" = "My gold coins";
  2670. "手机号登录" = "Mobile login";
  2671. "谷歌登录" = "Google login";
  2672. "脸书登录" = "Facebook login";
  2673. "苹果登录" = "Apple login";
  2674. "通话中,请结束通话后再试" = "During the call, please end the call and try again";
  2675. "对方忙" = "The other party is busy";
  2676. "麦克风已开启" = "The microphone is turned on";
  2677. "麦克风已关闭" = "The microphone is turned off";
  2678. "扬声器已关" = "Speaker turned off";
  2679. "扬声器已开" = "Speaker turned on";
  2680. "挂断" = "Hang up";
  2681. "摄像头翻转" = "Camera Flip";
  2682. "摄像头已关" = "Camera turned off";
  2683. "等待对方接受邀请..." = "Waiting for the other party to accept the invitation";
  2684. "邀请你语音通话" = "Invite you to make a voice call";
  2685. "邀请你视频通话" = "Invite you for a video call";
  2686. "摄像头已开" = "The camera is turned on";
  2687. "聊天设置" = "Chat settings";
  2688. "消息推送设置" = "Message push settings";
  2689. "不低于" = "Not less than";
  2690. "钻/分" = "Drill/Minute";
  2691. "开通贵族" = "Open Noble";
  2692. " 日榜 " = "Daily Ranking";
  2693. " 月榜 " = "Monthly Ranking";
  2694. " 总榜 " = "Overall Ranking";
  2695. "+关注" = "focus on";
  2696. "取关" = "Unfollow";
  2697. "快留下一句话,向別人展示自己吧。" = "Leave a message and show yourself to others.";
  2698. "语音聊天" = "Voice Chat";
  2699. "视频聊天" = "Video Chat";
  2700. "保存" = "Save";
  2701. "榜单隐身" = "Hide on Leaderboard";