Localizable.strings 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992
  1. /* No comment provided by engineer. */
  2. "%@ invitation" = "%@邀请";
  3. /* {app name} is not installed */
  4. "%@ not installed" = "%@未安装";
  5. /* {app name} version not supported */
  6. "%@ version not supported" = "不支持该版本的%@";
  7. /* No comment provided by engineer. */
  8. "%d days ago" = "%d 天前";
  9. /* No comment provided by engineer. */
  10. "%d hours ago" = "%d小时前";
  11. /* No comment provided by engineer. */
  12. "%d minutes ago" = "%d分钟前";
  13. /* Votes in a poll */
  14. "%d votes" = "%d票";
  15. /* No comment provided by engineer. */
  16. "%ld notifications" = "%ld条通知";
  17. /* No comment provided by engineer. */
  18. "%ld participants" = "%ld 参与者";
  19. /* No comment provided by engineer. */
  20. "1 day" = "1 天";
  21. /* No comment provided by engineer. */
  22. "1 hour" = "1小时";
  23. /* No comment provided by engineer. */
  24. "1 week" = "1 周";
  25. /* No comment provided by engineer. */
  26. "30 minutes" = "30分钟";
  27. /* No comment provided by engineer. */
  28. "4 hours" = "4小时";
  29. /* No comment provided by engineer. */
  30. "4 weeks" = "4 周";
  31. /* No comment provided by engineer. */
  32. "8 hours" = "8小时前";
  33. /* No comment provided by engineer. */
  34. "@-mentions only" = "仅被 @ 提及的消息";
  35. /* No comment provided by engineer. */
  36. "[Unknown username]" = "[未知用户名]";
  37. /* No comment provided by engineer. */
  38. "About" = "关于";
  39. /* No comment provided by engineer. */
  40. "Accept" = "Accept";
  41. /* No comment provided by engineer. */
  42. "Account" = "账户";
  43. /* No comment provided by engineer. */
  44. "Account already added" = "账号已被添加";
  45. /* No comment provided by engineer. */
  46. "Account not configured" = "未配置账号";
  47. /* No comment provided by engineer. */
  48. "Accounts" = "账号";
  49. /* No comment provided by engineer. */
  50. "Accuracy" = "精度";
  51. /* No comment provided by engineer. */
  52. "Add" = "添加";
  53. /* No comment provided by engineer. */
  54. "Add (%lu)" = "添加 (%lu)";
  55. /* No comment provided by engineer. */
  56. "Add account" = "添加账号";
  57. /* No comment provided by engineer. */
  58. "Add an internal note about this ban" = "Add an internal note about this ban";
  59. /* No comment provided by engineer. */
  60. "Add answer" = "添加答案";
  61. /* No comment provided by engineer. */
  62. "Add participants" = "添加参与者";
  63. /* No comment provided by engineer. */
  64. "Add reaction" = "添加回应";
  65. /* No comment provided by engineer. */
  66. "Add to favorites" = "添加到收藏夹";
  67. /* No comment provided by engineer. */
  68. "Added note to self" = "Added note to self";
  69. /* No comment provided by engineer. */
  70. "Adding a mention will only notify users that did not read the message yet" = "Adding a mention will only notify users that did not read the message yet";
  71. /* No comment provided by engineer. */
  72. "Address" = "地址";
  73. /* No comment provided by engineer. */
  74. "Advanced" = "高级";
  75. /* No comment provided by engineer. */
  76. "AirPlay button" = "AirPlay 按钮";
  77. /* 'All' meaning 'All conversations' */
  78. "All" = "所有";
  79. /* No comment provided by engineer. */
  80. "All messages" = "全部消息";
  81. /* No comment provided by engineer. */
  82. "All messages were deleted" = "已删除所有消息";
  83. /* No comment provided by engineer. */
  84. "All notifications are muted" = "所有通知都已被静音";
  85. /* No comment provided by engineer. */
  86. "Allow guests" = "允许来宾";
  87. /* '@all' should not be translated */
  88. "Allow participants to mention @all" = "Allow participants to mention @all";
  89. /* No comment provided by engineer. */
  90. "Allow to dial-in without a pin" = "运行在没有密码的情况下拨入";
  91. /* '{Microphone, Camera, ...} access is allowed' */
  92. "Allowed" = "允许";
  93. /* No comment provided by engineer. */
  94. "Alphabetical order" = "按字母顺序";
  95. /* No comment provided by engineer. */
  96. "Also open to guest app users" = "同样对来宾用户开放";
  97. /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
  98. "An administrator added you and %ld more participants" = "An administrator added you and %ld more participants";
  99. /* Please put {user0} placeholder in the correct position on the translated text but do not translate it */
  100. "An administrator added you and {user0}" = "An administrator added you and {user0}";
  101. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  102. "An administrator added {user0} and %ld more participants" = "An administrator added {user0} and %ld more participants";
  103. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  104. "An administrator added {user0} and {user1}" = "An administrator added {user0} and {user1}";
  105. /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
  106. "An administrator demoted you and %ld more participants from moderators" = "An administrator demoted you and %ld more participants from moderators";
  107. /* Please put {user0} placeholder in the correct position on the translated text but do not translate it */
  108. "An administrator demoted you and {user0} from moderators" = "An administrator demoted you and {user0} from moderators";
  109. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  110. "An administrator demoted {user0} and %ld more participants from moderators" = "An administrator demoted {user0} and %ld more participants from moderators";
  111. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  112. "An administrator demoted {user0} and {user1} from moderators" = "An administrator demoted {user0} and {user1} from moderators";
  113. /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
  114. "An administrator promoted you and %ld more participants to moderators" = "An administrator promoted you and %ld more participants to moderators";
  115. /* Please put {user0} placeholder in the correct position on the translated text but do not translate it */
  116. "An administrator promoted you and {user0} to moderators" = "An administrator promoted you and {user0} to moderators";
  117. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  118. "An administrator promoted {user0} and %ld more participants to moderators" = "An administrator promoted {user0} and %ld more participants to moderators";
  119. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  120. "An administrator promoted {user0} and {user1} to moderators" = "An administrator promoted {user0} and {user1} to moderators";
  121. /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
  122. "An administrator removed you and %ld more participants" = "An administrator removed you and %ld more participants";
  123. /* Please put {user0} placeholder in the correct position on the translated text but do not translate it */
  124. "An administrator removed you and {user0}" = "An administrator removed you and {user0}";
  125. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  126. "An administrator removed {user0} and %ld more participants" = "An administrator removed {user0} and %ld more participants";
  127. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  128. "An administrator removed {user0} and {user1}" = "An administrator removed {user0} and {user1}";
  129. /* No comment provided by engineer. */
  130. "An error occurred changing privacy setting" = "更改隐私设置时出错 ";
  131. /* No comment provided by engineer. */
  132. "An error occurred changing read status setting" = "更改读取状态设置时出错 ";
  133. /* No comment provided by engineer. */
  134. "An error occurred changing typing privacy setting" = "An error occurred changing typing privacy setting";
  135. /* No comment provided by engineer. */
  136. "An error occurred downloading the picture" = "An error occurred downloading the picture";
  137. /* No comment provided by engineer. */
  138. "An error occurred removing profile image" = "删除个人资料图片时出错 ";
  139. /* No comment provided by engineer. */
  140. "An error occurred setting address" = "设置地址时出错 ";
  141. /* No comment provided by engineer. */
  142. "An error occurred setting email address" = "设置电子邮件地址时出错 ";
  143. /* No comment provided by engineer. */
  144. "An error occurred setting phone number" = "设置电话号码时出错 ";
  145. /* No comment provided by engineer. */
  146. "An error occurred setting profile image" = "设置个人资料图片时出错 ";
  147. /* No comment provided by engineer. */
  148. "An error occurred setting Twitter account" = "设置 Twitter 帐户时出错 ";
  149. /* No comment provided by engineer. */
  150. "An error occurred setting user name" = "设置用户名时出错 ";
  151. /* No comment provided by engineer. */
  152. "An error occurred setting website" = "设置网站时出错 ";
  153. /* No comment provided by engineer. */
  154. "An error occurred trying to translate message" = "An error occurred trying to translate message";
  155. /* No comment provided by engineer. */
  156. "An error occurred while adding %@ to the room" = "添加%@至房间时发生了错误";
  157. /* No comment provided by engineer. */
  158. "An error occurred while adding a reaction to a message" = "An error occurred while adding a reaction to a message";
  159. /* No comment provided by engineer. */
  160. "An error occurred while adding note" = "An error occurred while adding note";
  161. /* No comment provided by engineer. */
  162. "An error occurred while clearing status message" = "清除状态消息时出错";
  163. /* No comment provided by engineer. */
  164. "An error occurred while creating the poll" = "An error occurred while creating the poll";
  165. /* No comment provided by engineer. */
  166. "An error occurred while deleting the message" = "删除消息时发生一个错误";
  167. /* No comment provided by engineer. */
  168. "An error occurred while opening the file %@" = "打开文件 %@ 时出错";
  169. /* No comment provided by engineer. */
  170. "An error occurred while removing a reaction from a message" = "An error occurred while removing a reaction from a message";
  171. /* No comment provided by engineer. */
  172. "An error occurred while removing the avatar" = "An error occurred while removing the avatar";
  173. /* No comment provided by engineer. */
  174. "An error occurred while sending the message" = "发送消息时发生了错误";
  175. /* No comment provided by engineer. */
  176. "An error occurred while setting \(formattedPhoneNumber) as phone number" = "在将 \(formattedPhoneNumber) 设置为电话号码时发生了一个错误";
  177. /* No comment provided by engineer. */
  178. "An error occurred while setting description" = "An error occurred while setting description";
  179. /* No comment provided by engineer. */
  180. "An error occurred while setting phone number" = "设置电话号码时发生错误";
  181. /* No comment provided by engineer. */
  182. "An error occurred while setting status message" = "设置状态消息时出错";
  183. /* No comment provided by engineer. */
  184. "An error occurred while setting the avatar" = "An error occurred while setting the avatar";
  185. /* No comment provided by engineer. */
  186. "An error occurred while sharing the file" = "共享文件时发生了错误";
  187. /* No comment provided by engineer. */
  188. "an hour" = "1 小时";
  189. /* Alice and Bob */
  190. "and" = "和";
  191. /* Alice, Bob, Charlie and 3 others are typing… */
  192. "and %ld others are typing…" = "和另外%ld个人正在输入……";
  193. /* Alice, Bob, Charlie and 1 other is typing… */
  194. "and 1 other is typing…" = "和另外1个人正在输入……";
  195. /* No comment provided by engineer. */
  196. "Answer" = "答案";
  197. /* No comment provided by engineer. */
  198. "Answers" = "答案";
  199. /* No comment provided by engineer. */
  200. "App" = "应用";
  201. /* No comment provided by engineer. */
  202. "App is outdated" = "App is outdated";
  203. /* No comment provided by engineer. */
  204. "Appear offline" = "似乎在离线状态";
  205. /* Alice and Bob are typing… */
  206. "are typing…" = "正在输入……";
  207. /* No comment provided by engineer. */
  208. "Ask a question" = "提出一个问题";
  209. /* No comment provided by engineer. */
  210. "Attachments allowed?" = "允许附件?";
  211. /* No comment provided by engineer. */
  212. "Audio options" = "Audio options";
  213. /* No comment provided by engineer. */
  214. "Audios" = "音频";
  215. /* No comment provided by engineer. */
  216. "Away" = "离开";
  217. /* Ban a user/guest */
  218. "Ban" = "Ban";
  219. /* e.g. Ban John Doe */
  220. "Ban %@" = "Ban %@";
  221. /* No comment provided by engineer. */
  222. "Ban participant" = "Ban participant";
  223. /* Date and time of ban creation */
  224. "Banned by:" = "Banned by:";
  225. /* No comment provided by engineer. */
  226. "Banned users and guests" = "Banned users and guests";
  227. /* No comment provided by engineer. */
  228. "bot" = "机器人";
  229. /* No comment provided by engineer. */
  230. "Cached files" = "已缓存文件";
  231. /* No comment provided by engineer. */
  232. "Cached images" = "已缓存图像";
  233. /* No comment provided by engineer. */
  234. "Call notification sent" = "通话通知已发送";
  235. /* No comment provided by engineer. */
  236. "Call recording enabled?" = "Call recording enabled?";
  237. /* No comment provided by engineer. */
  238. "Call recording failed. Please contact your administrator" = "通话录制失败。请联系您的管理员。";
  239. /* No comment provided by engineer. */
  240. "Call recording is starting" = "通话录制启动中";
  241. /* No comment provided by engineer. */
  242. "Call recording started" = "通话录制已开始";
  243. /* No comment provided by engineer. */
  244. "Call recording stopped" = "通话录制已停止";
  245. /* No comment provided by engineer. */
  246. "Call without notification" = "通话而不通知";
  247. /* No comment provided by engineer. */
  248. "CallKit supported?" = "CallKit supported?";
  249. /* No comment provided by engineer. */
  250. "Calls" = "通话";
  251. /* No comment provided by engineer. */
  252. "Calls enabled?" = "启用通话?";
  253. /* No comment provided by engineer. */
  254. "Calls from an old account were received." = "收到来自旧账户的通话";
  255. /* No comment provided by engineer. */
  256. "Calls from old accounts" = "来自旧账户的通话";
  257. /* No comment provided by engineer. */
  258. "Camera" = "相机";
  259. /* No comment provided by engineer. */
  260. "Camera access" = "相机权限";
  261. /* No comment provided by engineer. */
  262. "Camera access is not allowed. Check your settings." = "相机访问未被允许。请检查你的设置。";
  263. /* No comment provided by engineer. */
  264. "Camera disabled" = "摄像头已禁用";
  265. /* No comment provided by engineer. */
  266. "Camera enabled" = "摄像头已启用";
  267. /* No comment provided by engineer. */
  268. "Can create conversations?" = "可以建立对话?";
  269. /* No comment provided by engineer. */
  270. "Cancel" = "取消";
  271. /* No comment provided by engineer. */
  272. "Cancelled call from another account" = "已取消来自其他账号的通话";
  273. /* No comment provided by engineer. */
  274. "Cannot share to conversation" = "无法分享到对话";
  275. /* No comment provided by engineer. */
  276. "Capabilities" = "可用功能";
  277. /* No comment provided by engineer. */
  278. "Change password" = "更改密码";
  279. /* No comment provided by engineer. */
  280. "Change your vote" = "更多您的投票";
  281. /* No comment provided by engineer. */
  282. "Chat" = "聊天";
  283. /* No comment provided by engineer. */
  284. "Chat messages" = "聊天消息";
  285. /* No comment provided by engineer. */
  286. "Clear cache" = "清空缓存";
  287. /* No comment provided by engineer. */
  288. "Clear reminder" = "Clear reminder";
  289. /* No comment provided by engineer. */
  290. "Clear status message" = "清除状态消息";
  291. /* No comment provided by engineer. */
  292. "Clear status message after" = "过多长时间清除状态消息";
  293. /* No comment provided by engineer. */
  294. "Close" = "关闭";
  295. /* No comment provided by engineer. */
  296. "Configuration" = "配置";
  297. /* No comment provided by engineer. */
  298. "Confirm and hide warning" = "确定并隐藏警告";
  299. /* No comment provided by engineer. */
  300. "Connecting to %@ …" = "正在连接至%@ …";
  301. /* No comment provided by engineer. */
  302. "Connecting to the call …" = "正在连接至通话 ...";
  303. /* No comment provided by engineer. */
  304. "Contact access" = "联系人权限";
  305. /* No comment provided by engineer. */
  306. "Contact access has been denied" = "联系人访问已被拒绝";
  307. /* No comment provided by engineer. */
  308. "Contacts" = "联系人";
  309. /* No comment provided by engineer. */
  310. "Conversation creation failed" = "Conversation creation failed";
  311. /* No comment provided by engineer. */
  312. "Conversation details" = "对话详情";
  313. /* No comment provided by engineer. */
  314. "Conversation name" = "对话名称";
  315. /* No comment provided by engineer. */
  316. "Conversation name cannot be empty" = "对话名称不能为空";
  317. /* No comment provided by engineer. */
  318. "Conversation not found" = "未找到对话";
  319. /* No comment provided by engineer. */
  320. "Conversation not found or not joined" = "未找到或未加入对话";
  321. /* No comment provided by engineer. */
  322. "Conversation settings" = "会话设置";
  323. /* No comment provided by engineer. */
  324. "Conversations" = "对话";
  325. /* No comment provided by engineer. */
  326. "Copy" = "复制";
  327. /* No comment provided by engineer. */
  328. "Could not access camera" = "无法访问相机";
  329. /* No comment provided by engineer. */
  330. "Could not access microphone" = "无法访问麦克风";
  331. /* No comment provided by engineer. */
  332. "Could not access speech recognition" = "无法访问语音识别";
  333. /* No comment provided by engineer. */
  334. "Could not access your location" = "无法访问你的位置";
  335. /* No comment provided by engineer. */
  336. "Could not add participant" = "无法添加参与者";
  337. /* No comment provided by engineer. */
  338. "Could not ban participant" = "Could not ban participant";
  339. /* No comment provided by engineer. */
  340. "Could not change call notifications setting" = "无法更改通话通知设置";
  341. /* No comment provided by engineer. */
  342. "Could not change listable scope of the conversation" = "无法更改对话的可列出范围";
  343. /* No comment provided by engineer. */
  344. "Could not change lobby state of the conversation" = "无法更改对话的等候室状态";
  345. /* No comment provided by engineer. */
  346. "Could not change mention permissions of the conversation" = "Could not change mention permissions of the conversation";
  347. /* No comment provided by engineer. */
  348. "Could not change moderation permissions of the participant" = "无法更改参与者的审核权限";
  349. /* No comment provided by engineer. */
  350. "Could not change notifications setting" = "无法更改通知设置";
  351. /* No comment provided by engineer. */
  352. "Could not change password protection settings" = "无法更改密码保护设置";
  353. /* No comment provided by engineer. */
  354. "Could not change read-only state of the conversation" = "无法更改对话的只读状态";
  355. /* No comment provided by engineer. */
  356. "Could not change sharing permissions of the conversation" = "无法更改对话的共享权限";
  357. /* No comment provided by engineer. */
  358. "Could not change SIP state of the conversation" = "无法更改对话的SIP状态";
  359. /* No comment provided by engineer. */
  360. "Could not clear chat history" = "无法清除聊天历史";
  361. /* No comment provided by engineer. */
  362. "Could not clear status message" = "无法清除状态消息";
  363. /* No comment provided by engineer. */
  364. "Could not delete conversation" = "无法删除对话";
  365. /* No comment provided by engineer. */
  366. "Could not get available languages" = "Could not get available languages";
  367. /* No comment provided by engineer. */
  368. "Could not join %@ call" = "无法加入%@通话";
  369. /* No comment provided by engineer. */
  370. "Could not join call with %@" = "无法和%@加入通话";
  371. /* No comment provided by engineer. */
  372. "Could not join conversation" = "无法加入对话";
  373. /* No comment provided by engineer. */
  374. "Could not leave conversation" = "无法离开对话";
  375. /* No comment provided by engineer. */
  376. "Could not remove participant" = "无法移除参与者";
  377. /* No comment provided by engineer. */
  378. "Could not rename the conversation" = "无法重命名对话";
  379. /* No comment provided by engineer. */
  380. "Could not resend email invitations" = "无法重发电子邮件邀请";
  381. /* No comment provided by engineer. */
  382. "Could not send call notification" = "无法发送通话通知";
  383. /* No comment provided by engineer. */
  384. "Could not send the message" = "无法发送消息";
  385. /* No comment provided by engineer. */
  386. "Could not set conversation description" = "Could not set conversation description";
  387. /* No comment provided by engineer. */
  388. "Could not set conversation name" = "无法设置对话名称";
  389. /* No comment provided by engineer. */
  390. "Could not set message expiration time" = "无法发送消息过期时间";
  391. /* No comment provided by engineer. */
  392. "Could not set phone number" = "无法设置电话号码";
  393. /* No comment provided by engineer. */
  394. "Could not set status message" = "无法设置状态消息";
  395. /* No comment provided by engineer. */
  396. "Could not share file" = "无法共享文件";
  397. /* No comment provided by engineer. */
  398. "Create" = "创建";
  399. /* No comment provided by engineer. */
  400. "Create a new conversation" = "创建一个新对话";
  401. /* No comment provided by engineer. */
  402. "Create or join a conversation" = "Create or join a conversation";
  403. /* No comment provided by engineer. */
  404. "Create poll" = "创建投票";
  405. /* No comment provided by engineer. */
  406. "Creating poll failed" = "创建投票失败";
  407. /* No comment provided by engineer. */
  408. "Credentials for this account were no longer valid" = "此账户的凭据不再有效";
  409. /* name of a moderator who banned a participant */
  410. "Date:" = "Date:";
  411. /* No comment provided by engineer. */
  412. "days" = "天";
  413. /* No comment provided by engineer. */
  414. "Deck cards" = "看板卡片";
  415. /* No comment provided by engineer. */
  416. "Default" = "默认";
  417. /* No comment provided by engineer. */
  418. "Delete" = "删除";
  419. /* Short version for confirmation button. Complete text is 'Delete all messages'. */
  420. "Delete all" = "删除全部";
  421. /* No comment provided by engineer. */
  422. "Delete all messages" = "删除所有消息";
  423. /* No comment provided by engineer. */
  424. "Delete conversation" = "删除对话";
  425. /* No comment provided by engineer. */
  426. "Deleted user" = "Deleted user";
  427. /* No comment provided by engineer. */
  428. "Deleting message" = "正在删除消息";
  429. /* No comment provided by engineer. */
  430. "Demote from moderator" = "取消主持人资格";
  431. /* '{Microphone, Camera, ...} access is denied' */
  432. "Denied" = "拒绝";
  433. /* No comment provided by engineer. */
  434. "Description" = "描述";
  435. /* No comment provided by engineer. */
  436. "Description cannot be longer than 500 characters" = "Description cannot be longer than 500 characters";
  437. /* No comment provided by engineer. */
  438. "detected" = "检测到";
  439. /* No comment provided by engineer. */
  440. "Detecting language" = "检测语言";
  441. /* No comment provided by engineer. */
  442. "Diagnostics" = "诊断";
  443. /* No comment provided by engineer. */
  444. "Disable blur" = "Disable blur";
  445. /* No comment provided by engineer. */
  446. "Disable speaker" = "Disable speaker";
  447. /* No comment provided by engineer. */
  448. "Disconnected" = "连接已断开";
  449. /* No comment provided by engineer. */
  450. "Dismiss" = "不予理会";
  451. /* No comment provided by engineer. */
  452. "Dismiss notification" = "忽略通知";
  453. /* No comment provided by engineer. */
  454. "Do not disturb" = "请勿打扰";
  455. /* No comment provided by engineer. */
  456. "Do you really want to clear the file cache?" = "您真的要清除文件缓存吗?";
  457. /* No comment provided by engineer. */
  458. "Do you really want to clear the image cache?" = "您真的要清除图像缓存吗?";
  459. /* No comment provided by engineer. */
  460. "Do you really want to delete all messages in this conversation?" = "你真的想删除对话中的所有消息吗?";
  461. /* No comment provided by engineer. */
  462. "Do you really want to delete this conversation?" = "您真的想删除这个对话吗?";
  463. /* No comment provided by engineer. */
  464. "Do you really want to end this poll?" = "您真的要结束此项投票?";
  465. /* No comment provided by engineer. */
  466. "Do you really want to log out from this account?" = "您确定要登出这个账号吗?";
  467. /* No comment provided by engineer. */
  468. "Do you really want to remove this account?" = "您确定要移除这个账号吗?";
  469. /* No comment provided by engineer. */
  470. "Do you want to connect to the server anyway?" = "无论如何都要连接该服务器吗?";
  471. /* No comment provided by engineer. */
  472. "Do you want to enable your camera?" = "您想要启用摄像头吗?";
  473. /* No comment provided by engineer. */
  474. "Do you want to join this call?" = "您想要加入这个通话吗?";
  475. /* No comment provided by engineer. */
  476. "Do you want to share '%@' in the conversation?" = "您想要在这个对话里共享 '%@' 吗?";
  477. /* No comment provided by engineer. */
  478. "Do you want to stop the recording?" = "您想要停止录制吗?";
  479. /* No comment provided by engineer. */
  480. "Don't clear" = "不要清除";
  481. /* No comment provided by engineer. */
  482. "Double tap to change accounts or add a new one" = "双击更换账户或添加新账户";
  483. /* No comment provided by engineer. */
  484. "Double tap to dismiss authentication dialog" = "双击以取消身份验证对话框";
  485. /* No comment provided by engineer. */
  486. "Double tap to dismiss sharing options" = "双击取消共享选项";
  487. /* No comment provided by engineer. */
  488. "Double tap to edit profile" = "双击编辑个人资料";
  489. /* No comment provided by engineer. */
  490. "Double tap to enable or disable the camera" = "双击以启用或禁用摄像头";
  491. /* No comment provided by engineer. */
  492. "Double tap to enable or disable the microphone" = "双击以启用或禁用麦克风";
  493. /* No comment provided by engineer. */
  494. "Double tap to enable or disable the speaker" = "双击以启用或禁用扬声器";
  495. /* No comment provided by engineer. */
  496. "Double tap to end editing profile" = "双击结束编辑个人资料";
  497. /* No comment provided by engineer. */
  498. "Double tap to go to conversation information" = "双击以查看对话信息";
  499. /* No comment provided by engineer. */
  500. "Double tap to go to user profile and application settings" = "双击以查看用户资料和应用设置";
  501. /* No comment provided by engineer. */
  502. "Double tap to hang up the call" = "双击以挂断电话";
  503. /* No comment provided by engineer. */
  504. "Double tap to lower hand" = "双击把手放下";
  505. /* No comment provided by engineer. */
  506. "Double tap to open file browser" = "双击以打开文件浏览器";
  507. /* No comment provided by engineer. */
  508. "Double tap to select different audio routes" = "双击选择不同的语音路径";
  509. /* No comment provided by engineer. */
  510. "Double tap to send message" = "双击以发送消息";
  511. /* No comment provided by engineer. */
  512. "Double tap to share with selected conversations" = "双击和选中的对话共享";
  513. /* No comment provided by engineer. */
  514. "Double tap to show more actions" = "双击显示更多操作";
  515. /* No comment provided by engineer. */
  516. "Double tap to show or hide chat view" = "按两次来显示或隐藏聊天视图";
  517. /* No comment provided by engineer. */
  518. "Double tap to start a video call" = "双击以开始一个视频通话";
  519. /* No comment provided by engineer. */
  520. "Double tap to start a voice call" = "双击以开始一个语音通话";
  521. /* No comment provided by engineer. */
  522. "Double tap to stop recording" = "双击停止录制";
  523. /* No comment provided by engineer. */
  524. "Double tap to upgrade this voice call to a video call" = "双击以升级语音通话至视频通话";
  525. /* No comment provided by engineer. */
  526. "Duplicate session" = "重复会话";
  527. /* Edit a message or room participants */
  528. "Edit" = "编辑";
  529. /* A message was edited */
  530. "edited" = "edited";
  531. /* A message was edited by ... */
  532. "Edited by" = "Edited by";
  533. /* A message was edited by ... */
  534. "edited by" = "edited by";
  535. /* No comment provided by engineer. */
  536. "Editing Message" = "编辑消息中";
  537. /* No comment provided by engineer. */
  538. "Either you don't have chat permission or the conversation is read-only." = "您没有聊天权限,或对话为只读。";
  539. /* No comment provided by engineer. */
  540. "Email" = "电子邮件";
  541. /* No comment provided by engineer. */
  542. "Enable" = "启用";
  543. /* No comment provided by engineer. */
  544. "Enable blur" = "Enable blur";
  545. /* No comment provided by engineer. */
  546. "Enable screensharing" = "Enable screensharing";
  547. /* No comment provided by engineer. */
  548. "Enable speaker" = "Enable speaker";
  549. /* No comment provided by engineer. */
  550. "End call" = "结束通话";
  551. /* No comment provided by engineer. */
  552. "End call for everyone" = "End call for everyone";
  553. /* No comment provided by engineer. */
  554. "End poll" = "结束投票";
  555. /* No comment provided by engineer. */
  556. "Error occurred when creating a reminder" = "Error occurred when creating a reminder";
  557. /* No comment provided by engineer. */
  558. "Error occurred while editing a message" = "Error occurred while editing a message";
  559. /* External signaling used */
  560. "External" = "外部";
  561. /* No comment provided by engineer. */
  562. "Failed to accept invitation" = "Failed to accept invitation";
  563. /* No comment provided by engineer. */
  564. "Failed to clear reminder" = "Failed to clear reminder";
  565. /* No comment provided by engineer. */
  566. "Failed to connect to %@" = "连接至%@失败";
  567. /* No comment provided by engineer. */
  568. "Failed to forward message" = "转发消息失败";
  569. /* No comment provided by engineer. */
  570. "Failed to reject invitation" = "Failed to reject invitation";
  571. /* No comment provided by engineer. */
  572. "Failed to send message" = "发送消息失败";
  573. /* No comment provided by engineer. */
  574. "Failed to share recording" = "分享录制失败";
  575. /* No comment provided by engineer. */
  576. "Failed to unban selected entry" = "Failed to unban selected entry";
  577. /* No comment provided by engineer. */
  578. "Federated" = "联合云";
  579. /* No comment provided by engineer. */
  580. "Fetching status …" = "正在获取状态 ...";
  581. /* Filename of a file */
  582. "File" = "File";
  583. /* No comment provided by engineer. */
  584. "Files" = "文件";
  585. /* No comment provided by engineer. */
  586. "For password reset and notifications" = "用于密码重置和通知 ";
  587. /* No comment provided by engineer. */
  588. "Format" = "格式";
  589. /* No comment provided by engineer. */
  590. "Forward" = "转发";
  591. /* No comment provided by engineer. */
  592. "Forward to" = "转发到";
  593. /* 'From' which language user wants to translate text */
  594. "From" = "来自";
  595. /* from Alice at nextcloud.local */
  596. "from %@ at %@" = "from %1$@ at %2$@";
  597. /* No comment provided by engineer. */
  598. "Full name" = "完整姓名";
  599. /* No comment provided by engineer. */
  600. "Get source code" = "获取源代码";
  601. /* No comment provided by engineer. */
  602. "GitHub API error" = "GitHub API错误";
  603. /* Give consent to the recording of the call and join that call */
  604. "Give consent and join call" = "Give consent and join call";
  605. /* No comment provided by engineer. */
  606. "guest" = "访客";
  607. /* No comment provided by engineer. */
  608. "Guest" = "访客";
  609. /* No comment provided by engineer. */
  610. "Guests access" = "来宾访问";
  611. /* No comment provided by engineer. */
  612. "Guests app enabled?" = "Guests app enabled?";
  613. /* No comment provided by engineer. */
  614. "Hang up" = "挂断";
  615. /* No comment provided by engineer. */
  616. "hours" = "小时";
  617. /* No comment provided by engineer. */
  618. "If you delete the conversation, it will also be deleted for %@" = "如果您删除对话,它也将会从%@处删除。";
  619. /* No comment provided by engineer. */
  620. "If you delete the conversation, it will also be deleted for all other participants." = "如果您删除了此对话,它也将会从所有其他参与者处删除。";
  621. /* No comment provided by engineer. */
  622. "If you enable your camera, this call will be interrupted for a few seconds." = "如果启用摄像头,此通话将被中断几秒钟。";
  623. /* No comment provided by engineer. */
  624. "If you're using multiple servers, you need to check all of them." = "如果您使用多个服务器,请检查全部服务器。";
  625. /* No comment provided by engineer. */
  626. "Images, files, voice messages…" = "图片、文件、语音消息";
  627. /* No comment provided by engineer. */
  628. "Import account" = "导入账号";
  629. /* No comment provided by engineer. */
  630. "in" = "里";
  631. /* No comment provided by engineer. */
  632. "Include calls in call history" = "Include calls in call history";
  633. /* Internal signaling used */
  634. "Internal" = "内部";
  635. /* Internal note about why a user/guest was banned */
  636. "Internal note" = "Internal note";
  637. /* No comment provided by engineer. */
  638. "Invalid server address" = "服务器地址无效";
  639. /* No comment provided by engineer. */
  640. "Invisible" = "不可见";
  641. /* No comment provided by engineer. */
  642. "Invitation resent" = "已重发邀请";
  643. /* No comment provided by engineer. */
  644. "Invitations resent" = "已重发邀请";
  645. /* Alice is typing… */
  646. "is typing…" = "正在输入……";
  647. /* It seems that {app name} is not installed in your server. */
  648. "It seems that %@ is not installed in your server." = "似乎您的服务器未安装%@。";
  649. /* No comment provided by engineer. */
  650. "It seems that there is no internet connection." = "似乎没有互联网连接";
  651. /* No comment provided by engineer. */
  652. "Join a conversation or start a new one" = "加入一个对话或开始一个新的对话";
  653. /* No comment provided by engineer. */
  654. "Join call (audio only)" = "加入通话(仅语音)";
  655. /* No comment provided by engineer. */
  656. "Join call with video" = "加入视频通话";
  657. /* No comment provided by engineer. */
  658. "Join open conversations" = "Join open conversations";
  659. /* Last subscription to the push notification server */
  660. "Last subscription" = "最后订阅";
  661. /* No comment provided by engineer. */
  662. "Last sync" = "上次同步";
  663. /* Remind me later today about that message */
  664. "Later today" = "Later today";
  665. /* No comment provided by engineer. */
  666. "Leave" = "离开";
  667. /* No comment provided by engineer. */
  668. "Leave conversation" = "离开对话";
  669. /* No comment provided by engineer. */
  670. "less than a minute ago" = "少于1分钟";
  671. /* No comment provided by engineer. */
  672. "Link https://…" = "链接 https://… ";
  673. /* No comment provided by engineer. */
  674. "Linked file" = "连接的文件";
  675. /* No comment provided by engineer. */
  676. "Load more results" = "加载更多结果";
  677. /* No comment provided by engineer. */
  678. "Lobby" = "休息室";
  679. /* No comment provided by engineer. */
  680. "Lobby is still active and you're not a moderator" = "大厅仍然活跃,你不是版主";
  681. /* No comment provided by engineer. */
  682. "Local" = "本地";
  683. /* No comment provided by engineer. */
  684. "Location" = "位置";
  685. /* No comment provided by engineer. */
  686. "Location access" = "位置权限";
  687. /* No comment provided by engineer. */
  688. "Location service has been denied. Check your settings." = "位置服务被拒绝。检查你的设置。";
  689. /* No comment provided by engineer. */
  690. "Location service is not enabled" = "位置服务未启用";
  691. /* No comment provided by engineer. */
  692. "Locations" = "地点";
  693. /* No comment provided by engineer. */
  694. "Lock conversation" = "锁定对话";
  695. /* No comment provided by engineer. */
  696. "Log in" = "登录";
  697. /* No comment provided by engineer. */
  698. "Log out" = "登出";
  699. /* No comment provided by engineer. */
  700. "Logged out" = "已退出";
  701. /* No comment provided by engineer. */
  702. "Lower hand" = "放下手 ";
  703. /* TRANSLATORS this is used when no meeting start time is set and the meeting will be started manually */
  704. "Manual" = "手动";
  705. /* No comment provided by engineer. */
  706. "Mark as read" = "标为已读";
  707. /* No comment provided by engineer. */
  708. "Mark as unread" = "标为未读";
  709. /* No comment provided by engineer. */
  710. "Match system contacts" = "匹配系统联系人";
  711. /* No comment provided by engineer. */
  712. "Media" = "媒体文件";
  713. /* No comment provided by engineer. */
  714. "Meeting ID" = "会议 ID";
  715. /* No comment provided by engineer. */
  716. "Meeting settings" = "会议设置";
  717. /* 'Mentioned' meaning 'Mentioned conversations' */
  718. "Mentioned" = "已提及";
  719. /* No comment provided by engineer. */
  720. "Message copied" = "已复制消息";
  721. /* No comment provided by engineer. */
  722. "Message could not be deleted because it is too old" = "无法删除消息,因为它距今太久";
  723. /* No comment provided by engineer. */
  724. "Message deleted successfully" = "成功删除了消息";
  725. /* No comment provided by engineer. */
  726. "Message deleted successfully, but Matterbridge is configured and the message might already be distributed to other services" = "消息已成功删除,但因已配置了 Matterbridge,消息可能已分发到其他服务";
  727. /* No comment provided by engineer. */
  728. "Message expiration" = "消息过期";
  729. /* No comment provided by engineer. */
  730. "Message expiration time" = "消息过期时间";
  731. /* No comment provided by engineer. */
  732. "Messages" = "消息";
  733. /* No comment provided by engineer. */
  734. "Microphone" = "麦克风";
  735. /* No comment provided by engineer. */
  736. "Microphone access" = "麦克风权限";
  737. /* No comment provided by engineer. */
  738. "Microphone access is not allowed. Check your settings." = "未允许访问麦克风。检查你的设置";
  739. /* No comment provided by engineer. */
  740. "Microphone disabled" = "麦克风已禁用";
  741. /* No comment provided by engineer. */
  742. "Microphone enabled" = "麦克风已启用";
  743. /* No comment provided by engineer. */
  744. "minutes" = "分钟";
  745. /* No comment provided by engineer. */
  746. "Missed call from" = "错过了通话";
  747. /* No comment provided by engineer. */
  748. "Missing phone number information" = "缺少电话号码信息";
  749. /* The signaling mode used */
  750. "Mode" = "模式";
  751. /* No comment provided by engineer. */
  752. "moderator" = "主持人";
  753. /* No comment provided by engineer. */
  754. "Modification date" = "修改日期";
  755. /* No comment provided by engineer. */
  756. "More actions" = "更多操作 ";
  757. /* No comment provided by engineer. */
  758. "Multiple answers" = "多选答案";
  759. /* No comment provided by engineer. */
  760. "Mute all notifications" = "对所有通知进行静音处理";
  761. /* No comment provided by engineer. */
  762. "My location" = "我的位置";
  763. /* No comment provided by engineer. */
  764. "Name" = "名称";
  765. /* No comment provided by engineer. */
  766. "Nearby places" = "附近地点";
  767. /* No comment provided by engineer. */
  768. "Network available" = "网络可用";
  769. /* No comment provided by engineer. */
  770. "Network not available" = "网络不可用";
  771. /* Never subscribed to the push notification server */
  772. "Never subscribed" = "未订阅";
  773. /* No comment provided by engineer. */
  774. "New conversation" = "新的对话";
  775. /* No comment provided by engineer. */
  776. "New poll" = "新建投票";
  777. /* Remind me next week about that message */
  778. "Next week" = "Next week";
  779. /* No comment provided by engineer. */
  780. "Nextcloud server not found" = "Nextcloud服务器没有找到";
  781. /* No comment provided by engineer. */
  782. "No" = "否";
  783. /* No comment provided by engineer. */
  784. "No actions available" = "没有可用的操作";
  785. /* No comment provided by engineer. */
  786. "No banned users or guests" = "No banned users or guests";
  787. /* No comment provided by engineer. */
  788. "No description provided" = "没有提供描述";
  789. /* No comment provided by engineer. */
  790. "No files in here" = "这里没有文件";
  791. /* No comment provided by engineer. */
  792. "No messages yet, start the conversation!" = "还没有消息,开始对话!";
  793. /* No comment provided by engineer. */
  794. "No participants found" = "未找到参与者";
  795. /* No comment provided by engineer. */
  796. "No permission to join this conversation" = "No permission to join this conversation";
  797. /* No comment provided by engineer. */
  798. "No response from server" = "服务器无响应";
  799. /* No comment provided by engineer. */
  800. "No results found" = "未找到结果";
  801. /* No comment provided by engineer. */
  802. "No shared items" = "无共享项目";
  803. /* '{Microphone, Camera, ...} access was not requested' */
  804. "Not requested" = "未请求";
  805. /* No comment provided by engineer. */
  806. "Not supported" = "不支持";
  807. /* No comment provided by engineer. */
  808. "Note to self" = "Note to self";
  809. /* Internal note for moderators, usually a reason for this ban */
  810. "Note:" = "Note:";
  811. /* No comment provided by engineer. */
  812. "Notifications" = "通知";
  813. /* No comment provided by engineer. */
  814. "Notifications app enabled?" = "通知应用已开启?";
  815. /* No comment provided by engineer. */
  816. "Notifications: %@" = "通知:%@";
  817. /* No comment provided by engineer. */
  818. "Off" = "关闭";
  819. /* No comment provided by engineer. */
  820. "Offline" = "离线";
  821. /* No comment provided by engineer. */
  822. "Offline, only showing downloaded messages" = "离线,仅显示已下载的消息";
  823. /* No comment provided by engineer. */
  824. "OK" = "确认";
  825. /* Will be used as the caller name when a VoIP notification can't be decrypted */
  826. "Old account" = "旧账户";
  827. /* No comment provided by engineer. */
  828. "Once a conversation is left, to rejoin a closed conversation, an invite is needed. An open conversation can be rejoined at any time." = "一旦离开对话,如果要重新加入已关闭的对话,则需要一个邀请。公开对话可以在任何时候重新加入。";
  829. /* No comment provided by engineer. */
  830. "Online" = "在线";
  831. /* No comment provided by engineer. */
  832. "Online status" = "在线状态";
  833. /* No comment provided by engineer. */
  834. "Only normal chat messages can be deleted" = "只有正常的聊天消息可被删除";
  835. /* No comment provided by engineer. */
  836. "Only synchronize to trusted servers" = "只同步到受信任的服务器";
  837. /* No comment provided by engineer. */
  838. "Only visible to people matched via phone number integration" = "只对通过电话号码集成匹配的人可见 ";
  839. /* No comment provided by engineer. */
  840. "Only visible to people on this instance and guests" = "仅对该实例用户和来宾可见";
  841. /* No comment provided by engineer. */
  842. "Open" = "Open";
  843. /* No comment provided by engineer. */
  844. "Open app settings" = "打开程序设置";
  845. /* No comment provided by engineer. */
  846. "Open conversation to registered users" = "向注册用户开放对话 ";
  847. /* TRANSLATORS 'Open conversations' as a type of conversation. 'Open conversations' are conversations that can be found by other users */
  848. "Open conversations" = "开启对话";
  849. /* No comment provided by engineer. */
  850. "Open in %@" = "打开于 %@";
  851. /* No comment provided by engineer. */
  852. "Other Accounts" = "其他账户";
  853. /* No comment provided by engineer. */
  854. "Others" = "其它";
  855. /* Owner of a repository */
  856. "Owner" = "所有者";
  857. /* No comment provided by engineer. */
  858. "Participants" = "Participants";
  859. /* No comment provided by engineer. */
  860. "Password" = "密码";
  861. /* No comment provided by engineer. */
  862. "Pending invitations" = "Pending invitations";
  863. /* No comment provided by engineer. */
  864. "Phone number" = "电话号码";
  865. /* No comment provided by engineer. */
  866. "Phone number integration" = "电话号码集成";
  867. /* No comment provided by engineer. */
  868. "Phone number set successfully" = "成功设置电话号码";
  869. /* No comment provided by engineer. */
  870. "Photo Library" = "照片库";
  871. /* No comment provided by engineer. */
  872. "Photo library access" = "相册权限";
  873. /* No comment provided by engineer. */
  874. "Pick date & time" = "Pick date & time";
  875. /* No comment provided by engineer. */
  876. "Please check that you entered a valid server address." = "请检查您是否输入了有效的服务器地址。";
  877. /* No comment provided by engineer. */
  878. "Please check that you entered the correct Nextcloud server address." = "请检查您是否输入了正确的 Nextcloud 服务器地址。";
  879. /* No comment provided by engineer. */
  880. "Please contact your system administrator." = "Please contact your system administrator.";
  881. /* Please update your server with the latest {app name} version available. */
  882. "Please update your server with the latest %@ version available." = "请升级您的服务器至最新的%@。";
  883. /* No comment provided by engineer. */
  884. "Please update." = "Please update.";
  885. /* No comment provided by engineer. */
  886. "Poll" = "投票";
  887. /* No comment provided by engineer. */
  888. "Poll results" = "投票结果";
  889. /* No comment provided by engineer. */
  890. "Polls" = "投票";
  891. /* No comment provided by engineer. */
  892. "Preview" = "预览";
  893. /* No comment provided by engineer. */
  894. "Privacy" = "隐私";
  895. /* No comment provided by engineer. */
  896. "Private" = "私有";
  897. /* No comment provided by engineer. */
  898. "Private poll" = "私人投票";
  899. /* No comment provided by engineer. */
  900. "Profile" = "简介";
  901. /* No comment provided by engineer. */
  902. "Profile picture" = "个人资料图片";
  903. /* No comment provided by engineer. */
  904. "Promote to moderator" = "设置为主持人";
  905. /* No comment provided by engineer. */
  906. "Published" = "已发布 ";
  907. /* No comment provided by engineer. */
  908. "Push notifications" = "推送通知";
  909. /* No comment provided by engineer. */
  910. "Question" = "问题";
  911. /* No comment provided by engineer. */
  912. "Raise hand" = "举起手 ";
  913. /* No comment provided by engineer. */
  914. "Reachable?" = "可用?";
  915. /* No comment provided by engineer. */
  916. "Reactions" = "回应";
  917. /* No comment provided by engineer. */
  918. "Read status" = "消息读取状态 ";
  919. /* No comment provided by engineer. */
  920. "Received call from an old account" = "接收来自旧账户的通话";
  921. /* No comment provided by engineer. */
  922. "Record voice message" = "录制语音消息";
  923. /* No comment provided by engineer. */
  924. "Recording" = "录音";
  925. /* No comment provided by engineer. */
  926. "Recording consent is required" = "Recording consent is required";
  927. /* No comment provided by engineer. */
  928. "Recording consent required for joining the call" = "Recording consent required for joining the call";
  929. /* No comment provided by engineer. */
  930. "Recordings" = "记录";
  931. /* No comment provided by engineer. */
  932. "Redo" = "恢复上个操作";
  933. /* No comment provided by engineer. */
  934. "Reference API supported?" = "Reference API supported?";
  935. /* No comment provided by engineer. */
  936. "Reject" = "Reject";
  937. /* No comment provided by engineer. */
  938. "Reminder was successfully cleared" = "Reminder was successfully cleared";
  939. /* No comment provided by engineer. */
  940. "Reminder was successfully set" = "Reminder was successfully set";
  941. /* No comment provided by engineer. */
  942. "Remote server is unreachable" = "Remote server is unreachable";
  943. /* No comment provided by engineer. */
  944. "Remove" = "移除";
  945. /* No comment provided by engineer. */
  946. "Remove account" = "移除账号";
  947. /* No comment provided by engineer. */
  948. "Remove from favorites" = "从收藏夹移除";
  949. /* No comment provided by engineer. */
  950. "Remove group and members" = "移除群组和成员";
  951. /* No comment provided by engineer. */
  952. "Remove old duplicate entries and leave only the most recent entries." = "删除旧的重复条目,只留下最近的条目。";
  953. /* No comment provided by engineer. */
  954. "Remove participant" = "远程参与者";
  955. /* No comment provided by engineer. */
  956. "Remove password" = "移除密码";
  957. /* No comment provided by engineer. */
  958. "Remove team and members" = "Remove team and members";
  959. /* No comment provided by engineer. */
  960. "Reply" = "回复";
  961. /* No comment provided by engineer. */
  962. "Reply privately" = "私下回复";
  963. /* Name of a repository */
  964. "Repo" = "仓库";
  965. /* No comment provided by engineer. */
  966. "Resend" = "重新发送";
  967. /* No comment provided by engineer. */
  968. "Resend invitation" = "重发邀请";
  969. /* No comment provided by engineer. */
  970. "Resend invitations" = "重发邀请";
  971. /* Results of a poll */
  972. "Results" = "结果";
  973. /* No comment provided by engineer. */
  974. "Retry" = "重试";
  975. /* Save conversation description */
  976. "Save" = "保存";
  977. /* No comment provided by engineer. */
  978. "Say hi to your friends and colleagues!" = "跟你的朋友和同事打个招呼!";
  979. /* No comment provided by engineer. */
  980. "Scanning QR Codes is not supported on this device." = "此设备不支持扫描二维码。";
  981. /* No comment provided by engineer. */
  982. "Screensharing stopped" = "Screensharing stopped";
  983. /* No comment provided by engineer. */
  984. "Search" = "搜索";
  985. /* No comment provided by engineer. */
  986. "Search for places" = "搜索地点";
  987. /* No comment provided by engineer. */
  988. "Select language" = "选择语言";
  989. /* No comment provided by engineer. */
  990. "Send" = "发送";
  991. /* No comment provided by engineer. */
  992. "Send a reaction" = "发送回应";
  993. /* No comment provided by engineer. */
  994. "Send call notification" = "发送通话通知";
  995. /* No comment provided by engineer. */
  996. "Send message" = "发送消息";
  997. /* No comment provided by engineer. */
  998. "Send without notification" = "发送而不通知";
  999. /* No comment provided by engineer. */
  1000. "Send/Accept" = "发送/接受";
  1001. /* A message has been sent without notifications */
  1002. "Sent without notification" = "Sent without notification";
  1003. /* No comment provided by engineer. */
  1004. "Server" = "服务器";
  1005. /* No comment provided by engineer. */
  1006. "Server address https://…" = "服务器地址 https://…";
  1007. /* No comment provided by engineer. */
  1008. "Server is currently in maintenance mode" = "服务器当前在维护模式下";
  1009. /* No comment provided by engineer. */
  1010. "Set" = "设置";
  1011. /* No comment provided by engineer. */
  1012. "Set new password" = "Set new password";
  1013. /* No comment provided by engineer. */
  1014. "Set new password:" = "设置新密码:";
  1015. /* No comment provided by engineer. */
  1016. "Set password" = "设置密码";
  1017. /* No comment provided by engineer. */
  1018. "Set password:" = "设置密码:";
  1019. /* Remind me later about that message */
  1020. "Set reminder" = "Set reminder";
  1021. /* No comment provided by engineer. */
  1022. "Set status message" = "设置状态消息";
  1023. /* No comment provided by engineer. */
  1024. "Settings" = "设置";
  1025. /* No comment provided by engineer. */
  1026. "Share" = "共享";
  1027. /* No comment provided by engineer. */
  1028. "Share a file from your Nextcloud" = "从您的 Nextcloud 共享一个新文件";
  1029. /* No comment provided by engineer. */
  1030. "Share current location" = "分享当前位置";
  1031. /* No comment provided by engineer. */
  1032. "Share link" = "共享链接";
  1033. /* No comment provided by engineer. */
  1034. "Share location" = "分享位置";
  1035. /* Share the location of a pin that has been dropped in a map view */
  1036. "Share pin location" = "分享固定位置";
  1037. /* No comment provided by engineer. */
  1038. "Share to chat" = "Share to chat";
  1039. /* No comment provided by engineer. */
  1040. "Share with" = "分享对象";
  1041. /* No comment provided by engineer. */
  1042. "Shared items" = "已共享的项目";
  1043. /* No comment provided by engineer. */
  1044. "Shared location" = "已分享的位置";
  1045. /* No comment provided by engineer. */
  1046. "Sharing to a federated conversation is not supported." = "Sharing to a federated conversation is not supported.";
  1047. /* No comment provided by engineer. */
  1048. "Show more…" = "显示更多……";
  1049. /* No comment provided by engineer. */
  1050. "Signaling" = "信号发送中";
  1051. /* No comment provided by engineer. */
  1052. "SIP dial-in" = "SIP 拨号";
  1053. /* No comment provided by engineer. */
  1054. "Skip" = "跳过";
  1055. /* No comment provided by engineer. */
  1056. "Slide to cancel" = "滑动取消";
  1057. /* No comment provided by engineer. */
  1058. "Some messages not shown, will be downloaded when online" = "一些消息未显示,将在在线时下载";
  1059. /* No comment provided by engineer. */
  1060. "Source code" = "Source code";
  1061. /* No comment provided by engineer. */
  1062. "Speaker" = "扬声器";
  1063. /* No comment provided by engineer. */
  1064. "Speaker disabled" = "扬声器已禁用";
  1065. /* No comment provided by engineer. */
  1066. "Speaker enabled" = "扬声器已启用";
  1067. /* No comment provided by engineer. */
  1068. "Speech recognition access is not allowed. Check your settings." = "无权使用语音识别。请检查您的设置。";
  1069. /* No comment provided by engineer. */
  1070. "Speech recognition failed" = "语音识别失败";
  1071. /* No comment provided by engineer. */
  1072. "Start recording" = "开始录制";
  1073. /* No comment provided by engineer. */
  1074. "Start time" = "开始时间";
  1075. /* No comment provided by engineer. */
  1076. "Status" = "状态";
  1077. /* No comment provided by engineer. */
  1078. "Status message" = "状态消息";
  1079. /* Action to 'Stop' a recording */
  1080. "Stop" = "停止";
  1081. /* No comment provided by engineer. */
  1082. "Stop recording" = "停止录制";
  1083. /* No comment provided by engineer. */
  1084. "Stop screensharing" = "Stop screensharing";
  1085. /* No comment provided by engineer. */
  1086. "STUN servers" = "STUN 服务器";
  1087. /* No comment provided by engineer. */
  1088. "Submit vote" = "提交投票";
  1089. /* No comment provided by engineer. */
  1090. "Switch account" = "Switch account";
  1091. /* No comment provided by engineer. */
  1092. "Switching to another conversation …" = "切换到另一个对话……";
  1093. /* No comment provided by engineer. */
  1094. "Synchronize to trusted servers and the global and public address book" = "同步到受信任的服务器、全局地址簿和公共地址簿 ";
  1095. /* No comment provided by engineer. */
  1096. "Talk" = "通话";
  1097. /* No comment provided by engineer. */
  1098. "Tap and hold to record a voice message" = "长按录制语音消息";
  1099. /* No comment provided by engineer. */
  1100. "Tap and hold to record a voice message, release the button to send it." = "长按录制语音信息,松开按钮发送消息。";
  1101. /* No comment provided by engineer. */
  1102. "The app is too old and no longer supported by this server." = "The app is too old and no longer supported by this server.";
  1103. /* No comment provided by engineer. */
  1104. "The call has been running for one hour" = "The call has been running for one hour";
  1105. /* No comment provided by engineer. */
  1106. "The call might be recorded" = "The call might be recorded";
  1107. /* No comment provided by engineer. */
  1108. "The password is wrong" = "密码是错误的";
  1109. /* No comment provided by engineer. */
  1110. "The recording might include your voice, video from camera, and screen share. Your consent is required before joining the call." = "The recording might include your voice, video from camera, and screen share. Your consent is required before joining the call.";
  1111. /* No comment provided by engineer. */
  1112. "There is no account for user %@ in server %@ configured in this app." = "此应用中配置的服务器 %2$@ 上没有用户名为 %1$@ 的账户。";
  1113. /* No comment provided by engineer. */
  1114. "This call is being recorded" = "此通话已被录制";
  1115. /* No comment provided by engineer. */
  1116. "This conversation is read-only" = "对话是只读状态";
  1117. /* The meeting start time will be displayed after this text e.g (This meeting is scheduled for tomorrow at 10:00) */
  1118. "This meeting is scheduled for" = "此会议预定的开始时间为";
  1119. /* No comment provided by engineer. */
  1120. "This usually indicates that this device was previously used for an account, which was not properly removed from the server." = "这通常表示此设备曾用于一个已经从服务器中未被正确删除的账户。";
  1121. /* No comment provided by engineer. */
  1122. "This week" = "本周";
  1123. /* Remind me this weekend about that message */
  1124. "This weekend" = "This weekend";
  1125. /* No comment provided by engineer. */
  1126. "This will impact the functionality of this app. Please review your settings." = "这将影响本程序的功能。请检查您的设置。";
  1127. /* 'To' which language user wants to translate text */
  1128. "To" = "至";
  1129. /* No comment provided by engineer. */
  1130. "To resolve this issue, use the web interface and go to \"Settings -> Security\"." = "To resolve this issue, use the web interface and go to \"Settings -> Security\".";
  1131. /* TRANSLATORS this is for sending something 'to' a user. E.g. 'To: John Doe' */
  1132. "To:" = "至:";
  1133. /* No comment provided by engineer. */
  1134. "Today" = "今天";
  1135. /* Remind me tomorrow about that message */
  1136. "Tomorrow" = "Tomorrow";
  1137. /* TRANSLATORS this is for transcribing a voice message to text */
  1138. "Transcribe" = "抄录";
  1139. /* TRANSLATORS transcript of a voice-message */
  1140. "Transcript" = "抄本";
  1141. /* No comment provided by engineer. */
  1142. "Translate" = "Translate";
  1143. /* No comment provided by engineer. */
  1144. "Translation" = "翻译";
  1145. /* No comment provided by engineer. */
  1146. "Translation failed" = "翻译失败";
  1147. /* No comment provided by engineer. */
  1148. "TURN servers" = "TURN 服务器";
  1149. /* No comment provided by engineer. */
  1150. "Twitter" = "Twitter ";
  1151. /* No comment provided by engineer. */
  1152. "Twitter handle @…" = "Twitter 用户名 @… ";
  1153. /* No comment provided by engineer. */
  1154. "Typing indicator" = "输入指示器";
  1155. /* No comment provided by engineer. */
  1156. "Typing indicators are only available when using a high performance backend (HPB)" = "Typing indicators are only available when using a high performance backend (HPB)";
  1157. /* No comment provided by engineer. */
  1158. "Unable to get context of the message" = "Unable to get context of the message";
  1159. /* No comment provided by engineer. */
  1160. "Unable to get conversation of the message" = "Unable to get conversation of the message";
  1161. /* No comment provided by engineer. */
  1162. "Unable to load file" = "无法加载文件";
  1163. /* No comment provided by engineer. */
  1164. "Unable to open file" = "无法打开文件";
  1165. /* No comment provided by engineer. */
  1166. "Unavailable" = "不可用";
  1167. /* No comment provided by engineer. */
  1168. "Unban" = "Unban";
  1169. /* No comment provided by engineer. */
  1170. "Under \"Devices & sessions\" check if there are duplicate entries for the same device." = "Under \"Devices & sessions\" check if there are duplicate entries for the same device.";
  1171. /* No comment provided by engineer. */
  1172. "Undo" = "撤销操作";
  1173. /* No comment provided by engineer. */
  1174. "Undo Typing" = "撤销输入内容";
  1175. /* No comment provided by engineer. */
  1176. "Unknown" = "未知";
  1177. /* No comment provided by engineer. */
  1178. "Unknown error" = "未知错误";
  1179. /* No comment provided by engineer. */
  1180. "Unknown error occurred" = "发生未知错误";
  1181. /* 'Unread' meaning 'Unread conversations' */
  1182. "Unread" = "Unread";
  1183. /* No comment provided by engineer. */
  1184. "Unread mentions" = "未读的提及";
  1185. /* No comment provided by engineer. */
  1186. "Unread messages" = "未读消息";
  1187. /* No comment provided by engineer. */
  1188. "Update" = "Update";
  1189. /* No comment provided by engineer. */
  1190. "Upload failed" = "上传失败";
  1191. /* No comment provided by engineer. */
  1192. "Uploading %ld elements" = "正在上传 %ld 元素";
  1193. /* No comment provided by engineer. */
  1194. "Uploading 1 element" = "正在上传一个元素";
  1195. /* No comment provided by engineer. */
  1196. "User" = "用户";
  1197. /* No comment provided by engineer. */
  1198. "User profile and settings" = "用户资料和设置";
  1199. /* No comment provided by engineer. */
  1200. "User status supported?" = "支持用户状态?";
  1201. /* No comment provided by engineer. */
  1202. "Users" = "用户";
  1203. /* No comment provided by engineer. */
  1204. "Version" = "版本";
  1205. /* No comment provided by engineer. */
  1206. "Video call" = "视频通话";
  1207. /* No comment provided by engineer. */
  1208. "Video quality" = "视频质量";
  1209. /* Conversation visibility settings */
  1210. "Visibility" = "Visibility";
  1211. /* No comment provided by engineer. */
  1212. "Voice call" = "语音通话";
  1213. /* No comment provided by engineer. */
  1214. "Voice messages" = "语音消息";
  1215. /* No comment provided by engineer. */
  1216. "Waiting for %@ to join call …" = "等待%@加入通话中 ...";
  1217. /* No comment provided by engineer. */
  1218. "Waiting for others to join call …" = "等待其他人加入通话 ...";
  1219. /* No comment provided by engineer. */
  1220. "Website" = "网站";
  1221. /* No comment provided by engineer. */
  1222. "What is your status?" = "你什么状态?";
  1223. /* No comment provided by engineer. */
  1224. "Write message, @ to mention someone …" = "输入消息,用 @ 提及某人…";
  1225. /* No comment provided by engineer. */
  1226. "Yes" = "是";
  1227. /* No comment provided by engineer. */
  1228. "Yesterday" = "昨天";
  1229. /* No comment provided by engineer. */
  1230. "You" = "您";
  1231. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate it */
  1232. "You added {user0} and %ld more participants" = "You added {user0} and %ld more participants";
  1233. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1234. "You added {user0} and {user1}" = "You added {user0} and {user1}";
  1235. /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
  1236. "You and %ld more participants joined the call" = "You and %ld more participants joined the call";
  1237. /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
  1238. "You and %ld more participants left the call" = "You and %ld more participants left the call";
  1239. /* Please put {actor0} placeholder in the correct position on the translated text but do not translate it */
  1240. "You and {actor0} joined the call" = "You and {actor0} joined the call";
  1241. /* Please put {actor0} placeholder in the correct position on the translated text but do not translate it */
  1242. "You and {actor0} left the call" = "You and {actor0} left the call";
  1243. /* No comment provided by engineer. */
  1244. "You are currently waiting in the lobby" = "您当前正在休息室等待。";
  1245. /* No comment provided by engineer. */
  1246. "You are not part of any conversation" = "你不是任何对话的一部分";
  1247. /* No comment provided by engineer. */
  1248. "You are not part of any conversation. Press + to start a new one." = "您尚未参与任何对话。点击“+”开始一个新的对话。";
  1249. /* No comment provided by engineer. */
  1250. "You can set your phone number so other users will be able to find you" = "你可以设置你的电话号码,这样其他用户能够找到你";
  1251. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1252. "You demoted {user0} and %ld more participants from moderators" = "You demoted {user0} and %ld more participants from moderators";
  1253. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1254. "You demoted {user0} and {user1} from moderators" = "You demoted {user0} and {user1} from moderators";
  1255. /* No comment provided by engineer. */
  1256. "You have %ld pending invitations" = "You have %ld pending invitations";
  1257. /* No comment provided by engineer. */
  1258. "You have been muted by a moderator" = "您已被主持人静音";
  1259. /* No comment provided by engineer. */
  1260. "You need to promote a new moderator before you can leave %@." = "在您离开%@之前您需要推举一位新的主持人。";
  1261. /* No comment provided by engineer. */
  1262. "You need to promote a new moderator before you can leave this conversation" = "在您离开对话之前您需要推举一位新的主持人。";
  1263. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1264. "You promoted {user0} and %ld more participants to moderators" = "You promoted {user0} and %ld more participants to moderators";
  1265. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1266. "You promoted {user0} and {user1} to moderators" = "You promoted {user0} and {user1} to moderators";
  1267. /* No comment provided by engineer. */
  1268. "You received a new notification" = "你收到了一个新通知";
  1269. /* No comment provided by engineer. */
  1270. "You reconnected to the call" = "You reconnected to the call";
  1271. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate it */
  1272. "You removed {user0} and %ld more participants" = "You removed {user0} and %ld more participants";
  1273. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1274. "You removed {user0} and {user1}" = "You removed {user0} and {user1}";
  1275. /* No comment provided by engineer. */
  1276. "Your email address" = "你的电子邮件地址";
  1277. /* No comment provided by engineer. */
  1278. "Your phone number" = "你的电话号码";
  1279. /* No comment provided by engineer. */
  1280. "Your PIN" = "你的 PIN 码 ";
  1281. /* No comment provided by engineer. */
  1282. "Your postal address" = "你的邮寄地址";
  1283. /* 'Zammad' is a product name */
  1284. "Zammad API error" = "Zammad API error";
  1285. /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1286. "{actor0} added you and %ld more participants" = "{actor0} added you and %ld more participants";
  1287. /* Please put {actor0} and {user0} placeholders in the correct position on the translated text but do not translate them */
  1288. "{actor0} added you and {user0}" = "{actor0} added you and {user0}";
  1289. /* Please put {actor0}, {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1290. "{actor0} added {user0} and %ld more participants" = "{actor0} added {user0} and %ld more participants";
  1291. /* Please put {actor0}, {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1292. "{actor0} added {user0} and {user1}" = "{actor0} added {user0} and {user1}";
  1293. /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1294. "{actor0} and %ld more participants joined the call" = "{actor0} and %ld more participants joined the call";
  1295. /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1296. "{actor0} and %ld more participants left the call" = "{actor0} and %ld more participants left the call";
  1297. /* Please put {actor0} and {actor1} placeholders in the correct position on the translated text but do not translate them */
  1298. "{actor0} and {actor1} joined the call" = "{actor0} and {actor1} joined the call";
  1299. /* Please put {actor0} and {actor1} placeholders in the correct position on the translated text but do not translate them */
  1300. "{actor0} and {actor1} left the call" = "{actor0} and {actor1} left the call";
  1301. /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1302. "{actor0} demoted you and %ld more participants from moderators" = "{actor0} demoted you and %ld more participants from moderators";
  1303. /* Please put {actor0} and {user0} placeholders in the correct position on the translated text but do not translate them */
  1304. "{actor0} demoted you and {user0} from moderators" = "{actor0} demoted you and {user0} from moderators";
  1305. /* Please put {actor0}, {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1306. "{actor0} demoted {user0} and %ld more participants from moderators" = "{actor0} demoted {user0} and %ld more participants from moderators";
  1307. /* Please put {actor0}, {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1308. "{actor0} demoted {user0} and {user1} from moderators" = "{actor0} demoted {user0} and {user1} from moderators";
  1309. /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1310. "{actor0} promoted you and %ld more participants to moderators" = "{actor0} promoted you and %ld more participants to moderators";
  1311. /* Please put {actor0} and {user0} placeholders in the correct position on the translated text but do not translate them */
  1312. "{actor0} promoted you and {user0} to moderators" = "{actor0} promoted you and {user0} to moderators";
  1313. /* Please put {actor0}, {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1314. "{actor0} promoted {user0} and %ld more participants to moderators" = "{actor0} promoted {user0} and %ld more participants to moderators";
  1315. /* Please put {actor0}, {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1316. "{actor0} promoted {user0} and {user1} to moderators" = "{actor0} promoted {user0} and {user1} to moderators";
  1317. /* Please put {actor0} placeholder in the correct position on the translated text but do not translate it */
  1318. "{actor0} reconnected to the call" = "{actor0} reconnected to the call";
  1319. /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1320. "{actor0} removed you and %ld more participants" = "{actor0} removed you and %ld more participants";
  1321. /* Please put {actor0} and {user0} placeholders in the correct position on the translated text but do not translate them */
  1322. "{actor0} removed you and {user0}" = "{actor0} removed you and {user0}";
  1323. /* Please put {actor0}, {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1324. "{actor0} removed {user0} and %ld more participants" = "{actor0} removed {user0} and %ld more participants";
  1325. /* Please put {actor0}, {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1326. "{actor0} removed {user0} and {user1}" = "{actor0} removed {user0} and {user1}";
  1327. /* No comment provided by engineer. */
  1328. "↓ New messages" = "↓ 新消息";