123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414 |
- # 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:
- # Mesut GÜLECEN <mesutgulecen@hotmail.com>, 2017
- # Yiğit Tanrıverdi <x_game92@hotmail.com>, 2017
- # orkun bademli <orkunbademli@gmail.com>, 2017
- # Aysenur Tolun <aysenur_tolun@hotmail.com>, 2017
- # Halil Burak Fedai <burak.fedai@ozu.edu.tr>, 2018
- # Sümeyye Yiğit <qunishment@gmail.com>, 2018
- # Bilal Akgül <billakgl@gmail.com>, 2018
- # gülce abatay <gulceabatay@gmail.com>, 2018
- # Arda Asik (Student) <ardaasik@sabanciuniv.edu>, 2020
- #
- #, fuzzy
- msgid ""
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Report-Msgid-Bugs-To: \n"
- "POT-Creation-Date: 2023-03-19 13:08+0000\n"
- "PO-Revision-Date: 2017-01-16 00:04+0000\n"
- "Last-Translator: Arda Asik (Student) <ardaasik@sabanciuniv.edu>, 2020\n"
- "Language-Team: Turkish (Turkey) (https://www.transifex.com/misago/teams/65369/tr_TR/)\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
- "Language: tr_TR\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 "%(agreement)s' ı okudum ve onaylıyorum."
- #: static/misago/js/misago.js:1
- msgid "the terms of service"
- msgstr "Servis şartları."
- #: static/misago/js/misago.js:1
- msgid "the privacy policy"
- msgstr "gizlilik ilke"
- #: static/misago/js/misago.js:1
- msgid "Pinned globally"
- msgstr "Küresel olarak sabitlenmiş"
- #: static/misago/js/misago.js:1
- msgid "Pinned in category"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Answered"
- msgstr "Cevaplandı."
- #: static/misago/js/misago.js:1
- msgid "Poll"
- msgstr "Anket"
- #: 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 "Kapalı"
- #: static/misago/js/misago.js:1
- msgid "Hidden"
- msgstr "Gizlenmiş"
- #: static/misago/js/misago.js:1
- msgid "%(replies)s reply"
- msgid_plural "%(replies)s replies"
- msgstr[0] "%(replies)s adet cevap"
- msgstr[1] "%(replies)s adet cevap"
- #: static/misago/js/misago.js:1
- msgid "No profile details are editable at this time."
- msgstr "Şu anda herhangi bir profil detayı düzenlenemez."
- #: static/misago/js/misago.js:1
- msgid "This option is currently unavailable."
- msgstr " Şu anda bu seçenek kullanılamıyor."
- #: static/misago/js/misago.js:1
- msgid "Form contains errors."
- msgstr "Form hatalar içeriyor."
- #: static/misago/js/misago.js:1
- msgid "Save changes"
- msgstr "Değişiklikleri Kaydet"
- #: static/misago/js/misago.js:1
- msgid "Cancel"
- msgstr "İptal et"
- #: static/misago/js/misago.js:1
- msgid "Edit details"
- msgstr "Ayrıntıları düzenle"
- #: static/misago/js/misago.js:1
- msgid "(error)"
- msgstr "(hata)"
- #: static/misago/js/misago.js:1
- msgid "(success)"
- msgstr "(başarılı)"
- #: static/misago/js/misago.js:1
- msgid "Are you sure you want to delete all polls?"
- msgstr "Bütün anketleri silmek istediğinize emin misiniz ?"
- #: static/misago/js/misago.js:1
- msgctxt "modal"
- msgid "Close"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Merge threads"
- msgstr "Konular birleştir"
- #: static/misago/js/misago.js:1
- msgid "Best answer"
- msgstr "En iyi cevap"
- #: 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 ""
- "Lütfen yeni birleştirdiğiniz konu için en iyi cevabı seçin. Birleştirme "
- "sırasında iletiler silinmez."
- #: 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 ""
- "Lütfen birleştirilen yeni konu için anket seçin. Reddedilen anketler kalıcı "
- "olarak silinir ve geri alınamaz."
- #: static/misago/js/misago.js:1
- msgid "Ok"
- msgstr "Tamam"
- #: static/misago/js/misago.js:1
- msgid "This post's contents cannot be displayed."
- msgstr "Bu yazı içeriği görüntülenemiyor."
- #: static/misago/js/misago.js:1
- msgid "This error is caused by invalid post content manipulation."
- msgstr "Bu hata, geçersiz yayın içeriği manipülasyonundan kaynaklanmaktadır."
- #: static/misago/js/misago.js:1
- msgid "posted %(posted_on)s"
- msgstr "%(posted_on)s tarihinde yayımlandı."
- #: static/misago/js/misago.js:1
- msgid "See post"
- msgstr "İletiyi gör"
- #: static/misago/js/misago.js:1
- msgid "Removed user"
- msgstr "Kaldırılan kullanıcı"
- #: 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 "Mesaj"
- #: static/misago/js/misago.js:1
- msgid "This field is required."
- msgstr "Bu alan gerekli."
- #: 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 "Konu başlığı girmelisiniz."
- #: static/misago/js/misago.js:1
- msgid "You have to enter a message."
- msgstr "Bir mesaj girmeniz gerekiyor."
- #: 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 "En az bir alıcı girmelisiniz."
- #: 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 "Değişiklikleri silmek istediğinden emin misin?"
- #: static/misago/js/misago.js:1
- msgid "Reply has been edited."
- msgstr "Cevap düzenlendi."
- #: 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] ""
- "Gönderilen konu en az %(limit_value)s karakter uzunluğunda olmalıdır. (O "
- "%(show_value)s karakterdir)"
- msgstr[1] ""
- "Gönderilen konu en az %(limit_value)s karakter uzunluğunda olmalıdır. (O "
- "%(show_value)s karakterdir)"
- #: 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] ""
- "Gönderilen konu %(limit_value)s karakterden uzun olamaz. (O %(show_value)s "
- "karakterdir)"
- msgstr[1] ""
- "Gönderilen konu %(limit_value)s karakterden uzun olamaz. (O %(show_value)s "
- "karakterdir)"
- #: 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] ""
- "Gönderilen ileti %(limit_value)s karakterden uzun olamaz. (O %(show_value)s "
- "karakterdir)"
- msgstr[1] ""
- "Gönderilen ileti %(limit_value)s karakterden uzun olamaz. (O %(show_value)s "
- "karakterdir)"
- #: 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] ""
- "Gönderilen ileti en az %(limit_value)s karakter uzunluğunda olmalıdır. (O "
- "%(show_value)s karakterdir)"
- msgstr[1] ""
- "Gönderilen ileti en az %(limit_value)s karakter uzunluğunda olmalıdır. (O "
- "%(show_value)s karakterdir)"
- #: static/misago/js/misago.js:1
- msgid "Fill out both fields."
- msgstr "Her iki alanı doldurun."
- #: static/misago/js/misago.js:1
- msgid "Activate account"
- msgstr "Hesabı etkinleştir"
- #: static/misago/js/misago.js:1
- msgid "Sign in"
- msgstr "Oturum Aç"
- #: static/misago/js/misago.js:1
- msgid "Sign in with %(site)s"
- msgstr "%(site)sile giriş yap."
- #: static/misago/js/misago.js:1
- msgid "Or use your forum account:"
- msgstr "Veya forum hesabını kullan:"
- #: static/misago/js/misago.js:1
- msgid "Username or e-mail"
- msgstr "Kullanıcı adı veya e-posta"
- #: static/misago/js/misago.js:1
- msgid "Password"
- msgstr "Şifre"
- #: static/misago/js/misago.js:1
- msgid "Forgot password?"
- msgstr "Şifreyi mi unuttun?"
- #: static/misago/js/misago.js:1
- msgid "%(username)s is banned until %(ban_expires)s"
- msgstr "%(username)s kullanıcısı %(ban_expires)s e kadar yasaklanmıştır."
- #: static/misago/js/misago.js:1
- msgid "%(username)s is banned"
- msgstr "%(username)s yasaklıdır."
- #: static/misago/js/misago.js:1
- msgid "%(username)s is hiding presence"
- msgstr "%(username)s gizli varlıktır."
- #: static/misago/js/misago.js:1
- msgid "%(username)s is online (hidden)"
- msgstr "%(username)s çevrimiçidir (gizlenmiş)"
- #: static/misago/js/misago.js:1
- msgid "%(username)s was last seen %(last_click)s (hidden)"
- msgstr "%(username)s son görülmesi %(last_click)s (gizlenmiş)"
- #: static/misago/js/misago.js:1
- msgid "%(username)s is online"
- msgstr "%(username)s çevrimiçidir"
- #: static/misago/js/misago.js:1
- msgid "%(username)s was last seen %(last_click)s"
- msgstr "%(username)s son görülmesi %(last_click)s"
- #: static/misago/js/misago.js:1
- msgid "Banned"
- msgstr "Yasaklanmış"
- #: static/misago/js/misago.js:1
- msgid "Online (hidden)"
- msgstr "Çevrimiçi (gizlenmiş)"
- #: static/misago/js/misago.js:1
- msgid "Offline (hidden)"
- msgstr "Çevrimdışı (gizlenmiş)"
- #: static/misago/js/misago.js:1
- msgid "Online"
- msgstr "Çevrimiçi"
- #: static/misago/js/misago.js:1
- msgid "Offline"
- msgstr "Çevrimdışı"
- #: static/misago/js/misago.js:1
- msgid "No name changes have been recorded for your account."
- msgstr "Hesabına kayıtlı isim değişikliği yok."
- #: static/misago/js/misago.js:1
- msgid "Joined on %(joined_on)s"
- msgstr "%(joined_on)sda katıldı"
- #: static/misago/js/misago.js:1
- msgid "Joined %(joined_on)s"
- msgstr "%(joined_on)s katıldı."
- #: static/misago/js/misago.js:1
- msgid "%(posts)s post"
- msgid_plural "%(posts)s posts"
- msgstr[0] " mesajlar%(posts)s"
- msgstr[1] " mesajlar%(posts)s"
- #: static/misago/js/misago.js:1
- msgid "%(threads)s thread"
- msgid_plural "%(threads)s threads"
- msgstr[0] " konular%(threads)s"
- msgstr[1] " konular%(threads)s"
- #: static/misago/js/misago.js:1
- msgid "%(followers)s follower"
- msgid_plural "%(followers)s followers"
- msgstr[0] "%(followers)s takipçiler"
- msgstr[1] "%(followers)s takipçiler"
- #: static/misago/js/misago.js:1
- msgid "yes"
- msgstr "evet"
- #: static/misago/js/misago.js:1
- msgid "no"
- msgstr "hayır"
- #: static/misago/js/misago.js:1
- msgid ""
- "Declining will result in immediate deactivation and deletion of your "
- "account. This action is not reversible."
- msgstr ""
- "Reddederseniz hesabınızın anında deaktive olur ve hesabınız silinir. Bu "
- "aksiyon geri alınamaz."
- #: static/misago/js/misago.js:1
- msgid "Decline"
- msgstr "düşüş"
- #: static/misago/js/misago.js:1
- msgid "Accept and continue"
- msgstr "kabul et ve devam et"
- #: static/misago/js/misago.js:1
- msgid ""
- "You have signed in as %(username)s. Please refresh the page before "
- "continuing."
- msgstr ""
- "%(username)s olarak oturum açtınız. Devam etmeden önce lütfen sayfayı "
- "yenileyin."
- #: static/misago/js/misago.js:1
- msgid ""
- "%(username)s, you have been signed out. Please refresh the page before "
- "continuing."
- msgstr ""
- "%(username)s,oturumu kapatmışsın. Devam etmeden önce lütfen sayfayı "
- "yenileyin."
- #: static/misago/js/misago.js:1
- msgid "Reload page"
- msgstr "Sayfayı yenile"
- #: static/misago/js/misago.js:1
- msgid "or press F5 key."
- msgstr "veya F5'e basın."
- #: static/misago/js/misago.js:1
- msgid "No categories exist or you don't have permission to see them."
- msgstr "Hiçbir kategori bulunmuyor yada görmek için yetkiniz yok."
- #: static/misago/js/misago.js:1
- msgid "This category has no new posts. (closed)"
- msgstr "Bu kategoride yeni içerik yok. (kapalı)"
- #: static/misago/js/misago.js:1
- msgid "This category has new posts. (closed)"
- msgstr "Bu kategoride yeni mesaj var. (kapalı)"
- #: static/misago/js/misago.js:1
- msgid "This category has no new posts."
- msgstr "Bu kategoride yeni mesaj yok."
- #: static/misago/js/misago.js:1
- msgid "This category has new posts."
- msgstr "Bu kategoride yeni mesaj var."
- #: static/misago/js/misago.js:1
- msgid "This category is empty. No threads were posted within it so far."
- msgstr "Bu kategori boş. Şimdiye kadar hiçbir konu gönderilmedi."
- #: static/misago/js/misago.js:1
- msgid "This category is private. You can see only your own threads within it."
- msgstr "Bu kategori özeldir. Sadece kendi konularını görebilirsin."
- #: 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 "Hesap silme işlemini onaylamak için şifrenizi girin."
- #: static/misago/js/misago.js:1
- msgid "Delete account"
- msgstr "Hesabı sil"
- #: static/misago/js/misago.js:1
- msgid "Change your options"
- msgstr "Seçeneklerini değiştir"
- #: 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 ""
- "Hesabınızı silmek üzeresiniz. Bu aksiyon geri alınamaz ve aşağıdaki "
- "verilerin kaybolmasına sebep olur:"
- #: 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 "Hesabımı sil."
- #: static/misago/js/misago.js:1
- msgid "Your details have been updated."
- msgstr "Detayların güncellendi."
- #: static/misago/js/misago.js:1
- msgid "Your request for data download has been registered."
- msgstr "Veri indirme isteğiniz kaydedildi."
- #: static/misago/js/misago.js:1
- msgid "Download your data"
- msgstr "Verilerinizi indirin."
- #: 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 "İndir"
- #: static/misago/js/misago.js:1
- msgid "You have no data downloads."
- msgstr "İndirilecek veriniz yok."
- #: static/misago/js/misago.js:1
- msgid "Request data download"
- msgstr "Veri indirme iste"
- #: static/misago/js/misago.js:1
- msgid "Download is being prepared"
- msgstr "İndirme hazırlanıyor"
- #: static/misago/js/misago.js:1
- msgid "Download is expired"
- msgstr "İndirme süre aşımına uğradı"
- #: static/misago/js/misago.js:1
- msgid "Everybody"
- msgstr "Herkes"
- #: static/misago/js/misago.js:1
- msgid "Users I follow"
- msgstr "Takip ettiklerim"
- #: static/misago/js/misago.js:1
- msgid "Nobody"
- msgstr "Kimse"
- #: static/misago/js/misago.js:1
- msgid "No"
- msgstr "Hayır"
- #: static/misago/js/misago.js:1
- msgid "Notify"
- msgstr "Uyarmak"
- #: static/misago/js/misago.js:1
- msgid "Notify with e-mail"
- msgstr "Email ile uyarmak"
- #: static/misago/js/misago.js:1
- msgid "Your forum options have been changed."
- msgstr "Forum seçeneklerin değiştirildi."
- #: static/misago/js/misago.js:1
- msgid "Please reload page and try again."
- msgstr "Sayfayı yeniden yükle ve tekrar dene."
- #: static/misago/js/misago.js:1
- msgid "Forum options"
- msgstr "Forum seçenekleri"
- #: static/misago/js/misago.js:1
- msgid "Change forum options"
- msgstr "Forum seçeneklerini değiştir"
- #: static/misago/js/misago.js:1
- msgid "Privacy settings"
- msgstr "Güvenlik ayarları"
- #: static/misago/js/misago.js:1
- msgid "Hide my presence"
- msgstr "Varlığımı gizle"
- #: 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 ""
- "Gizliliğinizi aktifleştirirseniz, sadece gizli kullanıcıları görmeye yetkisi"
- " olan üyeler sizi çevrimiçi görebileceklerdir."
- #: static/misago/js/misago.js:1
- msgid "Hide my presence from other users"
- msgstr "Varlığımı diğer kullanıcılardan gizle"
- #: static/misago/js/misago.js:1
- msgid "Show my presence to other users"
- msgstr "Varlığımı diğer kullanıcılara göster"
- #: static/misago/js/misago.js:1
- msgid "Private thread invitations"
- msgstr "Özel konu davetleri"
- #: static/misago/js/misago.js:1
- msgid "Automatic subscriptions"
- msgstr "Otomatik abonelik ücretleri"
- #: static/misago/js/misago.js:1
- msgid "Threads I start"
- msgstr "Başlattığım konular"
- #: static/misago/js/misago.js:1
- msgid "Threads I reply to"
- msgstr "Cevapladığım konular"
- #: static/misago/js/misago.js:1
- msgid "Change username"
- msgstr "Kullanıcı adını değiştir"
- #: static/misago/js/misago.js:1
- msgid "You will be able to change your username %(next_change)s."
- msgstr "Kullanici ismini değiştirebileceksin%(next_change)s"
- #: static/misago/js/misago.js:1
- msgid "You have used up available name changes."
- msgstr "Mevcut ad değişikliği hakkın bitti."
- #: static/misago/js/misago.js:1
- msgid "You can't change your username at the moment."
- msgstr "Şu anda kullanıcı adını değiştiremezsin."
- #: 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] "Kullanici ismini %(changes_left)skez değiştirebilirsin."
- msgstr[1] "Kullanici ismini %(changes_left)skez değiştirebilirsin."
- #: 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] ""
- "Kullanilan değişiklikler%(name_changes_expire)sgün sonra tekrar mümkün "
- "olacaktir."
- msgstr[1] ""
- "Kullanilan değişiklikler%(name_changes_expire)sgün sonra tekrar mümkün "
- "olacaktir."
- #: static/misago/js/misago.js:1
- msgid "Your new username is same as current one."
- msgstr "Kullanici ismin şuankiyle ayni."
- #: static/misago/js/misago.js:1
- msgid "New username"
- msgstr "Yeni kullanıcı adı"
- #: static/misago/js/misago.js:1
- msgid "Your username has been changed successfully."
- msgstr "Kullanıcı adin başarıyla değiştirildi."
- #: static/misago/js/misago.js:1
- msgid "Fill out all fields."
- msgstr "Tüm boşlukları doldur"
- #: static/misago/js/misago.js:1
- msgid "Change e-mail address"
- msgstr "E-mail adresini değiştir"
- #: static/misago/js/misago.js:1
- msgid "New e-mail"
- msgstr "Yeni e-mail"
- #: static/misago/js/misago.js:1
- msgid "Your current password"
- msgstr "Şimdiki şifren"
- #: static/misago/js/misago.js:1
- msgid "Change e-mail"
- msgstr "Mail adresini değiştir"
- #: static/misago/js/misago.js:1
- msgid "New passwords are different."
- msgstr "Yeni şifren farklı"
- #: static/misago/js/misago.js:1
- msgid "Change password"
- msgstr "Şifreni değiştir"
- #: static/misago/js/misago.js:1
- msgid "New password"
- msgstr "Yeni şifre"
- #: static/misago/js/misago.js:1
- msgid "Repeat password"
- msgstr "Şifreni tekrarla"
- #: static/misago/js/misago.js:1
- msgid "Change email or password"
- msgstr "Mail adresini ve şifreni değiştir"
- #: 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 ""
- "Kullanıcı adı ve email adresinizi değiştirmek için hesabınıza şifre "
- "koymalısınız."
- #: static/misago/js/misago.js:1
- msgid "Set password"
- msgstr "Şifre koy"
- #: static/misago/js/misago.js:1
- msgid "Change forgotten password"
- msgstr "Unutulan şifreni değiştir"
- #: static/misago/js/misago.js:1
- msgid "Menu"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Ban details"
- msgstr "Yasaklamak ayrıntıları"
- #: static/misago/js/misago.js:1
- msgid "User-shown ban message"
- msgstr "Kullanıcıya görünen yasaklı ileti"
- #: static/misago/js/misago.js:1
- msgid "Team-shown ban message"
- msgstr "Takım tarafından gösterilen yasaklı ileti"
- #: static/misago/js/misago.js:1
- msgid "This ban expires on %(expires_on)s."
- msgstr "Bu yasak %(expires)s tarihinde sona erecek"
- #: static/misago/js/misago.js:1
- msgid "This ban expires %(expires_on)s."
- msgstr "Bu yasak %(expires)s tarihinde sona erecek"
- #: static/misago/js/misago.js:1
- msgid "This ban has expired."
- msgstr "Bu ban'ın süresi doldu."
- #: static/misago/js/misago.js:1
- msgid "%(username)s's ban is permanent."
- msgstr "%(username)s yasağı kalıcıdır."
- #: static/misago/js/misago.js:1
- msgid "Ban expiration"
- msgstr "Yasak süresi"
- #: static/misago/js/misago.js:1
- msgid "No ban is active at the moment."
- msgstr "Şu anda yasağı etkin olan yok."
- #: static/misago/js/misago.js:1
- msgid "You are not sharing any details with others."
- msgstr "Başkalarıyla herhangi bir ayrıntı paylaşmıyorsunuz."
- #: static/misago/js/misago.js:1
- msgid "%(username)s is not sharing any details with others."
- msgstr "%(username)s başkalarıyla herhangi bir ayrıntı paylaşmıyor."
- #: static/misago/js/misago.js:1
- msgid "Details"
- msgstr "Ayrıntılar"
- #: static/misago/js/misago.js:1
- msgid "Edit"
- msgstr "Düzenle"
- #: static/misago/js/misago.js:1
- msgid "%(username)s's details have been updated."
- msgstr "%(username)skullanıcısının detayları güncellendi."
- #: static/misago/js/misago.js:1
- msgid "Show older activity"
- msgstr "Geçmiş aktiviteyi göster."
- #: static/misago/js/misago.js:1
- msgid "Search..."
- msgstr "Ara..."
- #: static/misago/js/misago.js:1
- msgid "Followers"
- msgstr "Takipçiler"
- #: static/misago/js/misago.js:1
- msgid "Found %(users)s user."
- msgid_plural "Found %(users)s users."
- msgstr[0] "%(users)s kullanıcıları bulundu."
- msgstr[1] "%(users)s kullanıcıları bulundu."
- #: static/misago/js/misago.js:1
- msgid "You have %(users)s follower."
- msgid_plural "You have %(users)s followers."
- msgstr[0] "%(users)s adet takipçin var."
- msgstr[1] "%(users)s adet takipçin var."
- #: static/misago/js/misago.js:1
- msgid "%(username)s has %(users)s follower."
- msgid_plural "%(username)s has %(users)s followers."
- msgstr[0] "%(username)s kullanıcısının %(users)s adet takipçisi var."
- msgstr[1] "%(username)s kullanıcısının %(users)s adet takipçisi var."
- #: static/misago/js/misago.js:1
- msgid "Loading..."
- msgstr "Yükleniyor..."
- #: static/misago/js/misago.js:1
- msgid "Search returned no users matching specified criteria."
- msgstr "Aramada belirtilen kriterlere uyan kullanıcı bulunamadı."
- #: static/misago/js/misago.js:1
- msgid "You have no followers."
- msgstr "Hiç takipçin yok."
- #: static/misago/js/misago.js:1
- msgid "%(username)s has no followers."
- msgstr "%(username)s kullanıcısının hiç takipçisi yok."
- #: static/misago/js/misago.js:1
- msgid "Show more (%(more)s)"
- msgstr "Daha fazlasını gör (%(more)s)"
- #: static/misago/js/misago.js:1
- msgid "Search users..."
- msgstr "Kullanıcı ara..."
- #: static/misago/js/misago.js:1
- msgid "Follows"
- msgstr "Takipler"
- #: static/misago/js/misago.js:1
- msgid "You are following %(users)s user."
- msgid_plural "You are following %(users)s users."
- msgstr[0] "%(users)s adet kullanıcı takip ediyorsun."
- msgstr[1] "%(users)s adet kullanıcı takip ediyorsun."
- #: 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] "%(username)s kullanıcısı %(users)s adet kullanıcı takip ediyor."
- msgstr[1] "%(username)s kullanıcısı %(users)s adet kullanıcı takip ediyor."
- #: static/misago/js/misago.js:1
- msgid "You are not following any users."
- msgstr "Hiçbir kullanıcıyı takip etmiyorsun."
- #: static/misago/js/misago.js:1
- msgid "%(username)s is not following any users."
- msgstr "%(username)s herhangi bir kullanıcıyı takip etmiyor."
- #: static/misago/js/misago.js:1
- msgid "Username history"
- msgstr "Kullanıcı adı geçmişi"
- #: static/misago/js/misago.js:1
- msgid "Found %(changes)s username change."
- msgid_plural "Found %(changes)s username changes."
- msgstr[0] "%(changes)s adet kullanıcı adı değişikliği bulundu."
- msgstr[1] "%(changes)s adet kullanıcı adı değişikliği bulundu."
- #: 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] "Kullanıcı adınız %(changes)s kez değiştirildi."
- msgstr[1] "Kullanıcı adınız %(changes)s kez değiştirildi."
- #: 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] "%(username)skullanıcısının adı %(changes)s kez değiştirildi."
- msgstr[1] "%(username)skullanıcısının adı %(changes)s kez değiştirildi."
- #: static/misago/js/misago.js:1
- msgid "Search returned no username changes matching specified criteria."
- msgstr "Aramada belirtilen kriterlere uyan kullanıcı adı bulunamadı."
- #: static/misago/js/misago.js:1
- msgid "%(username)s's username was never changed."
- msgstr "%(username)s kullanıcının adı hiç değişmedi."
- #: static/misago/js/misago.js:1
- msgid "Show older (%(more)s)"
- msgstr "Daha eskisini gör (%(more)s)"
- #: static/misago/js/misago.js:1
- msgid "Search history..."
- msgstr "Geçmişi Ara..."
- #: static/misago/js/misago.js:1
- msgid "Following"
- msgstr "Takip Edilenler"
- #: static/misago/js/misago.js:1
- msgid "Follow"
- msgstr "Takip et"
- #: static/misago/js/misago.js:1
- msgid "Message"
- msgstr "İleti"
- #: static/misago/js/misago.js:1
- msgid "Avatar controls have been changed."
- msgstr "Profil resmi ayarları değiştirildi."
- #: static/misago/js/misago.js:1
- msgid "Lock avatar"
- msgstr "Avatarı kilitle"
- #: 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 ""
- "Kullanıcı avatarını kilitlemek kullanıcının avatarını değiştirmesini "
- "engeller ve avatarını varsayılan olarak sıfırlar."
- #: static/misago/js/misago.js:1
- msgid "Disallow user from changing avatar"
- msgstr "Kullanıcının avatar değiştirmesine izin verme"
- #: static/misago/js/misago.js:1
- msgid "Allow user to change avatar"
- msgstr "Kullanıcının avatar değiştirmesine izin ver"
- #: static/misago/js/misago.js:1
- msgid "User message"
- msgstr "Kullanıcı ileti"
- #: static/misago/js/misago.js:1
- msgid ""
- "Optional message for user explaining why he/she is prohibited form changing "
- "avatar."
- msgstr ""
- "Kullanıcıya neden avatar değiştirilmesini yasakladığını açıklayan isteğe "
- "bağlı ileti."
- #: static/misago/js/misago.js:1
- msgid "Staff message"
- msgstr "Personel ileti"
- #: static/misago/js/misago.js:1
- msgid ""
- "Optional message for forum team members explaining why user is prohibited "
- "form changing avatar."
- msgstr ""
- "Forum ekibi üyelerine neden kullanıcı avatar değiştirmenin yasak olduğunu "
- "açıklayan isteğe bağlı ileti."
- #: static/misago/js/misago.js:1
- msgid "Close"
- msgstr "Kapat"
- #: static/misago/js/misago.js:1
- msgid "Avatar controls"
- msgstr "Avatar kontrolleri"
- #: static/misago/js/misago.js:1
- msgid "Username has been changed."
- msgstr "Kullanıcı adınız değiştirildi."
- #: static/misago/js/misago.js:1
- msgid ""
- "%(username)s's account, threads, posts and other content has been deleted."
- msgstr ""
- "%(username)skullanıcısının hesabı, konular, iletiler ve diğer içerikleri "
- "silindi."
- #: static/misago/js/misago.js:1
- msgid ""
- "%(username)s's account has been deleted and other content has been hidden."
- msgstr ""
- "%(username)skullanıcısının hesabı silindi ve diğer içerikleri gizlendi."
- #: static/misago/js/misago.js:1
- msgid "Delete %(username)s"
- msgstr "%(username)s sil"
- #: static/misago/js/misago.js:1
- msgid "Please wait... (%(countdown)ss)"
- msgstr "Lütfen bekleyin... (%(countdown)s)"
- #: static/misago/js/misago.js:1
- msgid "User content"
- msgstr "Kullanıcı içeriği"
- #: static/misago/js/misago.js:1
- msgid "Delete together with user's account"
- msgstr "Kullanıcının hesabıyla birlikte sil"
- #: static/misago/js/misago.js:1
- msgid "Hide after deleting user's account"
- msgstr "Kullanıcının hesabını sildikten sonra gizle"
- #: static/misago/js/misago.js:1
- msgid "Return to users list"
- msgstr "Kullanıcı liste sine geri dön"
- #: static/misago/js/misago.js:1
- msgid "Delete user account"
- msgstr "Kullanıcı hesabını sil"
- #: static/misago/js/misago.js:1
- msgid "This user's account has been disabled by administrator."
- msgstr "Bu kullanıcının hesabı yönetici tarafından devre dışı bırakıldı."
- #: static/misago/js/misago.js:1
- msgid "Account disabled"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Options"
- msgstr "Seçenkler"
- #: static/misago/js/misago.js:1
- msgid "You have posted no messages."
- msgstr "Gönderilmiş bir mesaj yok."
- #: static/misago/js/misago.js:1
- msgid "%(username)s posted no messages."
- msgstr "%(username)s kullanıcısının gönderdiği bir mesaj yok."
- #: static/misago/js/misago.js:1
- msgid "You have posted %(posts)s message."
- msgid_plural "You have posted %(posts)s messages."
- msgstr[0] "Gönderilmiş %(posts)s mesajın var."
- msgstr[1] "Gönderilmiş %(posts)s mesajın var."
- #: 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] "%(username)s kullanıcısının %(posts)s mesajı var."
- msgstr[1] "%(username)s kullanıcısının %(posts)s mesajı var."
- #: static/misago/js/misago.js:1
- msgid "Posts"
- msgstr "İletiler"
- #: static/misago/js/misago.js:1
- msgid "You have no started threads."
- msgstr "Başlatılmış sana ait konular yok."
- #: static/misago/js/misago.js:1
- msgid "%(username)s started no threads."
- msgstr "%(username)s kullanıcısına ait başlatılmış konular yok"
- #: static/misago/js/misago.js:1
- msgid "You have started %(threads)s thread."
- msgid_plural "You have started %(threads)s threads."
- msgstr[0] "Sana ait %(threads)s adet başlatılmış konular var."
- msgstr[1] "Sana ait %(threads)s adet başlatılmış konular var."
- #: 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] "%(username)s adlı kullanıcı %(threads)skonular ını başlattı."
- msgstr[1] "%(username)s adlı kullanıcı %(threads)skonular ını başlattı."
- #: static/misago/js/misago.js:1
- msgid "Threads"
- msgstr "Konular"
- #: static/misago/js/misago.js:1
- msgid "Enter a valid email address."
- msgstr "Geçerli bir e-posta adresi girin."
- #: static/misago/js/misago.js:1
- msgid "Your e-mail address"
- msgstr "E-posta Adresiniz"
- #: static/misago/js/misago.js:1
- msgid "Send link"
- msgstr "Link gönder"
- #: static/misago/js/misago.js:1
- msgid "Activation link was sent to %(email)s"
- msgstr "Aktivasyon linki %(email)s adresinize gönderildi."
- #: static/misago/js/misago.js:1
- msgid "Request another link"
- msgstr "Başka bir link iste"
- #: static/misago/js/misago.js:1
- msgid "Reset password link was sent to %(email)s"
- msgstr "Şifre sıfırlama linki %(email)s adresine gönderildi."
- #: static/misago/js/misago.js:1
- msgid "Activate your account."
- msgstr "Hesabını etkinleştir."
- #: static/misago/js/misago.js:1
- msgid "Your account is inactive."
- msgstr "hesabınız aktif değildir."
- #: static/misago/js/misago.js:1
- msgid "Enter new password."
- msgstr "Yeni şifrenizi giriniz."
- #: static/misago/js/misago.js:1
- msgid "Enter new password"
- msgstr "Yeni şifrenizi giriniz"
- #: static/misago/js/misago.js:1
- msgid "%(username)s, your password has been changed successfully."
- msgstr "%(username)s, şifreniz başarıyla değiştirildi."
- #: static/misago/js/misago.js:1
- msgid "You will have to sign in using new password before continuing."
- msgstr "Devam etmeden önce yeni bir şifre kullanarak oturum açmanız gerekir."
- #: static/misago/js/misago.js:1
- msgid "You have to enter search query."
- msgstr "Arama sorgusu girmelisiniz."
- #: static/misago/js/misago.js:1
- msgid "Search"
- msgstr "Ara"
- #: static/misago/js/misago.js:1
- msgid "Search took %(time)s s to complete"
- msgstr "Arama %(time)s sürede tamamlandı."
- #: static/misago/js/misago.js:1
- msgid "Show more"
- msgstr "Daha fazlasını göster"
- #: 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 "Arama sorgusu eşleşen konular bulunamadı."
- #: static/misago/js/misago.js:1
- msgid "Enter at least two characters to search threads."
- msgstr "Konular aramak için en az iki karakter girin."
- #: static/misago/js/misago.js:1
- msgid "No users matching search query have been found."
- msgstr "Arama sorgusuyla eşleşen hiçbir kullanıcı bulunamadı."
- #: static/misago/js/misago.js:1
- msgid "Enter at least two characters to search users."
- msgstr "Kullanıcı aramak için en az iki karakter girin."
- #: static/misago/js/misago.js:1
- msgid "Sign in with %(backend)s"
- msgstr "%(backend)s ile giriş yap."
- #: static/misago/js/misago.js:1
- msgid "You need to accept the privacy policy."
- msgstr "Gizlilik ilke sini kabul etmelisiniz."
- #: 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 "Bilgilerini tamamla."
- #: static/misago/js/misago.js:1
- msgid "Username"
- msgstr "Kullanıcı Adı"
- #: static/misago/js/misago.js:1
- msgid "E-mail address"
- msgstr "E-mail adresi"
- #: 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 ""
- "%(username)s hesabınız oluşturuldu, ancak oturum açabilmeniz için önce "
- "etkinleştirmeniz gerekir."
- #: 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 ""
- "%(username)shesabınız oluşturuldu fakat pano yöneticisi oturum açabilmeniz "
- "için onu aktif hale getirmek zorundadır. "
- #: static/misago/js/misago.js:1
- msgid ""
- "%(username)s, your account has been created and you have been signed in to "
- "it."
- msgstr "%(username)s, hesabınız oluşturuldu ve giriş yapıldı."
- #: static/misago/js/misago.js:1
- msgid "Registration completed!"
- msgstr "Kayıt tamamlandı!"
- #: static/misago/js/misago.js:1
- msgid "Return to forum index"
- msgstr "Forum anasayfasına dön."
- #: static/misago/js/misago.js:1
- msgid "You have to enter user name."
- msgstr "Kullanıcı adını girmelisin."
- #: static/misago/js/misago.js:1
- msgid "New participant has been added to thread."
- msgstr "Yeni katılımcı konu'ya eklendi."
- #: static/misago/js/misago.js:1
- msgid "User to add"
- msgstr "Eklenecek kullanıcı"
- #: static/misago/js/misago.js:1
- msgid "Add participant"
- msgstr "Katılımcı ekle"
- #: static/misago/js/misago.js:1
- msgid "Are you sure you want to take over this thread?"
- msgstr "Bu konuyu sonlandırmak istediğinize emin misiniz?"
- #: static/misago/js/misago.js:1
- msgid "Are you sure you want to change thread owner to %(user)s?"
- msgstr ""
- "Konunun yöneticisini 1%(kullanıcı)lar olarak degiştirmek istediğinizden emin"
- " misiniz?"
- #: static/misago/js/misago.js:1
- msgid "%(user)s has been made new thread owner."
- msgstr "1%(kullanıcı)lar bu konuya yönetici atandı."
- #: static/misago/js/misago.js:1
- msgid "Make owner"
- msgstr "Yönetici yap"
- #: static/misago/js/misago.js:1
- msgid "Are you sure you want to leave this thread?"
- msgstr "Bu konudan ayrılmak istediğinize emin misiniz?"
- #: static/misago/js/misago.js:1
- msgid "Are you sure you want to remove %(user)s from this thread?"
- msgstr "1%(kullanıcı)ları bu konudan silmek istediğinize emin misiniz?"
- #: static/misago/js/misago.js:1
- msgid "You have left this thread."
- msgstr "Bu konuyu terkettiniz"
- #: static/misago/js/misago.js:1
- msgid "%(user)s has been removed from this thread."
- msgstr "1%(kullanıcı)lar bu konudan silindi."
- #: static/misago/js/misago.js:1
- msgid "Leave thread"
- msgstr "Konuyu terket"
- #: static/misago/js/misago.js:1
- msgid "Remove"
- msgstr "Sil"
- #: static/misago/js/misago.js:1
- msgid "See profile"
- msgstr "Profili gör"
- #: static/misago/js/misago.js:1
- msgid "Thread owner"
- msgstr "Konu sahibi"
- #: static/misago/js/misago.js:1
- msgid "This thread has %(users)s participant."
- msgid_plural "This thread has %(users)s participants."
- msgstr[0] "Bu konu%(users)s'ların katılımcılarına sahip. "
- msgstr[1] "Bu konu%(users)s'ların katılımcılarına sahip. "
- #: 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 "En az bir seçim yapmanız gerekiyor."
- #: static/misago/js/misago.js:1
- msgid "Your vote has been saved."
- msgstr "Oyunuz kaydedildi."
- #: static/misago/js/misago.js:1
- msgid "Save your vote"
- msgstr "Oyunuzu kaydedin"
- #: static/misago/js/misago.js:1
- msgid "See results"
- msgstr "Sonuçlara bak"
- #: 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 "Gizle"
- #: static/misago/js/misago.js:1
- msgid "Unhide"
- msgstr "Gizleme"
- #: static/misago/js/misago.js:1
- msgid ""
- "Are you sure you wish to delete this event? This action is not reversible!"
- msgstr "Bu olayı silmek istediğinizden emin misiniz? Bu eylem geri alınamaz!"
- #: static/misago/js/misago.js:1
- msgid "Event has been deleted."
- msgstr "Olay silindi."
- #: static/misago/js/misago.js:1
- msgid "Delete"
- msgstr "Silmek"
- #: static/misago/js/misago.js:1
- msgid "Hidden by %(event_by)s %(event_on)s."
- msgstr "%(event_by)s tarafından %(event_on)s tarihinde gizlendi."
- #: static/misago/js/misago.js:1
- msgid "By %(event_by)s %(event_on)s."
- msgstr "%(event_by)s tarafından %(event_on)s tarihinde."
- #: static/misago/js/misago.js:1
- msgid "Thread has been pinned globally."
- msgstr "Konu iğnelendirildi."
- #: static/misago/js/misago.js:1
- msgid "Thread has been pinned locally."
- msgstr "Konu yerel olarak sabitlendi."
- #: static/misago/js/misago.js:1
- msgid "Thread has been unpinned."
- msgstr "Konu iğnesi kaldırıldı."
- #: static/misago/js/misago.js:1
- msgid "Thread has been approved."
- msgstr "Konu onaylandı."
- #: static/misago/js/misago.js:1
- msgid "Thread has been opened."
- msgstr "Konu açıldı."
- #: static/misago/js/misago.js:1
- msgid "Thread has been closed."
- msgstr "Konu kapatıldı."
- #: static/misago/js/misago.js:1
- msgid "Thread has been revealed."
- msgstr "Konu ortaya çıkarıldı."
- #: static/misago/js/misago.js:1
- msgid "Thread has been made hidden."
- msgstr "Konu gizli hale getirildi."
- #: static/misago/js/misago.js:1
- msgid "Took thread over."
- msgstr "Konu devralındı."
- #: static/misago/js/misago.js:1
- msgid "Owner has left thread. This thread is now closed."
- msgstr "Sahibi konu yu terk etti. Bu konu şu an kapalı."
- #: static/misago/js/misago.js:1
- msgid "Participant has left thread."
- msgstr "Katılımcı konu yu terk etti."
- #: static/misago/js/misago.js:1
- msgid "Thread title has been changed from %(old_title)s."
- msgstr "%(old_title)s konu başlığı değiştirildi."
- #: static/misago/js/misago.js:1
- msgid "Thread has been moved from %(from_category)s."
- msgstr "Konu %(from_category)s taşındı."
- #: static/misago/js/misago.js:1
- msgid "The %(merged_thread)s thread has been merged into this thread."
- msgstr "%(merged_thread)s'nin konu su bu konu da birleştirildi."
- #: static/misago/js/misago.js:1
- msgid "Changed thread owner to %(user)s."
- msgstr "Konu sahibi %(user)s olarak değiştirildi."
- #: static/misago/js/misago.js:1
- msgid "Added %(user)s to thread."
- msgstr "Konu ya %(user)s eklendi."
- #: static/misago/js/misago.js:1
- msgid "Removed %(user)s from thread."
- msgstr "%(user)skonu dan kaldırıldı."
- #: static/misago/js/misago.js:1
- msgid "New event"
- msgstr "Yeni etkinlik"
- #: static/misago/js/misago.js:1
- msgid "%(filetype)s, %(size)s, uploaded by %(uploader)s %(uploaded_on)s."
- msgstr ""
- "%(uploader)s tarafından %(filetype)s, %(size)s yüklendi%(uploaded_on)s."
- #: static/misago/js/misago.js:1
- msgid "Hidden by %(hidden_by)s %(hidden_on)s."
- msgstr "%(hidden_by)s tarafından %(hidden_on)s tarihinde gizlendi."
- #: static/misago/js/misago.js:1
- msgid "This post is hidden. You cannot see its contents."
- msgstr "Bu ileti gizli. İçeriğini göremezsiniz."
- #: static/misago/js/misago.js:1
- msgid "Marked as best answer by you %(marked_on)s."
- msgstr "%(marked_on)s , en iyi cevap olarak işaretlediniz."
- #: 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 ""
- "Bu ileti gizlenmiştir. Yalnızca izin verilen kullanıcılar içeriğini "
- "görebilir."
- #: 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 ""
- "Bu ileti onaylanmamıştır. Sadece yayınları ve yazarını onaylama iznine sahip"
- " kullanıcılar iletiler görebilir."
- #: static/misago/js/misago.js:1
- msgid "This post is protected. Only moderators may change it."
- msgstr "Korunan ileti. Yalnızca moderatörler değiştirebilir."
- #: static/misago/js/misago.js:1
- msgid ""
- "Are you sure you want to delete this post? This action is not reversible!"
- msgstr ""
- "Bu ileti yi silmek istediğinizden emin misiniz? Bu eylem geri alınamaz!"
- #: static/misago/js/misago.js:1
- msgid "Post has been deleted."
- msgstr "İleti silindi."
- #: static/misago/js/misago.js:1
- msgid "No users have liked this post."
- msgstr "Bu iletiyi hiç kimse beğenmedi."
- #: static/misago/js/misago.js:1
- msgid "Post Likes"
- msgstr "İletiyi beğenenler"
- #: static/misago/js/misago.js:1
- msgid "%(likes)s like"
- msgid_plural "%(likes)s likes"
- msgstr[0] "%(likes)s beğenmeler"
- msgstr[1] "%(likes)s beğenmeler"
- #: static/misago/js/misago.js:1
- msgid "Liked"
- msgstr "Beğenilen"
- #: static/misago/js/misago.js:1
- msgid "Like"
- msgstr "Beğeni"
- #: static/misago/js/misago.js:1
- msgid "%(user)s likes this."
- msgstr "%(user)sBunu seviyor."
- #: static/misago/js/misago.js:1
- msgid "%(users)s and %(last_user)s"
- msgstr "%(users)s ve %(last_user)s"
- #: static/misago/js/misago.js:1
- msgid "%(users)s like this."
- msgstr "%(users)sbunu beğendi."
- #: 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] "%(users)s ve %(likes)s diğer kullanıcılar"
- msgstr[1] "%(users)s ve %(likes)s diğer kullanıcılar"
- #: static/misago/js/misago.js:1
- msgid "Reply"
- msgstr "Cevapla"
- #: static/misago/js/misago.js:1
- msgid "You have to enter link to the other thread."
- msgstr "Diğer konu linkini girmelisin"
- #: static/misago/js/misago.js:1
- msgid "Selected post was moved to the other thread."
- msgstr "Seçilen ileti diğer konu ya taşındı."
- #: static/misago/js/misago.js:1
- msgid "Link to thread you want to move post to"
- msgstr "Taşımak istediğiniz ileti için konu linki ver"
- #: static/misago/js/misago.js:1
- msgid "Move post"
- msgstr "İleti yi taşı"
- #: static/misago/js/misago.js:1
- msgid "Revert post to state from before this edit."
- msgstr "İleti bu düzenlemeden önceki haline döner."
- #: static/misago/js/misago.js:1
- msgid "Revert"
- msgstr "Geriye almak"
- #: static/misago/js/misago.js:1
- msgid "See previous change"
- msgstr "Önceki değişikliği gör"
- #: static/misago/js/misago.js:1
- msgid "See next change"
- msgstr "Sıradaki değişikliği gör."
- #: static/misago/js/misago.js:1
- msgid "By %(edited_by)s %(edited_on)s."
- msgstr "%(edited_by)s tarafından %(edited_on)s tarihinde düzenlendi."
- #: static/misago/js/misago.js:1
- msgid ""
- "Are you sure you with to revert this post to the state from before this "
- "edit?"
- msgstr "Bu ileti düzenlemeden önceki haline döner emin misiniz?"
- #: static/misago/js/misago.js:1
- msgid "Post has been reverted to previous state."
- msgstr "İleti önceki duruma döndü."
- #: static/misago/js/misago.js:1
- msgid "Post edits history"
- msgstr "İleti geçmişini yayımlamak"
- #: static/misago/js/misago.js:1
- msgid "Yes"
- msgstr "evet"
- #: static/misago/js/misago.js:1
- msgid "Selected post was split into new thread."
- msgstr "Seçilen ileti yeni konu için ayrıldı."
- #: static/misago/js/misago.js:1
- msgid "Not pinned"
- msgstr "İğnelenmiş değil"
- #: static/misago/js/misago.js:1
- msgid "Pinned locally"
- msgstr "Yerel olarak sabitlenmiş"
- #: static/misago/js/misago.js:1
- msgid "Thread weight"
- msgstr "Konu ağırlığı"
- #: static/misago/js/misago.js:1
- msgid "Hide thread"
- msgstr "Gizli konu"
- #: static/misago/js/misago.js:1
- msgid "Close thread"
- msgstr "Kapalı konu"
- #: static/misago/js/misago.js:1
- msgid "Thread title"
- msgstr "Konu başlığı"
- #: static/misago/js/misago.js:1
- msgid "Category"
- msgstr "Bölüm"
- #: static/misago/js/misago.js:1
- msgid "Split post"
- msgstr "Bölünmüş ileti"
- #: static/misago/js/misago.js:1
- msgid "You can't move this post at the moment."
- msgstr "Bu ileti şu anda taşınamaz."
- #: static/misago/js/misago.js:1
- msgid "Split post into new thread"
- msgstr "yeni bir konu için ileti böl"
- #: static/misago/js/misago.js:1
- msgid "Permament link to this post:"
- msgstr "Bu ileti için kalıcı bağlantı:"
- #: static/misago/js/misago.js:1
- msgid "Permament link"
- msgstr "Kalıcı bağlantı"
- #: static/misago/js/misago.js:1
- msgid "Mark as best answer"
- msgstr "En iyi cevap olarak işaretle"
- #: static/misago/js/misago.js:1
- msgid "Unmark best answer"
- msgstr "En iyi cevap işaretini kaldır"
- #: 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] "Bu ileti %(edits)s tarihinde düzenlendi."
- msgstr[1] "Bu ileti %(edits)s tarihinde düzenlendi."
- #: static/misago/js/misago.js:1
- msgid "Changes history"
- msgstr "Geçmişi değiştirir"
- #: static/misago/js/misago.js:1
- msgid "Approve"
- msgstr "Onayla"
- #: static/misago/js/misago.js:1
- msgid "Move"
- msgstr "Taşı"
- #: static/misago/js/misago.js:1
- msgid "Split"
- msgstr "Ayır"
- #: static/misago/js/misago.js:1
- msgid "Protect"
- msgstr "Koru"
- #: static/misago/js/misago.js:1
- msgid "Remove protection"
- msgstr "Korumayı kaldır"
- #: static/misago/js/misago.js:1
- msgid "New post"
- msgstr "Yeni ileti"
- #: static/misago/js/misago.js:1
- msgid "New"
- msgstr "Yeni"
- #: static/misago/js/misago.js:1
- msgid "edited %(edits)s time"
- msgid_plural "edited %(edits)s times"
- msgstr[0] "%(edits)s defa düzenlendi."
- msgstr[1] "%(edits)s defa düzenlendi."
- #: static/misago/js/misago.js:1
- msgid "%(edits)s edit"
- msgid_plural "%(edits)s edits"
- msgstr[0] "%(edits)s düzenleme"
- msgstr[1] "%(edits)s düzenleme"
- #: static/misago/js/misago.js:1
- msgid "This post is protected and may not be edited."
- msgstr "Bu korunan bir ileti ve düzenlenmez."
- #: static/misago/js/misago.js:1
- msgid "protected"
- msgstr "korunan"
- #: 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 "Başlığı değiştir"
- #: static/misago/js/misago.js:1
- msgid "Thread has been merged with other one."
- msgstr "Konu, başka bir konu ile birleştirildi."
- #: static/misago/js/misago.js:1
- msgid "Link to thread you want to merge with"
- msgstr "Birleştirmek istediğiniz konu linkini ver"
- #: static/misago/js/misago.js:1
- msgid ""
- "Merge will delete current thread and move its contents to the thread "
- "specified here."
- msgstr ""
- "Birleştirme yapılırken geçerli konu silinir ve burada belirtilen konu "
- "içeriğine taşınır."
- #: static/misago/js/misago.js:1
- msgid "Merge thread"
- msgstr "Birleştirilmiş konu"
- #: static/misago/js/misago.js:1
- msgid "Thread has been moved."
- msgstr "Konu taşındı."
- #: static/misago/js/misago.js:1
- msgid "New category"
- msgstr "Yeni bölüm"
- #: static/misago/js/misago.js:1
- msgid "Move thread"
- msgstr "Konu taşı"
- #: static/misago/js/misago.js:1
- msgid "You can't move this thread at the moment."
- msgstr "Bu konu şu anda taşınamaz."
- #: static/misago/js/misago.js:1
- msgid "Thread has been made visible."
- msgstr "Konu görülür hale getirildi."
- #: static/misago/js/misago.js:1
- msgid "Are you sure you want to delete this thread?"
- msgstr "Bu konu yu silmek istediğinizden emin misiniz?"
- #: static/misago/js/misago.js:1
- msgid "Thread has been deleted."
- msgstr "Konu silindi."
- #: static/misago/js/misago.js:1
- msgid "Pin globally"
- msgstr "Küresel olarak sabitlenmiş"
- #: static/misago/js/misago.js:1
- msgid "Pin locally"
- msgstr "Yerel olarak sabitlenmiş"
- #: static/misago/js/misago.js:1
- msgid "Unpin"
- msgstr "Sabitlemeyi kaldır."
- #: static/misago/js/misago.js:1
- msgid "Merge"
- msgstr "kaynaşmak"
- #: static/misago/js/misago.js:1
- msgid "Open"
- msgstr "Açık"
- #: static/misago/js/misago.js:1
- msgid "Thread options"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "E-mail"
- msgstr "E-posta"
- #: static/misago/js/misago.js:1
- msgid "Enabled"
- msgstr "İzin Ver"
- #: static/misago/js/misago.js:1
- msgid "Disabled"
- msgstr "çevrimdışı"
- #: static/misago/js/misago.js:1
- msgid "Unsubscribe"
- msgstr "Abonelikten Çık"
- #: static/misago/js/misago.js:1
- msgid "Subscribe"
- msgstr "abone"
- #: static/misago/js/misago.js:1
- msgid "Subscribe with e-mail"
- msgstr "E-posta ile abone ol"
- #: static/misago/js/misago.js:1
- msgid "Private threads"
- msgstr "Özel Konular"
- #: static/misago/js/misago.js:1
- msgid "Go to first page"
- msgstr "İlk sayfaya git"
- #: static/misago/js/misago.js:1
- msgid "Go to previous page"
- msgstr "Önceki sayfaya git"
- #: static/misago/js/misago.js:1
- msgid "Go to next page"
- msgstr "Bir sonraki sayfaya git"
- #: static/misago/js/misago.js:1
- msgid "Go to last page"
- msgstr "Son sayfaya git"
- #: 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] "Bu konu içinde %(more)s taneden daha fazla iletiler mevcut."
- msgstr[1] "Bu konu içinde %(more)s taneden daha fazla iletiler mevcut."
- #: static/misago/js/misago.js:1
- msgid "There are no more posts in this thread."
- msgstr "Bu konu daki başka iletiler yok."
- #: static/misago/js/misago.js:1
- msgid "Moderation"
- msgstr "Moderasyon"
- #: static/misago/js/misago.js:1
- msgid "One or more posts could not be changed:"
- msgstr "Bir veya daha fazla iletiler değiştirilemedi:"
- #: static/misago/js/misago.js:1
- msgid "%(username)s on %(posted_on)s"
- msgstr "%(posted_on)s'de%(username)s"
- #: static/misago/js/misago.js:1
- msgid ""
- "Are you sure you want to merge selected posts? This action is not "
- "reversible!"
- msgstr ""
- "Seçilen iletiler i birleştirmek istediğinizden emin misiniz? Bu eylem geri "
- "alınamaz!"
- #: static/misago/js/misago.js:1
- msgid ""
- "Are you sure you want to delete selected posts? This action is not "
- "reversible!"
- msgstr ""
- "Seçilen iletileri silmek istediğinizden emin misiniz? Bu eylem geri "
- "alınamaz!"
- #: static/misago/js/misago.js:1
- msgid "Selected posts were moved to the other thread."
- msgstr "Seçilen iletiler diğer bir konu ya taşındı."
- #: static/misago/js/misago.js:1
- msgid "Link to thread you want to move posts to"
- msgstr "Taşımak istediğiniz iletiler için konu linki ver"
- #: static/misago/js/misago.js:1
- msgid "Move posts"
- msgstr "İletiler i taşı"
- #: static/misago/js/misago.js:1
- msgid "Selected posts were split into new thread."
- msgstr "Seçilen iletiler yeni konu için ayrıldı."
- #: static/misago/js/misago.js:1
- msgid "Split posts"
- msgstr "yazıları ayırmak"
- #: static/misago/js/misago.js:1
- msgid "You can't move selected posts at the moment."
- msgstr "Şu anda seçili iletiler taşınamaz."
- #: static/misago/js/misago.js:1
- msgid "Split posts into new thread"
- msgstr "Yeni bir konu için iletiler bölünsün"
- #: static/misago/js/misago.js:1
- msgid "Unprotect"
- msgstr "Korumalı değil"
- #: static/misago/js/misago.js:1
- msgid "Posts options"
- msgstr "İletiler in ayarları"
- #: static/misago/js/misago.js:1
- msgid "Add poll"
- msgstr "Anket ekle"
- #: 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 "En iyi cevaba git."
- #: static/misago/js/misago.js:1
- msgid "Go to unapproved post"
- msgstr ""
- #: static/misago/js/misago.js:1
- msgid "Go to last post"
- msgstr "Son yazılan ileti göster"
- #: static/misago/js/misago.js:1
- msgid "Threads moderation"
- msgstr "Konular moderasyonu"
- #: static/misago/js/misago.js:1
- msgid "One or more threads could not be deleted:"
- msgstr "Bir veya daha fazla konular silinemedi:"
- #: 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 ""
- "Konular taşınamaz çünkü onları taşımanıza izin verilen kategori yoktur."
- #: static/misago/js/misago.js:1
- msgid ""
- "You need permission to start threads in category to be able to merge threads"
- " to it."
- msgstr ""
- "Konular ı birleştirmek için bölüm içindeki konular a başlatma izni almanız "
- "gerekir."
- #: static/misago/js/misago.js:1
- msgid "Selected threads were moved."
- msgstr "Seçilen konular taşındı."
- #: static/misago/js/misago.js:1
- msgid "Move threads"
- msgstr "Konular taşı"
- #: static/misago/js/misago.js:1
- msgid ""
- "You need permission to start threads in category to be able to move threads "
- "to it."
- msgstr ""
- "Konular ı taşımak için bölüm içindeki konular a başlatma izni almanız "
- "gerekir."
- #: static/misago/js/misago.js:1
- msgid "Selected threads were pinned globally."
- msgstr "Seçilen konular herkese sabitlendi."
- #: static/misago/js/misago.js:1
- msgid "Selected threads were pinned locally."
- msgstr "Seçilen konular yerele sabitlendi."
- #: static/misago/js/misago.js:1
- msgid "Selected threads were unpinned."
- msgstr "Seçilen konular ın sabitlenmesi kaldırıldı."
- #: static/misago/js/misago.js:1
- msgid "Selected threads were approved."
- msgstr "Seçilen konular onaylandı."
- #: static/misago/js/misago.js:1
- msgid "Selected threads were opened."
- msgstr "Seçilen konular açıldı."
- #: static/misago/js/misago.js:1
- msgid "Selected threads were closed."
- msgstr "Seçilen konular kapatıldı."
- #: static/misago/js/misago.js:1
- msgid "Selected threads were unhidden."
- msgstr "Seçilen konular üzerindeki gizleme kaldırıldı."
- #: static/misago/js/misago.js:1
- msgid "Selected threads were hidden."
- msgstr "Seçilen konular gizlendi."
- #: static/misago/js/misago.js:1
- msgid "You don't have permission to merge this thread with others."
- msgstr "Bu konu için başkalarıyla birleştirme izniniz yok."
- #: static/misago/js/misago.js:1
- msgid "You have to select at least two threads to merge."
- msgstr "Birleştirmek için en az iki konular seçmeniz gerekiyor."
- #: static/misago/js/misago.js:1
- msgid "Are you sure you want to delete selected threads?"
- msgstr "Seçili konular ı silmek istediğinizden emin misiniz?"
- #: static/misago/js/misago.js:1
- msgid "Selected threads were deleted."
- msgstr "Seçilen konular silindi."
- #: static/misago/js/misago.js:1
- msgid "Select all"
- msgstr "Tümünü seç"
- #: static/misago/js/misago.js:1
- msgid "Select none"
- msgstr "Birini seç"
- #: static/misago/js/misago.js:1
- msgid "Pin threads globally"
- msgstr "Herkese sabitlenmiş konular"
- #: static/misago/js/misago.js:1
- msgid "Pin threads locally"
- msgstr "Yerele sabitlenmiş konular"
- #: static/misago/js/misago.js:1
- msgid "Unpin threads"
- msgstr "Sabitlenmesi kaldırılmış konular"
- #: static/misago/js/misago.js:1
- msgid "Approve threads"
- msgstr "Konular onayla"
- #: static/misago/js/misago.js:1
- msgid "Open threads"
- msgstr "Konular Açık"
- #: static/misago/js/misago.js:1
- msgid "Close threads"
- msgstr "Kapalı konular"
- #: static/misago/js/misago.js:1
- msgid "Unhide threads"
- msgstr "Gizlenmeyen konular"
- #: static/misago/js/misago.js:1
- msgid "Hide threads"
- msgstr "Gizlenmiş konular"
- #: static/misago/js/misago.js:1
- msgid "Delete threads"
- msgstr "Silinmiş konular"
- #: 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 "Konu başlat"
- #: static/misago/js/misago.js:1
- msgid "Why not start one yourself?"
- msgstr "Neden kendiniz başlatmıyorsunuz?"
- #: static/misago/js/misago.js:1
- msgid "There are no threads on this forum... yet!"
- msgstr "Bu forumda konular mevcut değil... henüz!"
- #: static/misago/js/misago.js:1
- msgid "There are no threads in this category."
- msgstr "Bu bölüm de konular yok."
- #: static/misago/js/misago.js:1
- msgid "No threads matching specified criteria were found."
- msgstr "Belirtilen kriterlere uyan konular bulunamadı."
- #: 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 "Yeni iletiler"
- #: 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 ""
- "Özel konular, sadece onları başlatan ve katılmak için davet edilmiş "
- "olanların görebileceği konular demektir."
- #: static/misago/js/misago.js:1
- msgid "You aren't participating in any private threads."
- msgstr "Özel konular, katılamazsın."
- #: static/misago/js/misago.js:1
- msgid "All"
- msgstr "Tümü"
- #: static/misago/js/misago.js:1
- msgid "All threads"
- msgstr "Tüm konular"
- #: static/misago/js/misago.js:1
- msgid "My"
- msgstr "Benim"
- #: static/misago/js/misago.js:1
- msgid "My threads"
- msgstr "Benim konular"
- #: static/misago/js/misago.js:1
- msgid "New threads"
- msgstr "Yeni Konular"
- #: static/misago/js/misago.js:1
- msgid "Unread"
- msgstr "Okunmamış"
- #: static/misago/js/misago.js:1
- msgid "Unread threads"
- msgstr "Okunmamış konular"
- #: static/misago/js/misago.js:1
- msgid "Subscribed"
- msgstr "Abone olundu"
- #: static/misago/js/misago.js:1
- msgid "Subscribed threads"
- msgstr "Abone olunan konular"
- #: static/misago/js/misago.js:1
- msgid "Unapproved"
- msgstr "Onaylanmamış"
- #: static/misago/js/misago.js:1
- msgid "Unapproved content"
- msgstr "Onaylanmamış içerik"
- #: static/misago/js/misago.js:1
- msgid "Search returned no results."
- msgstr "Arama sonuç vermiyor."
- #: 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] ""
- "%(count)s sonuçlarıyla birlikte tam \"%(provider)s\" sonuç sayfasını görün."
- msgstr[1] ""
- "%(count)s sonuçlarıyla birlikte tam \"%(provider)s\" sonuç sayfasını görün."
- #: static/misago/js/misago.js:1
- msgid "Posted by %(poster)s on %(posted_on)s in %(category)s."
- msgstr ""
- "%(poster)s tarafından, %(posted_on)s tarihinde %(category)s kategorisinde "
- "yayımlandı."
- #: static/misago/js/misago.js:1
- msgid "%(title)s, joined on %(joined_on)s"
- msgstr "%(title)s, %(joined_on)s'da katıldı."
- #: static/misago/js/misago.js:1
- msgid "Entered password is very weak."
- msgstr "Girilen şifre çok zayıf."
- #: static/misago/js/misago.js:1
- msgid "Entered password is weak."
- msgstr "Girilen şifre zayıf."
- #: static/misago/js/misago.js:1
- msgid "Entered password is average."
- msgstr "Girilen şifre olağan."
- #: static/misago/js/misago.js:1
- msgid "Entered password is strong."
- msgstr "Girilen şifre güçlü"
- #: static/misago/js/misago.js:1
- msgid "Entered password is very strong."
- msgstr "Girilen şifre çok güçlü."
- #: static/misago/js/misago.js:1
- msgid "Register"
- msgstr "Kayıt Ol"
- #: static/misago/js/misago.js:1
- msgid "Join with %(site)s"
- msgstr "%(site)s ile katıl."
- #: static/misago/js/misago.js:1
- msgid "Or create forum account:"
- msgstr "Veya forum hesabı oluştur:"
- #: static/misago/js/misago.js:1
- msgid "Register account"
- msgstr "Hesabı Kaydet"
- #: 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 ""
- "Hesabınızı aktifleştirmek için gerekli linki %(email)s adresinize e-posta "
- "yolladık."
- #: static/misago/js/misago.js:1
- msgid "We will send an e-mail to %(email)s when this takes place."
- msgstr "Bu gerçekleştiğinde %(email)sadresinize e-posta göndereceğiz."
- #: static/misago/js/misago.js:1
- msgid "Registration complete"
- msgstr "Kayıt tamamlandı."
- #: static/misago/js/misago.js:1
- msgid "New registrations are currently disabled."
- msgstr "Yeni kullanıcı kayıtları şu anda devde dışıdır."
- #: static/misago/js/misago.js:1
- msgid "Registration is currently unavailable due to an error."
- msgstr "Kayıt şu anda bir hata nedeniyle kullanılamıyor."
- #: static/misago/js/misago.js:1
- msgid "You are browsing as guest."
- msgstr "Misafir olarak geziyorsun."
- #: static/misago/js/misago.js:1
- msgid "Sign in or register to start and participate in discussions."
- msgstr ""
- "Tartışmaya katılmak ve tartışma başlatmak için oturum açın veya kayıt olun."
- #: static/misago/js/misago.js:1
- msgid "Download my Gravatar"
- msgstr "Gravatar'ımı indir"
- #: static/misago/js/misago.js:1
- msgid "Re-crop uploaded image"
- msgstr "Yüklenen resmi tekrar boyutlandır"
- #: static/misago/js/misago.js:1
- msgid "Upload new image"
- msgstr "Yeni resim yükle"
- #: static/misago/js/misago.js:1
- msgid "Pick avatar from gallery"
- msgstr "Galeriden avatar'ını al"
- #: static/misago/js/misago.js:1
- msgid "Generate my individual avatar"
- msgstr "Avatarımı oluştur"
- #: static/misago/js/misago.js:1
- msgid "Set avatar"
- msgstr "Avatarı ayarla"
- #: static/misago/js/misago.js:1
- msgid "Crop image"
- msgstr "Resmi kırp"
- #: static/misago/js/misago.js:1
- msgid "Your image has been uploaded and you may now crop it."
- msgstr "Resminiz yüklendi, artık resminizi kırpabilirsiniz."
- #: static/misago/js/misago.js:1
- msgid "Selected file is too big. (%(filesize)s)"
- msgstr "Seçilen dosya boyutu çok büyük. (%(filesize)s) "
- #: static/misago/js/misago.js:1
- msgid "Selected file type is not supported."
- msgstr "Seçilen dosyanın uzantısı desteklenmiyor."
- #: static/misago/js/misago.js:1
- msgid "%(files)s files smaller than %(limit)s"
- msgstr "%(files)s tane dosya %(limit)s limitinden daha küçük"
- #: static/misago/js/misago.js:1
- msgid "Select file"
- msgstr "Dosya seç"
- #: static/misago/js/misago.js:1
- msgid "%(progress)s % complete"
- msgstr "% %(progress)s tamamlandı"
- #: static/misago/js/misago.js:1
- msgid "Save choice"
- msgstr "Değişiklikleri Kaydet"
- #: static/misago/js/misago.js:1
- msgid "Select avatar"
- msgstr "Varsayılan Avatar"
- #: static/misago/js/misago.js:1
- msgid "Change your avatar"
- msgstr "Avatarını değiştir"
- #: static/misago/js/misago.js:1
- msgid "See your profile"
- msgstr "Profil Gör"
- #: static/misago/js/misago.js:1
- msgid "Change options"
- msgstr "Seçenekleri değiştir"
- #: static/misago/js/misago.js:1
- msgid "Change avatar"
- msgstr "Avatarı değiştir"
- #: static/misago/js/misago.js:1
- msgid "Log out"
- msgstr "Çıkış yap"
- #: static/misago/js/misago.js:1
- msgid "You have unread private threads!"
- msgstr "Okunmamış gizli konular ınız var !"
- #: static/misago/js/misago.js:1
- msgid "No users have posted any new messages during last %(days)s days."
- msgstr "Hiçbir kullanıcı son %(days)s gün içinde yeni mesaj göndermedi."
- #: static/misago/js/misago.js:1
- msgid "Rank"
- msgstr "Rütbe"
- #: static/misago/js/misago.js:1
- msgid "Ranked posts"
- msgstr "Rütbeli iletiler"
- #: static/misago/js/misago.js:1
- msgid "Total posts"
- msgstr "Toplam iletiler"
- #: 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] "Geçmiş %(days)s günün en iyi yayımcısı,%(posters)s"
- msgstr[1] "Geçmiş %(days)s günün en iyi yayımcıları, %(posters)s"
- #: static/misago/js/misago.js:1
- msgid "Users"
- msgstr "Kullanıcılar"
- #: 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] "Bu sıfat ile birlikte %(more)s taneden daha fazla üye var."
- msgstr[1] "Bu sıfat ile birlikte %(more)s taneden daha fazla üye var."
- #: static/misago/js/misago.js:1
- msgid "There are no more members with this role."
- msgstr "Bu sıfat ile hiçbir üye yoktur."
- #: static/misago/js/misago.js:1
- msgid "There are no users with this rank at the moment."
- msgstr "Şu anda bu rütbeyle bir kullanıcı yoktur."
- #: static/misago/js/misago.js:1
- msgid "Lost connection with application."
- msgstr "Uygulamayla bağlantı kesildi."
- #: static/misago/js/misago.js:1
- msgid "Action link is invalid."
- msgstr "Aktivasyon linki geçersizdir."
- #: static/misago/js/misago.js:1
- msgid "Unknown error has occured."
- msgstr "Bilinmeyen bir hata oluştu."
- #: static/misago/js/misago.js:1
- msgid "Upload was rejected by server as too large."
- msgstr "Yükleme çok büyük sunucu tarafından reddedildi."
- #: static/misago/js/misago.js:1
- msgid "Failed to load CAPTCHA."
- msgstr "CAPTCHA yüklemesi başarısız."
- #: static/misago/js/misago.js:1
- msgid "Please solve the quick test"
- msgstr "Lütfen hızlı sınama çözün"
- #: static/misago/js/misago.js:1
- msgid "This test helps us prevent automated spam registrations on our site."
- msgstr ""
- "Bu sınama, sitemizdeki otomatik spam kayıtlarını önlememize yardımcı olur."
- #: static/misago/js/misago.js:1
- msgid "page: %(page)s"
- msgstr "sayfa: %(page)s"
- #: static/misago/js/misago.js:1
- msgid "You are already working on other message. Do you want to discard it?"
- msgstr "Zaten başka bir ileti üzerinde çalışıyoruz. Çöpe atmak ister misin?"
- #: static/misago/js/misago.js:1
- msgid "You don't have permission to perform this action."
- msgstr "Bu eylemi gerçekleştirmek için iznin yok."
- #: static/misago/js/misago.js:1
- msgid "This ban is permanent."
- msgstr "Bu ban kalıcıdır."
- #: static/misago/js/misago.js:1
- msgid "You are banned"
- msgstr "Yasaklandin."
- #: static/misago/js/misago.js:1
- msgid "You have to accept the terms of service."
- msgstr "Servis şartlarını kabul etmelisiniz."
- #: static/misago/js/misago.js:1
- msgid "You have to accept the privacy policy."
- msgstr "Gizlilik ilke sini kabul etmelisiniz"
- #: 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] ""
- "Bu değerin en az %(limit_value)s karakterine sahip olduğundan emin olun "
- "(%(show_value)s olmalıdır)."
- msgstr[1] ""
- "Bu değerin en az %(limit_value)s karakterine sahip olduğundan emin olun "
- "(%(show_value)s olmalıdır)."
- #: 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] ""
- "Bu değerin en çok %(limit_value)s karakterine sahip olduğundan emin olun "
- "(%(show_value)s olmalıdır)."
- msgstr[1] ""
- "Bu değerin en çok %(limit_value)s karakterine sahip olduğundan emin olun "
- "(%(show_value)s olmalıdır)."
- #: 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] ""
- "Kullanıcı adı en az %(limit_value)s karakter uzunluğunda olmalıdır."
- msgstr[1] ""
- "Kullanıcı adı en az %(limit_value)s karakter uzunluğunda olmalıdır."
- #: 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] "Kullanıcı adı %(limit_value)s karakterden uzun olamaz."
- msgstr[1] "Kullanıcı adı %(limit_value)s karakterden uzun olamaz."
- #: static/misago/js/misago.js:1
- msgid "Username can only contain latin alphabet letters and digits."
- msgstr ""
- "Kullanıcı adı sadece latin alfabesindeki harfleri ve rakamları içerebilir."
- #: 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] ""
- "Geçerli şifre en az %(limit_value)s karakter uzunluğunda olmalıdır."
- msgstr[1] ""
- "Geçerli şifre en az %(limit_value)s karakter uzunluğunda olmalıdır."
- #: 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 ""
|