djangojs.po 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309
  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. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: PACKAGE VERSION\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2023-03-19 13:09+0000\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "Language: \n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  20. #: static/misago/admin/index.js:16
  21. msgid "defineLocaleOverride"
  22. msgstr ""
  23. #: static/misago/js/misago.js:1
  24. msgid "I have read and accept %(agreement)s."
  25. msgstr ""
  26. #: static/misago/js/misago.js:1
  27. msgid "the terms of service"
  28. msgstr ""
  29. #: static/misago/js/misago.js:1
  30. msgid "the privacy policy"
  31. msgstr ""
  32. #: static/misago/js/misago.js:1
  33. msgid "Pinned globally"
  34. msgstr ""
  35. #: static/misago/js/misago.js:1
  36. msgid "Pinned in category"
  37. msgstr ""
  38. #: static/misago/js/misago.js:1
  39. msgid "Answered"
  40. msgstr ""
  41. #: static/misago/js/misago.js:1
  42. msgid "Poll"
  43. msgstr ""
  44. #: static/misago/js/misago.js:1
  45. msgid "Awaiting approval"
  46. msgstr ""
  47. #: static/misago/js/misago.js:1
  48. msgid "Has unapproved posts"
  49. msgstr ""
  50. #: static/misago/js/misago.js:1
  51. msgid "Closed"
  52. msgstr ""
  53. #: static/misago/js/misago.js:1
  54. msgid "Hidden"
  55. msgstr ""
  56. #: static/misago/js/misago.js:1
  57. msgid "%(replies)s reply"
  58. msgid_plural "%(replies)s replies"
  59. msgstr[0] ""
  60. msgstr[1] ""
  61. #: static/misago/js/misago.js:1
  62. msgid "No profile details are editable at this time."
  63. msgstr ""
  64. #: static/misago/js/misago.js:1
  65. msgid "This option is currently unavailable."
  66. msgstr ""
  67. #: static/misago/js/misago.js:1
  68. msgid "Form contains errors."
  69. msgstr ""
  70. #: static/misago/js/misago.js:1
  71. msgid "Save changes"
  72. msgstr ""
  73. #: static/misago/js/misago.js:1
  74. msgid "Cancel"
  75. msgstr ""
  76. #: static/misago/js/misago.js:1
  77. msgid "Edit details"
  78. msgstr ""
  79. #: static/misago/js/misago.js:1
  80. msgid "(error)"
  81. msgstr ""
  82. #: static/misago/js/misago.js:1
  83. msgid "(success)"
  84. msgstr ""
  85. #: static/misago/js/misago.js:1
  86. msgid "Are you sure you want to delete all polls?"
  87. msgstr ""
  88. #: static/misago/js/misago.js:1
  89. msgctxt "modal"
  90. msgid "Close"
  91. msgstr ""
  92. #: static/misago/js/misago.js:1
  93. msgid "Merge threads"
  94. msgstr ""
  95. #: static/misago/js/misago.js:1
  96. msgid "Best answer"
  97. msgstr ""
  98. #: static/misago/js/misago.js:1
  99. msgid ""
  100. "Please select the best answer for your newly merged thread. No posts will be "
  101. "deleted during the merge."
  102. msgstr ""
  103. #: static/misago/js/misago.js:1
  104. msgid ""
  105. "Please select the poll for your newly merged thread. Rejected polls will be "
  106. "permanently deleted and cannot be recovered."
  107. msgstr ""
  108. #: static/misago/js/misago.js:1
  109. msgid "Ok"
  110. msgstr ""
  111. #: static/misago/js/misago.js:1
  112. msgid "This post's contents cannot be displayed."
  113. msgstr ""
  114. #: static/misago/js/misago.js:1
  115. msgid "This error is caused by invalid post content manipulation."
  116. msgstr ""
  117. #: static/misago/js/misago.js:1
  118. msgid "posted %(posted_on)s"
  119. msgstr ""
  120. #: static/misago/js/misago.js:1
  121. msgid "See post"
  122. msgstr ""
  123. #: static/misago/js/misago.js:1
  124. msgid "Removed user"
  125. msgstr ""
  126. #: static/misago/js/misago.js:1
  127. msgctxt "post reply"
  128. msgid "Quote"
  129. msgstr ""
  130. #: static/misago/js/misago.js:1
  131. msgctxt "markup editor"
  132. msgid "Attachment details"
  133. msgstr ""
  134. #: static/misago/js/misago.js:1
  135. msgctxt "markup editor"
  136. msgid "Type and size"
  137. msgstr ""
  138. #: static/misago/js/misago.js:1
  139. msgctxt "markup editor"
  140. msgid "Uploaded at"
  141. msgstr ""
  142. #: static/misago/js/misago.js:1
  143. msgctxt "markup editor"
  144. msgid "Uploader"
  145. msgstr ""
  146. #: static/misago/js/misago.js:1
  147. msgctxt "markup editor"
  148. msgid "Insert into message"
  149. msgstr ""
  150. #: static/misago/js/misago.js:1
  151. msgctxt "markup editor"
  152. msgid "Remove attachment"
  153. msgstr ""
  154. #: static/misago/js/misago.js:1
  155. msgctxt "markup editor"
  156. msgid "Remove this attachment?"
  157. msgstr ""
  158. #: static/misago/js/misago.js:1
  159. msgctxt "markup editor"
  160. msgid "See error"
  161. msgstr ""
  162. #: static/misago/js/misago.js:1
  163. msgctxt "markup editor"
  164. msgid "%(filename)s: %(error)s"
  165. msgstr ""
  166. #: static/misago/js/misago.js:1
  167. msgctxt "markup editor"
  168. msgid "Protected"
  169. msgstr ""
  170. #: static/misago/js/misago.js:1
  171. msgctxt "markup editor"
  172. msgid "Protect"
  173. msgstr ""
  174. #: static/misago/js/misago.js:1
  175. msgctxt "markup editor"
  176. msgid "Edit"
  177. msgstr ""
  178. #: static/misago/js/misago.js:1
  179. msgctxt "markup editor"
  180. msgid "Preview"
  181. msgstr ""
  182. #: static/misago/js/misago.js:1
  183. msgid "Post"
  184. msgstr ""
  185. #: static/misago/js/misago.js:1
  186. msgid "This field is required."
  187. msgstr ""
  188. #: static/misago/js/misago.js:1
  189. msgctxt "markup editor"
  190. msgid "Code"
  191. msgstr ""
  192. #: static/misago/js/misago.js:1
  193. msgctxt "markup editor"
  194. msgid "Syntax highlighting"
  195. msgstr ""
  196. #: static/misago/js/misago.js:1
  197. msgctxt "markup editor"
  198. msgid "No syntax highlighting"
  199. msgstr ""
  200. #: static/misago/js/misago.js:1
  201. msgctxt "markup editor"
  202. msgid "Code to insert"
  203. msgstr ""
  204. #: static/misago/js/misago.js:1
  205. msgctxt "markup editor"
  206. msgid "Insert code"
  207. msgstr ""
  208. #: static/misago/js/misago.js:1
  209. msgctxt "markup help"
  210. msgid "Formatting help"
  211. msgstr ""
  212. #: static/misago/js/misago.js:1
  213. msgctxt "markup help"
  214. msgid "Emphasis text"
  215. msgstr ""
  216. #: static/misago/js/misago.js:1
  217. msgctxt "markup help"
  218. msgid "_This text will have emphasis_"
  219. msgstr ""
  220. #: static/misago/js/misago.js:1
  221. msgctxt "markup help"
  222. msgid "This text will have emphasis"
  223. msgstr ""
  224. #: static/misago/js/misago.js:1
  225. msgctxt "markup help"
  226. msgid "Bold text"
  227. msgstr ""
  228. #: static/misago/js/misago.js:1
  229. msgctxt "markup help"
  230. msgid "**This text will be bold**"
  231. msgstr ""
  232. #: static/misago/js/misago.js:1
  233. msgctxt "markup help"
  234. msgid "This text will be bold"
  235. msgstr ""
  236. #: static/misago/js/misago.js:1
  237. msgctxt "markup help"
  238. msgid "Removed text"
  239. msgstr ""
  240. #: static/misago/js/misago.js:1
  241. msgctxt "markup help"
  242. msgid "~~This text will be removed~~"
  243. msgstr ""
  244. #: static/misago/js/misago.js:1
  245. msgctxt "markup help"
  246. msgid "This text will be removed"
  247. msgstr ""
  248. #: static/misago/js/misago.js:1
  249. msgctxt "markup help"
  250. msgid "Bold text (BBCode)"
  251. msgstr ""
  252. #: static/misago/js/misago.js:1
  253. msgctxt "markup help"
  254. msgid "[b]This text will be bold[/b]"
  255. msgstr ""
  256. #: static/misago/js/misago.js:1
  257. msgctxt "markup help"
  258. msgid "Underlined text (BBCode)"
  259. msgstr ""
  260. #: static/misago/js/misago.js:1
  261. msgctxt "markup help"
  262. msgid "[u]This text will be underlined[/u]"
  263. msgstr ""
  264. #: static/misago/js/misago.js:1
  265. msgctxt "markup help"
  266. msgid "This text will be underlined"
  267. msgstr ""
  268. #: static/misago/js/misago.js:1
  269. msgctxt "markup help"
  270. msgid "Italics text (BBCode)"
  271. msgstr ""
  272. #: static/misago/js/misago.js:1
  273. msgctxt "markup help"
  274. msgid "[i]This text will be in italics[/i]"
  275. msgstr ""
  276. #: static/misago/js/misago.js:1
  277. msgctxt "markup help"
  278. msgid "This text will be in italics"
  279. msgstr ""
  280. #: static/misago/js/misago.js:1
  281. msgctxt "markup help"
  282. msgid "Link"
  283. msgstr ""
  284. #: static/misago/js/misago.js:1
  285. msgctxt "markup help"
  286. msgid "Link with text"
  287. msgstr ""
  288. #: static/misago/js/misago.js:1
  289. msgctxt "markup help"
  290. msgid "Link text"
  291. msgstr ""
  292. #: static/misago/js/misago.js:1
  293. msgctxt "markup help"
  294. msgid "Link (BBCode)"
  295. msgstr ""
  296. #: static/misago/js/misago.js:1
  297. msgctxt "markup help"
  298. msgid "Link with text (BBCode)"
  299. msgstr ""
  300. #: static/misago/js/misago.js:1
  301. msgctxt "markup help"
  302. msgid "Image"
  303. msgstr ""
  304. #: static/misago/js/misago.js:1
  305. msgctxt "markup help"
  306. msgid "Image with alternate text"
  307. msgstr ""
  308. #: static/misago/js/misago.js:1
  309. msgctxt "markup help"
  310. msgid "Image text"
  311. msgstr ""
  312. #: static/misago/js/misago.js:1
  313. msgctxt "markup help"
  314. msgid "Image (BBCode)"
  315. msgstr ""
  316. #: static/misago/js/misago.js:1
  317. msgctxt "markup help"
  318. msgid "Mention user by their name"
  319. msgstr ""
  320. #: static/misago/js/misago.js:1
  321. msgctxt "markup help"
  322. msgid "Heading 1"
  323. msgstr ""
  324. #: static/misago/js/misago.js:1
  325. msgctxt "markup help"
  326. msgid "# First level heading"
  327. msgstr ""
  328. #: static/misago/js/misago.js:1
  329. msgctxt "markup help"
  330. msgid "First level heading"
  331. msgstr ""
  332. #: static/misago/js/misago.js:1
  333. msgctxt "markup help"
  334. msgid "Heading 2"
  335. msgstr ""
  336. #: static/misago/js/misago.js:1
  337. msgctxt "markup help"
  338. msgid "## Second level heading"
  339. msgstr ""
  340. #: static/misago/js/misago.js:1
  341. msgctxt "markup help"
  342. msgid "Second level heading"
  343. msgstr ""
  344. #: static/misago/js/misago.js:1
  345. msgctxt "markup help"
  346. msgid "Heading 3"
  347. msgstr ""
  348. #: static/misago/js/misago.js:1
  349. msgctxt "markup help"
  350. msgid "### Third level heading"
  351. msgstr ""
  352. #: static/misago/js/misago.js:1
  353. msgctxt "markup help"
  354. msgid "Third level heading"
  355. msgstr ""
  356. #: static/misago/js/misago.js:1
  357. msgctxt "markup help"
  358. msgid "Heading 4"
  359. msgstr ""
  360. #: static/misago/js/misago.js:1
  361. msgctxt "markup help"
  362. msgid "#### Fourth level heading"
  363. msgstr ""
  364. #: static/misago/js/misago.js:1
  365. msgctxt "markup help"
  366. msgid "Fourth level heading"
  367. msgstr ""
  368. #: static/misago/js/misago.js:1
  369. msgctxt "markup help"
  370. msgid "Heading 5"
  371. msgstr ""
  372. #: static/misago/js/misago.js:1
  373. msgctxt "markup help"
  374. msgid "##### Fifth level heading"
  375. msgstr ""
  376. #: static/misago/js/misago.js:1
  377. msgctxt "markup help"
  378. msgid "Fifth level heading"
  379. msgstr ""
  380. #: static/misago/js/misago.js:1
  381. msgctxt "markup help"
  382. msgid "Unordered list"
  383. msgstr ""
  384. #: static/misago/js/misago.js:1
  385. msgctxt "markup help"
  386. msgid "Ordered list"
  387. msgstr ""
  388. #: static/misago/js/misago.js:1
  389. msgctxt "markup help"
  390. msgid "Quote text"
  391. msgstr ""
  392. #: static/misago/js/misago.js:1
  393. msgctxt "markup help"
  394. msgid "Quoted text"
  395. msgstr ""
  396. #: static/misago/js/misago.js:1
  397. msgctxt "markup help"
  398. msgid "Quote text (BBCode)"
  399. msgstr ""
  400. #: static/misago/js/misago.js:1
  401. msgid "Quoted message:"
  402. msgstr ""
  403. #: static/misago/js/misago.js:1
  404. msgctxt "markup help"
  405. msgid "Quote text with title (BBCode)"
  406. msgstr ""
  407. #: static/misago/js/misago.js:1
  408. msgctxt "markup help"
  409. msgid "Quote title"
  410. msgstr ""
  411. #: static/misago/js/misago.js:1
  412. msgid "Quote title has written:"
  413. msgstr ""
  414. #: static/misago/js/misago.js:1
  415. msgctxt "markup help"
  416. msgid "Spoiler"
  417. msgstr ""
  418. #: static/misago/js/misago.js:1
  419. msgctxt "markup help"
  420. msgid "Secret text"
  421. msgstr ""
  422. #: static/misago/js/misago.js:1
  423. msgctxt "markup help"
  424. msgid "Inline code"
  425. msgstr ""
  426. #: static/misago/js/misago.js:1
  427. msgctxt "markup help"
  428. msgid "`Inline code`"
  429. msgstr ""
  430. #: static/misago/js/misago.js:1
  431. msgctxt "markup help"
  432. msgid "Code block"
  433. msgstr ""
  434. #: static/misago/js/misago.js:1
  435. msgctxt "markup help"
  436. msgid "Code block with syntax highlighting"
  437. msgstr ""
  438. #: static/misago/js/misago.js:1
  439. msgctxt "markup help"
  440. msgid "Code block (BBCode)"
  441. msgstr ""
  442. #: static/misago/js/misago.js:1
  443. msgctxt "markup help"
  444. msgid "Code block with syntax highlighting (BBCode)"
  445. msgstr ""
  446. #: static/misago/js/misago.js:1
  447. msgctxt "markup help"
  448. msgid "Horizontal rule"
  449. msgstr ""
  450. #: static/misago/js/misago.js:1
  451. msgctxt "markup help"
  452. msgid "Horizontal rule (BBCode)"
  453. msgstr ""
  454. #: static/misago/js/misago.js:1
  455. msgid "Reveal spoiler"
  456. msgstr ""
  457. #: static/misago/js/misago.js:1
  458. msgid "Enter a valid address."
  459. msgstr ""
  460. #: static/misago/js/misago.js:1
  461. msgctxt "markup editor"
  462. msgid "Image"
  463. msgstr ""
  464. #: static/misago/js/misago.js:1
  465. msgctxt "markup editor"
  466. msgid "Image description"
  467. msgstr ""
  468. #: static/misago/js/misago.js:1
  469. msgctxt "markup editor"
  470. msgid ""
  471. "Optional but recommended . Will be displayed instead of image when it fails "
  472. "to load."
  473. msgstr ""
  474. #: static/misago/js/misago.js:1
  475. msgctxt "markup editor"
  476. msgid "Image address"
  477. msgstr ""
  478. #: static/misago/js/misago.js:1
  479. msgctxt "markup editor"
  480. msgid "Insert image"
  481. msgstr ""
  482. #: static/misago/js/misago.js:1
  483. msgctxt "markup editor"
  484. msgid "Link"
  485. msgstr ""
  486. #: static/misago/js/misago.js:1
  487. msgctxt "markup editor"
  488. msgid "Link text"
  489. msgstr ""
  490. #: static/misago/js/misago.js:1
  491. msgctxt "markup editor"
  492. msgid "Optional. Will be displayed instead of link's address."
  493. msgstr ""
  494. #: static/misago/js/misago.js:1
  495. msgctxt "markup editor"
  496. msgid "Link address"
  497. msgstr ""
  498. #: static/misago/js/misago.js:1
  499. msgctxt "markup editor"
  500. msgid "Insert link"
  501. msgstr ""
  502. #: static/misago/js/misago.js:1
  503. msgctxt "markup editor"
  504. msgid "Quote"
  505. msgstr ""
  506. #: static/misago/js/misago.js:1
  507. msgctxt "markup editor"
  508. msgid "Quote's author or source"
  509. msgstr ""
  510. #: static/misago/js/misago.js:1
  511. msgctxt "markup editor"
  512. msgid "Optional. If it's username, put \"@\" before it (\"@JohnDoe\")."
  513. msgstr ""
  514. #: static/misago/js/misago.js:1
  515. msgctxt "markup editor"
  516. msgid "Quoted text"
  517. msgstr ""
  518. #: static/misago/js/misago.js:1
  519. msgctxt "markup editor"
  520. msgid "Insert quote"
  521. msgstr ""
  522. #: static/misago/js/misago.js:1
  523. msgctxt "markup editor"
  524. msgid "File %(filename)s is bigger than %(limit)s."
  525. msgstr ""
  526. #: static/misago/js/misago.js:1
  527. msgctxt "markup editor"
  528. msgid "Strong"
  529. msgstr ""
  530. #: static/misago/js/misago.js:1
  531. msgctxt "example markup"
  532. msgid "Strong text"
  533. msgstr ""
  534. #: static/misago/js/misago.js:1
  535. msgctxt "markup editor"
  536. msgid "Emphasis"
  537. msgstr ""
  538. #: static/misago/js/misago.js:1
  539. msgctxt "example markup"
  540. msgid "Text with emphasis"
  541. msgstr ""
  542. #: static/misago/js/misago.js:1
  543. msgctxt "markup editor"
  544. msgid "Strikethrough"
  545. msgstr ""
  546. #: static/misago/js/misago.js:1
  547. msgctxt "example markup"
  548. msgid "Text with strikethrough"
  549. msgstr ""
  550. #: static/misago/js/misago.js:1
  551. msgctxt "markup editor"
  552. msgid "Horizontal ruler"
  553. msgstr ""
  554. #: static/misago/js/misago.js:1
  555. msgctxt "markup editor"
  556. msgid "Spoiler"
  557. msgstr ""
  558. #: static/misago/js/misago.js:1
  559. msgctxt "markup editor"
  560. msgid "Spoiler text"
  561. msgstr ""
  562. #: static/misago/js/misago.js:1
  563. msgctxt "markup editor"
  564. msgid "Upload file"
  565. msgstr ""
  566. #: static/misago/js/misago.js:1
  567. msgctxt "markup editor"
  568. msgid "Formatting help"
  569. msgstr ""
  570. #: static/misago/js/misago.js:1
  571. msgctxt "dialog"
  572. msgid "Open"
  573. msgstr ""
  574. #: static/misago/js/misago.js:1
  575. msgctxt "dialog"
  576. msgid "Minimize"
  577. msgstr ""
  578. #: static/misago/js/misago.js:1
  579. msgctxt "dialog"
  580. msgid "Exit the fullscreen mode"
  581. msgstr ""
  582. #: static/misago/js/misago.js:1
  583. msgctxt "dialog"
  584. msgid "Enter the fullscreen mode"
  585. msgstr ""
  586. #: static/misago/js/misago.js:1
  587. msgctxt "dialog"
  588. msgid "Cancel"
  589. msgstr ""
  590. #: static/misago/js/misago.js:1
  591. msgctxt "post thread"
  592. msgid "Options"
  593. msgstr ""
  594. #: static/misago/js/misago.js:1
  595. msgctxt "post thread"
  596. msgid "Pinned globally"
  597. msgstr ""
  598. #: static/misago/js/misago.js:1
  599. msgctxt "post thread"
  600. msgid "Pinned locally"
  601. msgstr ""
  602. #: static/misago/js/misago.js:1
  603. msgctxt "post thread"
  604. msgid "Not pinned"
  605. msgstr ""
  606. #: static/misago/js/misago.js:1
  607. msgctxt "post thread"
  608. msgid "Open"
  609. msgstr ""
  610. #: static/misago/js/misago.js:1
  611. msgctxt "post thread"
  612. msgid "Closed"
  613. msgstr ""
  614. #: static/misago/js/misago.js:1
  615. msgctxt "post thread"
  616. msgid "Visible"
  617. msgstr ""
  618. #: static/misago/js/misago.js:1
  619. msgctxt "post thread"
  620. msgid "Hidden"
  621. msgstr ""
  622. #: static/misago/js/misago.js:1
  623. msgctxt "post thread"
  624. msgid "Are you sure you want to discard thread?"
  625. msgstr ""
  626. #: static/misago/js/misago.js:1
  627. msgid "You have to enter thread title."
  628. msgstr ""
  629. #: static/misago/js/misago.js:1
  630. msgid "You have to enter a message."
  631. msgstr ""
  632. #: static/misago/js/misago.js:1
  633. msgctxt "post thread"
  634. msgid "Your thread has been posted."
  635. msgstr ""
  636. #: static/misago/js/misago.js:1
  637. msgctxt "post thread submit"
  638. msgid "Post thread"
  639. msgstr ""
  640. #: static/misago/js/misago.js:1
  641. msgctxt "post thread"
  642. msgid "Thread title"
  643. msgstr ""
  644. #: static/misago/js/misago.js:1
  645. msgctxt "post thread submit"
  646. msgid "Start thread"
  647. msgstr ""
  648. #: static/misago/js/misago.js:1
  649. msgctxt "post thread"
  650. msgid "Start new thread"
  651. msgstr ""
  652. #: static/misago/js/misago.js:1
  653. msgctxt "post thread"
  654. msgid "Are you sure you want to discard private thread?"
  655. msgstr ""
  656. #: static/misago/js/misago.js:1
  657. msgid "You have to enter at least one recipient."
  658. msgstr ""
  659. #: static/misago/js/misago.js:1
  660. msgctxt "post thread"
  661. msgid "Recipients, eg.: Danny, Lisa, Alice"
  662. msgstr ""
  663. #: static/misago/js/misago.js:1
  664. msgctxt "post thread"
  665. msgid "Start private thread"
  666. msgstr ""
  667. #: static/misago/js/misago.js:1
  668. msgctxt "post reply"
  669. msgid "Are you sure you want to discard your reply?"
  670. msgstr ""
  671. #: static/misago/js/misago.js:1
  672. msgctxt "post reply"
  673. msgid "Your reply has been posted."
  674. msgstr ""
  675. #: static/misago/js/misago.js:1
  676. msgctxt "post reply submit"
  677. msgid "Post reply"
  678. msgstr ""
  679. #: static/misago/js/misago.js:1
  680. msgctxt "post reply"
  681. msgid "Reply to: %(thread)s"
  682. msgstr ""
  683. #: static/misago/js/misago.js:1
  684. msgid "Are you sure you want to discard changes?"
  685. msgstr ""
  686. #: static/misago/js/misago.js:1
  687. msgid "Reply has been edited."
  688. msgstr ""
  689. #: static/misago/js/misago.js:1
  690. msgctxt "edit reply submit"
  691. msgid "Edit reply"
  692. msgstr ""
  693. #: static/misago/js/misago.js:1
  694. msgctxt "edit reply"
  695. msgid "Edit reply by %(poster)s from %(date)s"
  696. msgstr ""
  697. #: static/misago/js/misago.js:1
  698. msgid ""
  699. "Thread title should be at least %(limit_value)s character long (it has "
  700. "%(show_value)s)."
  701. msgid_plural ""
  702. "Thread title should be at least %(limit_value)s characters long (it has "
  703. "%(show_value)s)."
  704. msgstr[0] ""
  705. msgstr[1] ""
  706. #: static/misago/js/misago.js:1
  707. msgid ""
  708. "Thread title cannot be longer than %(limit_value)s character (it has "
  709. "%(show_value)s)."
  710. msgid_plural ""
  711. "Thread title cannot be longer than %(limit_value)s characters (it has "
  712. "%(show_value)s)."
  713. msgstr[0] ""
  714. msgstr[1] ""
  715. #: static/misago/js/misago.js:1
  716. msgid ""
  717. "Posted message cannot be longer than %(limit_value)s character (it has "
  718. "%(show_value)s)."
  719. msgid_plural ""
  720. "Posted message cannot be longer than %(limit_value)s characters (it has "
  721. "%(show_value)s)."
  722. msgstr[0] ""
  723. msgstr[1] ""
  724. #: static/misago/js/misago.js:1
  725. msgid ""
  726. "Posted message should be at least %(limit_value)s character long (it has "
  727. "%(show_value)s)."
  728. msgid_plural ""
  729. "Posted message should be at least %(limit_value)s characters long (it has "
  730. "%(show_value)s)."
  731. msgstr[0] ""
  732. msgstr[1] ""
  733. #: static/misago/js/misago.js:1
  734. msgid "Fill out both fields."
  735. msgstr ""
  736. #: static/misago/js/misago.js:1
  737. msgid "Activate account"
  738. msgstr ""
  739. #: static/misago/js/misago.js:1
  740. msgid "Sign in"
  741. msgstr ""
  742. #: static/misago/js/misago.js:1
  743. msgid "Sign in with %(site)s"
  744. msgstr ""
  745. #: static/misago/js/misago.js:1
  746. msgid "Or use your forum account:"
  747. msgstr ""
  748. #: static/misago/js/misago.js:1
  749. msgid "Username or e-mail"
  750. msgstr ""
  751. #: static/misago/js/misago.js:1
  752. msgid "Password"
  753. msgstr ""
  754. #: static/misago/js/misago.js:1
  755. msgid "Forgot password?"
  756. msgstr ""
  757. #: static/misago/js/misago.js:1
  758. msgid "%(username)s is banned until %(ban_expires)s"
  759. msgstr ""
  760. #: static/misago/js/misago.js:1
  761. msgid "%(username)s is banned"
  762. msgstr ""
  763. #: static/misago/js/misago.js:1
  764. msgid "%(username)s is hiding presence"
  765. msgstr ""
  766. #: static/misago/js/misago.js:1
  767. msgid "%(username)s is online (hidden)"
  768. msgstr ""
  769. #: static/misago/js/misago.js:1
  770. msgid "%(username)s was last seen %(last_click)s (hidden)"
  771. msgstr ""
  772. #: static/misago/js/misago.js:1
  773. msgid "%(username)s is online"
  774. msgstr ""
  775. #: static/misago/js/misago.js:1
  776. msgid "%(username)s was last seen %(last_click)s"
  777. msgstr ""
  778. #: static/misago/js/misago.js:1
  779. msgid "Banned"
  780. msgstr ""
  781. #: static/misago/js/misago.js:1
  782. msgid "Online (hidden)"
  783. msgstr ""
  784. #: static/misago/js/misago.js:1
  785. msgid "Offline (hidden)"
  786. msgstr ""
  787. #: static/misago/js/misago.js:1
  788. msgid "Online"
  789. msgstr ""
  790. #: static/misago/js/misago.js:1
  791. msgid "Offline"
  792. msgstr ""
  793. #: static/misago/js/misago.js:1
  794. msgid "No name changes have been recorded for your account."
  795. msgstr ""
  796. #: static/misago/js/misago.js:1
  797. msgid "Joined on %(joined_on)s"
  798. msgstr ""
  799. #: static/misago/js/misago.js:1
  800. msgid "Joined %(joined_on)s"
  801. msgstr ""
  802. #: static/misago/js/misago.js:1
  803. msgid "%(posts)s post"
  804. msgid_plural "%(posts)s posts"
  805. msgstr[0] ""
  806. msgstr[1] ""
  807. #: static/misago/js/misago.js:1
  808. msgid "%(threads)s thread"
  809. msgid_plural "%(threads)s threads"
  810. msgstr[0] ""
  811. msgstr[1] ""
  812. #: static/misago/js/misago.js:1
  813. msgid "%(followers)s follower"
  814. msgid_plural "%(followers)s followers"
  815. msgstr[0] ""
  816. msgstr[1] ""
  817. #: static/misago/js/misago.js:1
  818. msgid "yes"
  819. msgstr ""
  820. #: static/misago/js/misago.js:1
  821. msgid "no"
  822. msgstr ""
  823. #: static/misago/js/misago.js:1
  824. msgid ""
  825. "Declining will result in immediate deactivation and deletion of your "
  826. "account. This action is not reversible."
  827. msgstr ""
  828. #: static/misago/js/misago.js:1
  829. msgid "Decline"
  830. msgstr ""
  831. #: static/misago/js/misago.js:1
  832. msgid "Accept and continue"
  833. msgstr ""
  834. #: static/misago/js/misago.js:1
  835. msgid ""
  836. "You have signed in as %(username)s. Please refresh the page before "
  837. "continuing."
  838. msgstr ""
  839. #: static/misago/js/misago.js:1
  840. msgid ""
  841. "%(username)s, you have been signed out. Please refresh the page before "
  842. "continuing."
  843. msgstr ""
  844. #: static/misago/js/misago.js:1
  845. msgid "Reload page"
  846. msgstr ""
  847. #: static/misago/js/misago.js:1
  848. msgid "or press F5 key."
  849. msgstr ""
  850. #: static/misago/js/misago.js:1
  851. msgid "No categories exist or you don't have permission to see them."
  852. msgstr ""
  853. #: static/misago/js/misago.js:1
  854. msgid "This category has no new posts. (closed)"
  855. msgstr ""
  856. #: static/misago/js/misago.js:1
  857. msgid "This category has new posts. (closed)"
  858. msgstr ""
  859. #: static/misago/js/misago.js:1
  860. msgid "This category has no new posts."
  861. msgstr ""
  862. #: static/misago/js/misago.js:1
  863. msgid "This category has new posts."
  864. msgstr ""
  865. #: static/misago/js/misago.js:1
  866. msgid "This category is empty. No threads were posted within it so far."
  867. msgstr ""
  868. #: static/misago/js/misago.js:1
  869. msgid "This category is private. You can see only your own threads within it."
  870. msgstr ""
  871. #: static/misago/js/misago.js:1
  872. msgid "This category is protected. You can't browse its contents."
  873. msgstr ""
  874. #: static/misago/js/misago.js:1
  875. msgid "Enter your password to confirm account deletion."
  876. msgstr ""
  877. #: static/misago/js/misago.js:1
  878. msgid "Delete account"
  879. msgstr ""
  880. #: static/misago/js/misago.js:1
  881. msgid "Change your options"
  882. msgstr ""
  883. #: static/misago/js/misago.js:1
  884. msgid ""
  885. "You are going to delete your account. This action is nonreversible, and will "
  886. "result in following data being deleted:"
  887. msgstr ""
  888. #: static/misago/js/misago.js:1
  889. msgid ""
  890. "Stored IP addresses associated with content that you have posted will be "
  891. "deleted."
  892. msgstr ""
  893. #: static/misago/js/misago.js:1
  894. msgid ""
  895. "Your username will become available for other user to rename to or for new "
  896. "user to register their account with."
  897. msgstr ""
  898. #: static/misago/js/misago.js:1
  899. msgid "Your e-mail will become available for use in new account registration."
  900. msgstr ""
  901. #: static/misago/js/misago.js:1
  902. msgid ""
  903. "All your posted content will NOT be deleted, but username associated with it "
  904. "will be changed to one shared by all deleted accounts."
  905. msgstr ""
  906. #: static/misago/js/misago.js:1
  907. msgid "Delete my account"
  908. msgstr ""
  909. #: static/misago/js/misago.js:1
  910. msgid "Your details have been updated."
  911. msgstr ""
  912. #: static/misago/js/misago.js:1
  913. msgid "Your request for data download has been registered."
  914. msgstr ""
  915. #: static/misago/js/misago.js:1
  916. msgid "Download your data"
  917. msgstr ""
  918. #: static/misago/js/misago.js:1
  919. msgid ""
  920. "To download your data from the site, click the \"Request data download\" "
  921. "button. Depending on amount of data to be archived and number of users "
  922. "wanting to download their data at same time it may take up to few days for "
  923. "your download to be prepared. An e-mail with notification will be sent to "
  924. "you when your data is ready to be downloaded."
  925. msgstr ""
  926. #: static/misago/js/misago.js:1
  927. msgid ""
  928. "The download will only be available for limited amount of time, after which "
  929. "it will be deleted from the site and marked as expired."
  930. msgstr ""
  931. #: static/misago/js/misago.js:1
  932. msgid "Requested on"
  933. msgstr ""
  934. #: static/misago/js/misago.js:1
  935. msgid "Download"
  936. msgstr ""
  937. #: static/misago/js/misago.js:1
  938. msgid "You have no data downloads."
  939. msgstr ""
  940. #: static/misago/js/misago.js:1
  941. msgid "Request data download"
  942. msgstr ""
  943. #: static/misago/js/misago.js:1
  944. msgid "Download is being prepared"
  945. msgstr ""
  946. #: static/misago/js/misago.js:1
  947. msgid "Download is expired"
  948. msgstr ""
  949. #: static/misago/js/misago.js:1
  950. msgid "Everybody"
  951. msgstr ""
  952. #: static/misago/js/misago.js:1
  953. msgid "Users I follow"
  954. msgstr ""
  955. #: static/misago/js/misago.js:1
  956. msgid "Nobody"
  957. msgstr ""
  958. #: static/misago/js/misago.js:1
  959. msgid "No"
  960. msgstr ""
  961. #: static/misago/js/misago.js:1
  962. msgid "Notify"
  963. msgstr ""
  964. #: static/misago/js/misago.js:1
  965. msgid "Notify with e-mail"
  966. msgstr ""
  967. #: static/misago/js/misago.js:1
  968. msgid "Your forum options have been changed."
  969. msgstr ""
  970. #: static/misago/js/misago.js:1
  971. msgid "Please reload page and try again."
  972. msgstr ""
  973. #: static/misago/js/misago.js:1
  974. msgid "Forum options"
  975. msgstr ""
  976. #: static/misago/js/misago.js:1
  977. msgid "Change forum options"
  978. msgstr ""
  979. #: static/misago/js/misago.js:1
  980. msgid "Privacy settings"
  981. msgstr ""
  982. #: static/misago/js/misago.js:1
  983. msgid "Hide my presence"
  984. msgstr ""
  985. #: static/misago/js/misago.js:1
  986. msgid ""
  987. "If you hide your presence, only members with permission to see hidden users "
  988. "will see when you are online."
  989. msgstr ""
  990. #: static/misago/js/misago.js:1
  991. msgid "Hide my presence from other users"
  992. msgstr ""
  993. #: static/misago/js/misago.js:1
  994. msgid "Show my presence to other users"
  995. msgstr ""
  996. #: static/misago/js/misago.js:1
  997. msgid "Private thread invitations"
  998. msgstr ""
  999. #: static/misago/js/misago.js:1
  1000. msgid "Automatic subscriptions"
  1001. msgstr ""
  1002. #: static/misago/js/misago.js:1
  1003. msgid "Threads I start"
  1004. msgstr ""
  1005. #: static/misago/js/misago.js:1
  1006. msgid "Threads I reply to"
  1007. msgstr ""
  1008. #: static/misago/js/misago.js:1
  1009. msgid "Change username"
  1010. msgstr ""
  1011. #: static/misago/js/misago.js:1
  1012. msgid "You will be able to change your username %(next_change)s."
  1013. msgstr ""
  1014. #: static/misago/js/misago.js:1
  1015. msgid "You have used up available name changes."
  1016. msgstr ""
  1017. #: static/misago/js/misago.js:1
  1018. msgid "You can't change your username at the moment."
  1019. msgstr ""
  1020. #: static/misago/js/misago.js:1
  1021. msgid "You can change your username %(changes_left)s more time."
  1022. msgid_plural "You can change your username %(changes_left)s more times."
  1023. msgstr[0] ""
  1024. msgstr[1] ""
  1025. #: static/misago/js/misago.js:1
  1026. msgid "Used changes become available again after %(name_changes_expire)s day."
  1027. msgid_plural ""
  1028. "Used changes become available again after %(name_changes_expire)s days."
  1029. msgstr[0] ""
  1030. msgstr[1] ""
  1031. #: static/misago/js/misago.js:1
  1032. msgid "Your new username is same as current one."
  1033. msgstr ""
  1034. #: static/misago/js/misago.js:1
  1035. msgid "New username"
  1036. msgstr ""
  1037. #: static/misago/js/misago.js:1
  1038. msgid "Your username has been changed successfully."
  1039. msgstr ""
  1040. #: static/misago/js/misago.js:1
  1041. msgid "Fill out all fields."
  1042. msgstr ""
  1043. #: static/misago/js/misago.js:1
  1044. msgid "Change e-mail address"
  1045. msgstr ""
  1046. #: static/misago/js/misago.js:1
  1047. msgid "New e-mail"
  1048. msgstr ""
  1049. #: static/misago/js/misago.js:1
  1050. msgid "Your current password"
  1051. msgstr ""
  1052. #: static/misago/js/misago.js:1
  1053. msgid "Change e-mail"
  1054. msgstr ""
  1055. #: static/misago/js/misago.js:1
  1056. msgid "New passwords are different."
  1057. msgstr ""
  1058. #: static/misago/js/misago.js:1
  1059. msgid "Change password"
  1060. msgstr ""
  1061. #: static/misago/js/misago.js:1
  1062. msgid "New password"
  1063. msgstr ""
  1064. #: static/misago/js/misago.js:1
  1065. msgid "Repeat password"
  1066. msgstr ""
  1067. #: static/misago/js/misago.js:1
  1068. msgid "Change email or password"
  1069. msgstr ""
  1070. #: static/misago/js/misago.js:1
  1071. msgid ""
  1072. "You need to set a password for your account to be able to change your "
  1073. "username or email."
  1074. msgstr ""
  1075. #: static/misago/js/misago.js:1
  1076. msgid "Set password"
  1077. msgstr ""
  1078. #: static/misago/js/misago.js:1
  1079. msgid "Change forgotten password"
  1080. msgstr ""
  1081. #: static/misago/js/misago.js:1
  1082. msgid "Menu"
  1083. msgstr ""
  1084. #: static/misago/js/misago.js:1
  1085. msgid "Ban details"
  1086. msgstr ""
  1087. #: static/misago/js/misago.js:1
  1088. msgid "User-shown ban message"
  1089. msgstr ""
  1090. #: static/misago/js/misago.js:1
  1091. msgid "Team-shown ban message"
  1092. msgstr ""
  1093. #: static/misago/js/misago.js:1
  1094. msgid "This ban expires on %(expires_on)s."
  1095. msgstr ""
  1096. #: static/misago/js/misago.js:1
  1097. msgid "This ban expires %(expires_on)s."
  1098. msgstr ""
  1099. #: static/misago/js/misago.js:1
  1100. msgid "This ban has expired."
  1101. msgstr ""
  1102. #: static/misago/js/misago.js:1
  1103. msgid "%(username)s's ban is permanent."
  1104. msgstr ""
  1105. #: static/misago/js/misago.js:1
  1106. msgid "Ban expiration"
  1107. msgstr ""
  1108. #: static/misago/js/misago.js:1
  1109. msgid "No ban is active at the moment."
  1110. msgstr ""
  1111. #: static/misago/js/misago.js:1
  1112. msgid "You are not sharing any details with others."
  1113. msgstr ""
  1114. #: static/misago/js/misago.js:1
  1115. msgid "%(username)s is not sharing any details with others."
  1116. msgstr ""
  1117. #: static/misago/js/misago.js:1
  1118. msgid "Details"
  1119. msgstr ""
  1120. #: static/misago/js/misago.js:1
  1121. msgid "Edit"
  1122. msgstr ""
  1123. #: static/misago/js/misago.js:1
  1124. msgid "%(username)s's details have been updated."
  1125. msgstr ""
  1126. #: static/misago/js/misago.js:1
  1127. msgid "Show older activity"
  1128. msgstr ""
  1129. #: static/misago/js/misago.js:1
  1130. msgid "Search..."
  1131. msgstr ""
  1132. #: static/misago/js/misago.js:1
  1133. msgid "Followers"
  1134. msgstr ""
  1135. #: static/misago/js/misago.js:1
  1136. msgid "Found %(users)s user."
  1137. msgid_plural "Found %(users)s users."
  1138. msgstr[0] ""
  1139. msgstr[1] ""
  1140. #: static/misago/js/misago.js:1
  1141. msgid "You have %(users)s follower."
  1142. msgid_plural "You have %(users)s followers."
  1143. msgstr[0] ""
  1144. msgstr[1] ""
  1145. #: static/misago/js/misago.js:1
  1146. msgid "%(username)s has %(users)s follower."
  1147. msgid_plural "%(username)s has %(users)s followers."
  1148. msgstr[0] ""
  1149. msgstr[1] ""
  1150. #: static/misago/js/misago.js:1
  1151. msgid "Loading..."
  1152. msgstr ""
  1153. #: static/misago/js/misago.js:1
  1154. msgid "Search returned no users matching specified criteria."
  1155. msgstr ""
  1156. #: static/misago/js/misago.js:1
  1157. msgid "You have no followers."
  1158. msgstr ""
  1159. #: static/misago/js/misago.js:1
  1160. msgid "%(username)s has no followers."
  1161. msgstr ""
  1162. #: static/misago/js/misago.js:1
  1163. msgid "Show more (%(more)s)"
  1164. msgstr ""
  1165. #: static/misago/js/misago.js:1
  1166. msgid "Search users..."
  1167. msgstr ""
  1168. #: static/misago/js/misago.js:1
  1169. msgid "Follows"
  1170. msgstr ""
  1171. #: static/misago/js/misago.js:1
  1172. msgid "You are following %(users)s user."
  1173. msgid_plural "You are following %(users)s users."
  1174. msgstr[0] ""
  1175. msgstr[1] ""
  1176. #: static/misago/js/misago.js:1
  1177. msgid "%(username)s is following %(users)s user."
  1178. msgid_plural "%(username)s is following %(users)s users."
  1179. msgstr[0] ""
  1180. msgstr[1] ""
  1181. #: static/misago/js/misago.js:1
  1182. msgid "You are not following any users."
  1183. msgstr ""
  1184. #: static/misago/js/misago.js:1
  1185. msgid "%(username)s is not following any users."
  1186. msgstr ""
  1187. #: static/misago/js/misago.js:1
  1188. msgid "Username history"
  1189. msgstr ""
  1190. #: static/misago/js/misago.js:1
  1191. msgid "Found %(changes)s username change."
  1192. msgid_plural "Found %(changes)s username changes."
  1193. msgstr[0] ""
  1194. msgstr[1] ""
  1195. #: static/misago/js/misago.js:1
  1196. msgid "Your username was changed %(changes)s time."
  1197. msgid_plural "Your username was changed %(changes)s times."
  1198. msgstr[0] ""
  1199. msgstr[1] ""
  1200. #: static/misago/js/misago.js:1
  1201. msgid "%(username)s's username was changed %(changes)s time."
  1202. msgid_plural "%(username)s's username was changed %(changes)s times."
  1203. msgstr[0] ""
  1204. msgstr[1] ""
  1205. #: static/misago/js/misago.js:1
  1206. msgid "Search returned no username changes matching specified criteria."
  1207. msgstr ""
  1208. #: static/misago/js/misago.js:1
  1209. msgid "%(username)s's username was never changed."
  1210. msgstr ""
  1211. #: static/misago/js/misago.js:1
  1212. msgid "Show older (%(more)s)"
  1213. msgstr ""
  1214. #: static/misago/js/misago.js:1
  1215. msgid "Search history..."
  1216. msgstr ""
  1217. #: static/misago/js/misago.js:1
  1218. msgid "Following"
  1219. msgstr ""
  1220. #: static/misago/js/misago.js:1
  1221. msgid "Follow"
  1222. msgstr ""
  1223. #: static/misago/js/misago.js:1
  1224. msgid "Message"
  1225. msgstr ""
  1226. #: static/misago/js/misago.js:1
  1227. msgid "Avatar controls have been changed."
  1228. msgstr ""
  1229. #: static/misago/js/misago.js:1
  1230. msgid "Lock avatar"
  1231. msgstr ""
  1232. #: static/misago/js/misago.js:1
  1233. msgid ""
  1234. "Locking user avatar will prohibit user from changing his avatar and will "
  1235. "reset his/her avatar to default one."
  1236. msgstr ""
  1237. #: static/misago/js/misago.js:1
  1238. msgid "Disallow user from changing avatar"
  1239. msgstr ""
  1240. #: static/misago/js/misago.js:1
  1241. msgid "Allow user to change avatar"
  1242. msgstr ""
  1243. #: static/misago/js/misago.js:1
  1244. msgid "User message"
  1245. msgstr ""
  1246. #: static/misago/js/misago.js:1
  1247. msgid ""
  1248. "Optional message for user explaining why he/she is prohibited form changing "
  1249. "avatar."
  1250. msgstr ""
  1251. #: static/misago/js/misago.js:1
  1252. msgid "Staff message"
  1253. msgstr ""
  1254. #: static/misago/js/misago.js:1
  1255. msgid ""
  1256. "Optional message for forum team members explaining why user is prohibited "
  1257. "form changing avatar."
  1258. msgstr ""
  1259. #: static/misago/js/misago.js:1
  1260. msgid "Close"
  1261. msgstr ""
  1262. #: static/misago/js/misago.js:1
  1263. msgid "Avatar controls"
  1264. msgstr ""
  1265. #: static/misago/js/misago.js:1
  1266. msgid "Username has been changed."
  1267. msgstr ""
  1268. #: static/misago/js/misago.js:1
  1269. msgid ""
  1270. "%(username)s's account, threads, posts and other content has been deleted."
  1271. msgstr ""
  1272. #: static/misago/js/misago.js:1
  1273. msgid ""
  1274. "%(username)s's account has been deleted and other content has been hidden."
  1275. msgstr ""
  1276. #: static/misago/js/misago.js:1
  1277. msgid "Delete %(username)s"
  1278. msgstr ""
  1279. #: static/misago/js/misago.js:1
  1280. msgid "Please wait... (%(countdown)ss)"
  1281. msgstr ""
  1282. #: static/misago/js/misago.js:1
  1283. msgid "User content"
  1284. msgstr ""
  1285. #: static/misago/js/misago.js:1
  1286. msgid "Delete together with user's account"
  1287. msgstr ""
  1288. #: static/misago/js/misago.js:1
  1289. msgid "Hide after deleting user's account"
  1290. msgstr ""
  1291. #: static/misago/js/misago.js:1
  1292. msgid "Return to users list"
  1293. msgstr ""
  1294. #: static/misago/js/misago.js:1
  1295. msgid "Delete user account"
  1296. msgstr ""
  1297. #: static/misago/js/misago.js:1
  1298. msgid "This user's account has been disabled by administrator."
  1299. msgstr ""
  1300. #: static/misago/js/misago.js:1
  1301. msgid "Account disabled"
  1302. msgstr ""
  1303. #: static/misago/js/misago.js:1
  1304. msgid "Options"
  1305. msgstr ""
  1306. #: static/misago/js/misago.js:1
  1307. msgid "You have posted no messages."
  1308. msgstr ""
  1309. #: static/misago/js/misago.js:1
  1310. msgid "%(username)s posted no messages."
  1311. msgstr ""
  1312. #: static/misago/js/misago.js:1
  1313. msgid "You have posted %(posts)s message."
  1314. msgid_plural "You have posted %(posts)s messages."
  1315. msgstr[0] ""
  1316. msgstr[1] ""
  1317. #: static/misago/js/misago.js:1
  1318. msgid "%(username)s has posted %(posts)s message."
  1319. msgid_plural "%(username)s has posted %(posts)s messages."
  1320. msgstr[0] ""
  1321. msgstr[1] ""
  1322. #: static/misago/js/misago.js:1
  1323. msgid "Posts"
  1324. msgstr ""
  1325. #: static/misago/js/misago.js:1
  1326. msgid "You have no started threads."
  1327. msgstr ""
  1328. #: static/misago/js/misago.js:1
  1329. msgid "%(username)s started no threads."
  1330. msgstr ""
  1331. #: static/misago/js/misago.js:1
  1332. msgid "You have started %(threads)s thread."
  1333. msgid_plural "You have started %(threads)s threads."
  1334. msgstr[0] ""
  1335. msgstr[1] ""
  1336. #: static/misago/js/misago.js:1
  1337. msgid "%(username)s has started %(threads)s thread."
  1338. msgid_plural "%(username)s has started %(threads)s threads."
  1339. msgstr[0] ""
  1340. msgstr[1] ""
  1341. #: static/misago/js/misago.js:1
  1342. msgid "Threads"
  1343. msgstr ""
  1344. #: static/misago/js/misago.js:1
  1345. msgid "Enter a valid email address."
  1346. msgstr ""
  1347. #: static/misago/js/misago.js:1
  1348. msgid "Your e-mail address"
  1349. msgstr ""
  1350. #: static/misago/js/misago.js:1
  1351. msgid "Send link"
  1352. msgstr ""
  1353. #: static/misago/js/misago.js:1
  1354. msgid "Activation link was sent to %(email)s"
  1355. msgstr ""
  1356. #: static/misago/js/misago.js:1
  1357. msgid "Request another link"
  1358. msgstr ""
  1359. #: static/misago/js/misago.js:1
  1360. msgid "Reset password link was sent to %(email)s"
  1361. msgstr ""
  1362. #: static/misago/js/misago.js:1
  1363. msgid "Activate your account."
  1364. msgstr ""
  1365. #: static/misago/js/misago.js:1
  1366. msgid "Your account is inactive."
  1367. msgstr ""
  1368. #: static/misago/js/misago.js:1
  1369. msgid "Enter new password."
  1370. msgstr ""
  1371. #: static/misago/js/misago.js:1
  1372. msgid "Enter new password"
  1373. msgstr ""
  1374. #: static/misago/js/misago.js:1
  1375. msgid "%(username)s, your password has been changed successfully."
  1376. msgstr ""
  1377. #: static/misago/js/misago.js:1
  1378. msgid "You will have to sign in using new password before continuing."
  1379. msgstr ""
  1380. #: static/misago/js/misago.js:1
  1381. msgid "You have to enter search query."
  1382. msgstr ""
  1383. #: static/misago/js/misago.js:1
  1384. msgid "Search"
  1385. msgstr ""
  1386. #: static/misago/js/misago.js:1
  1387. msgid "Search took %(time)s s to complete"
  1388. msgstr ""
  1389. #: static/misago/js/misago.js:1
  1390. msgid "Show more"
  1391. msgstr ""
  1392. #: static/misago/js/misago.js:1
  1393. msgid "Loading results..."
  1394. msgstr ""
  1395. #: static/misago/js/misago.js:1
  1396. msgid "No threads matching search query have been found."
  1397. msgstr ""
  1398. #: static/misago/js/misago.js:1
  1399. msgid "Enter at least two characters to search threads."
  1400. msgstr ""
  1401. #: static/misago/js/misago.js:1
  1402. msgid "No users matching search query have been found."
  1403. msgstr ""
  1404. #: static/misago/js/misago.js:1
  1405. msgid "Enter at least two characters to search users."
  1406. msgstr ""
  1407. #: static/misago/js/misago.js:1
  1408. msgid "Sign in with %(backend)s"
  1409. msgstr ""
  1410. #: static/misago/js/misago.js:1
  1411. msgid "You need to accept the privacy policy."
  1412. msgstr ""
  1413. #: static/misago/js/misago.js:1
  1414. msgid "Your e-mail address has been verified by %(backend)s."
  1415. msgstr ""
  1416. #: static/misago/js/misago.js:1
  1417. msgid "Complete your details"
  1418. msgstr ""
  1419. #: static/misago/js/misago.js:1
  1420. msgid "Username"
  1421. msgstr ""
  1422. #: static/misago/js/misago.js:1
  1423. msgid "E-mail address"
  1424. msgstr ""
  1425. #: static/misago/js/misago.js:1
  1426. msgid ""
  1427. "%(username)s, your account has been created but you need to activate it "
  1428. "before you will be able to sign in."
  1429. msgstr ""
  1430. #: static/misago/js/misago.js:1
  1431. msgid ""
  1432. "%(username)s, your account has been created but board administrator will "
  1433. "have to activate it before you will be able to sign in."
  1434. msgstr ""
  1435. #: static/misago/js/misago.js:1
  1436. msgid ""
  1437. "%(username)s, your account has been created and you have been signed in to "
  1438. "it."
  1439. msgstr ""
  1440. #: static/misago/js/misago.js:1
  1441. msgid "Registration completed!"
  1442. msgstr ""
  1443. #: static/misago/js/misago.js:1
  1444. msgid "Return to forum index"
  1445. msgstr ""
  1446. #: static/misago/js/misago.js:1
  1447. msgid "You have to enter user name."
  1448. msgstr ""
  1449. #: static/misago/js/misago.js:1
  1450. msgid "New participant has been added to thread."
  1451. msgstr ""
  1452. #: static/misago/js/misago.js:1
  1453. msgid "User to add"
  1454. msgstr ""
  1455. #: static/misago/js/misago.js:1
  1456. msgid "Add participant"
  1457. msgstr ""
  1458. #: static/misago/js/misago.js:1
  1459. msgid "Are you sure you want to take over this thread?"
  1460. msgstr ""
  1461. #: static/misago/js/misago.js:1
  1462. msgid "Are you sure you want to change thread owner to %(user)s?"
  1463. msgstr ""
  1464. #: static/misago/js/misago.js:1
  1465. msgid "%(user)s has been made new thread owner."
  1466. msgstr ""
  1467. #: static/misago/js/misago.js:1
  1468. msgid "Make owner"
  1469. msgstr ""
  1470. #: static/misago/js/misago.js:1
  1471. msgid "Are you sure you want to leave this thread?"
  1472. msgstr ""
  1473. #: static/misago/js/misago.js:1
  1474. msgid "Are you sure you want to remove %(user)s from this thread?"
  1475. msgstr ""
  1476. #: static/misago/js/misago.js:1
  1477. msgid "You have left this thread."
  1478. msgstr ""
  1479. #: static/misago/js/misago.js:1
  1480. msgid "%(user)s has been removed from this thread."
  1481. msgstr ""
  1482. #: static/misago/js/misago.js:1
  1483. msgid "Leave thread"
  1484. msgstr ""
  1485. #: static/misago/js/misago.js:1
  1486. msgid "Remove"
  1487. msgstr ""
  1488. #: static/misago/js/misago.js:1
  1489. msgid "See profile"
  1490. msgstr ""
  1491. #: static/misago/js/misago.js:1
  1492. msgid "Thread owner"
  1493. msgstr ""
  1494. #: static/misago/js/misago.js:1
  1495. msgid "This thread has %(users)s participant."
  1496. msgid_plural "This thread has %(users)s participants."
  1497. msgstr[0] ""
  1498. msgstr[1] ""
  1499. #: static/misago/js/misago.js:1
  1500. msgctxt "thread poll"
  1501. msgid "%(votes)s vote, %(proc)s% of total."
  1502. msgid_plural "%(votes)s votes, %(proc)s% of total."
  1503. msgstr[0] ""
  1504. msgstr[1] ""
  1505. #: static/misago/js/misago.js:1
  1506. msgctxt "thread poll"
  1507. msgid "You've voted on this choice."
  1508. msgstr ""
  1509. #: static/misago/js/misago.js:1
  1510. msgctxt "thread poll"
  1511. msgid "Poll votes"
  1512. msgstr ""
  1513. #: static/misago/js/misago.js:1
  1514. msgctxt "thread poll"
  1515. msgid "%(votes)s user has voted for this choice."
  1516. msgid_plural "%(votes)s users have voted for this choice."
  1517. msgstr[0] ""
  1518. msgstr[1] ""
  1519. #: static/misago/js/misago.js:1
  1520. msgctxt "thread poll"
  1521. msgid "Vote"
  1522. msgstr ""
  1523. #: static/misago/js/misago.js:1
  1524. msgctxt "thread poll"
  1525. msgid "See votes"
  1526. msgstr ""
  1527. #: static/misago/js/misago.js:1
  1528. msgctxt "thread poll"
  1529. msgid "Edit"
  1530. msgstr ""
  1531. #: static/misago/js/misago.js:1
  1532. msgctxt "thread poll"
  1533. msgid ""
  1534. "Are you sure you want to delete this poll? This action is not reversible."
  1535. msgstr ""
  1536. #: static/misago/js/misago.js:1
  1537. msgctxt "thread poll"
  1538. msgid "Poll has been deleted"
  1539. msgstr ""
  1540. #: static/misago/js/misago.js:1
  1541. msgctxt "thread poll"
  1542. msgid "Delete"
  1543. msgstr ""
  1544. #: static/misago/js/misago.js:1
  1545. msgctxt "thread poll"
  1546. msgid "Started by %(poster)s %(posted_on)s."
  1547. msgstr ""
  1548. #: static/misago/js/misago.js:1
  1549. msgctxt "thread poll"
  1550. msgid "Voting ends %(ends_on)s."
  1551. msgstr ""
  1552. #: static/misago/js/misago.js:1
  1553. msgctxt "thread poll"
  1554. msgid "%(votes)s vote."
  1555. msgid_plural "%(votes)s votes."
  1556. msgstr[0] ""
  1557. msgstr[1] ""
  1558. #: static/misago/js/misago.js:1
  1559. msgctxt "thread poll"
  1560. msgid "Voting is public."
  1561. msgstr ""
  1562. #: static/misago/js/misago.js:1
  1563. msgctxt "thread poll"
  1564. msgid "You can't select any more choices."
  1565. msgstr ""
  1566. #: static/misago/js/misago.js:1
  1567. msgctxt "thread poll"
  1568. msgid "You can select %(choices)s more choice."
  1569. msgid_plural "You can select %(choices)s more choices."
  1570. msgstr[0] ""
  1571. msgstr[1] ""
  1572. #: static/misago/js/misago.js:1
  1573. msgctxt "thread poll"
  1574. msgid "You can change your vote later."
  1575. msgstr ""
  1576. #: static/misago/js/misago.js:1
  1577. msgctxt "thread poll"
  1578. msgid "Votes are final."
  1579. msgstr ""
  1580. #: static/misago/js/misago.js:1
  1581. msgid "You need to select at least one choice"
  1582. msgstr ""
  1583. #: static/misago/js/misago.js:1
  1584. msgid "Your vote has been saved."
  1585. msgstr ""
  1586. #: static/misago/js/misago.js:1
  1587. msgid "Save your vote"
  1588. msgstr ""
  1589. #: static/misago/js/misago.js:1
  1590. msgid "See results"
  1591. msgstr ""
  1592. #: static/misago/js/misago.js:1
  1593. msgctxt "thread poll"
  1594. msgid "Add choice"
  1595. msgstr ""
  1596. #: static/misago/js/misago.js:1
  1597. msgctxt "thread poll"
  1598. msgid "Are you sure you want to remove this choice?"
  1599. msgstr ""
  1600. #: static/misago/js/misago.js:1
  1601. msgctxt "thread poll"
  1602. msgid "Remove this choice"
  1603. msgstr ""
  1604. #: static/misago/js/misago.js:1
  1605. msgctxt "thread poll"
  1606. msgid "Poll choice"
  1607. msgstr ""
  1608. #: static/misago/js/misago.js:1
  1609. msgctxt "thread poll"
  1610. msgid "Are you sure you want to discard changes?"
  1611. msgstr ""
  1612. #: static/misago/js/misago.js:1
  1613. msgctxt "thread poll"
  1614. msgid "Are you sure you want to discard new poll?"
  1615. msgstr ""
  1616. #: static/misago/js/misago.js:1
  1617. msgctxt "thread poll"
  1618. msgid "Poll has been edited."
  1619. msgstr ""
  1620. #: static/misago/js/misago.js:1
  1621. msgctxt "thread poll"
  1622. msgid "Poll has been posted."
  1623. msgstr ""
  1624. #: static/misago/js/misago.js:1
  1625. msgctxt "thread poll"
  1626. msgid "Edit poll"
  1627. msgstr ""
  1628. #: static/misago/js/misago.js:1
  1629. msgctxt "thread poll"
  1630. msgid "Add poll"
  1631. msgstr ""
  1632. #: static/misago/js/misago.js:1
  1633. msgctxt "thread poll"
  1634. msgid "Question and choices"
  1635. msgstr ""
  1636. #: static/misago/js/misago.js:1
  1637. msgctxt "thread poll"
  1638. msgid "Poll question"
  1639. msgstr ""
  1640. #: static/misago/js/misago.js:1
  1641. msgctxt "thread poll"
  1642. msgid "Available choices"
  1643. msgstr ""
  1644. #: static/misago/js/misago.js:1
  1645. msgctxt "thread poll"
  1646. msgid "Voting"
  1647. msgstr ""
  1648. #: static/misago/js/misago.js:1
  1649. msgctxt "thread poll"
  1650. msgid "Poll length"
  1651. msgstr ""
  1652. #: static/misago/js/misago.js:1
  1653. msgctxt "thread poll"
  1654. msgid ""
  1655. "Enter number of days for which voting in this poll should be possible or "
  1656. "zero to run this poll indefinitely."
  1657. msgstr ""
  1658. #: static/misago/js/misago.js:1
  1659. msgctxt "thread poll"
  1660. msgid "Allowed choices"
  1661. msgstr ""
  1662. #: static/misago/js/misago.js:1
  1663. msgctxt "thread poll"
  1664. msgid "Allow vote changes"
  1665. msgstr ""
  1666. #: static/misago/js/misago.js:1
  1667. msgctxt "thread poll"
  1668. msgid "Allow participants to change their vote"
  1669. msgstr ""
  1670. #: static/misago/js/misago.js:1
  1671. msgctxt "thread poll"
  1672. msgid "Don't allow participants to change their vote"
  1673. msgstr ""
  1674. #: static/misago/js/misago.js:1
  1675. msgctxt "thread poll"
  1676. msgid "Cancel"
  1677. msgstr ""
  1678. #: static/misago/js/misago.js:1
  1679. msgctxt "thread poll"
  1680. msgid "Save changes"
  1681. msgstr ""
  1682. #: static/misago/js/misago.js:1
  1683. msgctxt "thread poll"
  1684. msgid "Post poll"
  1685. msgstr ""
  1686. #: static/misago/js/misago.js:1
  1687. msgctxt "thread poll"
  1688. msgid "Make voting public"
  1689. msgstr ""
  1690. #: static/misago/js/misago.js:1
  1691. msgctxt "thread poll"
  1692. msgid ""
  1693. "Making voting public will allow everyone to access detailed list of votes, "
  1694. "showing which users voted for which choices and at which times. This option "
  1695. "can't be changed after poll's creation. Moderators may see voting details "
  1696. "for all polls."
  1697. msgstr ""
  1698. #: static/misago/js/misago.js:1
  1699. msgctxt "thread poll"
  1700. msgid "Votes are public"
  1701. msgstr ""
  1702. #: static/misago/js/misago.js:1
  1703. msgctxt "thread poll"
  1704. msgid "Votes are hidden"
  1705. msgstr ""
  1706. #: static/misago/js/misago.js:1
  1707. msgid "Hide"
  1708. msgstr ""
  1709. #: static/misago/js/misago.js:1
  1710. msgid "Unhide"
  1711. msgstr ""
  1712. #: static/misago/js/misago.js:1
  1713. msgid ""
  1714. "Are you sure you wish to delete this event? This action is not reversible!"
  1715. msgstr ""
  1716. #: static/misago/js/misago.js:1
  1717. msgid "Event has been deleted."
  1718. msgstr ""
  1719. #: static/misago/js/misago.js:1
  1720. msgid "Delete"
  1721. msgstr ""
  1722. #: static/misago/js/misago.js:1
  1723. msgid "Hidden by %(event_by)s %(event_on)s."
  1724. msgstr ""
  1725. #: static/misago/js/misago.js:1
  1726. msgid "By %(event_by)s %(event_on)s."
  1727. msgstr ""
  1728. #: static/misago/js/misago.js:1
  1729. msgid "Thread has been pinned globally."
  1730. msgstr ""
  1731. #: static/misago/js/misago.js:1
  1732. msgid "Thread has been pinned locally."
  1733. msgstr ""
  1734. #: static/misago/js/misago.js:1
  1735. msgid "Thread has been unpinned."
  1736. msgstr ""
  1737. #: static/misago/js/misago.js:1
  1738. msgid "Thread has been approved."
  1739. msgstr ""
  1740. #: static/misago/js/misago.js:1
  1741. msgid "Thread has been opened."
  1742. msgstr ""
  1743. #: static/misago/js/misago.js:1
  1744. msgid "Thread has been closed."
  1745. msgstr ""
  1746. #: static/misago/js/misago.js:1
  1747. msgid "Thread has been revealed."
  1748. msgstr ""
  1749. #: static/misago/js/misago.js:1
  1750. msgid "Thread has been made hidden."
  1751. msgstr ""
  1752. #: static/misago/js/misago.js:1
  1753. msgid "Took thread over."
  1754. msgstr ""
  1755. #: static/misago/js/misago.js:1
  1756. msgid "Owner has left thread. This thread is now closed."
  1757. msgstr ""
  1758. #: static/misago/js/misago.js:1
  1759. msgid "Participant has left thread."
  1760. msgstr ""
  1761. #: static/misago/js/misago.js:1
  1762. msgid "Thread title has been changed from %(old_title)s."
  1763. msgstr ""
  1764. #: static/misago/js/misago.js:1
  1765. msgid "Thread has been moved from %(from_category)s."
  1766. msgstr ""
  1767. #: static/misago/js/misago.js:1
  1768. msgid "The %(merged_thread)s thread has been merged into this thread."
  1769. msgstr ""
  1770. #: static/misago/js/misago.js:1
  1771. msgid "Changed thread owner to %(user)s."
  1772. msgstr ""
  1773. #: static/misago/js/misago.js:1
  1774. msgid "Added %(user)s to thread."
  1775. msgstr ""
  1776. #: static/misago/js/misago.js:1
  1777. msgid "Removed %(user)s from thread."
  1778. msgstr ""
  1779. #: static/misago/js/misago.js:1
  1780. msgid "New event"
  1781. msgstr ""
  1782. #: static/misago/js/misago.js:1
  1783. msgid "%(filetype)s, %(size)s, uploaded by %(uploader)s %(uploaded_on)s."
  1784. msgstr ""
  1785. #: static/misago/js/misago.js:1
  1786. msgid "Hidden by %(hidden_by)s %(hidden_on)s."
  1787. msgstr ""
  1788. #: static/misago/js/misago.js:1
  1789. msgid "This post is hidden. You cannot see its contents."
  1790. msgstr ""
  1791. #: static/misago/js/misago.js:1
  1792. msgid "Marked as best answer by you %(marked_on)s."
  1793. msgstr ""
  1794. #: static/misago/js/misago.js:1
  1795. msgid "Marked as best answer by %(marked_by)s %(marked_on)s."
  1796. msgstr ""
  1797. #: static/misago/js/misago.js:1
  1798. msgid "This post is hidden. Only users with permission may see its contents."
  1799. msgstr ""
  1800. #: static/misago/js/misago.js:1
  1801. msgid ""
  1802. "This post is unapproved. Only users with permission to approve posts and its "
  1803. "author may see its contents."
  1804. msgstr ""
  1805. #: static/misago/js/misago.js:1
  1806. msgid "This post is protected. Only moderators may change it."
  1807. msgstr ""
  1808. #: static/misago/js/misago.js:1
  1809. msgid ""
  1810. "Are you sure you want to delete this post? This action is not reversible!"
  1811. msgstr ""
  1812. #: static/misago/js/misago.js:1
  1813. msgid "Post has been deleted."
  1814. msgstr ""
  1815. #: static/misago/js/misago.js:1
  1816. msgid "No users have liked this post."
  1817. msgstr ""
  1818. #: static/misago/js/misago.js:1
  1819. msgid "Post Likes"
  1820. msgstr ""
  1821. #: static/misago/js/misago.js:1
  1822. msgid "%(likes)s like"
  1823. msgid_plural "%(likes)s likes"
  1824. msgstr[0] ""
  1825. msgstr[1] ""
  1826. #: static/misago/js/misago.js:1
  1827. msgid "Liked"
  1828. msgstr ""
  1829. #: static/misago/js/misago.js:1
  1830. msgid "Like"
  1831. msgstr ""
  1832. #: static/misago/js/misago.js:1
  1833. msgid "%(user)s likes this."
  1834. msgstr ""
  1835. #: static/misago/js/misago.js:1
  1836. msgid "%(users)s and %(last_user)s"
  1837. msgstr ""
  1838. #: static/misago/js/misago.js:1
  1839. msgid "%(users)s like this."
  1840. msgstr ""
  1841. #: static/misago/js/misago.js:1
  1842. msgid "%(users)s and %(likes)s other user like this."
  1843. msgid_plural "%(users)s and %(likes)s other users like this."
  1844. msgstr[0] ""
  1845. msgstr[1] ""
  1846. #: static/misago/js/misago.js:1
  1847. msgid "Reply"
  1848. msgstr ""
  1849. #: static/misago/js/misago.js:1
  1850. msgid "You have to enter link to the other thread."
  1851. msgstr ""
  1852. #: static/misago/js/misago.js:1
  1853. msgid "Selected post was moved to the other thread."
  1854. msgstr ""
  1855. #: static/misago/js/misago.js:1
  1856. msgid "Link to thread you want to move post to"
  1857. msgstr ""
  1858. #: static/misago/js/misago.js:1
  1859. msgid "Move post"
  1860. msgstr ""
  1861. #: static/misago/js/misago.js:1
  1862. msgid "Revert post to state from before this edit."
  1863. msgstr ""
  1864. #: static/misago/js/misago.js:1
  1865. msgid "Revert"
  1866. msgstr ""
  1867. #: static/misago/js/misago.js:1
  1868. msgid "See previous change"
  1869. msgstr ""
  1870. #: static/misago/js/misago.js:1
  1871. msgid "See next change"
  1872. msgstr ""
  1873. #: static/misago/js/misago.js:1
  1874. msgid "By %(edited_by)s %(edited_on)s."
  1875. msgstr ""
  1876. #: static/misago/js/misago.js:1
  1877. msgid ""
  1878. "Are you sure you with to revert this post to the state from before this edit?"
  1879. msgstr ""
  1880. #: static/misago/js/misago.js:1
  1881. msgid "Post has been reverted to previous state."
  1882. msgstr ""
  1883. #: static/misago/js/misago.js:1
  1884. msgid "Post edits history"
  1885. msgstr ""
  1886. #: static/misago/js/misago.js:1
  1887. msgid "Yes"
  1888. msgstr ""
  1889. #: static/misago/js/misago.js:1
  1890. msgid "Selected post was split into new thread."
  1891. msgstr ""
  1892. #: static/misago/js/misago.js:1
  1893. msgid "Not pinned"
  1894. msgstr ""
  1895. #: static/misago/js/misago.js:1
  1896. msgid "Pinned locally"
  1897. msgstr ""
  1898. #: static/misago/js/misago.js:1
  1899. msgid "Thread weight"
  1900. msgstr ""
  1901. #: static/misago/js/misago.js:1
  1902. msgid "Hide thread"
  1903. msgstr ""
  1904. #: static/misago/js/misago.js:1
  1905. msgid "Close thread"
  1906. msgstr ""
  1907. #: static/misago/js/misago.js:1
  1908. msgid "Thread title"
  1909. msgstr ""
  1910. #: static/misago/js/misago.js:1
  1911. msgid "Category"
  1912. msgstr ""
  1913. #: static/misago/js/misago.js:1
  1914. msgid "Split post"
  1915. msgstr ""
  1916. #: static/misago/js/misago.js:1
  1917. msgid "You can't move this post at the moment."
  1918. msgstr ""
  1919. #: static/misago/js/misago.js:1
  1920. msgid "Split post into new thread"
  1921. msgstr ""
  1922. #: static/misago/js/misago.js:1
  1923. msgid "Permament link to this post:"
  1924. msgstr ""
  1925. #: static/misago/js/misago.js:1
  1926. msgid "Permament link"
  1927. msgstr ""
  1928. #: static/misago/js/misago.js:1
  1929. msgid "Mark as best answer"
  1930. msgstr ""
  1931. #: static/misago/js/misago.js:1
  1932. msgid "Unmark best answer"
  1933. msgstr ""
  1934. #: static/misago/js/misago.js:1
  1935. msgid "This post was edited %(edits)s time."
  1936. msgid_plural "This post was edited %(edits)s times."
  1937. msgstr[0] ""
  1938. msgstr[1] ""
  1939. #: static/misago/js/misago.js:1
  1940. msgid "Changes history"
  1941. msgstr ""
  1942. #: static/misago/js/misago.js:1
  1943. msgid "Approve"
  1944. msgstr ""
  1945. #: static/misago/js/misago.js:1
  1946. msgid "Move"
  1947. msgstr ""
  1948. #: static/misago/js/misago.js:1
  1949. msgid "Split"
  1950. msgstr ""
  1951. #: static/misago/js/misago.js:1
  1952. msgid "Protect"
  1953. msgstr ""
  1954. #: static/misago/js/misago.js:1
  1955. msgid "Remove protection"
  1956. msgstr ""
  1957. #: static/misago/js/misago.js:1
  1958. msgid "New post"
  1959. msgstr ""
  1960. #: static/misago/js/misago.js:1
  1961. msgid "New"
  1962. msgstr ""
  1963. #: static/misago/js/misago.js:1
  1964. msgid "edited %(edits)s time"
  1965. msgid_plural "edited %(edits)s times"
  1966. msgstr[0] ""
  1967. msgstr[1] ""
  1968. #: static/misago/js/misago.js:1
  1969. msgid "%(edits)s edit"
  1970. msgid_plural "%(edits)s edits"
  1971. msgstr[0] ""
  1972. msgstr[1] ""
  1973. #: static/misago/js/misago.js:1
  1974. msgid "This post is protected and may not be edited."
  1975. msgstr ""
  1976. #: static/misago/js/misago.js:1
  1977. msgid "protected"
  1978. msgstr ""
  1979. #: static/misago/js/misago.js:1
  1980. msgid "Thread author"
  1981. msgstr ""
  1982. #: static/misago/js/misago.js:1
  1983. msgid "Started on: %(timestamp)s"
  1984. msgstr ""
  1985. #: static/misago/js/misago.js:1
  1986. msgid "Change title"
  1987. msgstr ""
  1988. #: static/misago/js/misago.js:1
  1989. msgid "Thread has been merged with other one."
  1990. msgstr ""
  1991. #: static/misago/js/misago.js:1
  1992. msgid "Link to thread you want to merge with"
  1993. msgstr ""
  1994. #: static/misago/js/misago.js:1
  1995. msgid ""
  1996. "Merge will delete current thread and move its contents to the thread "
  1997. "specified here."
  1998. msgstr ""
  1999. #: static/misago/js/misago.js:1
  2000. msgid "Merge thread"
  2001. msgstr ""
  2002. #: static/misago/js/misago.js:1
  2003. msgid "Thread has been moved."
  2004. msgstr ""
  2005. #: static/misago/js/misago.js:1
  2006. msgid "New category"
  2007. msgstr ""
  2008. #: static/misago/js/misago.js:1
  2009. msgid "Move thread"
  2010. msgstr ""
  2011. #: static/misago/js/misago.js:1
  2012. msgid "You can't move this thread at the moment."
  2013. msgstr ""
  2014. #: static/misago/js/misago.js:1
  2015. msgid "Thread has been made visible."
  2016. msgstr ""
  2017. #: static/misago/js/misago.js:1
  2018. msgid "Are you sure you want to delete this thread?"
  2019. msgstr ""
  2020. #: static/misago/js/misago.js:1
  2021. msgid "Thread has been deleted."
  2022. msgstr ""
  2023. #: static/misago/js/misago.js:1
  2024. msgid "Pin globally"
  2025. msgstr ""
  2026. #: static/misago/js/misago.js:1
  2027. msgid "Pin locally"
  2028. msgstr ""
  2029. #: static/misago/js/misago.js:1
  2030. msgid "Unpin"
  2031. msgstr ""
  2032. #: static/misago/js/misago.js:1
  2033. msgid "Merge"
  2034. msgstr ""
  2035. #: static/misago/js/misago.js:1
  2036. msgid "Open"
  2037. msgstr ""
  2038. #: static/misago/js/misago.js:1
  2039. msgid "Thread options"
  2040. msgstr ""
  2041. #: static/misago/js/misago.js:1
  2042. msgid "E-mail"
  2043. msgstr ""
  2044. #: static/misago/js/misago.js:1
  2045. msgid "Enabled"
  2046. msgstr ""
  2047. #: static/misago/js/misago.js:1
  2048. msgid "Disabled"
  2049. msgstr ""
  2050. #: static/misago/js/misago.js:1
  2051. msgid "Unsubscribe"
  2052. msgstr ""
  2053. #: static/misago/js/misago.js:1
  2054. msgid "Subscribe"
  2055. msgstr ""
  2056. #: static/misago/js/misago.js:1
  2057. msgid "Subscribe with e-mail"
  2058. msgstr ""
  2059. #: static/misago/js/misago.js:1
  2060. msgid "Private threads"
  2061. msgstr ""
  2062. #: static/misago/js/misago.js:1
  2063. msgid "Go to first page"
  2064. msgstr ""
  2065. #: static/misago/js/misago.js:1
  2066. msgid "Go to previous page"
  2067. msgstr ""
  2068. #: static/misago/js/misago.js:1
  2069. msgid "Go to next page"
  2070. msgstr ""
  2071. #: static/misago/js/misago.js:1
  2072. msgid "Go to last page"
  2073. msgstr ""
  2074. #: static/misago/js/misago.js:1
  2075. msgid "There is %(more)s more post in this thread."
  2076. msgid_plural "There are %(more)s more posts in this thread."
  2077. msgstr[0] ""
  2078. msgstr[1] ""
  2079. #: static/misago/js/misago.js:1
  2080. msgid "There are no more posts in this thread."
  2081. msgstr ""
  2082. #: static/misago/js/misago.js:1
  2083. msgid "Moderation"
  2084. msgstr ""
  2085. #: static/misago/js/misago.js:1
  2086. msgid "One or more posts could not be changed:"
  2087. msgstr ""
  2088. #: static/misago/js/misago.js:1
  2089. msgid "%(username)s on %(posted_on)s"
  2090. msgstr ""
  2091. #: static/misago/js/misago.js:1
  2092. msgid ""
  2093. "Are you sure you want to merge selected posts? This action is not reversible!"
  2094. msgstr ""
  2095. #: static/misago/js/misago.js:1
  2096. msgid ""
  2097. "Are you sure you want to delete selected posts? This action is not "
  2098. "reversible!"
  2099. msgstr ""
  2100. #: static/misago/js/misago.js:1
  2101. msgid "Selected posts were moved to the other thread."
  2102. msgstr ""
  2103. #: static/misago/js/misago.js:1
  2104. msgid "Link to thread you want to move posts to"
  2105. msgstr ""
  2106. #: static/misago/js/misago.js:1
  2107. msgid "Move posts"
  2108. msgstr ""
  2109. #: static/misago/js/misago.js:1
  2110. msgid "Selected posts were split into new thread."
  2111. msgstr ""
  2112. #: static/misago/js/misago.js:1
  2113. msgid "Split posts"
  2114. msgstr ""
  2115. #: static/misago/js/misago.js:1
  2116. msgid "You can't move selected posts at the moment."
  2117. msgstr ""
  2118. #: static/misago/js/misago.js:1
  2119. msgid "Split posts into new thread"
  2120. msgstr ""
  2121. #: static/misago/js/misago.js:1
  2122. msgid "Unprotect"
  2123. msgstr ""
  2124. #: static/misago/js/misago.js:1
  2125. msgid "Posts options"
  2126. msgstr ""
  2127. #: static/misago/js/misago.js:1
  2128. msgid "Add poll"
  2129. msgstr ""
  2130. #: static/misago/js/misago.js:1
  2131. msgid "Shortcuts"
  2132. msgstr ""
  2133. #: static/misago/js/misago.js:1
  2134. msgid "Go to new post"
  2135. msgstr ""
  2136. #: static/misago/js/misago.js:1
  2137. msgid "Go to best answer"
  2138. msgstr ""
  2139. #: static/misago/js/misago.js:1
  2140. msgid "Go to unapproved post"
  2141. msgstr ""
  2142. #: static/misago/js/misago.js:1
  2143. msgid "Go to last post"
  2144. msgstr ""
  2145. #: static/misago/js/misago.js:1
  2146. msgid "Threads moderation"
  2147. msgstr ""
  2148. #: static/misago/js/misago.js:1
  2149. msgid "One or more threads could not be deleted:"
  2150. msgstr ""
  2151. #: static/misago/js/misago.js:1
  2152. msgid ""
  2153. "You can't move threads because there are no categories you are allowed to "
  2154. "move them to."
  2155. msgstr ""
  2156. #: static/misago/js/misago.js:1
  2157. msgid ""
  2158. "You need permission to start threads in category to be able to merge threads "
  2159. "to it."
  2160. msgstr ""
  2161. #: static/misago/js/misago.js:1
  2162. msgid "Selected threads were moved."
  2163. msgstr ""
  2164. #: static/misago/js/misago.js:1
  2165. msgid "Move threads"
  2166. msgstr ""
  2167. #: static/misago/js/misago.js:1
  2168. msgid ""
  2169. "You need permission to start threads in category to be able to move threads "
  2170. "to it."
  2171. msgstr ""
  2172. #: static/misago/js/misago.js:1
  2173. msgid "Selected threads were pinned globally."
  2174. msgstr ""
  2175. #: static/misago/js/misago.js:1
  2176. msgid "Selected threads were pinned locally."
  2177. msgstr ""
  2178. #: static/misago/js/misago.js:1
  2179. msgid "Selected threads were unpinned."
  2180. msgstr ""
  2181. #: static/misago/js/misago.js:1
  2182. msgid "Selected threads were approved."
  2183. msgstr ""
  2184. #: static/misago/js/misago.js:1
  2185. msgid "Selected threads were opened."
  2186. msgstr ""
  2187. #: static/misago/js/misago.js:1
  2188. msgid "Selected threads were closed."
  2189. msgstr ""
  2190. #: static/misago/js/misago.js:1
  2191. msgid "Selected threads were unhidden."
  2192. msgstr ""
  2193. #: static/misago/js/misago.js:1
  2194. msgid "Selected threads were hidden."
  2195. msgstr ""
  2196. #: static/misago/js/misago.js:1
  2197. msgid "You don't have permission to merge this thread with others."
  2198. msgstr ""
  2199. #: static/misago/js/misago.js:1
  2200. msgid "You have to select at least two threads to merge."
  2201. msgstr ""
  2202. #: static/misago/js/misago.js:1
  2203. msgid "Are you sure you want to delete selected threads?"
  2204. msgstr ""
  2205. #: static/misago/js/misago.js:1
  2206. msgid "Selected threads were deleted."
  2207. msgstr ""
  2208. #: static/misago/js/misago.js:1
  2209. msgid "Select all"
  2210. msgstr ""
  2211. #: static/misago/js/misago.js:1
  2212. msgid "Select none"
  2213. msgstr ""
  2214. #: static/misago/js/misago.js:1
  2215. msgid "Pin threads globally"
  2216. msgstr ""
  2217. #: static/misago/js/misago.js:1
  2218. msgid "Pin threads locally"
  2219. msgstr ""
  2220. #: static/misago/js/misago.js:1
  2221. msgid "Unpin threads"
  2222. msgstr ""
  2223. #: static/misago/js/misago.js:1
  2224. msgid "Approve threads"
  2225. msgstr ""
  2226. #: static/misago/js/misago.js:1
  2227. msgid "Open threads"
  2228. msgstr ""
  2229. #: static/misago/js/misago.js:1
  2230. msgid "Close threads"
  2231. msgstr ""
  2232. #: static/misago/js/misago.js:1
  2233. msgid "Unhide threads"
  2234. msgstr ""
  2235. #: static/misago/js/misago.js:1
  2236. msgid "Hide threads"
  2237. msgstr ""
  2238. #: static/misago/js/misago.js:1
  2239. msgid "Delete threads"
  2240. msgstr ""
  2241. #: static/misago/js/misago.js:1
  2242. msgid "All categories"
  2243. msgstr ""
  2244. #: static/misago/js/misago.js:1
  2245. msgid "All subcategories"
  2246. msgstr ""
  2247. #: static/misago/js/misago.js:1
  2248. msgid "Start thread"
  2249. msgstr ""
  2250. #: static/misago/js/misago.js:1
  2251. msgid "Why not start one yourself?"
  2252. msgstr ""
  2253. #: static/misago/js/misago.js:1
  2254. msgid "There are no threads on this forum... yet!"
  2255. msgstr ""
  2256. #: static/misago/js/misago.js:1
  2257. msgid "There are no threads in this category."
  2258. msgstr ""
  2259. #: static/misago/js/misago.js:1
  2260. msgid "No threads matching specified criteria were found."
  2261. msgstr ""
  2262. #: static/misago/js/misago.js:1
  2263. msgid "Last activity: %(timestamp)s"
  2264. msgstr ""
  2265. #: static/misago/js/misago.js:1
  2266. msgid "No new posts"
  2267. msgstr ""
  2268. #: static/misago/js/misago.js:1
  2269. msgid "New posts"
  2270. msgstr ""
  2271. #: static/misago/js/misago.js:1
  2272. msgid "Last post by: %(poster)s"
  2273. msgstr ""
  2274. #: static/misago/js/misago.js:1
  2275. msgid "Subscribe with alert"
  2276. msgstr ""
  2277. #: static/misago/js/misago.js:1
  2278. msgid "Subscribed to e-mails"
  2279. msgstr ""
  2280. #: static/misago/js/misago.js:1
  2281. msgid "Subscribed to alerts"
  2282. msgstr ""
  2283. #: static/misago/js/misago.js:1
  2284. msgid "Not subscribed"
  2285. msgstr ""
  2286. #: static/misago/js/misago.js:1
  2287. msgid "There is %(threads)s new or updated thread. Click here to show it."
  2288. msgid_plural ""
  2289. "There are %(threads)s new or updated threads. Click here to show them."
  2290. msgstr[0] ""
  2291. msgstr[1] ""
  2292. #: static/misago/js/misago.js:1
  2293. msgid ""
  2294. "Private threads are threads which only those that started them and those "
  2295. "they have invited may see and participate in."
  2296. msgstr ""
  2297. #: static/misago/js/misago.js:1
  2298. msgid "You aren't participating in any private threads."
  2299. msgstr ""
  2300. #: static/misago/js/misago.js:1
  2301. msgid "All"
  2302. msgstr ""
  2303. #: static/misago/js/misago.js:1
  2304. msgid "All threads"
  2305. msgstr ""
  2306. #: static/misago/js/misago.js:1
  2307. msgid "My"
  2308. msgstr ""
  2309. #: static/misago/js/misago.js:1
  2310. msgid "My threads"
  2311. msgstr ""
  2312. #: static/misago/js/misago.js:1
  2313. msgid "New threads"
  2314. msgstr ""
  2315. #: static/misago/js/misago.js:1
  2316. msgid "Unread"
  2317. msgstr ""
  2318. #: static/misago/js/misago.js:1
  2319. msgid "Unread threads"
  2320. msgstr ""
  2321. #: static/misago/js/misago.js:1
  2322. msgid "Subscribed"
  2323. msgstr ""
  2324. #: static/misago/js/misago.js:1
  2325. msgid "Subscribed threads"
  2326. msgstr ""
  2327. #: static/misago/js/misago.js:1
  2328. msgid "Unapproved"
  2329. msgstr ""
  2330. #: static/misago/js/misago.js:1
  2331. msgid "Unapproved content"
  2332. msgstr ""
  2333. #: static/misago/js/misago.js:1
  2334. msgid "Search returned no results."
  2335. msgstr ""
  2336. #: static/misago/js/misago.js:1
  2337. msgid "See full \"%(provider)s\" results page with %(count)s result."
  2338. msgid_plural "See full \"%(provider)s\" results page with %(count)s results."
  2339. msgstr[0] ""
  2340. msgstr[1] ""
  2341. #: static/misago/js/misago.js:1
  2342. msgid "Posted by %(poster)s on %(posted_on)s in %(category)s."
  2343. msgstr ""
  2344. #: static/misago/js/misago.js:1
  2345. msgid "%(title)s, joined on %(joined_on)s"
  2346. msgstr ""
  2347. #: static/misago/js/misago.js:1
  2348. msgid "Entered password is very weak."
  2349. msgstr ""
  2350. #: static/misago/js/misago.js:1
  2351. msgid "Entered password is weak."
  2352. msgstr ""
  2353. #: static/misago/js/misago.js:1
  2354. msgid "Entered password is average."
  2355. msgstr ""
  2356. #: static/misago/js/misago.js:1
  2357. msgid "Entered password is strong."
  2358. msgstr ""
  2359. #: static/misago/js/misago.js:1
  2360. msgid "Entered password is very strong."
  2361. msgstr ""
  2362. #: static/misago/js/misago.js:1
  2363. msgid "Register"
  2364. msgstr ""
  2365. #: static/misago/js/misago.js:1
  2366. msgid "Join with %(site)s"
  2367. msgstr ""
  2368. #: static/misago/js/misago.js:1
  2369. msgid "Or create forum account:"
  2370. msgstr ""
  2371. #: static/misago/js/misago.js:1
  2372. msgid "Register account"
  2373. msgstr ""
  2374. #: static/misago/js/misago.js:1
  2375. msgid ""
  2376. "We have sent an e-mail to %(email)s with link that you have to click to "
  2377. "activate your account."
  2378. msgstr ""
  2379. #: static/misago/js/misago.js:1
  2380. msgid "We will send an e-mail to %(email)s when this takes place."
  2381. msgstr ""
  2382. #: static/misago/js/misago.js:1
  2383. msgid "Registration complete"
  2384. msgstr ""
  2385. #: static/misago/js/misago.js:1
  2386. msgid "New registrations are currently disabled."
  2387. msgstr ""
  2388. #: static/misago/js/misago.js:1
  2389. msgid "Registration is currently unavailable due to an error."
  2390. msgstr ""
  2391. #: static/misago/js/misago.js:1
  2392. msgid "You are browsing as guest."
  2393. msgstr ""
  2394. #: static/misago/js/misago.js:1
  2395. msgid "Sign in or register to start and participate in discussions."
  2396. msgstr ""
  2397. #: static/misago/js/misago.js:1
  2398. msgid "Download my Gravatar"
  2399. msgstr ""
  2400. #: static/misago/js/misago.js:1
  2401. msgid "Re-crop uploaded image"
  2402. msgstr ""
  2403. #: static/misago/js/misago.js:1
  2404. msgid "Upload new image"
  2405. msgstr ""
  2406. #: static/misago/js/misago.js:1
  2407. msgid "Pick avatar from gallery"
  2408. msgstr ""
  2409. #: static/misago/js/misago.js:1
  2410. msgid "Generate my individual avatar"
  2411. msgstr ""
  2412. #: static/misago/js/misago.js:1
  2413. msgid "Set avatar"
  2414. msgstr ""
  2415. #: static/misago/js/misago.js:1
  2416. msgid "Crop image"
  2417. msgstr ""
  2418. #: static/misago/js/misago.js:1
  2419. msgid "Your image has been uploaded and you may now crop it."
  2420. msgstr ""
  2421. #: static/misago/js/misago.js:1
  2422. msgid "Selected file is too big. (%(filesize)s)"
  2423. msgstr ""
  2424. #: static/misago/js/misago.js:1
  2425. msgid "Selected file type is not supported."
  2426. msgstr ""
  2427. #: static/misago/js/misago.js:1
  2428. msgid "%(files)s files smaller than %(limit)s"
  2429. msgstr ""
  2430. #: static/misago/js/misago.js:1
  2431. msgid "Select file"
  2432. msgstr ""
  2433. #: static/misago/js/misago.js:1
  2434. msgid "%(progress)s % complete"
  2435. msgstr ""
  2436. #: static/misago/js/misago.js:1
  2437. msgid "Save choice"
  2438. msgstr ""
  2439. #: static/misago/js/misago.js:1
  2440. msgid "Select avatar"
  2441. msgstr ""
  2442. #: static/misago/js/misago.js:1
  2443. msgid "Change your avatar"
  2444. msgstr ""
  2445. #: static/misago/js/misago.js:1
  2446. msgid "See your profile"
  2447. msgstr ""
  2448. #: static/misago/js/misago.js:1
  2449. msgid "Change options"
  2450. msgstr ""
  2451. #: static/misago/js/misago.js:1
  2452. msgid "Change avatar"
  2453. msgstr ""
  2454. #: static/misago/js/misago.js:1
  2455. msgid "Log out"
  2456. msgstr ""
  2457. #: static/misago/js/misago.js:1
  2458. msgid "You have unread private threads!"
  2459. msgstr ""
  2460. #: static/misago/js/misago.js:1
  2461. msgid "No users have posted any new messages during last %(days)s days."
  2462. msgstr ""
  2463. #: static/misago/js/misago.js:1
  2464. msgid "Rank"
  2465. msgstr ""
  2466. #: static/misago/js/misago.js:1
  2467. msgid "Ranked posts"
  2468. msgstr ""
  2469. #: static/misago/js/misago.js:1
  2470. msgid "Total posts"
  2471. msgstr ""
  2472. #: static/misago/js/misago.js:1
  2473. msgid "%(posters)s top poster from last %(days)s days."
  2474. msgid_plural "%(posters)s top posters from last %(days)s days."
  2475. msgstr[0] ""
  2476. msgstr[1] ""
  2477. #: static/misago/js/misago.js:1
  2478. msgid "Users"
  2479. msgstr ""
  2480. #: static/misago/js/misago.js:1
  2481. msgid "There is %(more)s more member with this role."
  2482. msgid_plural "There are %(more)s more members with this role."
  2483. msgstr[0] ""
  2484. msgstr[1] ""
  2485. #: static/misago/js/misago.js:1
  2486. msgid "There are no more members with this role."
  2487. msgstr ""
  2488. #: static/misago/js/misago.js:1
  2489. msgid "There are no users with this rank at the moment."
  2490. msgstr ""
  2491. #: static/misago/js/misago.js:1
  2492. msgid "Lost connection with application."
  2493. msgstr ""
  2494. #: static/misago/js/misago.js:1
  2495. msgid "Action link is invalid."
  2496. msgstr ""
  2497. #: static/misago/js/misago.js:1
  2498. msgid "Unknown error has occured."
  2499. msgstr ""
  2500. #: static/misago/js/misago.js:1
  2501. msgid "Upload was rejected by server as too large."
  2502. msgstr ""
  2503. #: static/misago/js/misago.js:1
  2504. msgid "Failed to load CAPTCHA."
  2505. msgstr ""
  2506. #: static/misago/js/misago.js:1
  2507. msgid "Please solve the quick test"
  2508. msgstr ""
  2509. #: static/misago/js/misago.js:1
  2510. msgid "This test helps us prevent automated spam registrations on our site."
  2511. msgstr ""
  2512. #: static/misago/js/misago.js:1
  2513. msgid "page: %(page)s"
  2514. msgstr ""
  2515. #: static/misago/js/misago.js:1
  2516. msgid "You are already working on other message. Do you want to discard it?"
  2517. msgstr ""
  2518. #: static/misago/js/misago.js:1
  2519. msgid "You don't have permission to perform this action."
  2520. msgstr ""
  2521. #: static/misago/js/misago.js:1
  2522. msgid "This ban is permanent."
  2523. msgstr ""
  2524. #: static/misago/js/misago.js:1
  2525. msgid "You are banned"
  2526. msgstr ""
  2527. #: static/misago/js/misago.js:1
  2528. msgid "You have to accept the terms of service."
  2529. msgstr ""
  2530. #: static/misago/js/misago.js:1
  2531. msgid "You have to accept the privacy policy."
  2532. msgstr ""
  2533. #: static/misago/js/misago.js:1
  2534. msgid ""
  2535. "Ensure this value has at least %(limit_value)s character (it has "
  2536. "%(show_value)s)."
  2537. msgid_plural ""
  2538. "Ensure this value has at least %(limit_value)s characters (it has "
  2539. "%(show_value)s)."
  2540. msgstr[0] ""
  2541. msgstr[1] ""
  2542. #: static/misago/js/misago.js:1
  2543. msgid ""
  2544. "Ensure this value has at most %(limit_value)s character (it has "
  2545. "%(show_value)s)."
  2546. msgid_plural ""
  2547. "Ensure this value has at most %(limit_value)s characters (it has "
  2548. "%(show_value)s)."
  2549. msgstr[0] ""
  2550. msgstr[1] ""
  2551. #: static/misago/js/misago.js:1
  2552. msgid "Username must be at least %(limit_value)s character long."
  2553. msgid_plural "Username must be at least %(limit_value)s characters long."
  2554. msgstr[0] ""
  2555. msgstr[1] ""
  2556. #: static/misago/js/misago.js:1
  2557. msgid "Username cannot be longer than %(limit_value)s character."
  2558. msgid_plural "Username cannot be longer than %(limit_value)s characters."
  2559. msgstr[0] ""
  2560. msgstr[1] ""
  2561. #: static/misago/js/misago.js:1
  2562. msgid "Username can only contain latin alphabet letters and digits."
  2563. msgstr ""
  2564. #: static/misago/js/misago.js:1
  2565. msgid "Valid password must be at least %(limit_value)s character long."
  2566. msgid_plural "Valid password must be at least %(limit_value)s characters long."
  2567. msgstr[0] ""
  2568. msgstr[1] ""
  2569. #: static/misago/js/vendor.js:2
  2570. msgid "<iframe frameborder='0' width='0' height='0'/>"
  2571. msgstr ""
  2572. #: static/misago/js/vendor.js:2
  2573. msgid "<script>"
  2574. msgstr ""
  2575. #: static/misago/js/vendor.js:2
  2576. msgid "<div>"
  2577. msgstr ""