djangojs.po 70 KB

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