123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315 |
- # SOME DESCRIPTIVE TITLE.
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
- #
- # Translators:
- # Rivo Zängov <eraser@eraser.ee>, 2018
- #
- #, fuzzy
- msgid ""
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Report-Msgid-Bugs-To: \n"
- "POT-Creation-Date: 2023-03-19 13:05+0000\n"
- "PO-Revision-Date: 2017-01-16 00:04+0000\n"
- "Last-Translator: Rivo Zängov <eraser@eraser.ee>, 2018\n"
- "Language-Team: Estonian (https://www.transifex.com/misago/teams/65369/et/)\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
- "Language: et\n"
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
- #: static/misago/admin/index.js:16
- msgid "defineLocaleOverride"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "I have read and accept %(agreement)s."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "the terms of service"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "the privacy policy"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Pinned globally"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Pinned in category"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Answered"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Poll"
- msgstr "Küsitlus"
- #: static/misago/js/misago.js:1
- msgid "Awaiting approval"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Has unapproved posts"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Closed"
- msgstr "Suletud"
- #: static/misago/js/misago.js:1
- msgid "Hidden"
- msgstr "Peidetud"
- #: static/misago/js/misago.js:1
- msgid "%(replies)s reply"
- msgid_plural "%(replies)s replies"
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "No profile details are editable at this time."
- msgstr "Profiili üksikasjad pole hetkel muudetavad."
- #: static/misago/js/misago.js:1
- msgid "This option is currently unavailable."
- msgstr "See valik pole praegu saadval."
- #: static/misago/js/misago.js:1
- msgid "Form contains errors."
- msgstr "Vormis on vigasid."
- #: static/misago/js/misago.js:1
- msgid "Save changes"
- msgstr "Salvesta muudatused"
- #: static/misago/js/misago.js:1
- msgid "Cancel"
- msgstr "Loobu"
- #: static/misago/js/misago.js:1
- msgid "Edit details"
- msgstr "Muuda andmeid"
- #: static/misago/js/misago.js:1
- msgid "(error)"
- msgstr "(viga)"
- #: static/misago/js/misago.js:1
- msgid "(success)"
- msgstr "(korras)"
- #: static/misago/js/misago.js:1
- msgid "Are you sure you want to delete all polls?"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "modal"
- msgid "Close"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Merge threads"
- msgstr "Liida teemad"
- #: static/misago/js/misago.js:1
- msgid "Best answer"
- msgstr "Parim vastus"
- #: static/misago/js/misago.js:1
- msgid ""
- "Please select the best answer for your newly merged thread. No posts will be"
- " deleted during the merge."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "Please select the poll for your newly merged thread. Rejected polls will be "
- "permanently deleted and cannot be recovered."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Ok"
- msgstr "OK"
- #: static/misago/js/misago.js:1
- msgid "This post's contents cannot be displayed."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "This error is caused by invalid post content manipulation."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "posted %(posted_on)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "See post"
- msgstr "Vaata postitust"
- #: static/misago/js/misago.js:1
- msgid "Removed user"
- msgstr "Eemaldatud kasutaja"
- #: static/misago/js/misago.js:1
- msgctxt "post reply"
- msgid "Quote"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Attachment details"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Type and size"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Uploaded at"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Uploader"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Insert into message"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Remove attachment"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Remove this attachment?"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "See error"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "%(filename)s: %(error)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Protected"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Protect"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Edit"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Preview"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Post"
- msgstr "Postita"
- #: static/misago/js/misago.js:1
- msgid "This field is required."
- msgstr "See väli on kohustuslik."
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Code"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Syntax highlighting"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "No syntax highlighting"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Code to insert"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Insert code"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Formatting help"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Emphasis text"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "_This text will have emphasis_"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "This text will have emphasis"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Bold text"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "**This text will be bold**"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "This text will be bold"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Removed text"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "~~This text will be removed~~"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "This text will be removed"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Bold text (BBCode)"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "[b]This text will be bold[/b]"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Underlined text (BBCode)"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "[u]This text will be underlined[/u]"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "This text will be underlined"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Italics text (BBCode)"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "[i]This text will be in italics[/i]"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "This text will be in italics"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Link"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Link with text"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Link text"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Link (BBCode)"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Link with text (BBCode)"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Image"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Image with alternate text"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Image text"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Image (BBCode)"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Mention user by their name"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Heading 1"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "# First level heading"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "First level heading"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Heading 2"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "## Second level heading"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Second level heading"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Heading 3"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "### Third level heading"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Third level heading"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Heading 4"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "#### Fourth level heading"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Fourth level heading"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Heading 5"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "##### Fifth level heading"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Fifth level heading"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Unordered list"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Ordered list"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Quote text"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Quoted text"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Quote text (BBCode)"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Quoted message:"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Quote text with title (BBCode)"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Quote title"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Quote title has written:"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Spoiler"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Secret text"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Inline code"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "`Inline code`"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Code block"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Code block with syntax highlighting"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Code block (BBCode)"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Code block with syntax highlighting (BBCode)"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Horizontal rule"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup help"
- msgid "Horizontal rule (BBCode)"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Reveal spoiler"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Enter a valid address."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Image"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Image description"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid ""
- "Optional but recommended . Will be displayed instead of image when it fails "
- "to load."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Image address"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Insert image"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Link"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Link text"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Optional. Will be displayed instead of link's address."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Link address"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Insert link"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Quote"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Quote's author or source"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Optional. If it's username, put \"@\" before it (\"@JohnDoe\")."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Quoted text"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Insert quote"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "File %(filename)s is bigger than %(limit)s."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Strong"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "example markup"
- msgid "Strong text"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Emphasis"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "example markup"
- msgid "Text with emphasis"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Strikethrough"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "example markup"
- msgid "Text with strikethrough"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Horizontal ruler"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Spoiler"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Spoiler text"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Upload file"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "markup editor"
- msgid "Formatting help"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "dialog"
- msgid "Open"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "dialog"
- msgid "Minimize"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "dialog"
- msgid "Exit the fullscreen mode"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "dialog"
- msgid "Enter the fullscreen mode"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "dialog"
- msgid "Cancel"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post thread"
- msgid "Options"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post thread"
- msgid "Pinned globally"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post thread"
- msgid "Pinned locally"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post thread"
- msgid "Not pinned"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post thread"
- msgid "Open"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post thread"
- msgid "Closed"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post thread"
- msgid "Visible"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post thread"
- msgid "Hidden"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post thread"
- msgid "Are you sure you want to discard thread?"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You have to enter thread title."
- msgstr "Pead sisestama teema pealkirja."
- #: static/misago/js/misago.js:1
- msgid "You have to enter a message."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post thread"
- msgid "Your thread has been posted."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post thread submit"
- msgid "Post thread"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post thread"
- msgid "Thread title"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post thread submit"
- msgid "Start thread"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post thread"
- msgid "Start new thread"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post thread"
- msgid "Are you sure you want to discard private thread?"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You have to enter at least one recipient."
- msgstr "Pead lisama vähemalt ühe saaja."
- #: static/misago/js/misago.js:1
- msgctxt "post thread"
- msgid "Recipients, eg.: Danny, Lisa, Alice"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post thread"
- msgid "Start private thread"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post reply"
- msgid "Are you sure you want to discard your reply?"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post reply"
- msgid "Your reply has been posted."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post reply submit"
- msgid "Post reply"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "post reply"
- msgid "Reply to: %(thread)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Are you sure you want to discard changes?"
- msgstr "Oled sa kindel, et soovid muudatustest loobuda?"
- #: static/misago/js/misago.js:1
- msgid "Reply has been edited."
- msgstr "Vastust on muudetud."
- #: static/misago/js/misago.js:1
- msgctxt "edit reply submit"
- msgid "Edit reply"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "edit reply"
- msgid "Edit reply by %(poster)s from %(date)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "Thread title should be at least %(limit_value)s character long (it has "
- "%(show_value)s)."
- msgid_plural ""
- "Thread title should be at least %(limit_value)s characters long (it has "
- "%(show_value)s)."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid ""
- "Thread title cannot be longer than %(limit_value)s character (it has "
- "%(show_value)s)."
- msgid_plural ""
- "Thread title cannot be longer than %(limit_value)s characters (it has "
- "%(show_value)s)."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid ""
- "Posted message cannot be longer than %(limit_value)s character (it has "
- "%(show_value)s)."
- msgid_plural ""
- "Posted message cannot be longer than %(limit_value)s characters (it has "
- "%(show_value)s)."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid ""
- "Posted message should be at least %(limit_value)s character long (it has "
- "%(show_value)s)."
- msgid_plural ""
- "Posted message should be at least %(limit_value)s characters long (it has "
- "%(show_value)s)."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "Fill out both fields."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Activate account"
- msgstr "Aktiveeri konto"
- #: static/misago/js/misago.js:1
- msgid "Sign in"
- msgstr "Logi sisse"
- #: static/misago/js/misago.js:1
- msgid "Sign in with %(site)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Or use your forum account:"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Username or e-mail"
- msgstr "Kasutajanimi või e-post"
- #: static/misago/js/misago.js:1
- msgid "Password"
- msgstr "Parool"
- #: static/misago/js/misago.js:1
- msgid "Forgot password?"
- msgstr "Unustasid parooli?"
- #: static/misago/js/misago.js:1
- msgid "%(username)s is banned until %(ban_expires)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(username)s is banned"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(username)s is hiding presence"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(username)s is online (hidden)"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(username)s was last seen %(last_click)s (hidden)"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(username)s is online"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(username)s was last seen %(last_click)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Banned"
- msgstr "Bännitud"
- #: static/misago/js/misago.js:1
- msgid "Online (hidden)"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Offline (hidden)"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Online"
- msgstr "On saidil"
- #: static/misago/js/misago.js:1
- msgid "Offline"
- msgstr "Pole saidil"
- #: static/misago/js/misago.js:1
- msgid "No name changes have been recorded for your account."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Joined on %(joined_on)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Joined %(joined_on)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(posts)s post"
- msgid_plural "%(posts)s posts"
- msgstr[0] "%(posts)s postitus"
- msgstr[1] "%(posts)s postitust"
- #: static/misago/js/misago.js:1
- msgid "%(threads)s thread"
- msgid_plural "%(threads)s threads"
- msgstr[0] "%(threads)s teema"
- msgstr[1] "%(threads)s teemat"
- #: static/misago/js/misago.js:1
- msgid "%(followers)s follower"
- msgid_plural "%(followers)s followers"
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "yes"
- msgstr "jah"
- #: static/misago/js/misago.js:1
- msgid "no"
- msgstr "ei"
- #: static/misago/js/misago.js:1
- msgid ""
- "Declining will result in immediate deactivation and deletion of your "
- "account. This action is not reversible."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Decline"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Accept and continue"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "You have signed in as %(username)s. Please refresh the page before "
- "continuing."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "%(username)s, you have been signed out. Please refresh the page before "
- "continuing."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Reload page"
- msgstr "Laadi lehekülg uuesti"
- #: static/misago/js/misago.js:1
- msgid "or press F5 key."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "No categories exist or you don't have permission to see them."
- msgstr "Ühtegi kategooriat pole veel või sul pole õigusi neid näha."
- #: static/misago/js/misago.js:1
- msgid "This category has no new posts. (closed)"
- msgstr "Selles kategoorias pole uusi postitusi. (suletud)"
- #: static/misago/js/misago.js:1
- msgid "This category has new posts. (closed)"
- msgstr "Selles kategoorias on uusi postitusi. (suletud)"
- #: static/misago/js/misago.js:1
- msgid "This category has no new posts."
- msgstr "Selles kategoorias pole ühtegi postitust."
- #: static/misago/js/misago.js:1
- msgid "This category has new posts."
- msgstr "Selles kategoorias on uusi postitusi."
- #: static/misago/js/misago.js:1
- msgid "This category is empty. No threads were posted within it so far."
- msgstr "See kategooria on tühi. Siiani pole veel ühtegi teemat lisatud."
- #: static/misago/js/misago.js:1
- msgid "This category is private. You can see only your own threads within it."
- msgstr "See kategooria on privaatne. Sa näed siin ainult enda teemasid."
- #: static/misago/js/misago.js:1
- msgid "This category is protected. You can't browse its contents."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Enter your password to confirm account deletion."
- msgstr "Sisesta oma parool, et kinnitada konto kustutamist."
- #: static/misago/js/misago.js:1
- msgid "Delete account"
- msgstr "Kustuta konto"
- #: static/misago/js/misago.js:1
- msgid "Change your options"
- msgstr "Muuda oma valikuid"
- #: static/misago/js/misago.js:1
- msgid ""
- "You are going to delete your account. This action is nonreversible, and will"
- " result in following data being deleted:"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "Stored IP addresses associated with content that you have posted will be "
- "deleted."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "Your username will become available for other user to rename to or for new "
- "user to register their account with."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Your e-mail will become available for use in new account registration."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "All your posted content will NOT be deleted, but username associated with it"
- " will be changed to one shared by all deleted accounts."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Delete my account"
- msgstr "Kustuta minu konto"
- #: static/misago/js/misago.js:1
- msgid "Your details have been updated."
- msgstr "Sinu andmeid on uuendatud."
- #: static/misago/js/misago.js:1
- msgid "Your request for data download has been registered."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Download your data"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "To download your data from the site, click the \"Request data download\" "
- "button. Depending on amount of data to be archived and number of users "
- "wanting to download their data at same time it may take up to few days for "
- "your download to be prepared. An e-mail with notification will be sent to "
- "you when your data is ready to be downloaded."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "The download will only be available for limited amount of time, after which "
- "it will be deleted from the site and marked as expired."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Requested on"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Download"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You have no data downloads."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Request data download"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Download is being prepared"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Download is expired"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Everybody"
- msgstr "Kõik"
- #: static/misago/js/misago.js:1
- msgid "Users I follow"
- msgstr "Kasutajad, keda ma jälgin"
- #: static/misago/js/misago.js:1
- msgid "Nobody"
- msgstr "Mitte keegi"
- #: static/misago/js/misago.js:1
- msgid "No"
- msgstr "Ei"
- #: static/misago/js/misago.js:1
- msgid "Notify"
- msgstr "Teavita"
- #: static/misago/js/misago.js:1
- msgid "Notify with e-mail"
- msgstr "Teavita e-postiga"
- #: static/misago/js/misago.js:1
- msgid "Your forum options have been changed."
- msgstr "Sinu foorumi valikuid on muudetud."
- #: static/misago/js/misago.js:1
- msgid "Please reload page and try again."
- msgstr "Palun laadi lehekülg uuesti ning proovi siis veel kord."
- #: static/misago/js/misago.js:1
- msgid "Forum options"
- msgstr "Foorumi valikud"
- #: static/misago/js/misago.js:1
- msgid "Change forum options"
- msgstr "Muuda foorumi valikuid"
- #: static/misago/js/misago.js:1
- msgid "Privacy settings"
- msgstr "Privaatsuse seaded"
- #: static/misago/js/misago.js:1
- msgid "Hide my presence"
- msgstr "Peida minu kohalolek"
- #: static/misago/js/misago.js:1
- msgid ""
- "If you hide your presence, only members with permission to see hidden users "
- "will see when you are online."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Hide my presence from other users"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Show my presence to other users"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Private thread invitations"
- msgstr "Privaatsete teemade kutsed"
- #: static/misago/js/misago.js:1
- msgid "Automatic subscriptions"
- msgstr "Automaatsed jälgimised"
- #: static/misago/js/misago.js:1
- msgid "Threads I start"
- msgstr "Teemad, mida ma alustasin"
- #: static/misago/js/misago.js:1
- msgid "Threads I reply to"
- msgstr "Teemad, millele ma vastan"
- #: static/misago/js/misago.js:1
- msgid "Change username"
- msgstr "Muuda kasutajanimi"
- #: static/misago/js/misago.js:1
- msgid "You will be able to change your username %(next_change)s."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You have used up available name changes."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You can't change your username at the moment."
- msgstr "Sa ei saa hetkel oma kasutajanime muuta."
- #: static/misago/js/misago.js:1
- msgid "You can change your username %(changes_left)s more time."
- msgid_plural "You can change your username %(changes_left)s more times."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "Used changes become available again after %(name_changes_expire)s day."
- msgid_plural ""
- "Used changes become available again after %(name_changes_expire)s days."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "Your new username is same as current one."
- msgstr "Sinu uus kasutajanimi on sama, mis praegune."
- #: static/misago/js/misago.js:1
- msgid "New username"
- msgstr "Uus kasutajanimi"
- #: static/misago/js/misago.js:1
- msgid "Your username has been changed successfully."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Fill out all fields."
- msgstr "Täida kõik lahtrid."
- #: static/misago/js/misago.js:1
- msgid "Change e-mail address"
- msgstr "Muuda e-posti aadressi"
- #: static/misago/js/misago.js:1
- msgid "New e-mail"
- msgstr "Uus e-post"
- #: static/misago/js/misago.js:1
- msgid "Your current password"
- msgstr "Sinu praegune parool"
- #: static/misago/js/misago.js:1
- msgid "Change e-mail"
- msgstr "Muuda e-posti"
- #: static/misago/js/misago.js:1
- msgid "New passwords are different."
- msgstr "Uued paroolid on erinevad."
- #: static/misago/js/misago.js:1
- msgid "Change password"
- msgstr "Muuda parooli"
- #: static/misago/js/misago.js:1
- msgid "New password"
- msgstr "Uus parool"
- #: static/misago/js/misago.js:1
- msgid "Repeat password"
- msgstr "Korda parooli"
- #: static/misago/js/misago.js:1
- msgid "Change email or password"
- msgstr "Muuda e-posti või parooli"
- #: static/misago/js/misago.js:1
- msgid ""
- "You need to set a password for your account to be able to change your "
- "username or email."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Set password"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Change forgotten password"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Menu"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Ban details"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "User-shown ban message"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Team-shown ban message"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "This ban expires on %(expires_on)s."
- msgstr "See blokeering aegub %(expires_on)s."
- #: static/misago/js/misago.js:1
- msgid "This ban expires %(expires_on)s."
- msgstr "See blokeering aegub %(expires_on)s."
- #: static/misago/js/misago.js:1
- msgid "This ban has expired."
- msgstr "See blokeering on aegunud."
- #: static/misago/js/misago.js:1
- msgid "%(username)s's ban is permanent."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Ban expiration"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "No ban is active at the moment."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You are not sharing any details with others."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(username)s is not sharing any details with others."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Details"
- msgstr "Üksikasjad"
- #: static/misago/js/misago.js:1
- msgid "Edit"
- msgstr "Muuda"
- #: static/misago/js/misago.js:1
- msgid "%(username)s's details have been updated."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Show older activity"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Search..."
- msgstr "Otsi..."
- #: static/misago/js/misago.js:1
- msgid "Followers"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Found %(users)s user."
- msgid_plural "Found %(users)s users."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "You have %(users)s follower."
- msgid_plural "You have %(users)s followers."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "%(username)s has %(users)s follower."
- msgid_plural "%(username)s has %(users)s followers."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "Loading..."
- msgstr "aadimine..."
- #: static/misago/js/misago.js:1
- msgid "Search returned no users matching specified criteria."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You have no followers."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(username)s has no followers."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Show more (%(more)s)"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Search users..."
- msgstr "Otsi kasutajaid..."
- #: static/misago/js/misago.js:1
- msgid "Follows"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You are following %(users)s user."
- msgid_plural "You are following %(users)s users."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "%(username)s is following %(users)s user."
- msgid_plural "%(username)s is following %(users)s users."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "You are not following any users."
- msgstr "Sa ei jälgi ühtegi kasutajat."
- #: static/misago/js/misago.js:1
- msgid "%(username)s is not following any users."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Username history"
- msgstr "Kasutajanime ajalugu"
- #: static/misago/js/misago.js:1
- msgid "Found %(changes)s username change."
- msgid_plural "Found %(changes)s username changes."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "Your username was changed %(changes)s time."
- msgid_plural "Your username was changed %(changes)s times."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "%(username)s's username was changed %(changes)s time."
- msgid_plural "%(username)s's username was changed %(changes)s times."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "Search returned no username changes matching specified criteria."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(username)s's username was never changed."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Show older (%(more)s)"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Search history..."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Following"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Follow"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Message"
- msgstr "Sõnum"
- #: static/misago/js/misago.js:1
- msgid "Avatar controls have been changed."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Lock avatar"
- msgstr "Lukusta avatar"
- #: static/misago/js/misago.js:1
- msgid ""
- "Locking user avatar will prohibit user from changing his avatar and will "
- "reset his/her avatar to default one."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Disallow user from changing avatar"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Allow user to change avatar"
- msgstr "Luba kasutajal avatari muuta"
- #: static/misago/js/misago.js:1
- msgid "User message"
- msgstr "Kasutaja sõnum"
- #: static/misago/js/misago.js:1
- msgid ""
- "Optional message for user explaining why he/she is prohibited form changing "
- "avatar."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Staff message"
- msgstr "Sõnum personalilt"
- #: static/misago/js/misago.js:1
- msgid ""
- "Optional message for forum team members explaining why user is prohibited "
- "form changing avatar."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Close"
- msgstr "Sulge"
- #: static/misago/js/misago.js:1
- msgid "Avatar controls"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Username has been changed."
- msgstr "Kasutajanime on muudetud."
- #: static/misago/js/misago.js:1
- msgid ""
- "%(username)s's account, threads, posts and other content has been deleted."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "%(username)s's account has been deleted and other content has been hidden."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Delete %(username)s"
- msgstr "Kustuta %(username)s"
- #: static/misago/js/misago.js:1
- msgid "Please wait... (%(countdown)ss)"
- msgstr "Palun oota... (%(countdown)ss)"
- #: static/misago/js/misago.js:1
- msgid "User content"
- msgstr "Kasutaja sisu"
- #: static/misago/js/misago.js:1
- msgid "Delete together with user's account"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Hide after deleting user's account"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Return to users list"
- msgstr "Tagasi kasutajate nimekirja"
- #: static/misago/js/misago.js:1
- msgid "Delete user account"
- msgstr "Kustuta kasutaja konto"
- #: static/misago/js/misago.js:1
- msgid "This user's account has been disabled by administrator."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Account disabled"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Options"
- msgstr "Valikud"
- #: static/misago/js/misago.js:1
- msgid "You have posted no messages."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(username)s posted no messages."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You have posted %(posts)s message."
- msgid_plural "You have posted %(posts)s messages."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "%(username)s has posted %(posts)s message."
- msgid_plural "%(username)s has posted %(posts)s messages."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "Posts"
- msgstr "Postitused"
- #: static/misago/js/misago.js:1
- msgid "You have no started threads."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(username)s started no threads."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You have started %(threads)s thread."
- msgid_plural "You have started %(threads)s threads."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "%(username)s has started %(threads)s thread."
- msgid_plural "%(username)s has started %(threads)s threads."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "Threads"
- msgstr "Teemad"
- #: static/misago/js/misago.js:1
- msgid "Enter a valid email address."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Your e-mail address"
- msgstr "Sinu e-posti aadress"
- #: static/misago/js/misago.js:1
- msgid "Send link"
- msgstr "Saada link"
- #: static/misago/js/misago.js:1
- msgid "Activation link was sent to %(email)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Request another link"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Reset password link was sent to %(email)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Activate your account."
- msgstr "Aktiveeri oma konto"
- #: static/misago/js/misago.js:1
- msgid "Your account is inactive."
- msgstr "Sinu konto pole aktiivne."
- #: static/misago/js/misago.js:1
- msgid "Enter new password."
- msgstr "Sisesta uus parool."
- #: static/misago/js/misago.js:1
- msgid "Enter new password"
- msgstr "Sisesta uus parool"
- #: static/misago/js/misago.js:1
- msgid "%(username)s, your password has been changed successfully."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You will have to sign in using new password before continuing."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You have to enter search query."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Search"
- msgstr "Otsi"
- #: static/misago/js/misago.js:1
- msgid "Search took %(time)s s to complete"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Show more"
- msgstr "Näita lisa"
- #: static/misago/js/misago.js:1
- msgid "Loading results..."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "No threads matching search query have been found."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Enter at least two characters to search threads."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "No users matching search query have been found."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Enter at least two characters to search users."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Sign in with %(backend)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You need to accept the privacy policy."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Your e-mail address has been verified by %(backend)s."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Complete your details"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Username"
- msgstr "Kasutajanimi"
- #: static/misago/js/misago.js:1
- msgid "E-mail address"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "%(username)s, your account has been created but you need to activate it "
- "before you will be able to sign in."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "%(username)s, your account has been created but board administrator will "
- "have to activate it before you will be able to sign in."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "%(username)s, your account has been created and you have been signed in to "
- "it."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Registration completed!"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Return to forum index"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You have to enter user name."
- msgstr "Sa pead sisestama kasutaja nime."
- #: static/misago/js/misago.js:1
- msgid "New participant has been added to thread."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "User to add"
- msgstr "Kasutaja, keda lisada"
- #: static/misago/js/misago.js:1
- msgid "Add participant"
- msgstr "Lisa osaleja"
- #: static/misago/js/misago.js:1
- msgid "Are you sure you want to take over this thread?"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Are you sure you want to change thread owner to %(user)s?"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(user)s has been made new thread owner."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Make owner"
- msgstr "Tee omanikuks"
- #: static/misago/js/misago.js:1
- msgid "Are you sure you want to leave this thread?"
- msgstr "Oled sa kindel, et soovid sellest teemast lahkuda?"
- #: static/misago/js/misago.js:1
- msgid "Are you sure you want to remove %(user)s from this thread?"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You have left this thread."
- msgstr "Sa lahkusid sellest teemast."
- #: static/misago/js/misago.js:1
- msgid "%(user)s has been removed from this thread."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Leave thread"
- msgstr "Lahku teemast"
- #: static/misago/js/misago.js:1
- msgid "Remove"
- msgstr "Eemalda"
- #: static/misago/js/misago.js:1
- msgid "See profile"
- msgstr "Vaata profiili"
- #: static/misago/js/misago.js:1
- msgid "Thread owner"
- msgstr "Teema omanik"
- #: static/misago/js/misago.js:1
- msgid "This thread has %(users)s participant."
- msgid_plural "This thread has %(users)s participants."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "%(votes)s vote, %(proc)s% of total."
- msgid_plural "%(votes)s votes, %(proc)s% of total."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "You've voted on this choice."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Poll votes"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "%(votes)s user has voted for this choice."
- msgid_plural "%(votes)s users have voted for this choice."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Vote"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "See votes"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Edit"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid ""
- "Are you sure you want to delete this poll? This action is not reversible."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Poll has been deleted"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Delete"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Started by %(poster)s %(posted_on)s."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Voting ends %(ends_on)s."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "%(votes)s vote."
- msgid_plural "%(votes)s votes."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Voting is public."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "You can't select any more choices."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "You can select %(choices)s more choice."
- msgid_plural "You can select %(choices)s more choices."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "You can change your vote later."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Votes are final."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You need to select at least one choice"
- msgstr "Sa pead tegema vähemalt ühe valiku"
- #: static/misago/js/misago.js:1
- msgid "Your vote has been saved."
- msgstr "Sinu vastus on salvestatud."
- #: static/misago/js/misago.js:1
- msgid "Save your vote"
- msgstr "Salvesta oma vastus"
- #: static/misago/js/misago.js:1
- msgid "See results"
- msgstr "Vaata tulemusi"
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Add choice"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Are you sure you want to remove this choice?"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Remove this choice"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Poll choice"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Are you sure you want to discard changes?"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Are you sure you want to discard new poll?"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Poll has been edited."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Poll has been posted."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Edit poll"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Add poll"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Question and choices"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Poll question"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Available choices"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Voting"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Poll length"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid ""
- "Enter number of days for which voting in this poll should be possible or "
- "zero to run this poll indefinitely."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Allowed choices"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Allow vote changes"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Allow participants to change their vote"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Don't allow participants to change their vote"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Cancel"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Save changes"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Post poll"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Make voting public"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid ""
- "Making voting public will allow everyone to access detailed list of votes, "
- "showing which users voted for which choices and at which times. This option "
- "can't be changed after poll's creation. Moderators may see voting details "
- "for all polls."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Votes are public"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgctxt "thread poll"
- msgid "Votes are hidden"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Hide"
- msgstr "Peida"
- #: static/misago/js/misago.js:1
- msgid "Unhide"
- msgstr "Näita"
- #: static/misago/js/misago.js:1
- msgid ""
- "Are you sure you wish to delete this event? This action is not reversible!"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Event has been deleted."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Delete"
- msgstr "Kustuta"
- #: static/misago/js/misago.js:1
- msgid "Hidden by %(event_by)s %(event_on)s."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "By %(event_by)s %(event_on)s."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Thread has been pinned globally."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Thread has been pinned locally."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Thread has been unpinned."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Thread has been approved."
- msgstr "Teema on heaks kiidetud."
- #: static/misago/js/misago.js:1
- msgid "Thread has been opened."
- msgstr "Teema on avatud."
- #: static/misago/js/misago.js:1
- msgid "Thread has been closed."
- msgstr "Teema on suletud."
- #: static/misago/js/misago.js:1
- msgid "Thread has been revealed."
- msgstr "Teema on avaldatud."
- #: static/misago/js/misago.js:1
- msgid "Thread has been made hidden."
- msgstr "Teema on peidetud."
- #: static/misago/js/misago.js:1
- msgid "Took thread over."
- msgstr "Võta teema üle."
- #: static/misago/js/misago.js:1
- msgid "Owner has left thread. This thread is now closed."
- msgstr "Teema omanik lahkus. See teema onnüüd suletud."
- #: static/misago/js/misago.js:1
- msgid "Participant has left thread."
- msgstr "Osaleja lahkus teemast."
- #: static/misago/js/misago.js:1
- msgid "Thread title has been changed from %(old_title)s."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Thread has been moved from %(from_category)s."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "The %(merged_thread)s thread has been merged into this thread."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Changed thread owner to %(user)s."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Added %(user)s to thread."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Removed %(user)s from thread."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "New event"
- msgstr "Uus sõndmus"
- #: static/misago/js/misago.js:1
- msgid "%(filetype)s, %(size)s, uploaded by %(uploader)s %(uploaded_on)s."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Hidden by %(hidden_by)s %(hidden_on)s."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "This post is hidden. You cannot see its contents."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Marked as best answer by you %(marked_on)s."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Marked as best answer by %(marked_by)s %(marked_on)s."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "This post is hidden. Only users with permission may see its contents."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "This post is unapproved. Only users with permission to approve posts and its"
- " author may see its contents."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "This post is protected. Only moderators may change it."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "Are you sure you want to delete this post? This action is not reversible!"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Post has been deleted."
- msgstr "Postitus on kustuatud."
- #: static/misago/js/misago.js:1
- msgid "No users have liked this post."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Post Likes"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(likes)s like"
- msgid_plural "%(likes)s likes"
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "Liked"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Like"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(user)s likes this."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(users)s and %(last_user)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(users)s like this."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(users)s and %(likes)s other user like this."
- msgid_plural "%(users)s and %(likes)s other users like this."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "Reply"
- msgstr "Vasta"
- #: static/misago/js/misago.js:1
- msgid "You have to enter link to the other thread."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Selected post was moved to the other thread."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Link to thread you want to move post to"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Move post"
- msgstr "Liiguta postitust"
- #: static/misago/js/misago.js:1
- msgid "Revert post to state from before this edit."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Revert"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "See previous change"
- msgstr "Vaata eelmist muudatust"
- #: static/misago/js/misago.js:1
- msgid "See next change"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "By %(edited_by)s %(edited_on)s."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "Are you sure you with to revert this post to the state from before this "
- "edit?"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Post has been reverted to previous state."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Post edits history"
- msgstr "Postituste muutmise ajalugu"
- #: static/misago/js/misago.js:1
- msgid "Yes"
- msgstr "Jah"
- #: static/misago/js/misago.js:1
- msgid "Selected post was split into new thread."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Not pinned"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Pinned locally"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Thread weight"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Hide thread"
- msgstr "Peida teema"
- #: static/misago/js/misago.js:1
- msgid "Close thread"
- msgstr "Sulge teema"
- #: static/misago/js/misago.js:1
- msgid "Thread title"
- msgstr "Teema pealkiri"
- #: static/misago/js/misago.js:1
- msgid "Category"
- msgstr "Kategooria"
- #: static/misago/js/misago.js:1
- msgid "Split post"
- msgstr "Jaga postitus"
- #: static/misago/js/misago.js:1
- msgid "You can't move this post at the moment."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Split post into new thread"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Permament link to this post:"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Permament link"
- msgstr "Püsilink"
- #: static/misago/js/misago.js:1
- msgid "Mark as best answer"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Unmark best answer"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "This post was edited %(edits)s time."
- msgid_plural "This post was edited %(edits)s times."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "Changes history"
- msgstr "Muudatuste ajalugu"
- #: static/misago/js/misago.js:1
- msgid "Approve"
- msgstr "iida heaks"
- #: static/misago/js/misago.js:1
- msgid "Move"
- msgstr "iiguta"
- #: static/misago/js/misago.js:1
- msgid "Split"
- msgstr "aga"
- #: static/misago/js/misago.js:1
- msgid "Protect"
- msgstr "Kaitse"
- #: static/misago/js/misago.js:1
- msgid "Remove protection"
- msgstr "Eemalda kaitse"
- #: static/misago/js/misago.js:1
- msgid "New post"
- msgstr "Uus postitus"
- #: static/misago/js/misago.js:1
- msgid "New"
- msgstr "Uus"
- #: static/misago/js/misago.js:1
- msgid "edited %(edits)s time"
- msgid_plural "edited %(edits)s times"
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "%(edits)s edit"
- msgid_plural "%(edits)s edits"
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "This post is protected and may not be edited."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "protected"
- msgstr "kaitstud"
- #: static/misago/js/misago.js:1
- msgid "Thread author"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Started on: %(timestamp)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Change title"
- msgstr "Muuda pealkirja"
- #: static/misago/js/misago.js:1
- msgid "Thread has been merged with other one."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Link to thread you want to merge with"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "Merge will delete current thread and move its contents to the thread "
- "specified here."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Merge thread"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Thread has been moved."
- msgstr "Teema on liigutatud."
- #: static/misago/js/misago.js:1
- msgid "New category"
- msgstr "Uus kategooria"
- #: static/misago/js/misago.js:1
- msgid "Move thread"
- msgstr "Liiguta teemat"
- #: static/misago/js/misago.js:1
- msgid "You can't move this thread at the moment."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Thread has been made visible."
- msgstr "Teema on tehtud nähtavaks."
- #: static/misago/js/misago.js:1
- msgid "Are you sure you want to delete this thread?"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Thread has been deleted."
- msgstr "Teema on kustutatud."
- #: static/misago/js/misago.js:1
- msgid "Pin globally"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Pin locally"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Unpin"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Merge"
- msgstr "Liida"
- #: static/misago/js/misago.js:1
- msgid "Open"
- msgstr "Avatud"
- #: static/misago/js/misago.js:1
- msgid "Thread options"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "E-mail"
- msgstr "E-post"
- #: static/misago/js/misago.js:1
- msgid "Enabled"
- msgstr "lülitatud"
- #: static/misago/js/misago.js:1
- msgid "Disabled"
- msgstr "Välja lülitatud"
- #: static/misago/js/misago.js:1
- msgid "Unsubscribe"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Subscribe"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Subscribe with e-mail"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Private threads"
- msgstr "Privaatsed teemad"
- #: static/misago/js/misago.js:1
- msgid "Go to first page"
- msgstr "Mine esimesele leheküljele"
- #: static/misago/js/misago.js:1
- msgid "Go to previous page"
- msgstr "Mine eelmisele leheküljele"
- #: static/misago/js/misago.js:1
- msgid "Go to next page"
- msgstr "Mine järgmisele leheküljele"
- #: static/misago/js/misago.js:1
- msgid "Go to last page"
- msgstr "Mine viimasele leheküljele"
- #: static/misago/js/misago.js:1
- msgid "There is %(more)s more post in this thread."
- msgid_plural "There are %(more)s more posts in this thread."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "There are no more posts in this thread."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Moderation"
- msgstr "Modereerimine"
- #: static/misago/js/misago.js:1
- msgid "One or more posts could not be changed:"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(username)s on %(posted_on)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "Are you sure you want to merge selected posts? This action is not "
- "reversible!"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "Are you sure you want to delete selected posts? This action is not "
- "reversible!"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Selected posts were moved to the other thread."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Link to thread you want to move posts to"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Move posts"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Selected posts were split into new thread."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Split posts"
- msgstr "Jaga postitused"
- #: static/misago/js/misago.js:1
- msgid "You can't move selected posts at the moment."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Split posts into new thread"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Unprotect"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Posts options"
- msgstr "Postituse valikud"
- #: static/misago/js/misago.js:1
- msgid "Add poll"
- msgstr "Lisa küsitlus"
- #: static/misago/js/misago.js:1
- msgid "Shortcuts"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Go to new post"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Go to best answer"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Go to unapproved post"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Go to last post"
- msgstr "Mine viimasele postitusele"
- #: static/misago/js/misago.js:1
- msgid "Threads moderation"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "One or more threads could not be deleted:"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "You can't move threads because there are no categories you are allowed to "
- "move them to."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "You need permission to start threads in category to be able to merge threads"
- " to it."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Selected threads were moved."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Move threads"
- msgstr "Liiguta teemasid"
- #: static/misago/js/misago.js:1
- msgid ""
- "You need permission to start threads in category to be able to move threads "
- "to it."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Selected threads were pinned globally."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Selected threads were pinned locally."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Selected threads were unpinned."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Selected threads were approved."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Selected threads were opened."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Selected threads were closed."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Selected threads were unhidden."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Selected threads were hidden."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You don't have permission to merge this thread with others."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You have to select at least two threads to merge."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Are you sure you want to delete selected threads?"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Selected threads were deleted."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Select all"
- msgstr "Vali kõik"
- #: static/misago/js/misago.js:1
- msgid "Select none"
- msgstr "Ära vali midagi"
- #: static/misago/js/misago.js:1
- msgid "Pin threads globally"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Pin threads locally"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Unpin threads"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Approve threads"
- msgstr "Kiida teemad heaks"
- #: static/misago/js/misago.js:1
- msgid "Open threads"
- msgstr "Ava teemad"
- #: static/misago/js/misago.js:1
- msgid "Close threads"
- msgstr "Sulge teemad"
- #: static/misago/js/misago.js:1
- msgid "Unhide threads"
- msgstr "Peida teemad"
- #: static/misago/js/misago.js:1
- msgid "Hide threads"
- msgstr "Peida teemad"
- #: static/misago/js/misago.js:1
- msgid "Delete threads"
- msgstr "Kustuta teemad"
- #: static/misago/js/misago.js:1
- msgid "All categories"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "All subcategories"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Start thread"
- msgstr "Alusta teemat"
- #: static/misago/js/misago.js:1
- msgid "Why not start one yourself?"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "There are no threads on this forum... yet!"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "There are no threads in this category."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "No threads matching specified criteria were found."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Last activity: %(timestamp)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "No new posts"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "New posts"
- msgstr "Uued postitused"
- #: static/misago/js/misago.js:1
- msgid "Last post by: %(poster)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Subscribe with alert"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Subscribed to e-mails"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Subscribed to alerts"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Not subscribed"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "There is %(threads)s new or updated thread. Click here to show it."
- msgid_plural ""
- "There are %(threads)s new or updated threads. Click here to show them."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid ""
- "Private threads are threads which only those that started them and those "
- "they have invited may see and participate in."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You aren't participating in any private threads."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "All"
- msgstr "Kõik"
- #: static/misago/js/misago.js:1
- msgid "All threads"
- msgstr "Kõik teemad"
- #: static/misago/js/misago.js:1
- msgid "My"
- msgstr "Minu"
- #: static/misago/js/misago.js:1
- msgid "My threads"
- msgstr "Minu teemad"
- #: static/misago/js/misago.js:1
- msgid "New threads"
- msgstr "Uued teemad"
- #: static/misago/js/misago.js:1
- msgid "Unread"
- msgstr "Lugemata"
- #: static/misago/js/misago.js:1
- msgid "Unread threads"
- msgstr "Lugemata teemad"
- #: static/misago/js/misago.js:1
- msgid "Subscribed"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Subscribed threads"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Unapproved"
- msgstr "Heakskiitmata"
- #: static/misago/js/misago.js:1
- msgid "Unapproved content"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Search returned no results."
- msgstr "Otsing ei andnud tulemusi."
- #: static/misago/js/misago.js:1
- msgid "See full \"%(provider)s\" results page with %(count)s result."
- msgid_plural "See full \"%(provider)s\" results page with %(count)s results."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "Posted by %(poster)s on %(posted_on)s in %(category)s."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(title)s, joined on %(joined_on)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Entered password is very weak."
- msgstr "Sisestatud parool on väga nõrk."
- #: static/misago/js/misago.js:1
- msgid "Entered password is weak."
- msgstr "Sisestatud parool on nõrk."
- #: static/misago/js/misago.js:1
- msgid "Entered password is average."
- msgstr "Sisestatud parool on keskmise tugevusega."
- #: static/misago/js/misago.js:1
- msgid "Entered password is strong."
- msgstr "Sisestatud parool on tugev."
- #: static/misago/js/misago.js:1
- msgid "Entered password is very strong."
- msgstr "Sisestatud parool on väga tugev."
- #: static/misago/js/misago.js:1
- msgid "Register"
- msgstr "Registreeru"
- #: static/misago/js/misago.js:1
- msgid "Join with %(site)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Or create forum account:"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Register account"
- msgstr "Loo konto"
- #: static/misago/js/misago.js:1
- msgid ""
- "We have sent an e-mail to %(email)s with link that you have to click to "
- "activate your account."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "We will send an e-mail to %(email)s when this takes place."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Registration complete"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "New registrations are currently disabled."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Registration is currently unavailable due to an error."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You are browsing as guest."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Sign in or register to start and participate in discussions."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Download my Gravatar"
- msgstr "Laadi minu Gravatar alla"
- #: static/misago/js/misago.js:1
- msgid "Re-crop uploaded image"
- msgstr "Lõika üles laaditud pilte uuesti"
- #: static/misago/js/misago.js:1
- msgid "Upload new image"
- msgstr "Laadi üles uus pilt"
- #: static/misago/js/misago.js:1
- msgid "Pick avatar from gallery"
- msgstr "Vali galeriist avatar"
- #: static/misago/js/misago.js:1
- msgid "Generate my individual avatar"
- msgstr "Loo minu enda avatar"
- #: static/misago/js/misago.js:1
- msgid "Set avatar"
- msgstr "Määra avatar"
- #: static/misago/js/misago.js:1
- msgid "Crop image"
- msgstr "Lõika pilti"
- #: static/misago/js/misago.js:1
- msgid "Your image has been uploaded and you may now crop it."
- msgstr "Sinu pilt on üles laaditud ja sa võid nüüd seda lõigata."
- #: static/misago/js/misago.js:1
- msgid "Selected file is too big. (%(filesize)s)"
- msgstr "Valitud fail on liiga suur. (%(filesize)s)"
- #: static/misago/js/misago.js:1
- msgid "Selected file type is not supported."
- msgstr "Valitud faililaiend pole toetatud."
- #: static/misago/js/misago.js:1
- msgid "%(files)s files smaller than %(limit)s"
- msgstr "%(files)s filid on väiksemad kui %(limit)s"
- #: static/misago/js/misago.js:1
- msgid "Select file"
- msgstr "Vali fail"
- #: static/misago/js/misago.js:1
- msgid "%(progress)s % complete"
- msgstr "%(progress)s % valmis"
- #: static/misago/js/misago.js:1
- msgid "Save choice"
- msgstr "Salvesta valik"
- #: static/misago/js/misago.js:1
- msgid "Select avatar"
- msgstr "Vali avatar"
- #: static/misago/js/misago.js:1
- msgid "Change your avatar"
- msgstr "Muuda oma avatari"
- #: static/misago/js/misago.js:1
- msgid "See your profile"
- msgstr "Vaata oma profiili"
- #: static/misago/js/misago.js:1
- msgid "Change options"
- msgstr "Muuda valikuid"
- #: static/misago/js/misago.js:1
- msgid "Change avatar"
- msgstr "uuda avatari"
- #: static/misago/js/misago.js:1
- msgid "Log out"
- msgstr "Logi välja"
- #: static/misago/js/misago.js:1
- msgid "You have unread private threads!"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "No users have posted any new messages during last %(days)s days."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Rank"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Ranked posts"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Total posts"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "%(posters)s top poster from last %(days)s days."
- msgid_plural "%(posters)s top posters from last %(days)s days."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "Users"
- msgstr "Kasutajad"
- #: static/misago/js/misago.js:1
- msgid "There is %(more)s more member with this role."
- msgid_plural "There are %(more)s more members with this role."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "There are no more members with this role."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "There are no users with this rank at the moment."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Lost connection with application."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Action link is invalid."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Unknown error has occured."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Upload was rejected by server as too large."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Failed to load CAPTCHA."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Please solve the quick test"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "This test helps us prevent automated spam registrations on our site."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "page: %(page)s"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You are already working on other message. Do you want to discard it?"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You don't have permission to perform this action."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "This ban is permanent."
- msgstr "See blokeering on püsiv."
- #: static/misago/js/misago.js:1
- msgid "You are banned"
- msgstr "Sa oled bännitud"
- #: static/misago/js/misago.js:1
- msgid "You have to accept the terms of service."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "You have to accept the privacy policy."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid ""
- "Ensure this value has at least %(limit_value)s character (it has "
- "%(show_value)s)."
- msgid_plural ""
- "Ensure this value has at least %(limit_value)s characters (it has "
- "%(show_value)s)."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid ""
- "Ensure this value has at most %(limit_value)s character (it has "
- "%(show_value)s)."
- msgid_plural ""
- "Ensure this value has at most %(limit_value)s characters (it has "
- "%(show_value)s)."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "Username must be at least %(limit_value)s character long."
- msgid_plural "Username must be at least %(limit_value)s characters long."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "Username cannot be longer than %(limit_value)s character."
- msgid_plural "Username cannot be longer than %(limit_value)s characters."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/misago.js:1
- msgid "Username can only contain latin alphabet letters and digits."
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Valid password must be at least %(limit_value)s character long."
- msgid_plural ""
- "Valid password must be at least %(limit_value)s characters long."
- msgstr[0] ""
- msgstr[1] ""
- #: static/misago/js/vendor.js:2
- msgid "<iframe frameborder='0' width='0' height='0'/>"
- msgstr ""
- #: static/misago/js/vendor.js:2
- msgid "<script>"
- msgstr ""
- #: static/misago/js/vendor.js:2
- msgid "<div>"
- msgstr ""
|