djangojs.po 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  3. # This file is distributed under the same license as the PACKAGE package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. # Translators:
  7. # ZZLL <zhuolun1996@gmail.com>, 2017
  8. # Paradox506 <Renyi_14@whu.edu.cn>, 2017
  9. # Mayne <dreama9ain@gmail.com>, 2017
  10. # cxgreat2014 <fwy1998@gmail.com>, 2018
  11. # 蚂蚁先生 <pzf_karl@hotmail.com>, 2019
  12. #
  13. #, fuzzy
  14. msgid ""
  15. msgstr ""
  16. "Project-Id-Version: PACKAGE VERSION\n"
  17. "Report-Msgid-Bugs-To: \n"
  18. "POT-Creation-Date: 2019-09-01 14:10+0000\n"
  19. "PO-Revision-Date: 2017-01-16 00:04+0000\n"
  20. "Last-Translator: 蚂蚁先生 <pzf_karl@hotmail.com>, 2019\n"
  21. "Language-Team: Chinese (China) (https://www.transifex.com/misago/teams/65369/zh_CN/)\n"
  22. "MIME-Version: 1.0\n"
  23. "Content-Type: text/plain; charset=UTF-8\n"
  24. "Content-Transfer-Encoding: 8bit\n"
  25. "Language: zh_CN\n"
  26. "Plural-Forms: nplurals=1; plural=0;\n"
  27. #: static/misago/admin/index.js:16
  28. msgid "defineLocaleOverride"
  29. msgstr "defineLocaleOverride"
  30. #: static/misago/js/es2015.js:1 static/misago/js/polyfill.js:1
  31. msgid "delete"
  32. msgstr "删除"
  33. #: static/misago/js/es2015.js:1 static/misago/js/polyfill.js:1
  34. msgid "has"
  35. msgstr "拥有"
  36. #: static/misago/js/es2015.js:1 static/misago/js/polyfill.js:1
  37. msgid "get"
  38. msgstr "获取"
  39. #: static/misago/js/es2015.js:2
  40. msgid "Promise-chain cycle"
  41. msgstr "Promise-chain cycle"
  42. #: static/misago/js/es2015.js:2
  43. msgid "Promise can't be resolved itself"
  44. msgstr "Promise can't be resolved itself"
  45. #: static/misago/js/misago.js:1
  46. msgid "the terms of service"
  47. msgstr "服务条款"
  48. #: static/misago/js/misago.js:1
  49. msgid "the privacy policy"
  50. msgstr "隐私政策"
  51. #: static/misago/js/misago.js:1
  52. msgid "I have read and accept %(agreement)s."
  53. msgstr "我已阅读并接受 %(agreement)s。"
  54. #: static/misago/js/misago.js:1
  55. msgid ""
  56. "Declining will result in immediate deactivation and deletion of your "
  57. "account. This action is not reversible."
  58. msgstr "拒绝将导致立即停用和删除你的帐号。此操作不可逆。"
  59. #: static/misago/js/misago.js:1
  60. msgid "Decline"
  61. msgstr "拒绝"
  62. #: static/misago/js/misago.js:1
  63. msgid "Accept and continue"
  64. msgstr "接受并继续"
  65. #: static/misago/js/misago.js:1 static/misago/js/misago.js:2
  66. #: static/misago/js/misago.js:3 static/misago/js/misago.js:4
  67. #: static/misago/js/misago.js:7 static/misago/js/misago.js:8
  68. #: static/misago/js/misago.js:10 static/misago/js/misago.js:12
  69. #: static/misago/js/misago.js:13 static/misago/js/misago.js:14
  70. #: static/misago/js/misago.js:15 static/misago/js/misago.js:16
  71. #: static/misago/js/misago.js:17 static/misago/js/misago.js:18
  72. #: static/misago/js/misago.js:19 static/misago/js/misago.js:20
  73. msgid "Close"
  74. msgstr "关闭"
  75. #: static/misago/js/misago.js:1 static/misago/js/misago.js:6
  76. msgid "Add participant"
  77. msgstr "添加参与者"
  78. #: static/misago/js/misago.js:1
  79. msgid "You have to enter user name."
  80. msgstr "你必须输入用户名。"
  81. #: static/misago/js/misago.js:1
  82. msgid "New participant has been added to thread."
  83. msgstr "新参与者已添加到话题中。"
  84. #: static/misago/js/misago.js:1
  85. msgid "User to add"
  86. msgstr "添加用户"
  87. #: static/misago/js/misago.js:1 static/misago/js/misago.js:2
  88. #: static/misago/js/misago.js:3 static/misago/js/misago.js:4
  89. #: static/misago/js/misago.js:6 static/misago/js/misago.js:13
  90. #: static/misago/js/misago.js:14 static/misago/js/misago.js:15
  91. #: static/misago/js/misago.js:16 static/misago/js/misago.js:17
  92. #: static/misago/js/misago.js:20
  93. msgid "Cancel"
  94. msgstr "取消"
  95. #: static/misago/js/misago.js:1
  96. msgid ""
  97. "You have signed in as %(username)s. Please refresh the page before "
  98. "continuing."
  99. msgstr "你已使用 %(username)s 登录。请刷新页面继续。"
  100. #: static/misago/js/misago.js:1
  101. msgid ""
  102. "%(username)s, you have been signed out. Please refresh the page before "
  103. "continuing."
  104. msgstr "%(username)s,你已退出。请刷新页面。"
  105. #: static/misago/js/misago.js:1
  106. msgid "Reload page"
  107. msgstr "重新加载页面"
  108. #: static/misago/js/misago.js:1
  109. msgid "or press F5 key."
  110. msgstr "或按F5键。"
  111. #: static/misago/js/misago.js:1 static/misago/js/misago.js:11
  112. msgid "This ban expires on %(expires_on)s."
  113. msgstr "此封禁于 %(expires_on)s 过期。"
  114. #: static/misago/js/misago.js:1 static/misago/js/misago.js:11
  115. msgid "This ban expires %(expires_on)s."
  116. msgstr "此封禁 %(expires_on)s 过期。"
  117. #: static/misago/js/misago.js:1 static/misago/js/misago.js:11
  118. msgid "This ban has expired."
  119. msgstr "封禁已过期。"
  120. #: static/misago/js/misago.js:1
  121. msgid "This ban is permanent."
  122. msgstr "永久封禁。"
  123. #: static/misago/js/misago.js:1
  124. msgid "No categories exist or you don't have permission to see them."
  125. msgstr "版块不存在或你没有权限查看它们。"
  126. #: static/misago/js/misago.js:1
  127. msgid "This category has no new posts. (closed)"
  128. msgstr "此版块没有新帖子。(已关闭)"
  129. #: static/misago/js/misago.js:1
  130. msgid "This category has new posts. (closed)"
  131. msgstr "此版块有新帖子。 (已关闭)"
  132. #: static/misago/js/misago.js:1
  133. msgid "This category has no new posts."
  134. msgstr "此版块没有新帖子。"
  135. #: static/misago/js/misago.js:1
  136. msgid "This category has new posts."
  137. msgstr "此版块有新帖子。"
  138. #: static/misago/js/misago.js:1
  139. msgid "This category is empty. No threads were posted within it so far."
  140. msgstr "该版块为空,此版块目前尚未发表话题。"
  141. #: static/misago/js/misago.js:1
  142. msgid "This category is private. You can see only your own threads within it."
  143. msgstr "这个板块已开启隐蔽模式。你仅可以看到你自己的话题。"
  144. #: static/misago/js/misago.js:1
  145. msgid "This category is protected. You can't browse it's contents."
  146. msgstr "此版块已锁定。你暂时无法浏览。"
  147. #: static/misago/js/misago.js:1 static/misago/js/misago.js:21
  148. msgid "%(threads)s thread"
  149. msgid_plural "%(threads)s threads"
  150. msgstr[0] "%(threads)s 个话题"
  151. #: static/misago/js/misago.js:1 static/misago/js/misago.js:11
  152. #: static/misago/js/misago.js:21
  153. msgid "%(posts)s post"
  154. msgid_plural "%(posts)s posts"
  155. msgstr[0] "%(posts)s 条帖子"
  156. #: static/misago/js/misago.js:1
  157. msgid "Set avatar"
  158. msgstr "设置头像"
  159. #: static/misago/js/misago.js:1
  160. msgid "Crop image"
  161. msgstr "裁剪图像"
  162. #: static/misago/js/misago.js:2
  163. msgid "Save choice"
  164. msgstr "保存选择"
  165. #: static/misago/js/misago.js:2
  166. msgid "Select avatar"
  167. msgstr "选择头像"
  168. #: static/misago/js/misago.js:2
  169. msgid "Download my Gravatar"
  170. msgstr "下载我的Gravatar"
  171. #: static/misago/js/misago.js:2
  172. msgid "Re-crop uploaded image"
  173. msgstr "重新裁剪图片"
  174. #: static/misago/js/misago.js:2
  175. msgid "Upload new image"
  176. msgstr "上传新头像"
  177. #: static/misago/js/misago.js:2
  178. msgid "Pick avatar from gallery"
  179. msgstr "从图库挑选头像"
  180. #: static/misago/js/misago.js:2
  181. msgid "Generate my individual avatar"
  182. msgstr "自动生成"
  183. #: static/misago/js/misago.js:2 static/misago/js/misago.js:4
  184. #: static/misago/js/misago.js:14 static/misago/js/misago.js:16
  185. #: static/misago/js/misago.js:17 static/misago/js/misago.js:20
  186. msgid "Ok"
  187. msgstr "确定"
  188. #: static/misago/js/misago.js:2
  189. msgid "Change your avatar"
  190. msgstr "修改你的头像"
  191. #: static/misago/js/misago.js:2
  192. msgid "Your image has been uploaded and you may now crop it."
  193. msgstr "你的图像已上传,你现在可以裁剪了。"
  194. #: static/misago/js/misago.js:2
  195. msgid "Selected file is too big. (%(filesize)s)"
  196. msgstr "所选文件太大。(%(filesize)s)"
  197. #: static/misago/js/misago.js:2
  198. msgid "Selected file type is not supported."
  199. msgstr "不支持所选文件类型。"
  200. #: static/misago/js/misago.js:2
  201. msgid "%(files)s files smaller than %(limit)s"
  202. msgstr "%(files)s文件小于%(limit)s"
  203. #: static/misago/js/misago.js:2
  204. msgid "Select file"
  205. msgstr "选择文件"
  206. #: static/misago/js/misago.js:2
  207. msgid "%(progress)s % complete"
  208. msgstr "%(progress)s % 完成"
  209. #: static/misago/js/misago.js:2
  210. msgid "No profile details are editable at this time."
  211. msgstr "当前没有可编辑的个人信息。"
  212. #: static/misago/js/misago.js:2
  213. msgid "This option is currently unavailable."
  214. msgstr "该选项当前不可用。"
  215. #: static/misago/js/misago.js:2 static/misago/js/misago.js:6
  216. #: static/misago/js/misago.js:10 static/misago/js/misago.js:13
  217. #: static/misago/js/misago.js:16 static/misago/js/misago.js:19
  218. msgid "Form contains errors."
  219. msgstr "表单包含错误。"
  220. #: static/misago/js/misago.js:2 static/misago/js/misago.js:5
  221. #: static/misago/js/misago.js:6 static/misago/js/misago.js:12
  222. #: static/misago/js/misago.js:15
  223. msgid "Save changes"
  224. msgstr "保存修改"
  225. #: static/misago/js/misago.js:2 static/misago/js/misago.js:5
  226. msgid "Edit details"
  227. msgstr "编辑详情"
  228. #: static/misago/js/misago.js:2
  229. msgid "Insert spoiler"
  230. msgstr ""
  231. #: static/misago/js/misago.js:2
  232. msgid "Enter name of syntax of your code (optional)"
  233. msgstr "输入代码语言名称(可选)"
  234. #: static/misago/js/misago.js:2
  235. msgid "Insert code"
  236. msgstr "插入代码"
  237. #: static/misago/js/misago.js:3
  238. msgid "Emphase selection"
  239. msgstr "斜体"
  240. #: static/misago/js/misago.js:3
  241. msgid "Insert horizontal ruler"
  242. msgstr "插入分割线"
  243. #: static/misago/js/misago.js:3
  244. msgid "Enter link to image"
  245. msgstr "输入图片链接"
  246. #: static/misago/js/misago.js:3
  247. msgid "Enter image label (optional)"
  248. msgstr "输入图片标签(可选)"
  249. #: static/misago/js/misago.js:3
  250. msgid "Insert image"
  251. msgstr "插入图像"
  252. #: static/misago/js/misago.js:3
  253. msgid "Enter link address"
  254. msgstr "输入链接地址"
  255. #: static/misago/js/misago.js:3
  256. msgid "Enter link label (optional)"
  257. msgstr "输入链接标签(可选)"
  258. #: static/misago/js/misago.js:3
  259. msgid "Insert link"
  260. msgstr "插入链接"
  261. #: static/misago/js/misago.js:3
  262. msgid "Enter quote autor, prefix usernames with @"
  263. msgstr "输入引用作者,在用户名前面加上@"
  264. #: static/misago/js/misago.js:3
  265. msgid "Insert quote"
  266. msgstr "插入引用"
  267. #: static/misago/js/misago.js:3
  268. msgid "Striketrough selection"
  269. msgstr "删除线"
  270. #: static/misago/js/misago.js:3
  271. msgid "Bolder selection"
  272. msgstr "粗体"
  273. #: static/misago/js/misago.js:3 static/misago/js/misago.js:9
  274. msgid "%(filetype)s, %(size)s, uploaded by %(uploader)s %(uploaded_on)s."
  275. msgstr "%(filetype)s, %(size)s, %(uploader)s 上传于 %(uploaded_on)s."
  276. #: static/misago/js/misago.js:3
  277. msgid "Insert"
  278. msgstr "插入"
  279. #: static/misago/js/misago.js:3 static/misago/js/misago.js:6
  280. msgid "Remove"
  281. msgstr "移除"
  282. #: static/misago/js/misago.js:3
  283. msgid "Undo removal"
  284. msgstr "撤消删除"
  285. #: static/misago/js/misago.js:3
  286. msgid "Error uploading %(filename)s"
  287. msgstr "上传 %(filename)s 时发生错误"
  288. #: static/misago/js/misago.js:3 static/misago/js/misago.js:9
  289. msgid "Dismiss"
  290. msgstr "不再显示"
  291. #: static/misago/js/misago.js:3
  292. msgid "Uploading %(filename)s... %(progress)s"
  293. msgstr "上传 %(filename)s 中... %(progress)s"
  294. #: static/misago/js/misago.js:3
  295. msgid "Upload file"
  296. msgstr "上传文件"
  297. #: static/misago/js/misago.js:3
  298. msgid "Protected"
  299. msgstr "已锁定"
  300. #: static/misago/js/misago.js:3 static/misago/js/misago.js:10
  301. #: static/misago/js/misago.js:16
  302. msgid "Protect"
  303. msgstr "锁定"
  304. #: static/misago/js/misago.js:3
  305. msgid "Preview"
  306. msgstr "预览"
  307. #: static/misago/js/misago.js:3
  308. msgid "Post"
  309. msgstr "发布"
  310. #: static/misago/js/misago.js:3
  311. msgid "Preview message"
  312. msgstr "预览信息"
  313. #: static/misago/js/misago.js:3
  314. msgid "(error)"
  315. msgstr "(错误)"
  316. #: static/misago/js/misago.js:3
  317. msgid "(success)"
  318. msgstr "(成功)"
  319. #: static/misago/js/misago.js:4 static/misago/js/misago.js:11
  320. #: static/misago/js/misago.js:17
  321. msgid "Best answer"
  322. msgstr "最佳答案"
  323. #: static/misago/js/misago.js:4
  324. msgid ""
  325. "Please select the best answer for your newly merged thread. No posts will be"
  326. " deleted during the merge."
  327. msgstr "请为新合并的话题选择最佳答案。合并期间不会删除帖子。"
  328. #: static/misago/js/misago.js:4 static/misago/js/misago.js:18
  329. msgid "Poll"
  330. msgstr "投票"
  331. #: static/misago/js/misago.js:4
  332. msgid ""
  333. "Please select the poll for your newly merged thread. Rejected polls will be "
  334. "permanently deleted and cannot be recovered."
  335. msgstr "请为新合并的话题选择投票。拒绝的投票将被永久删除, 无法恢复。"
  336. #: static/misago/js/misago.js:4
  337. msgid "Are you sure you want to delete all polls?"
  338. msgstr "你确定要删除所有投票吗?"
  339. #: static/misago/js/misago.js:4 static/misago/js/misago.js:19
  340. #: static/misago/js/misago.js:20
  341. msgid "Merge threads"
  342. msgstr "合并话题"
  343. #: static/misago/js/misago.js:4
  344. msgid "Search returned no results."
  345. msgstr "什么也没有找到。"
  346. #: static/misago/js/misago.js:4 static/misago/js/misago.js:14
  347. msgid "Search"
  348. msgstr "搜索"
  349. #: static/misago/js/misago.js:4
  350. msgid "See full \"%(provider)s\" results page with %(count)s result."
  351. msgid_plural "See full \"%(provider)s\" results page with %(count)s results."
  352. msgstr[0] "在结果页面查看完整的 \"%(provider)s\" , 共 %(count)s 条结果。"
  353. #: static/misago/js/misago.js:4
  354. msgid "Posted by %(poster)s on %(posted_on)s in %(category)s."
  355. msgstr "由 %(poster)s 在 %(posted_on)s 发布于 %(category)s 板块中。"
  356. #: static/misago/js/misago.js:4
  357. msgid "%(title)s, joined on %(joined_on)s"
  358. msgstr "%(title)s,加入于 %(joined_on)s"
  359. #: static/misago/js/misago.js:4 static/misago/js/misago.js:5
  360. #: static/misago/js/misago.js:13
  361. msgid "Change username"
  362. msgstr "修改用户名"
  363. #: static/misago/js/misago.js:4
  364. msgid "You will be able to change your username %(next_change)s."
  365. msgstr "你可以在 %(next_change)s 修改你的用户名。"
  366. #: static/misago/js/misago.js:4
  367. msgid "You have used up available name changes."
  368. msgstr "你已经用完了可修改次数。"
  369. #: static/misago/js/misago.js:4
  370. msgid "You can't change your username at the moment."
  371. msgstr "你当前无法更改用户名。"
  372. #: static/misago/js/misago.js:4
  373. msgid "You can change your username %(changes_left)s more time."
  374. msgid_plural "You can change your username %(changes_left)s more times."
  375. msgstr[0] "你还可以修改用户名 %(changes_left)s 次。"
  376. #: static/misago/js/misago.js:4
  377. msgid "Used changes become available again after %(name_changes_expire)s day."
  378. msgid_plural ""
  379. "Used changes become available again after %(name_changes_expire)s days."
  380. msgstr[0] "在 %(name_changes_expire)s 天之后,可再次更改。"
  381. #: static/misago/js/misago.js:4
  382. msgid "Your new username is same as current one."
  383. msgstr "你的新用户名与当前用户名相同。"
  384. #: static/misago/js/misago.js:4 static/misago/js/misago.js:13
  385. msgid "New username"
  386. msgstr "新用户名"
  387. #: static/misago/js/misago.js:5
  388. msgid "Your username has been changed successfully."
  389. msgstr "你的用户名已修改成功。"
  390. #: static/misago/js/misago.js:5 static/misago/js/misago.js:6
  391. msgid "Change your options"
  392. msgstr "更改你的选项"
  393. #: static/misago/js/misago.js:5
  394. msgid "Enter your password to confirm account deletion."
  395. msgstr "删除账户需要校验你的密码。"
  396. #: static/misago/js/misago.js:5 static/misago/js/misago.js:13
  397. msgid "Delete account"
  398. msgstr "删除帐号"
  399. #: static/misago/js/misago.js:5
  400. msgid ""
  401. "You are going to delete your account. This action is nonreversible, and will"
  402. " result in following data being deleted:"
  403. msgstr "你正准备删除你的账户,此操作是不可逆的,请再考虑一下!如果你执意要删除账户,我必须提醒你,如下数据将被删除:"
  404. #: static/misago/js/misago.js:5
  405. msgid ""
  406. "Stored IP addresses associated with content that you have posted will be "
  407. "deleted."
  408. msgstr "与你发布的内容相关联的 IP 地址记录将被删除。"
  409. #: static/misago/js/misago.js:5
  410. msgid ""
  411. "Your username will become available for other user to rename to or for new "
  412. "user to register their account with."
  413. msgstr "你的用户名将开放给所有用户。"
  414. #: static/misago/js/misago.js:5
  415. msgid "Your e-mail will become available for use in new account registration."
  416. msgstr "你的电子邮件将可用于新帐户注册。"
  417. #: static/misago/js/misago.js:5
  418. msgid ""
  419. "All your posted content will NOT be deleted, but username associated with it"
  420. " will be changed to one shared by all deleted accounts."
  421. msgstr "你发布的所有内容都不会被删除,但与其关联的用户名将被更改为由所有已删除帐户共享的用户名。"
  422. #: static/misago/js/misago.js:5
  423. msgid "Delete my account"
  424. msgstr "删除我的账户"
  425. #: static/misago/js/misago.js:5
  426. msgid "Your request for data download has been registered."
  427. msgstr "你的数据下载请求已登记。"
  428. #: static/misago/js/misago.js:5
  429. msgid "Download your data"
  430. msgstr "下载你的数据"
  431. #: static/misago/js/misago.js:5
  432. msgid ""
  433. "To download your data from the site, click the \"Request data download\" "
  434. "button. Depending on amount of data to be archived and number of users "
  435. "wanting to download their data at same time it may take up to few days for "
  436. "your download to be prepared. An e-mail with notification will be sent to "
  437. "you when your data is ready to be downloaded."
  438. msgstr ""
  439. "要从网站下载数据, 请单击 \"请求数据下载\" 按钮。根据要存档的数据量以及希望在同一时间下载数据的用户数, "
  440. "你的下载准备就绪可能需要几天时间。当你的数据准备好下载时, 将向你发送带有通知的电子邮件。"
  441. #: static/misago/js/misago.js:5
  442. msgid ""
  443. "The download will only be available for limited amount of time, after which "
  444. "it will be deleted from the site and marked as expired."
  445. msgstr "下载只在有限的时间内可用, 然后将从网站中删除并标记为过期。"
  446. #: static/misago/js/misago.js:5
  447. msgid "Requested on"
  448. msgstr "请求于"
  449. #: static/misago/js/misago.js:5
  450. msgid "Download"
  451. msgstr "下载"
  452. #: static/misago/js/misago.js:5
  453. msgid "You have no data downloads."
  454. msgstr "你没有数据下载。"
  455. #: static/misago/js/misago.js:5
  456. msgid "Request data download"
  457. msgstr "请求数据下载"
  458. #: static/misago/js/misago.js:5
  459. msgid "Download is being prepared"
  460. msgstr "正在准备下载"
  461. #: static/misago/js/misago.js:5
  462. msgid "Download is expired"
  463. msgstr "下载已过期"
  464. #: static/misago/js/misago.js:5 static/misago/js/misago.js:12
  465. msgid "Your details have been updated."
  466. msgstr "你的资料已更新。"
  467. #: static/misago/js/misago.js:5
  468. msgid "Everybody"
  469. msgstr "所有人"
  470. #: static/misago/js/misago.js:5
  471. msgid "Users I follow"
  472. msgstr "我关注的用户"
  473. #: static/misago/js/misago.js:5
  474. msgid "Nobody"
  475. msgstr "不接受"
  476. #: static/misago/js/misago.js:5 static/misago/js/misago.js:10
  477. #: static/misago/js/misago.js:16 static/misago/js/misago.js:19
  478. msgid "No"
  479. msgstr "否"
  480. #: static/misago/js/misago.js:5
  481. msgid "Notify"
  482. msgstr "站点通知"
  483. #: static/misago/js/misago.js:5
  484. msgid "Notify with e-mail"
  485. msgstr "电子邮件通知"
  486. #: static/misago/js/misago.js:5
  487. msgid "Your forum options have been changed."
  488. msgstr "你的论坛选项已更改。"
  489. #: static/misago/js/misago.js:5
  490. msgid "Please reload page and try again."
  491. msgstr "请重新加载页面,并重试。"
  492. #: static/misago/js/misago.js:5
  493. msgid "Forum options"
  494. msgstr "论坛选项"
  495. #: static/misago/js/misago.js:5
  496. msgid "Change forum options"
  497. msgstr "更改论坛选项"
  498. #: static/misago/js/misago.js:5
  499. msgid "Privacy settings"
  500. msgstr "隐私设置"
  501. #: static/misago/js/misago.js:5
  502. msgid "Hide my presence"
  503. msgstr "在线状态"
  504. #: static/misago/js/misago.js:5
  505. msgid ""
  506. "If you hide your presence, only members with permission to see hidden users "
  507. "will see when you are online."
  508. msgstr "如果你隐身,只有有权限的查看隐身用户的用户才可以看到你在线。"
  509. #: static/misago/js/misago.js:5
  510. msgid "Hide my presence from other users"
  511. msgstr "隐身"
  512. #: static/misago/js/misago.js:5
  513. msgid "Show my presence to other users"
  514. msgstr "在线"
  515. #: static/misago/js/misago.js:5
  516. msgid "Private thread invitations"
  517. msgstr "隐蔽话题邀请"
  518. #: static/misago/js/misago.js:5
  519. msgid "Automatic subscriptions"
  520. msgstr "自动订阅"
  521. #: static/misago/js/misago.js:5
  522. msgid "Threads I start"
  523. msgstr "我发起的话题"
  524. #: static/misago/js/misago.js:5
  525. msgid "Threads I reply to"
  526. msgstr "我回复的话题"
  527. #: static/misago/js/misago.js:5 static/misago/js/misago.js:6
  528. msgid "Change email or password"
  529. msgstr "修改电子邮件或密码"
  530. #: static/misago/js/misago.js:5
  531. msgid ""
  532. "You need to set a password for your account to be able to change your "
  533. "username or email."
  534. msgstr "你必须设置一个密码才能修改你的用户名或电子邮件地址。"
  535. #: static/misago/js/misago.js:5
  536. msgid "Set password"
  537. msgstr "设置密码"
  538. #: static/misago/js/misago.js:5 static/misago/js/misago.js:15
  539. msgid "Fill out all fields."
  540. msgstr "填写所有字段。"
  541. #: static/misago/js/misago.js:5
  542. msgid "Change e-mail address"
  543. msgstr "修改电子邮件地址"
  544. #: static/misago/js/misago.js:5
  545. msgid "New e-mail"
  546. msgstr "新邮件"
  547. #: static/misago/js/misago.js:5
  548. msgid "Your current password"
  549. msgstr "你当前的密码"
  550. #: static/misago/js/misago.js:5
  551. msgid "Change e-mail"
  552. msgstr "更改电子邮件"
  553. #: static/misago/js/misago.js:5
  554. msgid "New passwords are different."
  555. msgstr "请确保两次输入的密码是一致。"
  556. #: static/misago/js/misago.js:5 static/misago/js/misago.js:14
  557. msgid "Change password"
  558. msgstr "修改密码"
  559. #: static/misago/js/misago.js:5
  560. msgid "New password"
  561. msgstr "新密码"
  562. #: static/misago/js/misago.js:5
  563. msgid "Repeat password"
  564. msgstr "重复输入密码"
  565. #: static/misago/js/misago.js:6
  566. msgid "Change forgotten password"
  567. msgstr "忘记密码"
  568. #: static/misago/js/misago.js:6
  569. msgid "You have left this thread."
  570. msgstr "你已经离开了这个话题。"
  571. #: static/misago/js/misago.js:6
  572. msgid "%(user)s has been removed from this thread."
  573. msgstr "已从话题中移除了 %(user)s 。"
  574. #: static/misago/js/misago.js:6
  575. msgid "%(user)s has been made new thread owner."
  576. msgstr "%(user)s 已经成为话题的新拥有者。"
  577. #: static/misago/js/misago.js:6
  578. msgid "Thread owner"
  579. msgstr "话题所有者"
  580. #: static/misago/js/misago.js:6
  581. msgid "See profile"
  582. msgstr "查看个人资料"
  583. #: static/misago/js/misago.js:6
  584. msgid "Are you sure you want to take over this thread?"
  585. msgstr "你确定要接管这个话题吗?"
  586. #: static/misago/js/misago.js:6
  587. msgid "Are you sure you want to change thread owner to %(user)s?"
  588. msgstr "你确定要将话题所有者更改为 %(user)s?"
  589. #: static/misago/js/misago.js:6
  590. msgid "Make owner"
  591. msgstr "设置所有者"
  592. #: static/misago/js/misago.js:6
  593. msgid "Are you sure you want to leave this thread?"
  594. msgstr "你确定要离开这个话题吗?"
  595. #: static/misago/js/misago.js:6
  596. msgid "Are you sure you want to remove %(user)s from this thread?"
  597. msgstr "你确定从这个话题中移除 %(user)s 吗?"
  598. #: static/misago/js/misago.js:6
  599. msgid "Leave thread"
  600. msgstr "离开话题"
  601. #: static/misago/js/misago.js:6
  602. msgid "This thread has %(users)s participant."
  603. msgid_plural "This thread has %(users)s participants."
  604. msgstr[0] "这个话题有 %(users)s 个参与者。"
  605. #: static/misago/js/misago.js:6
  606. msgid "Entered password is very weak."
  607. msgstr "输入的密码非常弱。"
  608. #: static/misago/js/misago.js:6
  609. msgid "Entered password is weak."
  610. msgstr "输入的密码很弱。"
  611. #: static/misago/js/misago.js:6
  612. msgid "Entered password is average."
  613. msgstr "输入的密码强度可接收。"
  614. #: static/misago/js/misago.js:6
  615. msgid "Entered password is strong."
  616. msgstr "输入的密码很安全。"
  617. #: static/misago/js/misago.js:6
  618. msgid "Entered password is very strong."
  619. msgstr "输入的密码非常安全。"
  620. #: static/misago/js/misago.js:6
  621. msgid "Add choice"
  622. msgstr "添加选择"
  623. #: static/misago/js/misago.js:6
  624. msgid "Are you sure you want to delete this choice?"
  625. msgstr "你确定要删除此选项吗?"
  626. #: static/misago/js/misago.js:6
  627. msgid "Delete this choice"
  628. msgstr "删除此选项"
  629. #: static/misago/js/misago.js:6
  630. msgid "choice label"
  631. msgstr "选择标签"
  632. #: static/misago/js/misago.js:6
  633. msgid "Make voting public"
  634. msgstr "设为公开投票"
  635. #: static/misago/js/misago.js:6
  636. msgid ""
  637. "Making voting public will allow everyone to access detailed list of votes, "
  638. "showing which users voted for which choices and at which times. This option "
  639. "can't be changed after poll's creation. Moderators may see voting details "
  640. "for all polls."
  641. msgstr "设为公开将允许所有人查看投票详情,将显示哪些用户在哪些时间投票选择了哪些选项。这个选项在投票建立后无法更改。版主可以查看所有投票的详情。"
  642. #: static/misago/js/misago.js:6
  643. msgid "Votes are public"
  644. msgstr "公开"
  645. #: static/misago/js/misago.js:6
  646. msgid "Votes are hidden"
  647. msgstr "隐藏"
  648. #: static/misago/js/misago.js:6
  649. msgid "Are you sure you want to discard poll?"
  650. msgstr "你确定要放弃投票吗?"
  651. #: static/misago/js/misago.js:6
  652. msgid "Poll has been edited."
  653. msgstr "投票已被编辑。"
  654. #: static/misago/js/misago.js:6
  655. msgid "Poll has been posted."
  656. msgstr "投票已发布。"
  657. #: static/misago/js/misago.js:6
  658. msgid "Question and choices"
  659. msgstr "问题和选项"
  660. #: static/misago/js/misago.js:6
  661. msgid "Poll question"
  662. msgstr "投票问题"
  663. #: static/misago/js/misago.js:6
  664. msgid "Available choices"
  665. msgstr "可用选项"
  666. #: static/misago/js/misago.js:6
  667. msgid "Voting"
  668. msgstr "投票设置"
  669. #: static/misago/js/misago.js:6
  670. msgid "Poll length"
  671. msgstr "投票时限"
  672. #: static/misago/js/misago.js:6
  673. msgid ""
  674. "Enter number of days for which voting in this poll should be possible or "
  675. "zero to run this poll indefinitely."
  676. msgstr "输入进行投票的天数,输入 0 无限期执行投票。"
  677. #: static/misago/js/misago.js:6
  678. msgid "Allowed choices"
  679. msgstr "允许的选项"
  680. #: static/misago/js/misago.js:6
  681. msgid "Allow vote changes"
  682. msgstr "允许修改投票"
  683. #: static/misago/js/misago.js:6
  684. msgid "Allow participants to change their vote"
  685. msgstr "允许参与者修改投票"
  686. #: static/misago/js/misago.js:6
  687. msgid "Don't allow participants to change their vote"
  688. msgstr "不允许参与者修改投票"
  689. #: static/misago/js/misago.js:6
  690. msgid "Post poll"
  691. msgstr "发起投票"
  692. #: static/misago/js/misago.js:6
  693. msgid "Posted by %(poster)s %(posted_on)s."
  694. msgstr "%(poster)s 发布于 %(posted_on)s。"
  695. #: static/misago/js/misago.js:7
  696. msgid "Voting ends %(ends_on)s."
  697. msgstr "投票结束于 %(ends_on)s。"
  698. #: static/misago/js/misago.js:7
  699. msgid "%(votes)s vote."
  700. msgid_plural "%(votes)s votes."
  701. msgstr[0] "%(votes)s 票。"
  702. #: static/misago/js/misago.js:7
  703. msgid "Votes are public."
  704. msgstr "投票是公开的。"
  705. #: static/misago/js/misago.js:7
  706. msgid "%(votes)s vote, %(proc)s% of total."
  707. msgid_plural "%(votes)s votes, %(proc)s% of total."
  708. msgstr[0] "%(votes)s 票,占总数的 %(proc)s。"
  709. #: static/misago/js/misago.js:7
  710. msgid "Your choice."
  711. msgstr "你的选择。"
  712. #: static/misago/js/misago.js:7
  713. msgid "%(votes)s user has voted for this choice."
  714. msgid_plural "%(votes)s users have voted for this choice."
  715. msgstr[0] "%(votes)s 名用户投了这个选项。"
  716. #: static/misago/js/misago.js:7
  717. msgid "Poll votes"
  718. msgstr "投票"
  719. #: static/misago/js/misago.js:7
  720. msgid "Vote"
  721. msgstr "投票"
  722. #: static/misago/js/misago.js:7
  723. msgid "See votes"
  724. msgstr "查看票数"
  725. #: static/misago/js/misago.js:7 static/misago/js/misago.js:10
  726. #: static/misago/js/misago.js:11 static/misago/js/misago.js:15
  727. msgid "Edit"
  728. msgstr "编辑"
  729. #: static/misago/js/misago.js:7
  730. msgid ""
  731. "Are you sure you want to delete this poll? This action is not reversible."
  732. msgstr "你确定要删除此投票吗?该操作是不可逆的。"
  733. #: static/misago/js/misago.js:7 static/misago/js/misago.js:9
  734. #: static/misago/js/misago.js:10 static/misago/js/misago.js:16
  735. #: static/misago/js/misago.js:17
  736. msgid "Delete"
  737. msgstr "删除"
  738. #: static/misago/js/misago.js:7
  739. msgid "You can't select any more choices."
  740. msgstr "你不可以选择更多选项了。"
  741. #: static/misago/js/misago.js:7
  742. msgid "You can select %(choices)s more choice."
  743. msgid_plural "You can select %(choices)s more choices."
  744. msgstr[0] "你可以再选择 %(choices)s 个选项。"
  745. #: static/misago/js/misago.js:7
  746. msgid "You can change your vote later."
  747. msgstr "稍后你可以更改你的投票。"
  748. #: static/misago/js/misago.js:7
  749. msgid "Votes are final."
  750. msgstr "投票不可更改。"
  751. #: static/misago/js/misago.js:7
  752. msgid "You need to select at least one choice"
  753. msgstr "你需要选择至少一个选项"
  754. #: static/misago/js/misago.js:7
  755. msgid "Your vote has been saved."
  756. msgstr "你的投票已保存。"
  757. #: static/misago/js/misago.js:7
  758. msgid "Save your vote"
  759. msgstr "保存投票"
  760. #: static/misago/js/misago.js:7
  761. msgid "See results"
  762. msgstr "查看结果"
  763. #: static/misago/js/misago.js:7 static/misago/js/misago.js:8
  764. msgid "Revert post to state from before this edit."
  765. msgstr "将帖子恢复成编辑之前的状态。"
  766. #: static/misago/js/misago.js:7 static/misago/js/misago.js:8
  767. msgid "Revert"
  768. msgstr "还原"
  769. #: static/misago/js/misago.js:7
  770. msgid "Post edits history"
  771. msgstr "帖子编辑历史"
  772. #: static/misago/js/misago.js:7
  773. msgid ""
  774. "Are you sure you with to revert this post to the state from before this "
  775. "edit?"
  776. msgstr "你确定还原这个帖子为编辑之前的状态嘛?"
  777. #: static/misago/js/misago.js:7
  778. msgid "Post has been reverted to previous state."
  779. msgstr "帖子已还原到上一次编辑的状态。"
  780. #: static/misago/js/misago.js:7 static/misago/js/misago.js:8
  781. msgid "See previous change"
  782. msgstr "查看上一次修改"
  783. #: static/misago/js/misago.js:8
  784. msgid "By %(edited_by)s %(edited_on)s."
  785. msgstr "%(edited_by)s 编辑于 %(edited_on)s。"
  786. #: static/misago/js/misago.js:8 static/misago/js/misago.js:9
  787. msgid "This post's contents cannot be displayed."
  788. msgstr "无法显示这个帖子的内容。"
  789. #: static/misago/js/misago.js:8 static/misago/js/misago.js:9
  790. msgid "This error is caused by invalid post content manipulation."
  791. msgstr "此错误是由违规的操作引起的。"
  792. #: static/misago/js/misago.js:8 static/misago/js/misago.js:11
  793. msgid "posted %(posted_on)s"
  794. msgstr "发布于 %(posted_on)s"
  795. #: static/misago/js/misago.js:8 static/misago/js/misago.js:11
  796. msgid "Removed user"
  797. msgstr "已移除的用户"
  798. #: static/misago/js/misago.js:8
  799. msgid "See post"
  800. msgstr "查看帖子"
  801. #: static/misago/js/misago.js:8
  802. msgid "Post Likes"
  803. msgstr "帖子获赞数"
  804. #: static/misago/js/misago.js:8
  805. msgid "%(likes)s like"
  806. msgid_plural "%(likes)s likes"
  807. msgstr[0] "%(likes)s 个赞"
  808. #: static/misago/js/misago.js:8
  809. msgid "No users have liked this post."
  810. msgstr "没有用户赞这条帖子。"
  811. #: static/misago/js/misago.js:8
  812. msgid "Are you sure you want to discard changes?"
  813. msgstr "你确定要放弃修改吗?"
  814. #: static/misago/js/misago.js:8 static/misago/js/misago.js:9
  815. msgid "You have to enter a message."
  816. msgstr "你必须输入内容。"
  817. #: static/misago/js/misago.js:8
  818. msgid "Reply has been edited."
  819. msgstr "回复已编辑。"
  820. #: static/misago/js/misago.js:8
  821. msgid "Edit reply"
  822. msgstr "编辑回复"
  823. #: static/misago/js/misago.js:8
  824. msgid "Are you sure you want to discard your reply?"
  825. msgstr "你确定要放弃回复吗?"
  826. #: static/misago/js/misago.js:8
  827. msgid "Your reply has been posted."
  828. msgstr "你的回复已发布。"
  829. #: static/misago/js/misago.js:8
  830. msgid "Post reply"
  831. msgstr "发表回复"
  832. #: static/misago/js/misago.js:8
  833. msgid "Are you sure you want to discard private thread?"
  834. msgstr "你确定要丢弃此隐蔽话题吗?"
  835. #: static/misago/js/misago.js:8
  836. msgid "You have to enter at least one recipient."
  837. msgstr "你必须至少输入一个参与者。"
  838. #: static/misago/js/misago.js:8 static/misago/js/misago.js:9
  839. #: static/misago/js/misago.js:15
  840. msgid "You have to enter thread title."
  841. msgstr "你必须输入话题名称。"
  842. #: static/misago/js/misago.js:8 static/misago/js/misago.js:9
  843. msgid "Your thread has been posted."
  844. msgstr "你的话题已发布。"
  845. #: static/misago/js/misago.js:8
  846. msgid "Comma separated list of user names, eg.: Danny, Lisa"
  847. msgstr "使用逗号分隔用户名,例如:Danny,Lisa"
  848. #: static/misago/js/misago.js:8 static/misago/js/misago.js:9
  849. #: static/misago/js/misago.js:10 static/misago/js/misago.js:16
  850. #: static/misago/js/misago.js:19
  851. msgid "Thread title"
  852. msgstr "话题名称"
  853. #: static/misago/js/misago.js:8 static/misago/js/misago.js:9
  854. msgid "Post thread"
  855. msgstr "发起话题"
  856. #: static/misago/js/misago.js:9
  857. msgid "Are you sure you want to discard thread?"
  858. msgstr "你确定要放弃话题吗?"
  859. #: static/misago/js/misago.js:9 static/misago/js/misago.js:15
  860. #: static/misago/js/misago.js:18
  861. msgid "Closed"
  862. msgstr "已关闭"
  863. #: static/misago/js/misago.js:9 static/misago/js/misago.js:16
  864. msgid "Open"
  865. msgstr "开放"
  866. #: static/misago/js/misago.js:9 static/misago/js/misago.js:15
  867. #: static/misago/js/misago.js:18 static/misago/js/misago.js:21
  868. msgid "Hidden"
  869. msgstr "隐藏"
  870. #: static/misago/js/misago.js:9
  871. msgid "Not hidden"
  872. msgstr "显示"
  873. #: static/misago/js/misago.js:9
  874. msgid "Unpinned"
  875. msgstr "取消置顶"
  876. #: static/misago/js/misago.js:9 static/misago/js/misago.js:10
  877. #: static/misago/js/misago.js:15 static/misago/js/misago.js:16
  878. #: static/misago/js/misago.js:18 static/misago/js/misago.js:19
  879. msgid "Pinned locally"
  880. msgstr "版块内置顶"
  881. #: static/misago/js/misago.js:9 static/misago/js/misago.js:10
  882. #: static/misago/js/misago.js:15 static/misago/js/misago.js:16
  883. #: static/misago/js/misago.js:18 static/misago/js/misago.js:19
  884. msgid "Pinned globally"
  885. msgstr "全局置顶"
  886. #: static/misago/js/misago.js:9
  887. msgid ""
  888. "Thread title should be at least %(limit_value)s character long (it has "
  889. "%(show_value)s)."
  890. msgid_plural ""
  891. "Thread title should be at least %(limit_value)s characters long (it has "
  892. "%(show_value)s)."
  893. msgstr[0] "话题名称至少需要 %(limit_value)s 个字符(现有 %(show_value)s 个字符)。"
  894. #: static/misago/js/misago.js:9
  895. msgid ""
  896. "Thread title cannot be longer than %(limit_value)s character (it has "
  897. "%(show_value)s)."
  898. msgid_plural ""
  899. "Thread title cannot be longer than %(limit_value)s characters (it has "
  900. "%(show_value)s)."
  901. msgstr[0] "话题名称最多包含 %(limit_value)s 个字符(现有 %(show_value)s 个字符)。"
  902. #: static/misago/js/misago.js:9
  903. msgid ""
  904. "Posted message should be at least %(limit_value)s character long (it has "
  905. "%(show_value)s)."
  906. msgid_plural ""
  907. "Posted message should be at least %(limit_value)s characters long (it has "
  908. "%(show_value)s)."
  909. msgstr[0] "发帖内容至少需要 %(limit_value)s 个字符(现有 %(show_value)s 个字符)。"
  910. #: static/misago/js/misago.js:9
  911. msgid ""
  912. "Posted message cannot be longer than %(limit_value)s character (it has "
  913. "%(show_value)s)."
  914. msgid_plural ""
  915. "Posted message cannot be longer than %(limit_value)s characters (it has "
  916. "%(show_value)s)."
  917. msgstr[0] "发帖内容最多包含 %(limit_value)s 个字符(现有 %(show_value)s 个字符)。"
  918. #: static/misago/js/misago.js:9 static/misago/js/misago.js:10
  919. #: static/misago/js/misago.js:16 static/misago/js/misago.js:17
  920. msgid "Hide"
  921. msgstr "隐藏"
  922. #: static/misago/js/misago.js:9 static/misago/js/misago.js:10
  923. #: static/misago/js/misago.js:16
  924. msgid "Unhide"
  925. msgstr "取消隐藏"
  926. #: static/misago/js/misago.js:9
  927. msgid ""
  928. "Are you sure you wish to delete this event? This action is not reversible!"
  929. msgstr "你确定要删除此事件吗?这个操作是不可逆的!"
  930. #: static/misago/js/misago.js:9
  931. msgid "Event has been deleted."
  932. msgstr "事件已被删除。"
  933. #: static/misago/js/misago.js:9
  934. msgid "Hidden by %(event_by)s %(event_on)s."
  935. msgstr "%(event_by)s 隐藏于 %(event_on)s。"
  936. #: static/misago/js/misago.js:9
  937. msgid "By %(event_by)s %(event_on)s."
  938. msgstr "%(event_by)s 于 %(event_on)s。"
  939. #: static/misago/js/misago.js:9
  940. msgid "Thread title has been changed from %(old_title)s."
  941. msgstr "话题名称已从 %(old_title)s 更改。"
  942. #: static/misago/js/misago.js:9
  943. msgid "Thread has been moved from %(from_category)s."
  944. msgstr "话题已从 %(from_category)s 中移出。"
  945. #: static/misago/js/misago.js:9
  946. msgid "The %(merged_thread)s thread has been merged into this thread."
  947. msgstr "%(merged_thread)s 话题已合并到此话题中。"
  948. #: static/misago/js/misago.js:9
  949. msgid "Changed thread owner to %(user)s."
  950. msgstr "变更话题所有者为 %(user)s。"
  951. #: static/misago/js/misago.js:9
  952. msgid "Added %(user)s to thread."
  953. msgstr "已添加 %(user)s 到话题。"
  954. #: static/misago/js/misago.js:9
  955. msgid "Removed %(user)s from thread."
  956. msgstr "已从话题移除 %(user)s。"
  957. #: static/misago/js/misago.js:9 static/misago/js/misago.js:16
  958. msgid "Thread has been pinned globally."
  959. msgstr "话题已在全局置顶。"
  960. #: static/misago/js/misago.js:9 static/misago/js/misago.js:16
  961. msgid "Thread has been pinned locally."
  962. msgstr "话题已在此版块内置顶。"
  963. #: static/misago/js/misago.js:9 static/misago/js/misago.js:16
  964. msgid "Thread has been unpinned."
  965. msgstr "话题已取消置顶。"
  966. #: static/misago/js/misago.js:9 static/misago/js/misago.js:16
  967. msgid "Thread has been approved."
  968. msgstr "话题已通过审批。"
  969. #: static/misago/js/misago.js:9 static/misago/js/misago.js:16
  970. msgid "Thread has been opened."
  971. msgstr "话题已开放。"
  972. #: static/misago/js/misago.js:9 static/misago/js/misago.js:16
  973. msgid "Thread has been closed."
  974. msgstr "话题已关闭。"
  975. #: static/misago/js/misago.js:9
  976. msgid "Thread has been revealed."
  977. msgstr "话题已可见。"
  978. #: static/misago/js/misago.js:9 static/misago/js/misago.js:16
  979. msgid "Thread has been made hidden."
  980. msgstr "话题已隐藏。"
  981. #: static/misago/js/misago.js:9
  982. msgid "Took thread over."
  983. msgstr "接管话题。"
  984. #: static/misago/js/misago.js:9
  985. msgid "Owner has left thread. This thread is now closed."
  986. msgstr "所有者已离开话题。此话题现已关闭。"
  987. #: static/misago/js/misago.js:9
  988. msgid "Participant has left thread."
  989. msgstr "参与者已离开话题."
  990. #: static/misago/js/misago.js:9
  991. msgid "New event"
  992. msgstr "新事件"
  993. #: static/misago/js/misago.js:9
  994. msgid "Hidden by %(hidden_by)s %(hidden_on)s."
  995. msgstr "%(hidden_by)s 隐藏于 %(hidden_on)s。"
  996. #: static/misago/js/misago.js:9
  997. msgid "This post is hidden. You cannot see its contents."
  998. msgstr "这个帖子已被隐藏。你无法查看内容。"
  999. #: static/misago/js/misago.js:10
  1000. msgid ""
  1001. "Are you sure you want to delete this post? This action is not reversible!"
  1002. msgstr "你确定要删除这个帖子?这个操作是不可逆的!"
  1003. #: static/misago/js/misago.js:10
  1004. msgid "Post has been deleted."
  1005. msgstr "帖子已被删除。"
  1006. #: static/misago/js/misago.js:10
  1007. msgid "Permament link to this post:"
  1008. msgstr "帖子永久链接:"
  1009. #: static/misago/js/misago.js:10
  1010. msgid "Permament link"
  1011. msgstr "永久链接"
  1012. #: static/misago/js/misago.js:10
  1013. msgid "Mark as best answer"
  1014. msgstr "标记为最佳答案"
  1015. #: static/misago/js/misago.js:10
  1016. msgid "Unmark best answer"
  1017. msgstr "取消最佳答案"
  1018. #: static/misago/js/misago.js:10 static/misago/js/misago.js:11
  1019. msgid "This post was edited %(edits)s time."
  1020. msgid_plural "This post was edited %(edits)s times."
  1021. msgstr[0] "此帖子被编辑了 %(edits)s 次。"
  1022. #: static/misago/js/misago.js:10
  1023. msgid "Changes history"
  1024. msgstr "修改历史"
  1025. #: static/misago/js/misago.js:10 static/misago/js/misago.js:16
  1026. msgid "Approve"
  1027. msgstr "批准"
  1028. #: static/misago/js/misago.js:10 static/misago/js/misago.js:16
  1029. msgid "Move"
  1030. msgstr "移动"
  1031. #: static/misago/js/misago.js:10 static/misago/js/misago.js:16
  1032. msgid "Split"
  1033. msgstr "拆分"
  1034. #: static/misago/js/misago.js:10
  1035. msgid "Remove protection"
  1036. msgstr "移除锁定"
  1037. #: static/misago/js/misago.js:10
  1038. msgid "Move post"
  1039. msgstr "移动帖子"
  1040. #: static/misago/js/misago.js:10 static/misago/js/misago.js:16
  1041. #: static/misago/js/misago.js:17
  1042. msgid "You have to enter link to the other thread."
  1043. msgstr "你必须输入到另一个话题的链接。"
  1044. #: static/misago/js/misago.js:10
  1045. msgid "Selected post was moved to the other thread."
  1046. msgstr "选定的帖子已移动到另一个话题。"
  1047. #: static/misago/js/misago.js:10
  1048. msgid "Link to thread you want to move post to"
  1049. msgstr "你希望将帖子移动到的话题链接"
  1050. #: static/misago/js/misago.js:10
  1051. msgid "You can't move this post at the moment."
  1052. msgstr "你现在不可以移动这个帖子。"
  1053. #: static/misago/js/misago.js:10
  1054. msgid "Split post into new thread"
  1055. msgstr "拆分帖子为新话题"
  1056. #: static/misago/js/misago.js:10 static/misago/js/misago.js:16
  1057. #: static/misago/js/misago.js:19
  1058. msgid "Yes"
  1059. msgstr "是"
  1060. #: static/misago/js/misago.js:10
  1061. msgid "Selected post was split into new thread."
  1062. msgstr "选定的帖子将成为新话题。"
  1063. #: static/misago/js/misago.js:10 static/misago/js/misago.js:16
  1064. #: static/misago/js/misago.js:19
  1065. msgid "Not pinned"
  1066. msgstr "未置顶"
  1067. #: static/misago/js/misago.js:10 static/misago/js/misago.js:16
  1068. #: static/misago/js/misago.js:19
  1069. msgid "Thread weight"
  1070. msgstr "话题权重"
  1071. #: static/misago/js/misago.js:10 static/misago/js/misago.js:16
  1072. #: static/misago/js/misago.js:19
  1073. msgid "Hide thread"
  1074. msgstr "隐藏话题"
  1075. #: static/misago/js/misago.js:10 static/misago/js/misago.js:16
  1076. #: static/misago/js/misago.js:19
  1077. msgid "Close thread"
  1078. msgstr "关闭话题"
  1079. #: static/misago/js/misago.js:10 static/misago/js/misago.js:16
  1080. #: static/misago/js/misago.js:19
  1081. msgid "Category"
  1082. msgstr "版块"
  1083. #: static/misago/js/misago.js:10
  1084. msgid "Split post"
  1085. msgstr "拆分帖子"
  1086. #: static/misago/js/misago.js:10
  1087. msgid "Marked as best answer by you %(marked_on)s."
  1088. msgstr "你已在 %(marked_on)s 将此贴设为最佳答案。"
  1089. #: static/misago/js/misago.js:10
  1090. msgid "Marked as best answer by %(marked_by)s %(marked_on)s."
  1091. msgstr "%(marked_by)s 已在 %(marked_on)s 将此贴设为最佳答案。"
  1092. #: static/misago/js/misago.js:10
  1093. msgid "This post is hidden. Only users with permission may see its contents."
  1094. msgstr "这个帖子是隐藏的。只有拥有相关权限的用户才可以看到其内容。"
  1095. #: static/misago/js/misago.js:10
  1096. msgid ""
  1097. "This post is unapproved. Only users with permission to approve posts and its"
  1098. " author may see its contents."
  1099. msgstr "此帖子未批准。只有拥有审批帖子权限的用户及作者可以看到它的内容。"
  1100. #: static/misago/js/misago.js:10
  1101. msgid "This post is protected. Only moderators may change it."
  1102. msgstr "此贴已锁定,只有版主可修改。"
  1103. #: static/misago/js/misago.js:10
  1104. msgid "%(user)s likes this."
  1105. msgstr "%(user)s 赞了。"
  1106. #: static/misago/js/misago.js:10
  1107. msgid "%(users)s and %(last_user)s"
  1108. msgstr "%(users)s 和 %(last_user)s"
  1109. #: static/misago/js/misago.js:10
  1110. msgid "%(users)s like this."
  1111. msgstr "%(users)s 赞了。"
  1112. #: static/misago/js/misago.js:10
  1113. msgid "%(users)s and %(likes)s other user like this."
  1114. msgid_plural "%(users)s and %(likes)s other users like this."
  1115. msgstr[0] "%(users)s 和其他 %(likes)s 个用户赞了。"
  1116. #: static/misago/js/misago.js:11
  1117. msgid "Liked"
  1118. msgstr "已赞"
  1119. #: static/misago/js/misago.js:11
  1120. msgid "Like"
  1121. msgstr "赞"
  1122. #: static/misago/js/misago.js:11 static/misago/js/misago.js:17
  1123. msgid "Reply"
  1124. msgstr "回复"
  1125. #: static/misago/js/misago.js:11
  1126. msgid "New post"
  1127. msgstr "新帖子"
  1128. #: static/misago/js/misago.js:11 static/misago/js/misago.js:17
  1129. #: static/misago/js/misago.js:20
  1130. msgid "New"
  1131. msgstr "最新"
  1132. #: static/misago/js/misago.js:11
  1133. msgid "This post is protected and may not be edited."
  1134. msgstr "这条帖子已锁定,无法再次编辑。"
  1135. #: static/misago/js/misago.js:11
  1136. msgid "protected"
  1137. msgstr "已锁定"
  1138. #: static/misago/js/misago.js:11
  1139. msgid "edited %(edits)s time"
  1140. msgid_plural "edited %(edits)s times"
  1141. msgstr[0] "已编辑了 %(edits)s 次"
  1142. #: static/misago/js/misago.js:11
  1143. msgid "%(edits)s edit"
  1144. msgid_plural "%(edits)s edits"
  1145. msgstr[0] "%(edits)s 次编辑"
  1146. #: static/misago/js/misago.js:11
  1147. msgid "Ban details"
  1148. msgstr "封禁细节"
  1149. #: static/misago/js/misago.js:11
  1150. msgid "User-shown ban message"
  1151. msgstr "显示给用户的封禁信息"
  1152. #: static/misago/js/misago.js:11
  1153. msgid "Team-shown ban message"
  1154. msgstr "显示给管理团队的封禁讯息"
  1155. #: static/misago/js/misago.js:11
  1156. msgid "%(username)s's ban is permanent."
  1157. msgstr "%(username)s 已永久封禁。"
  1158. #: static/misago/js/misago.js:11
  1159. msgid "Ban expiration"
  1160. msgstr "封禁到期"
  1161. #: static/misago/js/misago.js:11
  1162. msgid "No ban is active at the moment."
  1163. msgstr "目前没有封禁。"
  1164. #: static/misago/js/misago.js:11
  1165. msgid "You are not sharing any details with others."
  1166. msgstr "你没有分享信息给站内成员。"
  1167. #: static/misago/js/misago.js:11
  1168. msgid "%(username)s is not sharing any details with others."
  1169. msgstr "%(username)s 什么也没有分享。"
  1170. #: static/misago/js/misago.js:11 static/misago/js/misago.js:12
  1171. msgid "Details"
  1172. msgstr "详细资料"
  1173. #: static/misago/js/misago.js:12
  1174. msgid "%(username)s's details have been updated."
  1175. msgstr "%(username)s 的资料已更新。"
  1176. #: static/misago/js/misago.js:12
  1177. msgid "You have no started threads."
  1178. msgstr "你还没有发起过话题。"
  1179. #: static/misago/js/misago.js:12
  1180. msgid "%(username)s started no threads."
  1181. msgstr "%(username)s 还没有发起过话题。"
  1182. #: static/misago/js/misago.js:12
  1183. msgid "You have started %(threads)s thread."
  1184. msgid_plural "You have started %(threads)s threads."
  1185. msgstr[0] "你已经发起了 %(threads)s 个话题。"
  1186. #: static/misago/js/misago.js:12
  1187. msgid "%(username)s has started %(threads)s thread."
  1188. msgid_plural "%(username)s has started %(threads)s threads."
  1189. msgstr[0] "%(username)s 已发起 %(threads)s 个话题。"
  1190. #: static/misago/js/misago.js:12 static/misago/js/misago.js:13
  1191. msgid "Loading..."
  1192. msgstr "正在加载..."
  1193. #: static/misago/js/misago.js:12 static/misago/js/misago.js:19
  1194. #: static/misago/js/misago.js:20
  1195. msgid "Threads"
  1196. msgstr "话题"
  1197. #: static/misago/js/misago.js:12
  1198. msgid "You have posted no messages."
  1199. msgstr "你还没有发布信息。"
  1200. #: static/misago/js/misago.js:12
  1201. msgid "%(username)s posted no messages."
  1202. msgstr "%(username)s 还没有发布信息。"
  1203. #: static/misago/js/misago.js:12
  1204. msgid "You have posted %(posts)s message."
  1205. msgid_plural "You have posted %(posts)s messages."
  1206. msgstr[0] "你发布了 %(posts)s 条信息。"
  1207. #: static/misago/js/misago.js:12
  1208. msgid "%(username)s has posted %(posts)s message."
  1209. msgid_plural "%(username)s has posted %(posts)s messages."
  1210. msgstr[0] "%(username)s 发布了 %(posts)s 条信息。"
  1211. #: static/misago/js/misago.js:12
  1212. msgid "Posts"
  1213. msgstr "帖子"
  1214. #: static/misago/js/misago.js:12
  1215. msgid "Show older activity"
  1216. msgstr "加载更多"
  1217. #: static/misago/js/misago.js:12
  1218. msgid "Following"
  1219. msgstr "关注中"
  1220. #: static/misago/js/misago.js:12
  1221. msgid "Follow"
  1222. msgstr "关注"
  1223. #: static/misago/js/misago.js:12
  1224. msgid "Followers"
  1225. msgstr "关注者"
  1226. #: static/misago/js/misago.js:12
  1227. msgid "Found %(users)s user."
  1228. msgid_plural "Found %(users)s users."
  1229. msgstr[0] "找到了 %(users)s 个用户。"
  1230. #: static/misago/js/misago.js:12
  1231. msgid "You have %(users)s follower."
  1232. msgid_plural "You have %(users)s followers."
  1233. msgstr[0] "你有 %(users)s 个关注者。"
  1234. #: static/misago/js/misago.js:12
  1235. msgid "%(username)s has %(users)s follower."
  1236. msgid_plural "%(username)s has %(users)s followers."
  1237. msgstr[0] "%(username)s 有 %(users)s 个关注者。"
  1238. #: static/misago/js/misago.js:12
  1239. msgid "Search returned no users matching specified criteria."
  1240. msgstr "没有找到符合指定条件的用户。"
  1241. #: static/misago/js/misago.js:12
  1242. msgid "You have no followers."
  1243. msgstr "你没有关注者。"
  1244. #: static/misago/js/misago.js:12
  1245. msgid "%(username)s has no followers."
  1246. msgstr "%(username)s 没有关注者。"
  1247. #: static/misago/js/misago.js:12
  1248. msgid "Show more (%(more)s)"
  1249. msgstr "展示更多 (%(more)s)"
  1250. #: static/misago/js/misago.js:12
  1251. msgid "Search users..."
  1252. msgstr "搜索用户..."
  1253. #: static/misago/js/misago.js:12
  1254. msgid "Follows"
  1255. msgstr "关注者"
  1256. #: static/misago/js/misago.js:12
  1257. msgid "You are following %(users)s user."
  1258. msgid_plural "You are following %(users)s users."
  1259. msgstr[0] "你已关注 %(users)s 个用户。"
  1260. #: static/misago/js/misago.js:12
  1261. msgid "%(username)s is following %(users)s user."
  1262. msgid_plural "%(username)s is following %(users)s users."
  1263. msgstr[0] "%(username)s 关注了 %(users)s 个用户。"
  1264. #: static/misago/js/misago.js:12
  1265. msgid "You are not following any users."
  1266. msgstr "你没有关注任何用户。"
  1267. #: static/misago/js/misago.js:12
  1268. msgid "%(username)s is not following any users."
  1269. msgstr "%(username)s 还没有关注任何用户。"
  1270. #: static/misago/js/misago.js:12
  1271. msgid "This user is deleting their account."
  1272. msgstr "此用户正在删除其帐号。"
  1273. #: static/misago/js/misago.js:12
  1274. msgid "This user's account has been disabled by administrator."
  1275. msgstr "此用户的帐号已被管理员禁用。"
  1276. #: static/misago/js/misago.js:12 static/misago/js/misago.js:21
  1277. msgid "Joined on %(joined_on)s"
  1278. msgstr "加入于 %(joined_on)s"
  1279. #: static/misago/js/misago.js:12 static/misago/js/misago.js:21
  1280. msgid "Joined %(joined_on)s"
  1281. msgstr "%(joined_on)s 加入"
  1282. #: static/misago/js/misago.js:12 static/misago/js/misago.js:15
  1283. #: static/misago/js/misago.js:16
  1284. msgid "Moderation"
  1285. msgstr "调整"
  1286. #: static/misago/js/misago.js:12
  1287. msgid "Message"
  1288. msgstr "信息"
  1289. #: static/misago/js/misago.js:12
  1290. msgid "Avatar controls have been changed."
  1291. msgstr "已修改头像控制。"
  1292. #: static/misago/js/misago.js:12
  1293. msgid "Lock avatar"
  1294. msgstr "锁定头像"
  1295. #: static/misago/js/misago.js:12
  1296. msgid ""
  1297. "Locking user avatar will prohibit user from changing his avatar and will "
  1298. "reset his/her avatar to default one."
  1299. msgstr "锁定用户头像将禁止用户修改其头像并将其头像重置为默认头像。"
  1300. #: static/misago/js/misago.js:12
  1301. msgid "Disallow user from changing avatar"
  1302. msgstr "禁止用户修改头像"
  1303. #: static/misago/js/misago.js:12
  1304. msgid "Allow user to change avatar"
  1305. msgstr "允许用户修改头像"
  1306. #: static/misago/js/misago.js:12
  1307. msgid "User message"
  1308. msgstr "用户信息"
  1309. #: static/misago/js/misago.js:12
  1310. msgid ""
  1311. "Optional message for user explaining why he/she is prohibited form changing "
  1312. "avatar."
  1313. msgstr "告知用户锁定头像的原因。(可选)"
  1314. #: static/misago/js/misago.js:12
  1315. msgid "Staff message"
  1316. msgstr "员工消息"
  1317. #: static/misago/js/misago.js:12
  1318. msgid ""
  1319. "Optional message for forum team members explaining why user is prohibited "
  1320. "form changing avatar."
  1321. msgstr "告知管理团队该用户锁定头像的原因。(可选)"
  1322. #: static/misago/js/misago.js:12 static/misago/js/misago.js:13
  1323. msgid "Avatar controls"
  1324. msgstr "头像控制"
  1325. #: static/misago/js/misago.js:13
  1326. msgid "Username has been changed."
  1327. msgstr "用户名已更改。"
  1328. #: static/misago/js/misago.js:13
  1329. msgid ""
  1330. "%(username)s's account, threads, posts and other content has been deleted."
  1331. msgstr "%(username)s 的帐号,话题,帖子等内容均已被删除。"
  1332. #: static/misago/js/misago.js:13
  1333. msgid ""
  1334. "%(username)s's account has been deleted and other content has been hidden."
  1335. msgstr "%(username)s 的帐号已被删除,其他内容均已被隐藏。"
  1336. #: static/misago/js/misago.js:13
  1337. msgid "Delete %(username)s"
  1338. msgstr "删除 %(username)s"
  1339. #: static/misago/js/misago.js:13
  1340. msgid "Please wait... (%(countdown)ss)"
  1341. msgstr "请稍后... (%(countdown)ss)"
  1342. #: static/misago/js/misago.js:13
  1343. msgid "User content"
  1344. msgstr "用户内容"
  1345. #: static/misago/js/misago.js:13
  1346. msgid "Delete together with user's account"
  1347. msgstr "与用户的帐号一起删除"
  1348. #: static/misago/js/misago.js:13
  1349. msgid "Hide after deleting user's account"
  1350. msgstr "删除用户帐号后隐藏"
  1351. #: static/misago/js/misago.js:13
  1352. msgid "Return to users list"
  1353. msgstr "返回用户列表"
  1354. #: static/misago/js/misago.js:13
  1355. msgid "Delete user account"
  1356. msgstr "删除用户帐号"
  1357. #: static/misago/js/misago.js:13
  1358. msgid "Username history"
  1359. msgstr "用户名历史记录"
  1360. #: static/misago/js/misago.js:13
  1361. msgid "Found %(changes)s username change."
  1362. msgid_plural "Found %(changes)s username changes."
  1363. msgstr[0] "找到了 %(changes)s 次用户名更改。"
  1364. #: static/misago/js/misago.js:13
  1365. msgid "Your username was changed %(changes)s time."
  1366. msgid_plural "Your username was changed %(changes)s times."
  1367. msgstr[0] "你的用户名已修改 %(changes)s 次。"
  1368. #: static/misago/js/misago.js:13
  1369. msgid "%(username)s's username was changed %(changes)s time."
  1370. msgid_plural "%(username)s's username was changed %(changes)s times."
  1371. msgstr[0] "%(username)s 的用户名已修改 %(changes)s 次。"
  1372. #: static/misago/js/misago.js:13
  1373. msgid "Search returned no username changes matching specified criteria."
  1374. msgstr "没有找到符合搜索条件的用户名修改记录。"
  1375. #: static/misago/js/misago.js:13 static/misago/js/misago.js:21
  1376. msgid "No name changes have been recorded for your account."
  1377. msgstr "你的账户没有修改过用户名。"
  1378. #: static/misago/js/misago.js:13
  1379. msgid "%(username)s's username was never changed."
  1380. msgstr "%(username)s 的用户名从未修改。"
  1381. #: static/misago/js/misago.js:13
  1382. msgid "Show older (%(more)s)"
  1383. msgstr "显示旧的 (%(more)s)"
  1384. #: static/misago/js/misago.js:13
  1385. msgid "Search history..."
  1386. msgstr "搜索历史记录..."
  1387. #: static/misago/js/misago.js:13
  1388. msgid "Search..."
  1389. msgstr "搜索..."
  1390. #: static/misago/js/misago.js:13
  1391. msgid "New registrations are currently disabled."
  1392. msgstr "已关闭注册。"
  1393. #: static/misago/js/misago.js:13
  1394. msgid "Registration is currently unavailable due to an error."
  1395. msgstr "由于某些错误,目前无法注册。"
  1396. #: static/misago/js/misago.js:13 static/misago/js/misago.js:14
  1397. #: static/misago/js/misago.js:20
  1398. msgid "Register"
  1399. msgstr "注册"
  1400. #: static/misago/js/misago.js:14
  1401. msgid "Join with %(site)s"
  1402. msgstr "使用 %(site)s 登录"
  1403. #: static/misago/js/misago.js:14
  1404. msgid "Or create forum account:"
  1405. msgstr "或创建一个账户:"
  1406. #: static/misago/js/misago.js:14 static/misago/js/misago.js:15
  1407. msgid "Username"
  1408. msgstr "用户名"
  1409. #: static/misago/js/misago.js:14 static/misago/js/misago.js:17
  1410. #: static/misago/js/misago.js:18
  1411. msgid "E-mail"
  1412. msgstr "电子邮件"
  1413. #: static/misago/js/misago.js:14 static/misago/js/misago.js:15
  1414. msgid "Password"
  1415. msgstr "密码"
  1416. #: static/misago/js/misago.js:14
  1417. msgid "Register account"
  1418. msgstr "注册账号"
  1419. #: static/misago/js/misago.js:14 static/misago/js/misago.js:15
  1420. msgid ""
  1421. "%(username)s, your account has been created but you need to activate it "
  1422. "before you will be able to sign in."
  1423. msgstr "%(username)s 你好,你的帐号已创建,但你需要激活它之后才可以登录。"
  1424. #: static/misago/js/misago.js:14 static/misago/js/misago.js:15
  1425. msgid ""
  1426. "%(username)s, your account has been created but board administrator will "
  1427. "have to activate it before you will be able to sign in."
  1428. msgstr "%(username)s 你好,你的帐号已创建,但必须在管理员激活它之后才可以登录。"
  1429. #: static/misago/js/misago.js:14
  1430. msgid ""
  1431. "We have sent an e-mail to %(email)s with link that you have to click to "
  1432. "activate your account."
  1433. msgstr "我们已向 %(email)s 发送了一封带有激活链接的电子邮件。"
  1434. #: static/misago/js/misago.js:14
  1435. msgid "We will send an e-mail to %(email)s when this takes place."
  1436. msgstr "届时,我们将向 %(email)s 发送一封电子邮件。"
  1437. #: static/misago/js/misago.js:14
  1438. msgid "Registration complete"
  1439. msgstr "注册完成"
  1440. #: static/misago/js/misago.js:14 static/misago/js/misago.js:25
  1441. msgid "Enter a valid email address."
  1442. msgstr "输入一个有效的电子邮件地址。"
  1443. #: static/misago/js/misago.js:14
  1444. msgid "Your e-mail address"
  1445. msgstr "你的电子邮件地址"
  1446. #: static/misago/js/misago.js:14
  1447. msgid "Send link"
  1448. msgstr "发送链接"
  1449. #: static/misago/js/misago.js:14
  1450. msgid "Activation link was sent to %(email)s"
  1451. msgstr "激活链接已发送至 %(email)s"
  1452. #: static/misago/js/misago.js:14
  1453. msgid "Request another link"
  1454. msgstr "重新发送链接"
  1455. #: static/misago/js/misago.js:14
  1456. msgid "Reset password link was sent to %(email)s"
  1457. msgstr "重置密码链接已发送至 %(email)s"
  1458. #: static/misago/js/misago.js:14
  1459. msgid "Activate your account."
  1460. msgstr "激活你的帐号。"
  1461. #: static/misago/js/misago.js:14
  1462. msgid "Your account is inactive."
  1463. msgstr "你的帐号未激活。"
  1464. #: static/misago/js/misago.js:14
  1465. msgid "Enter new password."
  1466. msgstr "输入新密码。"
  1467. #: static/misago/js/misago.js:14
  1468. msgid "Enter new password"
  1469. msgstr "输入新密码"
  1470. #: static/misago/js/misago.js:14
  1471. msgid "%(username)s, your password has been changed successfully."
  1472. msgstr "%(username)s,你的密码已修改成功。"
  1473. #: static/misago/js/misago.js:14
  1474. msgid "You will have to sign in using new password before continuing."
  1475. msgstr "请使用新密码重新登录。"
  1476. #: static/misago/js/misago.js:14 static/misago/js/misago.js:15
  1477. #: static/misago/js/misago.js:20
  1478. msgid "Sign in"
  1479. msgstr "登录"
  1480. #: static/misago/js/misago.js:14
  1481. msgid "You have to enter search query."
  1482. msgstr "你必须输入要搜索的内容。"
  1483. #: static/misago/js/misago.js:14
  1484. msgid "Search took %(time)s s to complete"
  1485. msgstr "搜索用时 %(time)s 秒"
  1486. #: static/misago/js/misago.js:14
  1487. msgid "No threads matching search query have been found."
  1488. msgstr "没有找到符合搜索关键字的话题"
  1489. #: static/misago/js/misago.js:14
  1490. msgid "Enter at least two characters to search threads."
  1491. msgstr "试着输入多一些信息搜索话题。"
  1492. #: static/misago/js/misago.js:14 static/misago/js/misago.js:20
  1493. msgid "Show more"
  1494. msgstr "加载更多"
  1495. #: static/misago/js/misago.js:14
  1496. msgid "No users matching search query have been found."
  1497. msgstr "没有找到匹配搜索查询的用户。"
  1498. #: static/misago/js/misago.js:14
  1499. msgid "Enter at least two characters to search users."
  1500. msgstr "至少输入两个字才能搜索用户。"
  1501. #: static/misago/js/misago.js:15
  1502. msgid "Fill out both fields."
  1503. msgstr "填写所需的字段。"
  1504. #: static/misago/js/misago.js:15
  1505. msgid "Activate account"
  1506. msgstr "激活帐号"
  1507. #: static/misago/js/misago.js:15
  1508. msgid "Sign in with %(site)s"
  1509. msgstr "使用 %(site)s 登录"
  1510. #: static/misago/js/misago.js:15
  1511. msgid "Or use your forum account:"
  1512. msgstr "或使用你的账号登录:"
  1513. #: static/misago/js/misago.js:15
  1514. msgid "Username or e-mail"
  1515. msgstr "用户名或电子邮件"
  1516. #: static/misago/js/misago.js:15
  1517. msgid "Forgot password?"
  1518. msgstr "忘记密码?"
  1519. #: static/misago/js/misago.js:15
  1520. msgid ""
  1521. "%(username)s, your account has been created and you have been signed in to "
  1522. "it."
  1523. msgstr "%(username)s, 你的帐号已创建并登录了该账户。"
  1524. #: static/misago/js/misago.js:15
  1525. msgid "Registration completed!"
  1526. msgstr "注册完成!"
  1527. #: static/misago/js/misago.js:15
  1528. msgid "Return to forum index"
  1529. msgstr "返回首页"
  1530. #: static/misago/js/misago.js:15
  1531. msgid "Sign in with %(backend)s"
  1532. msgstr "使用 %(backend)s 登录"
  1533. #: static/misago/js/misago.js:15
  1534. msgid "You need to accept the privacy policy."
  1535. msgstr "你需要接受隐私政策。"
  1536. #: static/misago/js/misago.js:15
  1537. msgid "Your e-mail address has been verified by %(backend)s."
  1538. msgstr "你的邮件已由 %(backend)s 验证。"
  1539. #: static/misago/js/misago.js:15
  1540. msgid "Complete your details"
  1541. msgstr "请填写你的详细信息"
  1542. #: static/misago/js/misago.js:15
  1543. msgid "E-mail address"
  1544. msgstr "电子邮件地址"
  1545. #: static/misago/js/misago.js:15
  1546. msgid "Change title"
  1547. msgstr "修改标题"
  1548. #: static/misago/js/misago.js:15
  1549. msgid "Edit title"
  1550. msgstr "编辑标题"
  1551. #: static/misago/js/misago.js:15 static/misago/js/misago.js:17
  1552. #: static/misago/js/misago.js:18 static/misago/js/misago.js:20
  1553. msgid "Unapproved"
  1554. msgstr "未审批"
  1555. #: static/misago/js/misago.js:15 static/misago/js/misago.js:18
  1556. msgid "Unapproved posts"
  1557. msgstr "未审批的帖子"
  1558. #: static/misago/js/misago.js:15 static/misago/js/misago.js:18
  1559. msgid "%(replies)s reply"
  1560. msgid_plural "%(replies)s replies"
  1561. msgstr[0] "%(replies)s 条回复"
  1562. #: static/misago/js/misago.js:15
  1563. msgid "last reply by %(user)s %(date)s"
  1564. msgstr "%(user)s 最后回复于 %(date)s"
  1565. #: static/misago/js/misago.js:15
  1566. msgid ""
  1567. "Are you sure you want to merge selected posts? This action is not "
  1568. "reversible!"
  1569. msgstr "你确定要合并选定的帖子吗?这个操作是不可逆的!"
  1570. #: static/misago/js/misago.js:16
  1571. msgid ""
  1572. "Are you sure you want to delete selected posts? This action is not "
  1573. "reversible!"
  1574. msgstr "你确定要删除选定的帖子吗?这个操作是不可逆的!"
  1575. #: static/misago/js/misago.js:16
  1576. msgid "Merge"
  1577. msgstr "合并"
  1578. #: static/misago/js/misago.js:16
  1579. msgid "Unprotect"
  1580. msgstr "取消锁定"
  1581. #: static/misago/js/misago.js:16
  1582. msgid "%(username)s on %(posted_on)s"
  1583. msgstr "%(username)s 于 %(posted_on)s"
  1584. #: static/misago/js/misago.js:16
  1585. msgid "One or more posts could not be changed:"
  1586. msgstr "无法修改一条或多条帖子:"
  1587. #: static/misago/js/misago.js:16
  1588. msgid "Posts options"
  1589. msgstr "帖子选项"
  1590. #: static/misago/js/misago.js:16
  1591. msgid "Move posts"
  1592. msgstr "移动帖子"
  1593. #: static/misago/js/misago.js:16
  1594. msgid "Selected posts were moved to the other thread."
  1595. msgstr "选定的帖子已移动到另一个话题中。"
  1596. #: static/misago/js/misago.js:16
  1597. msgid "Link to thread you want to move posts to"
  1598. msgstr "你希望移动到的话题链接"
  1599. #: static/misago/js/misago.js:16
  1600. msgid "You can't move selected posts at the moment."
  1601. msgstr "你目前无法移动选定的帖子。"
  1602. #: static/misago/js/misago.js:16
  1603. msgid "Split posts into new thread"
  1604. msgstr "拆分成新话题"
  1605. #: static/misago/js/misago.js:16
  1606. msgid "Selected posts were split into new thread."
  1607. msgstr "选定的帖子已拆分为新话题。"
  1608. #: static/misago/js/misago.js:16
  1609. msgid "Split posts"
  1610. msgstr "拆分帖子"
  1611. #: static/misago/js/misago.js:16
  1612. msgid "Thread has been made visible."
  1613. msgstr "话题已设为可见。"
  1614. #: static/misago/js/misago.js:16
  1615. msgid "Are you sure you want to delete this thread?"
  1616. msgstr "你确定要删除此话题吗?"
  1617. #: static/misago/js/misago.js:16
  1618. msgid "Thread has been deleted."
  1619. msgstr "话题已删除。"
  1620. #: static/misago/js/misago.js:16
  1621. msgid "Pin globally"
  1622. msgstr "全局置顶"
  1623. #: static/misago/js/misago.js:16
  1624. msgid "Pin locally"
  1625. msgstr "版块置顶"
  1626. #: static/misago/js/misago.js:16
  1627. msgid "Unpin"
  1628. msgstr "取消置顶"
  1629. #: static/misago/js/misago.js:17
  1630. msgid "Merge thread"
  1631. msgstr "合并话题"
  1632. #: static/misago/js/misago.js:17
  1633. msgid "Thread has been merged with other one."
  1634. msgstr "话题已经与其他话题合并。"
  1635. #: static/misago/js/misago.js:17
  1636. msgid "Link to thread you want to merge with"
  1637. msgstr "你想要合并到的话题链接"
  1638. #: static/misago/js/misago.js:17
  1639. msgid ""
  1640. "Merge will delete current thread and move its contents to the thread "
  1641. "specified here."
  1642. msgstr "话题合并将删除当前话题,并将此话题中的内容移动到指定的话题中。"
  1643. #: static/misago/js/misago.js:17
  1644. msgid "Move thread"
  1645. msgstr "移动话题"
  1646. #: static/misago/js/misago.js:17
  1647. msgid "You can't move this thread at the moment."
  1648. msgstr "你现在不可以移动这个话题,请稍后再试。"
  1649. #: static/misago/js/misago.js:17
  1650. msgid "Thread has been moved."
  1651. msgstr "话题已被移动。"
  1652. #: static/misago/js/misago.js:17 static/misago/js/misago.js:20
  1653. msgid "New category"
  1654. msgstr "新版块"
  1655. #: static/misago/js/misago.js:17 static/misago/js/misago.js:22
  1656. msgid "Go to first page"
  1657. msgstr "跳转到第一页"
  1658. #: static/misago/js/misago.js:17 static/misago/js/misago.js:22
  1659. msgid "Go to previous page"
  1660. msgstr "跳转到上一页"
  1661. #: static/misago/js/misago.js:17 static/misago/js/misago.js:22
  1662. msgid "Go to next page"
  1663. msgstr "跳转到下一页"
  1664. #: static/misago/js/misago.js:17 static/misago/js/misago.js:22
  1665. msgid "Go to last page"
  1666. msgstr "跳转到最后一页"
  1667. #: static/misago/js/misago.js:17
  1668. msgid "There is %(more)s more post in this thread."
  1669. msgid_plural "There are %(more)s more posts in this thread."
  1670. msgstr[0] "此话题中还有 %(more)s 条帖子。"
  1671. #: static/misago/js/misago.js:17
  1672. msgid "There are no more posts in this thread."
  1673. msgstr "此话题中帖子已全部显示。"
  1674. #: static/misago/js/misago.js:17 static/misago/js/misago.js:18
  1675. msgid "Enabled"
  1676. msgstr "已启用"
  1677. #: static/misago/js/misago.js:17 static/misago/js/misago.js:18
  1678. msgid "Disabled"
  1679. msgstr "已禁用"
  1680. #: static/misago/js/misago.js:17 static/misago/js/misago.js:19
  1681. msgid "Unsubscribe"
  1682. msgstr "取消订阅"
  1683. #: static/misago/js/misago.js:17 static/misago/js/misago.js:19
  1684. msgid "Subscribe"
  1685. msgstr "订阅"
  1686. #: static/misago/js/misago.js:17 static/misago/js/misago.js:19
  1687. msgid "Subscribe with e-mail"
  1688. msgstr "邮件订阅"
  1689. #: static/misago/js/misago.js:17
  1690. msgid "Go to first new post"
  1691. msgstr "跳转到第一条新帖子"
  1692. #: static/misago/js/misago.js:17
  1693. msgid "Go to best answer"
  1694. msgstr "跳转到最佳答案"
  1695. #: static/misago/js/misago.js:17
  1696. msgid "Go to first unapproved post"
  1697. msgstr "跳转到第一条未审批的帖子"
  1698. #: static/misago/js/misago.js:17
  1699. msgid "Go to last post"
  1700. msgstr "跳转到最后一个帖子"
  1701. #: static/misago/js/misago.js:17
  1702. msgid "Last"
  1703. msgstr "最后"
  1704. #: static/misago/js/misago.js:17
  1705. msgid "Last post"
  1706. msgstr "最后的帖子"
  1707. #: static/misago/js/misago.js:17 static/misago/js/misago.js:20
  1708. msgid "Options"
  1709. msgstr "选项"
  1710. #: static/misago/js/misago.js:18
  1711. msgid "Add poll"
  1712. msgstr "添加投票"
  1713. #: static/misago/js/misago.js:18
  1714. msgid ""
  1715. "There is %(threads)s new or updated thread. Click this message to show it."
  1716. msgid_plural ""
  1717. "There are %(threads)s new or updated threads. Click this message to show "
  1718. "them."
  1719. msgstr[0] "有 %(threads)s 条新的或已更新的话题。点击此消息显示他们。"
  1720. #: static/misago/js/misago.js:18
  1721. msgid "New posts"
  1722. msgstr "新帖子"
  1723. #: static/misago/js/misago.js:18
  1724. msgid "Answered"
  1725. msgstr "已回答"
  1726. #: static/misago/js/misago.js:18
  1727. msgid "Change subscription"
  1728. msgstr "更改订阅"
  1729. #: static/misago/js/misago.js:19
  1730. msgid "Start thread"
  1731. msgstr "发起话题"
  1732. #: static/misago/js/misago.js:19
  1733. msgid "Why not start one yourself?"
  1734. msgstr "为什么不发起一个?"
  1735. #: static/misago/js/misago.js:19
  1736. msgid "There are no threads on this forum... yet!"
  1737. msgstr "难以置信,这个站点上目前居然没有话题...!"
  1738. #: static/misago/js/misago.js:19
  1739. msgid "There are no threads in this category."
  1740. msgstr "此版块中没有话题。"
  1741. #: static/misago/js/misago.js:19
  1742. msgid "No threads matching specified criteria were found."
  1743. msgstr "没有找到符合标准的话题。"
  1744. #: static/misago/js/misago.js:19
  1745. msgid "Selected threads were pinned globally."
  1746. msgstr "所选话题已在全局置顶。"
  1747. #: static/misago/js/misago.js:19
  1748. msgid "Selected threads were pinned locally."
  1749. msgstr "所选话题已在版块内置顶。"
  1750. #: static/misago/js/misago.js:19
  1751. msgid "Selected threads were unpinned."
  1752. msgstr "所选话题已取消置顶。"
  1753. #: static/misago/js/misago.js:19
  1754. msgid "Selected threads were approved."
  1755. msgstr "所选话题已通过审批。"
  1756. #: static/misago/js/misago.js:19
  1757. msgid "Selected threads were opened."
  1758. msgstr "所选话题已开放。"
  1759. #: static/misago/js/misago.js:19
  1760. msgid "Selected threads were closed."
  1761. msgstr "所选话题已关闭。"
  1762. #: static/misago/js/misago.js:19
  1763. msgid "Selected threads were unhidden."
  1764. msgstr "所选话题已显示。"
  1765. #: static/misago/js/misago.js:19
  1766. msgid "Selected threads were hidden."
  1767. msgstr "所选话题已隐藏。"
  1768. #: static/misago/js/misago.js:19
  1769. msgid "You don't have permission to merge this thread with others."
  1770. msgstr "你没有权限将此话题与其他的合并。"
  1771. #: static/misago/js/misago.js:19
  1772. msgid "You have to select at least two threads to merge."
  1773. msgstr "你必须至少选择两个话题进行合并。"
  1774. #: static/misago/js/misago.js:19
  1775. msgid "Are you sure you want to delete selected threads?"
  1776. msgstr "你确定要删除所选话题吗?"
  1777. #: static/misago/js/misago.js:19
  1778. msgid "Selected threads were deleted."
  1779. msgstr "所选话题已删除。"
  1780. #: static/misago/js/misago.js:19
  1781. msgid "Pin threads globally"
  1782. msgstr "全局置顶话题"
  1783. #: static/misago/js/misago.js:19
  1784. msgid "Pin threads locally"
  1785. msgstr "版块内置顶话题"
  1786. #: static/misago/js/misago.js:19
  1787. msgid "Unpin threads"
  1788. msgstr "取消置顶话题"
  1789. #: static/misago/js/misago.js:19 static/misago/js/misago.js:20
  1790. msgid "Move threads"
  1791. msgstr "移动话题"
  1792. #: static/misago/js/misago.js:19
  1793. msgid "Approve threads"
  1794. msgstr "批准话题"
  1795. #: static/misago/js/misago.js:19
  1796. msgid "Open threads"
  1797. msgstr "开放话题"
  1798. #: static/misago/js/misago.js:19
  1799. msgid "Close threads"
  1800. msgstr "关闭话题"
  1801. #: static/misago/js/misago.js:19
  1802. msgid "Unhide threads"
  1803. msgstr "显示话题"
  1804. #: static/misago/js/misago.js:19
  1805. msgid "Hide threads"
  1806. msgstr "隐藏话题"
  1807. #: static/misago/js/misago.js:19
  1808. msgid "Delete threads"
  1809. msgstr "删除话题"
  1810. #: static/misago/js/misago.js:19
  1811. msgid "Threads moderation"
  1812. msgstr "审核话题"
  1813. #: static/misago/js/misago.js:19
  1814. msgid "One or more threads could not be deleted:"
  1815. msgstr "一条或多条话题无法删除:"
  1816. #: static/misago/js/misago.js:20
  1817. msgid ""
  1818. "You can't move threads because there are no categories you are allowed to "
  1819. "move them to."
  1820. msgstr "你不可以移动话题,因为没有接收你移动话题的版块。"
  1821. #: static/misago/js/misago.js:20
  1822. msgid ""
  1823. "You need permission to start threads in category to be able to merge threads"
  1824. " to it."
  1825. msgstr "你必须有权限在版块中发起话题,才可以向相应版块中合并话题。"
  1826. #: static/misago/js/misago.js:20
  1827. msgid "Selected threads were moved."
  1828. msgstr "所选话题已移动。"
  1829. #: static/misago/js/misago.js:20
  1830. msgid ""
  1831. "You need permission to start threads in category to be able to move threads "
  1832. "to it."
  1833. msgstr "你必须有权限在版块中发起话题,才可以移动话题到相应版块。"
  1834. #: static/misago/js/misago.js:20
  1835. msgid "Select all"
  1836. msgstr "全选"
  1837. #: static/misago/js/misago.js:20
  1838. msgid "Select none"
  1839. msgstr "取消选择"
  1840. #: static/misago/js/misago.js:20
  1841. msgid "All"
  1842. msgstr "所有"
  1843. #: static/misago/js/misago.js:20
  1844. msgid "All threads"
  1845. msgstr "所有话题"
  1846. #: static/misago/js/misago.js:20
  1847. msgid "My"
  1848. msgstr "我的"
  1849. #: static/misago/js/misago.js:20
  1850. msgid "My threads"
  1851. msgstr "我的话题"
  1852. #: static/misago/js/misago.js:20
  1853. msgid "New threads"
  1854. msgstr "新话题"
  1855. #: static/misago/js/misago.js:20
  1856. msgid "Unread"
  1857. msgstr "未读"
  1858. #: static/misago/js/misago.js:20
  1859. msgid "Unread threads"
  1860. msgstr "未读话题"
  1861. #: static/misago/js/misago.js:20
  1862. msgid "Subscribed"
  1863. msgstr "订阅"
  1864. #: static/misago/js/misago.js:20
  1865. msgid "Subscribed threads"
  1866. msgstr "订阅话题"
  1867. #: static/misago/js/misago.js:20
  1868. msgid "Unapproved content"
  1869. msgstr "未审批的内容"
  1870. #: static/misago/js/misago.js:20
  1871. msgid "You are browsing as guest."
  1872. msgstr "你正以访客身份浏览。"
  1873. #: static/misago/js/misago.js:20
  1874. msgid "Sign in or register to start and participate in discussions."
  1875. msgstr "登录或注册来发起或参与讨论。"
  1876. #: static/misago/js/misago.js:21
  1877. msgid "You have unread private threads!"
  1878. msgstr "你有未读的隐蔽话题!"
  1879. #: static/misago/js/misago.js:21 static/misago/js/misago.js:23
  1880. msgid "Private threads"
  1881. msgstr "隐蔽话题"
  1882. #: static/misago/js/misago.js:21
  1883. msgid "Are you sure you want to sign out?"
  1884. msgstr "你确定要退出吗?"
  1885. #: static/misago/js/misago.js:21
  1886. msgid "See your profile"
  1887. msgstr "查看个人资料"
  1888. #: static/misago/js/misago.js:21
  1889. msgid "Change options"
  1890. msgstr "账号设置"
  1891. #: static/misago/js/misago.js:21
  1892. msgid "Change avatar"
  1893. msgstr "修改头像"
  1894. #: static/misago/js/misago.js:21
  1895. msgid "Log out"
  1896. msgstr "退出"
  1897. #: static/misago/js/misago.js:21
  1898. msgid "%(username)s is banned until %(ban_expires)s"
  1899. msgstr "%(username)s 已被封禁到 %(ban_expires)s"
  1900. #: static/misago/js/misago.js:21
  1901. msgid "%(username)s is banned"
  1902. msgstr "%(username)s 已被封禁"
  1903. #: static/misago/js/misago.js:21
  1904. msgid "%(username)s is hiding presence"
  1905. msgstr "%(username)s 在隐身"
  1906. #: static/misago/js/misago.js:21
  1907. msgid "%(username)s is online (hidden)"
  1908. msgstr "%(username)s 在线(隐身)"
  1909. #: static/misago/js/misago.js:21
  1910. msgid "%(username)s was last seen %(last_click)s (hidden)"
  1911. msgstr "%(username)s 最后一次上线于 %(last_click)s(隐身)"
  1912. #: static/misago/js/misago.js:21
  1913. msgid "%(username)s is online"
  1914. msgstr "%(username)s 在线"
  1915. #: static/misago/js/misago.js:21
  1916. msgid "%(username)s was last seen %(last_click)s"
  1917. msgstr "%(username)s 最后一次上线于 %(last_click)s"
  1918. #: static/misago/js/misago.js:21
  1919. msgid "Banned"
  1920. msgstr "封禁"
  1921. #: static/misago/js/misago.js:21
  1922. msgid "Online (hidden)"
  1923. msgstr "在线(隐身)"
  1924. #: static/misago/js/misago.js:21
  1925. msgid "Offline (hidden)"
  1926. msgstr "离线(隐身)"
  1927. #: static/misago/js/misago.js:21
  1928. msgid "Online"
  1929. msgstr "在线"
  1930. #: static/misago/js/misago.js:21
  1931. msgid "Offline"
  1932. msgstr "离线"
  1933. #: static/misago/js/misago.js:21
  1934. msgid "%(followers)s follower"
  1935. msgid_plural "%(followers)s followers"
  1936. msgstr[0] "%(followers)s 个关注者"
  1937. #: static/misago/js/misago.js:21
  1938. msgid "No users have posted any new messages during last %(days)s days."
  1939. msgstr "最近 %(days)s 天没有用户发布新的帖子。"
  1940. #: static/misago/js/misago.js:22
  1941. msgid "Rank"
  1942. msgstr "级别"
  1943. #: static/misago/js/misago.js:22
  1944. msgid "Ranked posts"
  1945. msgstr "级别帖子数"
  1946. #: static/misago/js/misago.js:22
  1947. msgid "Total posts"
  1948. msgstr "帖子总数"
  1949. #: static/misago/js/misago.js:22
  1950. msgid "%(posters)s top poster from last %(days)s days."
  1951. msgid_plural "%(posters)s top posters from last %(days)s days."
  1952. msgstr[0] "过去 %(days)s 天最活跃的 %(posters)s 名用户。"
  1953. #: static/misago/js/misago.js:22
  1954. msgid "Users"
  1955. msgstr "用户"
  1956. #: static/misago/js/misago.js:22
  1957. msgid "There is %(more)s more member with this role."
  1958. msgid_plural "There are %(more)s more members with this role."
  1959. msgstr[0] "还有 %(more)s 名拥有此权限的用户"
  1960. #: static/misago/js/misago.js:22
  1961. msgid "There are no more members with this role."
  1962. msgstr "所有拥有此身份的用户已加载完毕。"
  1963. #: static/misago/js/misago.js:22
  1964. msgid "There are no users with this rank at the moment."
  1965. msgstr "目前没有这个级别的用户。"
  1966. #: static/misago/js/misago.js:22
  1967. msgid "yes"
  1968. msgstr "是"
  1969. #: static/misago/js/misago.js:22
  1970. msgid "no"
  1971. msgstr "否"
  1972. #: static/misago/js/misago.js:23
  1973. msgid ""
  1974. "Private threads are threads which only those that started them and those "
  1975. "they have invited may see and participate in."
  1976. msgstr "仅发起者和被邀请者可以查看和参与隐蔽话题。"
  1977. #: static/misago/js/misago.js:23
  1978. msgid "You aren't participating in any private threads."
  1979. msgstr "你没有参与任何隐蔽话题。"
  1980. #: static/misago/js/misago.js:24
  1981. msgid "Lost connection with application."
  1982. msgstr "已断开网站连接。"
  1983. #: static/misago/js/misago.js:24
  1984. msgid "Action link is invalid."
  1985. msgstr "操作链接无效。"
  1986. #: static/misago/js/misago.js:24
  1987. msgid "Unknown error has occured."
  1988. msgstr "发生未知错误。"
  1989. #: static/misago/js/misago.js:24
  1990. msgid "Upload was rejected by server as too large."
  1991. msgstr "文件过大而被服务器拒绝。"
  1992. #: static/misago/js/misago.js:24
  1993. msgid "Failed to load CAPTCHA."
  1994. msgstr "无法加载验证码。"
  1995. #: static/misago/js/misago.js:24
  1996. msgid "Please solve the quick test"
  1997. msgstr "请完成验证"
  1998. #: static/misago/js/misago.js:24
  1999. msgid "This test helps us prevent automated spam registrations on our site."
  2000. msgstr "此验证主要用于预防注册木马。"
  2001. #: static/misago/js/misago.js:24
  2002. msgid "page: %(page)s"
  2003. msgstr "页:%(page)s"
  2004. #: static/misago/js/misago.js:24
  2005. msgid "You are already working on other message. Do you want to discard it?"
  2006. msgstr "你已经在处理其他消息。确定要放弃吗?"
  2007. #: static/misago/js/misago.js:24
  2008. msgid "You are already working on a poll. Do you want to discard it?"
  2009. msgstr "你已经在编辑投票。确定要放弃吗?"
  2010. #: static/misago/js/misago.js:25
  2011. msgid "You don't have permission to perform this action."
  2012. msgstr "你无权执行此操作。"
  2013. #: static/misago/js/misago.js:25
  2014. msgid "You are banned"
  2015. msgstr "你被封禁了"
  2016. #: static/misago/js/misago.js:25
  2017. msgid "This field is required."
  2018. msgstr "必填项。"
  2019. #: static/misago/js/misago.js:25
  2020. msgid "You have to accept the terms of service."
  2021. msgstr "你需要接受服务条款。"
  2022. #: static/misago/js/misago.js:25
  2023. msgid "You have to accept the privacy policy."
  2024. msgstr "你需要接受隐私政策。"
  2025. #: static/misago/js/misago.js:25
  2026. msgid ""
  2027. "Ensure this value has at least %(limit_value)s character (it has "
  2028. "%(show_value)s)."
  2029. msgid_plural ""
  2030. "Ensure this value has at least %(limit_value)s characters (it has "
  2031. "%(show_value)s)."
  2032. msgstr[0] "至少需要有 %(limit_value)s 个字符(现有 %(show_value)s 个字符)。"
  2033. #: static/misago/js/misago.js:25
  2034. msgid ""
  2035. "Ensure this value has at most %(limit_value)s character (it has "
  2036. "%(show_value)s)."
  2037. msgid_plural ""
  2038. "Ensure this value has at most %(limit_value)s characters (it has "
  2039. "%(show_value)s)."
  2040. msgstr[0] "最多包含 %(limit_value)s 个字符(现有 %(show_value)s 个字符)。"
  2041. #: static/misago/js/misago.js:25
  2042. msgid "Username must be at least %(limit_value)s character long."
  2043. msgid_plural "Username must be at least %(limit_value)s characters long."
  2044. msgstr[0] "用户名至少需要 %(limit_value)s 个字符。"
  2045. #: static/misago/js/misago.js:25
  2046. msgid "Username cannot be longer than %(limit_value)s character."
  2047. msgid_plural "Username cannot be longer than %(limit_value)s characters."
  2048. msgstr[0] "用户名不可以超过 %(limit_value)s 个字符。"
  2049. #: static/misago/js/misago.js:25
  2050. msgid "Username can only contain latin alphabet letters and digits."
  2051. msgstr "用户名只可以包含拉丁字母和数字。"
  2052. #: static/misago/js/misago.js:25
  2053. msgid "Valid password must be at least %(limit_value)s character long."
  2054. msgid_plural ""
  2055. "Valid password must be at least %(limit_value)s characters long."
  2056. msgstr[0] "有效的密码最少需要 %(limit_value)s 字符。"