djangojs.po 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  3. # This file is distributed under the same license as the PACKAGE package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. # Translators:
  7. # Mesut GÜLECEN <mesutgulecen@hotmail.com>, 2017
  8. # Yiğit Tanrıverdi <x_game92@hotmail.com>, 2017
  9. # orkun bademli <orkunbademli@gmail.com>, 2017
  10. # Aysenur Tolun <aysenur_tolun@hotmail.com>, 2017
  11. # Halil Burak Fedai <burak.fedai@ozu.edu.tr>, 2018
  12. # Sümeyye Yiğit <qunishment@gmail.com>, 2018
  13. # Bilal Akgül <billakgl@gmail.com>, 2018
  14. # gülce abatay <gulceabatay@gmail.com>, 2018
  15. # Arda Asik (Student) <ardaasik@sabanciuniv.edu>, 2020
  16. #
  17. #, fuzzy
  18. msgid ""
  19. msgstr ""
  20. "Project-Id-Version: PACKAGE VERSION\n"
  21. "Report-Msgid-Bugs-To: \n"
  22. "POT-Creation-Date: 2023-03-19 13:08+0000\n"
  23. "PO-Revision-Date: 2017-01-16 00:04+0000\n"
  24. "Last-Translator: Arda Asik (Student) <ardaasik@sabanciuniv.edu>, 2020\n"
  25. "Language-Team: Turkish (Turkey) (https://www.transifex.com/misago/teams/65369/tr_TR/)\n"
  26. "MIME-Version: 1.0\n"
  27. "Content-Type: text/plain; charset=UTF-8\n"
  28. "Content-Transfer-Encoding: 8bit\n"
  29. "Language: tr_TR\n"
  30. "Plural-Forms: nplurals=2; plural=(n > 1);\n"
  31. #: static/misago/admin/index.js:16
  32. msgid "defineLocaleOverride"
  33. msgstr ""
  34. #: static/misago/js/misago.js:1
  35. msgid "I have read and accept %(agreement)s."
  36. msgstr "%(agreement)s' ı okudum ve onaylıyorum."
  37. #: static/misago/js/misago.js:1
  38. msgid "the terms of service"
  39. msgstr "Servis şartları."
  40. #: static/misago/js/misago.js:1
  41. msgid "the privacy policy"
  42. msgstr "gizlilik ilke"
  43. #: static/misago/js/misago.js:1
  44. msgid "Pinned globally"
  45. msgstr "Küresel olarak sabitlenmiş"
  46. #: static/misago/js/misago.js:1
  47. msgid "Pinned in category"
  48. msgstr ""
  49. #: static/misago/js/misago.js:1
  50. msgid "Answered"
  51. msgstr "Cevaplandı."
  52. #: static/misago/js/misago.js:1
  53. msgid "Poll"
  54. msgstr "Anket"
  55. #: static/misago/js/misago.js:1
  56. msgid "Awaiting approval"
  57. msgstr ""
  58. #: static/misago/js/misago.js:1
  59. msgid "Has unapproved posts"
  60. msgstr ""
  61. #: static/misago/js/misago.js:1
  62. msgid "Closed"
  63. msgstr "Kapalı"
  64. #: static/misago/js/misago.js:1
  65. msgid "Hidden"
  66. msgstr "Gizlenmiş"
  67. #: static/misago/js/misago.js:1
  68. msgid "%(replies)s reply"
  69. msgid_plural "%(replies)s replies"
  70. msgstr[0] "%(replies)s adet cevap"
  71. msgstr[1] "%(replies)s adet cevap"
  72. #: static/misago/js/misago.js:1
  73. msgid "No profile details are editable at this time."
  74. msgstr "Şu anda herhangi bir profil detayı düzenlenemez."
  75. #: static/misago/js/misago.js:1
  76. msgid "This option is currently unavailable."
  77. msgstr " Şu anda bu seçenek kullanılamıyor."
  78. #: static/misago/js/misago.js:1
  79. msgid "Form contains errors."
  80. msgstr "Form hatalar içeriyor."
  81. #: static/misago/js/misago.js:1
  82. msgid "Save changes"
  83. msgstr "Değişiklikleri Kaydet"
  84. #: static/misago/js/misago.js:1
  85. msgid "Cancel"
  86. msgstr "İptal et"
  87. #: static/misago/js/misago.js:1
  88. msgid "Edit details"
  89. msgstr "Ayrıntıları düzenle"
  90. #: static/misago/js/misago.js:1
  91. msgid "(error)"
  92. msgstr "(hata)"
  93. #: static/misago/js/misago.js:1
  94. msgid "(success)"
  95. msgstr "(başarılı)"
  96. #: static/misago/js/misago.js:1
  97. msgid "Are you sure you want to delete all polls?"
  98. msgstr "Bütün anketleri silmek istediğinize emin misiniz ?"
  99. #: static/misago/js/misago.js:1
  100. msgctxt "modal"
  101. msgid "Close"
  102. msgstr ""
  103. #: static/misago/js/misago.js:1
  104. msgid "Merge threads"
  105. msgstr "Konular birleştir"
  106. #: static/misago/js/misago.js:1
  107. msgid "Best answer"
  108. msgstr "En iyi cevap"
  109. #: static/misago/js/misago.js:1
  110. msgid ""
  111. "Please select the best answer for your newly merged thread. No posts will be"
  112. " deleted during the merge."
  113. msgstr ""
  114. "Lütfen yeni birleştirdiğiniz konu için en iyi cevabı seçin. Birleştirme "
  115. "sırasında iletiler silinmez."
  116. #: static/misago/js/misago.js:1
  117. msgid ""
  118. "Please select the poll for your newly merged thread. Rejected polls will be "
  119. "permanently deleted and cannot be recovered."
  120. msgstr ""
  121. "Lütfen birleştirilen yeni konu için anket seçin. Reddedilen anketler kalıcı "
  122. "olarak silinir ve geri alınamaz."
  123. #: static/misago/js/misago.js:1
  124. msgid "Ok"
  125. msgstr "Tamam"
  126. #: static/misago/js/misago.js:1
  127. msgid "This post's contents cannot be displayed."
  128. msgstr "Bu yazı içeriği görüntülenemiyor."
  129. #: static/misago/js/misago.js:1
  130. msgid "This error is caused by invalid post content manipulation."
  131. msgstr "Bu hata, geçersiz yayın içeriği manipülasyonundan kaynaklanmaktadır."
  132. #: static/misago/js/misago.js:1
  133. msgid "posted %(posted_on)s"
  134. msgstr "%(posted_on)s tarihinde yayımlandı."
  135. #: static/misago/js/misago.js:1
  136. msgid "See post"
  137. msgstr "İletiyi gör"
  138. #: static/misago/js/misago.js:1
  139. msgid "Removed user"
  140. msgstr "Kaldırılan kullanıcı"
  141. #: static/misago/js/misago.js:1
  142. msgctxt "post reply"
  143. msgid "Quote"
  144. msgstr ""
  145. #: static/misago/js/misago.js:1
  146. msgctxt "markup editor"
  147. msgid "Attachment details"
  148. msgstr ""
  149. #: static/misago/js/misago.js:1
  150. msgctxt "markup editor"
  151. msgid "Type and size"
  152. msgstr ""
  153. #: static/misago/js/misago.js:1
  154. msgctxt "markup editor"
  155. msgid "Uploaded at"
  156. msgstr ""
  157. #: static/misago/js/misago.js:1
  158. msgctxt "markup editor"
  159. msgid "Uploader"
  160. msgstr ""
  161. #: static/misago/js/misago.js:1
  162. msgctxt "markup editor"
  163. msgid "Insert into message"
  164. msgstr ""
  165. #: static/misago/js/misago.js:1
  166. msgctxt "markup editor"
  167. msgid "Remove attachment"
  168. msgstr ""
  169. #: static/misago/js/misago.js:1
  170. msgctxt "markup editor"
  171. msgid "Remove this attachment?"
  172. msgstr ""
  173. #: static/misago/js/misago.js:1
  174. msgctxt "markup editor"
  175. msgid "See error"
  176. msgstr ""
  177. #: static/misago/js/misago.js:1
  178. msgctxt "markup editor"
  179. msgid "%(filename)s: %(error)s"
  180. msgstr ""
  181. #: static/misago/js/misago.js:1
  182. msgctxt "markup editor"
  183. msgid "Protected"
  184. msgstr ""
  185. #: static/misago/js/misago.js:1
  186. msgctxt "markup editor"
  187. msgid "Protect"
  188. msgstr ""
  189. #: static/misago/js/misago.js:1
  190. msgctxt "markup editor"
  191. msgid "Edit"
  192. msgstr ""
  193. #: static/misago/js/misago.js:1
  194. msgctxt "markup editor"
  195. msgid "Preview"
  196. msgstr ""
  197. #: static/misago/js/misago.js:1
  198. msgid "Post"
  199. msgstr "Mesaj"
  200. #: static/misago/js/misago.js:1
  201. msgid "This field is required."
  202. msgstr "Bu alan gerekli."
  203. #: static/misago/js/misago.js:1
  204. msgctxt "markup editor"
  205. msgid "Code"
  206. msgstr ""
  207. #: static/misago/js/misago.js:1
  208. msgctxt "markup editor"
  209. msgid "Syntax highlighting"
  210. msgstr ""
  211. #: static/misago/js/misago.js:1
  212. msgctxt "markup editor"
  213. msgid "No syntax highlighting"
  214. msgstr ""
  215. #: static/misago/js/misago.js:1
  216. msgctxt "markup editor"
  217. msgid "Code to insert"
  218. msgstr ""
  219. #: static/misago/js/misago.js:1
  220. msgctxt "markup editor"
  221. msgid "Insert code"
  222. msgstr ""
  223. #: static/misago/js/misago.js:1
  224. msgctxt "markup help"
  225. msgid "Formatting help"
  226. msgstr ""
  227. #: static/misago/js/misago.js:1
  228. msgctxt "markup help"
  229. msgid "Emphasis text"
  230. msgstr ""
  231. #: static/misago/js/misago.js:1
  232. msgctxt "markup help"
  233. msgid "_This text will have emphasis_"
  234. msgstr ""
  235. #: static/misago/js/misago.js:1
  236. msgctxt "markup help"
  237. msgid "This text will have emphasis"
  238. msgstr ""
  239. #: static/misago/js/misago.js:1
  240. msgctxt "markup help"
  241. msgid "Bold text"
  242. msgstr ""
  243. #: static/misago/js/misago.js:1
  244. msgctxt "markup help"
  245. msgid "**This text will be bold**"
  246. msgstr ""
  247. #: static/misago/js/misago.js:1
  248. msgctxt "markup help"
  249. msgid "This text will be bold"
  250. msgstr ""
  251. #: static/misago/js/misago.js:1
  252. msgctxt "markup help"
  253. msgid "Removed text"
  254. msgstr ""
  255. #: static/misago/js/misago.js:1
  256. msgctxt "markup help"
  257. msgid "~~This text will be removed~~"
  258. msgstr ""
  259. #: static/misago/js/misago.js:1
  260. msgctxt "markup help"
  261. msgid "This text will be removed"
  262. msgstr ""
  263. #: static/misago/js/misago.js:1
  264. msgctxt "markup help"
  265. msgid "Bold text (BBCode)"
  266. msgstr ""
  267. #: static/misago/js/misago.js:1
  268. msgctxt "markup help"
  269. msgid "[b]This text will be bold[/b]"
  270. msgstr ""
  271. #: static/misago/js/misago.js:1
  272. msgctxt "markup help"
  273. msgid "Underlined text (BBCode)"
  274. msgstr ""
  275. #: static/misago/js/misago.js:1
  276. msgctxt "markup help"
  277. msgid "[u]This text will be underlined[/u]"
  278. msgstr ""
  279. #: static/misago/js/misago.js:1
  280. msgctxt "markup help"
  281. msgid "This text will be underlined"
  282. msgstr ""
  283. #: static/misago/js/misago.js:1
  284. msgctxt "markup help"
  285. msgid "Italics text (BBCode)"
  286. msgstr ""
  287. #: static/misago/js/misago.js:1
  288. msgctxt "markup help"
  289. msgid "[i]This text will be in italics[/i]"
  290. msgstr ""
  291. #: static/misago/js/misago.js:1
  292. msgctxt "markup help"
  293. msgid "This text will be in italics"
  294. msgstr ""
  295. #: static/misago/js/misago.js:1
  296. msgctxt "markup help"
  297. msgid "Link"
  298. msgstr ""
  299. #: static/misago/js/misago.js:1
  300. msgctxt "markup help"
  301. msgid "Link with text"
  302. msgstr ""
  303. #: static/misago/js/misago.js:1
  304. msgctxt "markup help"
  305. msgid "Link text"
  306. msgstr ""
  307. #: static/misago/js/misago.js:1
  308. msgctxt "markup help"
  309. msgid "Link (BBCode)"
  310. msgstr ""
  311. #: static/misago/js/misago.js:1
  312. msgctxt "markup help"
  313. msgid "Link with text (BBCode)"
  314. msgstr ""
  315. #: static/misago/js/misago.js:1
  316. msgctxt "markup help"
  317. msgid "Image"
  318. msgstr ""
  319. #: static/misago/js/misago.js:1
  320. msgctxt "markup help"
  321. msgid "Image with alternate text"
  322. msgstr ""
  323. #: static/misago/js/misago.js:1
  324. msgctxt "markup help"
  325. msgid "Image text"
  326. msgstr ""
  327. #: static/misago/js/misago.js:1
  328. msgctxt "markup help"
  329. msgid "Image (BBCode)"
  330. msgstr ""
  331. #: static/misago/js/misago.js:1
  332. msgctxt "markup help"
  333. msgid "Mention user by their name"
  334. msgstr ""
  335. #: static/misago/js/misago.js:1
  336. msgctxt "markup help"
  337. msgid "Heading 1"
  338. msgstr ""
  339. #: static/misago/js/misago.js:1
  340. msgctxt "markup help"
  341. msgid "# First level heading"
  342. msgstr ""
  343. #: static/misago/js/misago.js:1
  344. msgctxt "markup help"
  345. msgid "First level heading"
  346. msgstr ""
  347. #: static/misago/js/misago.js:1
  348. msgctxt "markup help"
  349. msgid "Heading 2"
  350. msgstr ""
  351. #: static/misago/js/misago.js:1
  352. msgctxt "markup help"
  353. msgid "## Second level heading"
  354. msgstr ""
  355. #: static/misago/js/misago.js:1
  356. msgctxt "markup help"
  357. msgid "Second level heading"
  358. msgstr ""
  359. #: static/misago/js/misago.js:1
  360. msgctxt "markup help"
  361. msgid "Heading 3"
  362. msgstr ""
  363. #: static/misago/js/misago.js:1
  364. msgctxt "markup help"
  365. msgid "### Third level heading"
  366. msgstr ""
  367. #: static/misago/js/misago.js:1
  368. msgctxt "markup help"
  369. msgid "Third level heading"
  370. msgstr ""
  371. #: static/misago/js/misago.js:1
  372. msgctxt "markup help"
  373. msgid "Heading 4"
  374. msgstr ""
  375. #: static/misago/js/misago.js:1
  376. msgctxt "markup help"
  377. msgid "#### Fourth level heading"
  378. msgstr ""
  379. #: static/misago/js/misago.js:1
  380. msgctxt "markup help"
  381. msgid "Fourth level heading"
  382. msgstr ""
  383. #: static/misago/js/misago.js:1
  384. msgctxt "markup help"
  385. msgid "Heading 5"
  386. msgstr ""
  387. #: static/misago/js/misago.js:1
  388. msgctxt "markup help"
  389. msgid "##### Fifth level heading"
  390. msgstr ""
  391. #: static/misago/js/misago.js:1
  392. msgctxt "markup help"
  393. msgid "Fifth level heading"
  394. msgstr ""
  395. #: static/misago/js/misago.js:1
  396. msgctxt "markup help"
  397. msgid "Unordered list"
  398. msgstr ""
  399. #: static/misago/js/misago.js:1
  400. msgctxt "markup help"
  401. msgid "Ordered list"
  402. msgstr ""
  403. #: static/misago/js/misago.js:1
  404. msgctxt "markup help"
  405. msgid "Quote text"
  406. msgstr ""
  407. #: static/misago/js/misago.js:1
  408. msgctxt "markup help"
  409. msgid "Quoted text"
  410. msgstr ""
  411. #: static/misago/js/misago.js:1
  412. msgctxt "markup help"
  413. msgid "Quote text (BBCode)"
  414. msgstr ""
  415. #: static/misago/js/misago.js:1
  416. msgid "Quoted message:"
  417. msgstr ""
  418. #: static/misago/js/misago.js:1
  419. msgctxt "markup help"
  420. msgid "Quote text with title (BBCode)"
  421. msgstr ""
  422. #: static/misago/js/misago.js:1
  423. msgctxt "markup help"
  424. msgid "Quote title"
  425. msgstr ""
  426. #: static/misago/js/misago.js:1
  427. msgid "Quote title has written:"
  428. msgstr ""
  429. #: static/misago/js/misago.js:1
  430. msgctxt "markup help"
  431. msgid "Spoiler"
  432. msgstr ""
  433. #: static/misago/js/misago.js:1
  434. msgctxt "markup help"
  435. msgid "Secret text"
  436. msgstr ""
  437. #: static/misago/js/misago.js:1
  438. msgctxt "markup help"
  439. msgid "Inline code"
  440. msgstr ""
  441. #: static/misago/js/misago.js:1
  442. msgctxt "markup help"
  443. msgid "`Inline code`"
  444. msgstr ""
  445. #: static/misago/js/misago.js:1
  446. msgctxt "markup help"
  447. msgid "Code block"
  448. msgstr ""
  449. #: static/misago/js/misago.js:1
  450. msgctxt "markup help"
  451. msgid "Code block with syntax highlighting"
  452. msgstr ""
  453. #: static/misago/js/misago.js:1
  454. msgctxt "markup help"
  455. msgid "Code block (BBCode)"
  456. msgstr ""
  457. #: static/misago/js/misago.js:1
  458. msgctxt "markup help"
  459. msgid "Code block with syntax highlighting (BBCode)"
  460. msgstr ""
  461. #: static/misago/js/misago.js:1
  462. msgctxt "markup help"
  463. msgid "Horizontal rule"
  464. msgstr ""
  465. #: static/misago/js/misago.js:1
  466. msgctxt "markup help"
  467. msgid "Horizontal rule (BBCode)"
  468. msgstr ""
  469. #: static/misago/js/misago.js:1
  470. msgid "Reveal spoiler"
  471. msgstr ""
  472. #: static/misago/js/misago.js:1
  473. msgid "Enter a valid address."
  474. msgstr ""
  475. #: static/misago/js/misago.js:1
  476. msgctxt "markup editor"
  477. msgid "Image"
  478. msgstr ""
  479. #: static/misago/js/misago.js:1
  480. msgctxt "markup editor"
  481. msgid "Image description"
  482. msgstr ""
  483. #: static/misago/js/misago.js:1
  484. msgctxt "markup editor"
  485. msgid ""
  486. "Optional but recommended . Will be displayed instead of image when it fails "
  487. "to load."
  488. msgstr ""
  489. #: static/misago/js/misago.js:1
  490. msgctxt "markup editor"
  491. msgid "Image address"
  492. msgstr ""
  493. #: static/misago/js/misago.js:1
  494. msgctxt "markup editor"
  495. msgid "Insert image"
  496. msgstr ""
  497. #: static/misago/js/misago.js:1
  498. msgctxt "markup editor"
  499. msgid "Link"
  500. msgstr ""
  501. #: static/misago/js/misago.js:1
  502. msgctxt "markup editor"
  503. msgid "Link text"
  504. msgstr ""
  505. #: static/misago/js/misago.js:1
  506. msgctxt "markup editor"
  507. msgid "Optional. Will be displayed instead of link's address."
  508. msgstr ""
  509. #: static/misago/js/misago.js:1
  510. msgctxt "markup editor"
  511. msgid "Link address"
  512. msgstr ""
  513. #: static/misago/js/misago.js:1
  514. msgctxt "markup editor"
  515. msgid "Insert link"
  516. msgstr ""
  517. #: static/misago/js/misago.js:1
  518. msgctxt "markup editor"
  519. msgid "Quote"
  520. msgstr ""
  521. #: static/misago/js/misago.js:1
  522. msgctxt "markup editor"
  523. msgid "Quote's author or source"
  524. msgstr ""
  525. #: static/misago/js/misago.js:1
  526. msgctxt "markup editor"
  527. msgid "Optional. If it's username, put \"@\" before it (\"@JohnDoe\")."
  528. msgstr ""
  529. #: static/misago/js/misago.js:1
  530. msgctxt "markup editor"
  531. msgid "Quoted text"
  532. msgstr ""
  533. #: static/misago/js/misago.js:1
  534. msgctxt "markup editor"
  535. msgid "Insert quote"
  536. msgstr ""
  537. #: static/misago/js/misago.js:1
  538. msgctxt "markup editor"
  539. msgid "File %(filename)s is bigger than %(limit)s."
  540. msgstr ""
  541. #: static/misago/js/misago.js:1
  542. msgctxt "markup editor"
  543. msgid "Strong"
  544. msgstr ""
  545. #: static/misago/js/misago.js:1
  546. msgctxt "example markup"
  547. msgid "Strong text"
  548. msgstr ""
  549. #: static/misago/js/misago.js:1
  550. msgctxt "markup editor"
  551. msgid "Emphasis"
  552. msgstr ""
  553. #: static/misago/js/misago.js:1
  554. msgctxt "example markup"
  555. msgid "Text with emphasis"
  556. msgstr ""
  557. #: static/misago/js/misago.js:1
  558. msgctxt "markup editor"
  559. msgid "Strikethrough"
  560. msgstr ""
  561. #: static/misago/js/misago.js:1
  562. msgctxt "example markup"
  563. msgid "Text with strikethrough"
  564. msgstr ""
  565. #: static/misago/js/misago.js:1
  566. msgctxt "markup editor"
  567. msgid "Horizontal ruler"
  568. msgstr ""
  569. #: static/misago/js/misago.js:1
  570. msgctxt "markup editor"
  571. msgid "Spoiler"
  572. msgstr ""
  573. #: static/misago/js/misago.js:1
  574. msgctxt "markup editor"
  575. msgid "Spoiler text"
  576. msgstr ""
  577. #: static/misago/js/misago.js:1
  578. msgctxt "markup editor"
  579. msgid "Upload file"
  580. msgstr ""
  581. #: static/misago/js/misago.js:1
  582. msgctxt "markup editor"
  583. msgid "Formatting help"
  584. msgstr ""
  585. #: static/misago/js/misago.js:1
  586. msgctxt "dialog"
  587. msgid "Open"
  588. msgstr ""
  589. #: static/misago/js/misago.js:1
  590. msgctxt "dialog"
  591. msgid "Minimize"
  592. msgstr ""
  593. #: static/misago/js/misago.js:1
  594. msgctxt "dialog"
  595. msgid "Exit the fullscreen mode"
  596. msgstr ""
  597. #: static/misago/js/misago.js:1
  598. msgctxt "dialog"
  599. msgid "Enter the fullscreen mode"
  600. msgstr ""
  601. #: static/misago/js/misago.js:1
  602. msgctxt "dialog"
  603. msgid "Cancel"
  604. msgstr ""
  605. #: static/misago/js/misago.js:1
  606. msgctxt "post thread"
  607. msgid "Options"
  608. msgstr ""
  609. #: static/misago/js/misago.js:1
  610. msgctxt "post thread"
  611. msgid "Pinned globally"
  612. msgstr ""
  613. #: static/misago/js/misago.js:1
  614. msgctxt "post thread"
  615. msgid "Pinned locally"
  616. msgstr ""
  617. #: static/misago/js/misago.js:1
  618. msgctxt "post thread"
  619. msgid "Not pinned"
  620. msgstr ""
  621. #: static/misago/js/misago.js:1
  622. msgctxt "post thread"
  623. msgid "Open"
  624. msgstr ""
  625. #: static/misago/js/misago.js:1
  626. msgctxt "post thread"
  627. msgid "Closed"
  628. msgstr ""
  629. #: static/misago/js/misago.js:1
  630. msgctxt "post thread"
  631. msgid "Visible"
  632. msgstr ""
  633. #: static/misago/js/misago.js:1
  634. msgctxt "post thread"
  635. msgid "Hidden"
  636. msgstr ""
  637. #: static/misago/js/misago.js:1
  638. msgctxt "post thread"
  639. msgid "Are you sure you want to discard thread?"
  640. msgstr ""
  641. #: static/misago/js/misago.js:1
  642. msgid "You have to enter thread title."
  643. msgstr "Konu başlığı girmelisiniz."
  644. #: static/misago/js/misago.js:1
  645. msgid "You have to enter a message."
  646. msgstr "Bir mesaj girmeniz gerekiyor."
  647. #: static/misago/js/misago.js:1
  648. msgctxt "post thread"
  649. msgid "Your thread has been posted."
  650. msgstr ""
  651. #: static/misago/js/misago.js:1
  652. msgctxt "post thread submit"
  653. msgid "Post thread"
  654. msgstr ""
  655. #: static/misago/js/misago.js:1
  656. msgctxt "post thread"
  657. msgid "Thread title"
  658. msgstr ""
  659. #: static/misago/js/misago.js:1
  660. msgctxt "post thread submit"
  661. msgid "Start thread"
  662. msgstr ""
  663. #: static/misago/js/misago.js:1
  664. msgctxt "post thread"
  665. msgid "Start new thread"
  666. msgstr ""
  667. #: static/misago/js/misago.js:1
  668. msgctxt "post thread"
  669. msgid "Are you sure you want to discard private thread?"
  670. msgstr ""
  671. #: static/misago/js/misago.js:1
  672. msgid "You have to enter at least one recipient."
  673. msgstr "En az bir alıcı girmelisiniz."
  674. #: static/misago/js/misago.js:1
  675. msgctxt "post thread"
  676. msgid "Recipients, eg.: Danny, Lisa, Alice"
  677. msgstr ""
  678. #: static/misago/js/misago.js:1
  679. msgctxt "post thread"
  680. msgid "Start private thread"
  681. msgstr ""
  682. #: static/misago/js/misago.js:1
  683. msgctxt "post reply"
  684. msgid "Are you sure you want to discard your reply?"
  685. msgstr ""
  686. #: static/misago/js/misago.js:1
  687. msgctxt "post reply"
  688. msgid "Your reply has been posted."
  689. msgstr ""
  690. #: static/misago/js/misago.js:1
  691. msgctxt "post reply submit"
  692. msgid "Post reply"
  693. msgstr ""
  694. #: static/misago/js/misago.js:1
  695. msgctxt "post reply"
  696. msgid "Reply to: %(thread)s"
  697. msgstr ""
  698. #: static/misago/js/misago.js:1
  699. msgid "Are you sure you want to discard changes?"
  700. msgstr "Değişiklikleri silmek istediğinden emin misin?"
  701. #: static/misago/js/misago.js:1
  702. msgid "Reply has been edited."
  703. msgstr "Cevap düzenlendi."
  704. #: static/misago/js/misago.js:1
  705. msgctxt "edit reply submit"
  706. msgid "Edit reply"
  707. msgstr ""
  708. #: static/misago/js/misago.js:1
  709. msgctxt "edit reply"
  710. msgid "Edit reply by %(poster)s from %(date)s"
  711. msgstr ""
  712. #: static/misago/js/misago.js:1
  713. msgid ""
  714. "Thread title should be at least %(limit_value)s character long (it has "
  715. "%(show_value)s)."
  716. msgid_plural ""
  717. "Thread title should be at least %(limit_value)s characters long (it has "
  718. "%(show_value)s)."
  719. msgstr[0] ""
  720. "Gönderilen konu en az %(limit_value)s karakter uzunluğunda olmalıdır. (O "
  721. "%(show_value)s karakterdir)"
  722. msgstr[1] ""
  723. "Gönderilen konu en az %(limit_value)s karakter uzunluğunda olmalıdır. (O "
  724. "%(show_value)s karakterdir)"
  725. #: static/misago/js/misago.js:1
  726. msgid ""
  727. "Thread title cannot be longer than %(limit_value)s character (it has "
  728. "%(show_value)s)."
  729. msgid_plural ""
  730. "Thread title cannot be longer than %(limit_value)s characters (it has "
  731. "%(show_value)s)."
  732. msgstr[0] ""
  733. "Gönderilen konu %(limit_value)s karakterden uzun olamaz. (O %(show_value)s "
  734. "karakterdir)"
  735. msgstr[1] ""
  736. "Gönderilen konu %(limit_value)s karakterden uzun olamaz. (O %(show_value)s "
  737. "karakterdir)"
  738. #: static/misago/js/misago.js:1
  739. msgid ""
  740. "Posted message cannot be longer than %(limit_value)s character (it has "
  741. "%(show_value)s)."
  742. msgid_plural ""
  743. "Posted message cannot be longer than %(limit_value)s characters (it has "
  744. "%(show_value)s)."
  745. msgstr[0] ""
  746. "Gönderilen ileti %(limit_value)s karakterden uzun olamaz. (O %(show_value)s "
  747. "karakterdir)"
  748. msgstr[1] ""
  749. "Gönderilen ileti %(limit_value)s karakterden uzun olamaz. (O %(show_value)s "
  750. "karakterdir)"
  751. #: static/misago/js/misago.js:1
  752. msgid ""
  753. "Posted message should be at least %(limit_value)s character long (it has "
  754. "%(show_value)s)."
  755. msgid_plural ""
  756. "Posted message should be at least %(limit_value)s characters long (it has "
  757. "%(show_value)s)."
  758. msgstr[0] ""
  759. "Gönderilen ileti en az %(limit_value)s karakter uzunluğunda olmalıdır. (O "
  760. "%(show_value)s karakterdir)"
  761. msgstr[1] ""
  762. "Gönderilen ileti en az %(limit_value)s karakter uzunluğunda olmalıdır. (O "
  763. "%(show_value)s karakterdir)"
  764. #: static/misago/js/misago.js:1
  765. msgid "Fill out both fields."
  766. msgstr "Her iki alanı doldurun."
  767. #: static/misago/js/misago.js:1
  768. msgid "Activate account"
  769. msgstr "Hesabı etkinleştir"
  770. #: static/misago/js/misago.js:1
  771. msgid "Sign in"
  772. msgstr "Oturum Aç"
  773. #: static/misago/js/misago.js:1
  774. msgid "Sign in with %(site)s"
  775. msgstr "%(site)sile giriş yap."
  776. #: static/misago/js/misago.js:1
  777. msgid "Or use your forum account:"
  778. msgstr "Veya forum hesabını kullan:"
  779. #: static/misago/js/misago.js:1
  780. msgid "Username or e-mail"
  781. msgstr "Kullanıcı adı veya e-posta"
  782. #: static/misago/js/misago.js:1
  783. msgid "Password"
  784. msgstr "Şifre"
  785. #: static/misago/js/misago.js:1
  786. msgid "Forgot password?"
  787. msgstr "Şifreyi mi unuttun?"
  788. #: static/misago/js/misago.js:1
  789. msgid "%(username)s is banned until %(ban_expires)s"
  790. msgstr "%(username)s kullanıcısı %(ban_expires)s e kadar yasaklanmıştır."
  791. #: static/misago/js/misago.js:1
  792. msgid "%(username)s is banned"
  793. msgstr "%(username)s yasaklıdır."
  794. #: static/misago/js/misago.js:1
  795. msgid "%(username)s is hiding presence"
  796. msgstr "%(username)s gizli varlıktır."
  797. #: static/misago/js/misago.js:1
  798. msgid "%(username)s is online (hidden)"
  799. msgstr "%(username)s çevrimiçidir (gizlenmiş)"
  800. #: static/misago/js/misago.js:1
  801. msgid "%(username)s was last seen %(last_click)s (hidden)"
  802. msgstr "%(username)s son görülmesi %(last_click)s (gizlenmiş)"
  803. #: static/misago/js/misago.js:1
  804. msgid "%(username)s is online"
  805. msgstr "%(username)s çevrimiçidir"
  806. #: static/misago/js/misago.js:1
  807. msgid "%(username)s was last seen %(last_click)s"
  808. msgstr "%(username)s son görülmesi %(last_click)s"
  809. #: static/misago/js/misago.js:1
  810. msgid "Banned"
  811. msgstr "Yasaklanmış"
  812. #: static/misago/js/misago.js:1
  813. msgid "Online (hidden)"
  814. msgstr "Çevrimiçi (gizlenmiş)"
  815. #: static/misago/js/misago.js:1
  816. msgid "Offline (hidden)"
  817. msgstr "Çevrimdışı (gizlenmiş)"
  818. #: static/misago/js/misago.js:1
  819. msgid "Online"
  820. msgstr "Çevrimiçi"
  821. #: static/misago/js/misago.js:1
  822. msgid "Offline"
  823. msgstr "Çevrimdışı"
  824. #: static/misago/js/misago.js:1
  825. msgid "No name changes have been recorded for your account."
  826. msgstr "Hesabına kayıtlı isim değişikliği yok."
  827. #: static/misago/js/misago.js:1
  828. msgid "Joined on %(joined_on)s"
  829. msgstr "%(joined_on)sda katıldı"
  830. #: static/misago/js/misago.js:1
  831. msgid "Joined %(joined_on)s"
  832. msgstr "%(joined_on)s katıldı."
  833. #: static/misago/js/misago.js:1
  834. msgid "%(posts)s post"
  835. msgid_plural "%(posts)s posts"
  836. msgstr[0] " mesajlar%(posts)s"
  837. msgstr[1] " mesajlar%(posts)s"
  838. #: static/misago/js/misago.js:1
  839. msgid "%(threads)s thread"
  840. msgid_plural "%(threads)s threads"
  841. msgstr[0] " konular%(threads)s"
  842. msgstr[1] " konular%(threads)s"
  843. #: static/misago/js/misago.js:1
  844. msgid "%(followers)s follower"
  845. msgid_plural "%(followers)s followers"
  846. msgstr[0] "%(followers)s takipçiler"
  847. msgstr[1] "%(followers)s takipçiler"
  848. #: static/misago/js/misago.js:1
  849. msgid "yes"
  850. msgstr "evet"
  851. #: static/misago/js/misago.js:1
  852. msgid "no"
  853. msgstr "hayır"
  854. #: static/misago/js/misago.js:1
  855. msgid ""
  856. "Declining will result in immediate deactivation and deletion of your "
  857. "account. This action is not reversible."
  858. msgstr ""
  859. "Reddederseniz hesabınızın anında deaktive olur ve hesabınız silinir. Bu "
  860. "aksiyon geri alınamaz."
  861. #: static/misago/js/misago.js:1
  862. msgid "Decline"
  863. msgstr "düşüş"
  864. #: static/misago/js/misago.js:1
  865. msgid "Accept and continue"
  866. msgstr "kabul et ve devam et"
  867. #: static/misago/js/misago.js:1
  868. msgid ""
  869. "You have signed in as %(username)s. Please refresh the page before "
  870. "continuing."
  871. msgstr ""
  872. "%(username)s olarak oturum açtınız. Devam etmeden önce lütfen sayfayı "
  873. "yenileyin."
  874. #: static/misago/js/misago.js:1
  875. msgid ""
  876. "%(username)s, you have been signed out. Please refresh the page before "
  877. "continuing."
  878. msgstr ""
  879. "%(username)s,oturumu kapatmışsın. Devam etmeden önce lütfen sayfayı "
  880. "yenileyin."
  881. #: static/misago/js/misago.js:1
  882. msgid "Reload page"
  883. msgstr "Sayfayı yenile"
  884. #: static/misago/js/misago.js:1
  885. msgid "or press F5 key."
  886. msgstr "veya F5'e basın."
  887. #: static/misago/js/misago.js:1
  888. msgid "No categories exist or you don't have permission to see them."
  889. msgstr "Hiçbir kategori bulunmuyor yada görmek için yetkiniz yok."
  890. #: static/misago/js/misago.js:1
  891. msgid "This category has no new posts. (closed)"
  892. msgstr "Bu kategoride yeni içerik yok. (kapalı)"
  893. #: static/misago/js/misago.js:1
  894. msgid "This category has new posts. (closed)"
  895. msgstr "Bu kategoride yeni mesaj var. (kapalı)"
  896. #: static/misago/js/misago.js:1
  897. msgid "This category has no new posts."
  898. msgstr "Bu kategoride yeni mesaj yok."
  899. #: static/misago/js/misago.js:1
  900. msgid "This category has new posts."
  901. msgstr "Bu kategoride yeni mesaj var."
  902. #: static/misago/js/misago.js:1
  903. msgid "This category is empty. No threads were posted within it so far."
  904. msgstr "Bu kategori boş. Şimdiye kadar hiçbir konu gönderilmedi."
  905. #: static/misago/js/misago.js:1
  906. msgid "This category is private. You can see only your own threads within it."
  907. msgstr "Bu kategori özeldir. Sadece kendi konularını görebilirsin."
  908. #: static/misago/js/misago.js:1
  909. msgid "This category is protected. You can't browse its contents."
  910. msgstr ""
  911. #: static/misago/js/misago.js:1
  912. msgid "Enter your password to confirm account deletion."
  913. msgstr "Hesap silme işlemini onaylamak için şifrenizi girin."
  914. #: static/misago/js/misago.js:1
  915. msgid "Delete account"
  916. msgstr "Hesabı sil"
  917. #: static/misago/js/misago.js:1
  918. msgid "Change your options"
  919. msgstr "Seçeneklerini değiştir"
  920. #: static/misago/js/misago.js:1
  921. msgid ""
  922. "You are going to delete your account. This action is nonreversible, and will"
  923. " result in following data being deleted:"
  924. msgstr ""
  925. "Hesabınızı silmek üzeresiniz. Bu aksiyon geri alınamaz ve aşağıdaki "
  926. "verilerin kaybolmasına sebep olur:"
  927. #: static/misago/js/misago.js:1
  928. msgid ""
  929. "Stored IP addresses associated with content that you have posted will be "
  930. "deleted."
  931. msgstr ""
  932. #: static/misago/js/misago.js:1
  933. msgid ""
  934. "Your username will become available for other user to rename to or for new "
  935. "user to register their account with."
  936. msgstr ""
  937. #: static/misago/js/misago.js:1
  938. msgid "Your e-mail will become available for use in new account registration."
  939. msgstr ""
  940. #: static/misago/js/misago.js:1
  941. msgid ""
  942. "All your posted content will NOT be deleted, but username associated with it"
  943. " will be changed to one shared by all deleted accounts."
  944. msgstr ""
  945. #: static/misago/js/misago.js:1
  946. msgid "Delete my account"
  947. msgstr "Hesabımı sil."
  948. #: static/misago/js/misago.js:1
  949. msgid "Your details have been updated."
  950. msgstr "Detayların güncellendi."
  951. #: static/misago/js/misago.js:1
  952. msgid "Your request for data download has been registered."
  953. msgstr "Veri indirme isteğiniz kaydedildi."
  954. #: static/misago/js/misago.js:1
  955. msgid "Download your data"
  956. msgstr "Verilerinizi indirin."
  957. #: static/misago/js/misago.js:1
  958. msgid ""
  959. "To download your data from the site, click the \"Request data download\" "
  960. "button. Depending on amount of data to be archived and number of users "
  961. "wanting to download their data at same time it may take up to few days for "
  962. "your download to be prepared. An e-mail with notification will be sent to "
  963. "you when your data is ready to be downloaded."
  964. msgstr ""
  965. #: static/misago/js/misago.js:1
  966. msgid ""
  967. "The download will only be available for limited amount of time, after which "
  968. "it will be deleted from the site and marked as expired."
  969. msgstr ""
  970. #: static/misago/js/misago.js:1
  971. msgid "Requested on"
  972. msgstr ""
  973. #: static/misago/js/misago.js:1
  974. msgid "Download"
  975. msgstr "İndir"
  976. #: static/misago/js/misago.js:1
  977. msgid "You have no data downloads."
  978. msgstr "İndirilecek veriniz yok."
  979. #: static/misago/js/misago.js:1
  980. msgid "Request data download"
  981. msgstr "Veri indirme iste"
  982. #: static/misago/js/misago.js:1
  983. msgid "Download is being prepared"
  984. msgstr "İndirme hazırlanıyor"
  985. #: static/misago/js/misago.js:1
  986. msgid "Download is expired"
  987. msgstr "İndirme süre aşımına uğradı"
  988. #: static/misago/js/misago.js:1
  989. msgid "Everybody"
  990. msgstr "Herkes"
  991. #: static/misago/js/misago.js:1
  992. msgid "Users I follow"
  993. msgstr "Takip ettiklerim"
  994. #: static/misago/js/misago.js:1
  995. msgid "Nobody"
  996. msgstr "Kimse"
  997. #: static/misago/js/misago.js:1
  998. msgid "No"
  999. msgstr "Hayır"
  1000. #: static/misago/js/misago.js:1
  1001. msgid "Notify"
  1002. msgstr "Uyarmak"
  1003. #: static/misago/js/misago.js:1
  1004. msgid "Notify with e-mail"
  1005. msgstr "Email ile uyarmak"
  1006. #: static/misago/js/misago.js:1
  1007. msgid "Your forum options have been changed."
  1008. msgstr "Forum seçeneklerin değiştirildi."
  1009. #: static/misago/js/misago.js:1
  1010. msgid "Please reload page and try again."
  1011. msgstr "Sayfayı yeniden yükle ve tekrar dene."
  1012. #: static/misago/js/misago.js:1
  1013. msgid "Forum options"
  1014. msgstr "Forum seçenekleri"
  1015. #: static/misago/js/misago.js:1
  1016. msgid "Change forum options"
  1017. msgstr "Forum seçeneklerini değiştir"
  1018. #: static/misago/js/misago.js:1
  1019. msgid "Privacy settings"
  1020. msgstr "Güvenlik ayarları"
  1021. #: static/misago/js/misago.js:1
  1022. msgid "Hide my presence"
  1023. msgstr "Varlığımı gizle"
  1024. #: static/misago/js/misago.js:1
  1025. msgid ""
  1026. "If you hide your presence, only members with permission to see hidden users "
  1027. "will see when you are online."
  1028. msgstr ""
  1029. "Gizliliğinizi aktifleştirirseniz, sadece gizli kullanıcıları görmeye yetkisi"
  1030. " olan üyeler sizi çevrimiçi görebileceklerdir."
  1031. #: static/misago/js/misago.js:1
  1032. msgid "Hide my presence from other users"
  1033. msgstr "Varlığımı diğer kullanıcılardan gizle"
  1034. #: static/misago/js/misago.js:1
  1035. msgid "Show my presence to other users"
  1036. msgstr "Varlığımı diğer kullanıcılara göster"
  1037. #: static/misago/js/misago.js:1
  1038. msgid "Private thread invitations"
  1039. msgstr "Özel konu davetleri"
  1040. #: static/misago/js/misago.js:1
  1041. msgid "Automatic subscriptions"
  1042. msgstr "Otomatik abonelik ücretleri"
  1043. #: static/misago/js/misago.js:1
  1044. msgid "Threads I start"
  1045. msgstr "Başlattığım konular"
  1046. #: static/misago/js/misago.js:1
  1047. msgid "Threads I reply to"
  1048. msgstr "Cevapladığım konular"
  1049. #: static/misago/js/misago.js:1
  1050. msgid "Change username"
  1051. msgstr "Kullanıcı adını değiştir"
  1052. #: static/misago/js/misago.js:1
  1053. msgid "You will be able to change your username %(next_change)s."
  1054. msgstr "Kullanici ismini değiştirebileceksin%(next_change)s"
  1055. #: static/misago/js/misago.js:1
  1056. msgid "You have used up available name changes."
  1057. msgstr "Mevcut ad değişikliği hakkın bitti."
  1058. #: static/misago/js/misago.js:1
  1059. msgid "You can't change your username at the moment."
  1060. msgstr "Şu anda kullanıcı adını değiştiremezsin."
  1061. #: static/misago/js/misago.js:1
  1062. msgid "You can change your username %(changes_left)s more time."
  1063. msgid_plural "You can change your username %(changes_left)s more times."
  1064. msgstr[0] "Kullanici ismini %(changes_left)skez değiştirebilirsin."
  1065. msgstr[1] "Kullanici ismini %(changes_left)skez değiştirebilirsin."
  1066. #: static/misago/js/misago.js:1
  1067. msgid "Used changes become available again after %(name_changes_expire)s day."
  1068. msgid_plural ""
  1069. "Used changes become available again after %(name_changes_expire)s days."
  1070. msgstr[0] ""
  1071. "Kullanilan değişiklikler%(name_changes_expire)sgün sonra tekrar mümkün "
  1072. "olacaktir."
  1073. msgstr[1] ""
  1074. "Kullanilan değişiklikler%(name_changes_expire)sgün sonra tekrar mümkün "
  1075. "olacaktir."
  1076. #: static/misago/js/misago.js:1
  1077. msgid "Your new username is same as current one."
  1078. msgstr "Kullanici ismin şuankiyle ayni."
  1079. #: static/misago/js/misago.js:1
  1080. msgid "New username"
  1081. msgstr "Yeni kullanıcı adı"
  1082. #: static/misago/js/misago.js:1
  1083. msgid "Your username has been changed successfully."
  1084. msgstr "Kullanıcı adin başarıyla değiştirildi."
  1085. #: static/misago/js/misago.js:1
  1086. msgid "Fill out all fields."
  1087. msgstr "Tüm boşlukları doldur"
  1088. #: static/misago/js/misago.js:1
  1089. msgid "Change e-mail address"
  1090. msgstr "E-mail adresini değiştir"
  1091. #: static/misago/js/misago.js:1
  1092. msgid "New e-mail"
  1093. msgstr "Yeni e-mail"
  1094. #: static/misago/js/misago.js:1
  1095. msgid "Your current password"
  1096. msgstr "Şimdiki şifren"
  1097. #: static/misago/js/misago.js:1
  1098. msgid "Change e-mail"
  1099. msgstr "Mail adresini değiştir"
  1100. #: static/misago/js/misago.js:1
  1101. msgid "New passwords are different."
  1102. msgstr "Yeni şifren farklı"
  1103. #: static/misago/js/misago.js:1
  1104. msgid "Change password"
  1105. msgstr "Şifreni değiştir"
  1106. #: static/misago/js/misago.js:1
  1107. msgid "New password"
  1108. msgstr "Yeni şifre"
  1109. #: static/misago/js/misago.js:1
  1110. msgid "Repeat password"
  1111. msgstr "Şifreni tekrarla"
  1112. #: static/misago/js/misago.js:1
  1113. msgid "Change email or password"
  1114. msgstr "Mail adresini ve şifreni değiştir"
  1115. #: static/misago/js/misago.js:1
  1116. msgid ""
  1117. "You need to set a password for your account to be able to change your "
  1118. "username or email."
  1119. msgstr ""
  1120. "Kullanıcı adı ve email adresinizi değiştirmek için hesabınıza şifre "
  1121. "koymalısınız."
  1122. #: static/misago/js/misago.js:1
  1123. msgid "Set password"
  1124. msgstr "Şifre koy"
  1125. #: static/misago/js/misago.js:1
  1126. msgid "Change forgotten password"
  1127. msgstr "Unutulan şifreni değiştir"
  1128. #: static/misago/js/misago.js:1
  1129. msgid "Menu"
  1130. msgstr ""
  1131. #: static/misago/js/misago.js:1
  1132. msgid "Ban details"
  1133. msgstr "Yasaklamak ayrıntıları"
  1134. #: static/misago/js/misago.js:1
  1135. msgid "User-shown ban message"
  1136. msgstr "Kullanıcıya görünen yasaklı ileti"
  1137. #: static/misago/js/misago.js:1
  1138. msgid "Team-shown ban message"
  1139. msgstr "Takım tarafından gösterilen yasaklı ileti"
  1140. #: static/misago/js/misago.js:1
  1141. msgid "This ban expires on %(expires_on)s."
  1142. msgstr "Bu yasak %(expires)s tarihinde sona erecek"
  1143. #: static/misago/js/misago.js:1
  1144. msgid "This ban expires %(expires_on)s."
  1145. msgstr "Bu yasak %(expires)s tarihinde sona erecek"
  1146. #: static/misago/js/misago.js:1
  1147. msgid "This ban has expired."
  1148. msgstr "Bu ban'ın süresi doldu."
  1149. #: static/misago/js/misago.js:1
  1150. msgid "%(username)s's ban is permanent."
  1151. msgstr "%(username)s yasağı kalıcıdır."
  1152. #: static/misago/js/misago.js:1
  1153. msgid "Ban expiration"
  1154. msgstr "Yasak süresi"
  1155. #: static/misago/js/misago.js:1
  1156. msgid "No ban is active at the moment."
  1157. msgstr "Şu anda yasağı etkin olan yok."
  1158. #: static/misago/js/misago.js:1
  1159. msgid "You are not sharing any details with others."
  1160. msgstr "Başkalarıyla herhangi bir ayrıntı paylaşmıyorsunuz."
  1161. #: static/misago/js/misago.js:1
  1162. msgid "%(username)s is not sharing any details with others."
  1163. msgstr "%(username)s başkalarıyla herhangi bir ayrıntı paylaşmıyor."
  1164. #: static/misago/js/misago.js:1
  1165. msgid "Details"
  1166. msgstr "Ayrıntılar"
  1167. #: static/misago/js/misago.js:1
  1168. msgid "Edit"
  1169. msgstr "Düzenle"
  1170. #: static/misago/js/misago.js:1
  1171. msgid "%(username)s's details have been updated."
  1172. msgstr "%(username)skullanıcısının detayları güncellendi."
  1173. #: static/misago/js/misago.js:1
  1174. msgid "Show older activity"
  1175. msgstr "Geçmiş aktiviteyi göster."
  1176. #: static/misago/js/misago.js:1
  1177. msgid "Search..."
  1178. msgstr "Ara..."
  1179. #: static/misago/js/misago.js:1
  1180. msgid "Followers"
  1181. msgstr "Takipçiler"
  1182. #: static/misago/js/misago.js:1
  1183. msgid "Found %(users)s user."
  1184. msgid_plural "Found %(users)s users."
  1185. msgstr[0] "%(users)s kullanıcıları bulundu."
  1186. msgstr[1] "%(users)s kullanıcıları bulundu."
  1187. #: static/misago/js/misago.js:1
  1188. msgid "You have %(users)s follower."
  1189. msgid_plural "You have %(users)s followers."
  1190. msgstr[0] "%(users)s adet takipçin var."
  1191. msgstr[1] "%(users)s adet takipçin var."
  1192. #: static/misago/js/misago.js:1
  1193. msgid "%(username)s has %(users)s follower."
  1194. msgid_plural "%(username)s has %(users)s followers."
  1195. msgstr[0] "%(username)s kullanıcısının %(users)s adet takipçisi var."
  1196. msgstr[1] "%(username)s kullanıcısının %(users)s adet takipçisi var."
  1197. #: static/misago/js/misago.js:1
  1198. msgid "Loading..."
  1199. msgstr "Yükleniyor..."
  1200. #: static/misago/js/misago.js:1
  1201. msgid "Search returned no users matching specified criteria."
  1202. msgstr "Aramada belirtilen kriterlere uyan kullanıcı bulunamadı."
  1203. #: static/misago/js/misago.js:1
  1204. msgid "You have no followers."
  1205. msgstr "Hiç takipçin yok."
  1206. #: static/misago/js/misago.js:1
  1207. msgid "%(username)s has no followers."
  1208. msgstr "%(username)s kullanıcısının hiç takipçisi yok."
  1209. #: static/misago/js/misago.js:1
  1210. msgid "Show more (%(more)s)"
  1211. msgstr "Daha fazlasını gör (%(more)s)"
  1212. #: static/misago/js/misago.js:1
  1213. msgid "Search users..."
  1214. msgstr "Kullanıcı ara..."
  1215. #: static/misago/js/misago.js:1
  1216. msgid "Follows"
  1217. msgstr "Takipler"
  1218. #: static/misago/js/misago.js:1
  1219. msgid "You are following %(users)s user."
  1220. msgid_plural "You are following %(users)s users."
  1221. msgstr[0] "%(users)s adet kullanıcı takip ediyorsun."
  1222. msgstr[1] "%(users)s adet kullanıcı takip ediyorsun."
  1223. #: static/misago/js/misago.js:1
  1224. msgid "%(username)s is following %(users)s user."
  1225. msgid_plural "%(username)s is following %(users)s users."
  1226. msgstr[0] "%(username)s kullanıcısı %(users)s adet kullanıcı takip ediyor."
  1227. msgstr[1] "%(username)s kullanıcısı %(users)s adet kullanıcı takip ediyor."
  1228. #: static/misago/js/misago.js:1
  1229. msgid "You are not following any users."
  1230. msgstr "Hiçbir kullanıcıyı takip etmiyorsun."
  1231. #: static/misago/js/misago.js:1
  1232. msgid "%(username)s is not following any users."
  1233. msgstr "%(username)s herhangi bir kullanıcıyı takip etmiyor."
  1234. #: static/misago/js/misago.js:1
  1235. msgid "Username history"
  1236. msgstr "Kullanıcı adı geçmişi"
  1237. #: static/misago/js/misago.js:1
  1238. msgid "Found %(changes)s username change."
  1239. msgid_plural "Found %(changes)s username changes."
  1240. msgstr[0] "%(changes)s adet kullanıcı adı değişikliği bulundu."
  1241. msgstr[1] "%(changes)s adet kullanıcı adı değişikliği bulundu."
  1242. #: static/misago/js/misago.js:1
  1243. msgid "Your username was changed %(changes)s time."
  1244. msgid_plural "Your username was changed %(changes)s times."
  1245. msgstr[0] "Kullanıcı adınız %(changes)s kez değiştirildi."
  1246. msgstr[1] "Kullanıcı adınız %(changes)s kez değiştirildi."
  1247. #: static/misago/js/misago.js:1
  1248. msgid "%(username)s's username was changed %(changes)s time."
  1249. msgid_plural "%(username)s's username was changed %(changes)s times."
  1250. msgstr[0] "%(username)skullanıcısının adı %(changes)s kez değiştirildi."
  1251. msgstr[1] "%(username)skullanıcısının adı %(changes)s kez değiştirildi."
  1252. #: static/misago/js/misago.js:1
  1253. msgid "Search returned no username changes matching specified criteria."
  1254. msgstr "Aramada belirtilen kriterlere uyan kullanıcı adı bulunamadı."
  1255. #: static/misago/js/misago.js:1
  1256. msgid "%(username)s's username was never changed."
  1257. msgstr "%(username)s kullanıcının adı hiç değişmedi."
  1258. #: static/misago/js/misago.js:1
  1259. msgid "Show older (%(more)s)"
  1260. msgstr "Daha eskisini gör (%(more)s)"
  1261. #: static/misago/js/misago.js:1
  1262. msgid "Search history..."
  1263. msgstr "Geçmişi Ara..."
  1264. #: static/misago/js/misago.js:1
  1265. msgid "Following"
  1266. msgstr "Takip Edilenler"
  1267. #: static/misago/js/misago.js:1
  1268. msgid "Follow"
  1269. msgstr "Takip et"
  1270. #: static/misago/js/misago.js:1
  1271. msgid "Message"
  1272. msgstr "İleti"
  1273. #: static/misago/js/misago.js:1
  1274. msgid "Avatar controls have been changed."
  1275. msgstr "Profil resmi ayarları değiştirildi."
  1276. #: static/misago/js/misago.js:1
  1277. msgid "Lock avatar"
  1278. msgstr "Avatarı kilitle"
  1279. #: static/misago/js/misago.js:1
  1280. msgid ""
  1281. "Locking user avatar will prohibit user from changing his avatar and will "
  1282. "reset his/her avatar to default one."
  1283. msgstr ""
  1284. "Kullanıcı avatarını kilitlemek kullanıcının avatarını değiştirmesini "
  1285. "engeller ve avatarını varsayılan olarak sıfırlar."
  1286. #: static/misago/js/misago.js:1
  1287. msgid "Disallow user from changing avatar"
  1288. msgstr "Kullanıcının avatar değiştirmesine izin verme"
  1289. #: static/misago/js/misago.js:1
  1290. msgid "Allow user to change avatar"
  1291. msgstr "Kullanıcının avatar değiştirmesine izin ver"
  1292. #: static/misago/js/misago.js:1
  1293. msgid "User message"
  1294. msgstr "Kullanıcı ileti"
  1295. #: static/misago/js/misago.js:1
  1296. msgid ""
  1297. "Optional message for user explaining why he/she is prohibited form changing "
  1298. "avatar."
  1299. msgstr ""
  1300. "Kullanıcıya neden avatar değiştirilmesini yasakladığını açıklayan isteğe "
  1301. "bağlı ileti."
  1302. #: static/misago/js/misago.js:1
  1303. msgid "Staff message"
  1304. msgstr "Personel ileti"
  1305. #: static/misago/js/misago.js:1
  1306. msgid ""
  1307. "Optional message for forum team members explaining why user is prohibited "
  1308. "form changing avatar."
  1309. msgstr ""
  1310. "Forum ekibi üyelerine neden kullanıcı avatar değiştirmenin yasak olduğunu "
  1311. "açıklayan isteğe bağlı ileti."
  1312. #: static/misago/js/misago.js:1
  1313. msgid "Close"
  1314. msgstr "Kapat"
  1315. #: static/misago/js/misago.js:1
  1316. msgid "Avatar controls"
  1317. msgstr "Avatar kontrolleri"
  1318. #: static/misago/js/misago.js:1
  1319. msgid "Username has been changed."
  1320. msgstr "Kullanıcı adınız değiştirildi."
  1321. #: static/misago/js/misago.js:1
  1322. msgid ""
  1323. "%(username)s's account, threads, posts and other content has been deleted."
  1324. msgstr ""
  1325. "%(username)skullanıcısının hesabı, konular, iletiler ve diğer içerikleri "
  1326. "silindi."
  1327. #: static/misago/js/misago.js:1
  1328. msgid ""
  1329. "%(username)s's account has been deleted and other content has been hidden."
  1330. msgstr ""
  1331. "%(username)skullanıcısının hesabı silindi ve diğer içerikleri gizlendi."
  1332. #: static/misago/js/misago.js:1
  1333. msgid "Delete %(username)s"
  1334. msgstr "%(username)s sil"
  1335. #: static/misago/js/misago.js:1
  1336. msgid "Please wait... (%(countdown)ss)"
  1337. msgstr "Lütfen bekleyin... (%(countdown)s)"
  1338. #: static/misago/js/misago.js:1
  1339. msgid "User content"
  1340. msgstr "Kullanıcı içeriği"
  1341. #: static/misago/js/misago.js:1
  1342. msgid "Delete together with user's account"
  1343. msgstr "Kullanıcının hesabıyla birlikte sil"
  1344. #: static/misago/js/misago.js:1
  1345. msgid "Hide after deleting user's account"
  1346. msgstr "Kullanıcının hesabını sildikten sonra gizle"
  1347. #: static/misago/js/misago.js:1
  1348. msgid "Return to users list"
  1349. msgstr "Kullanıcı liste sine geri dön"
  1350. #: static/misago/js/misago.js:1
  1351. msgid "Delete user account"
  1352. msgstr "Kullanıcı hesabını sil"
  1353. #: static/misago/js/misago.js:1
  1354. msgid "This user's account has been disabled by administrator."
  1355. msgstr "Bu kullanıcının hesabı yönetici tarafından devre dışı bırakıldı."
  1356. #: static/misago/js/misago.js:1
  1357. msgid "Account disabled"
  1358. msgstr ""
  1359. #: static/misago/js/misago.js:1
  1360. msgid "Options"
  1361. msgstr "Seçenkler"
  1362. #: static/misago/js/misago.js:1
  1363. msgid "You have posted no messages."
  1364. msgstr "Gönderilmiş bir mesaj yok."
  1365. #: static/misago/js/misago.js:1
  1366. msgid "%(username)s posted no messages."
  1367. msgstr "%(username)s kullanıcısının gönderdiği bir mesaj yok."
  1368. #: static/misago/js/misago.js:1
  1369. msgid "You have posted %(posts)s message."
  1370. msgid_plural "You have posted %(posts)s messages."
  1371. msgstr[0] "Gönderilmiş %(posts)s mesajın var."
  1372. msgstr[1] "Gönderilmiş %(posts)s mesajın var."
  1373. #: static/misago/js/misago.js:1
  1374. msgid "%(username)s has posted %(posts)s message."
  1375. msgid_plural "%(username)s has posted %(posts)s messages."
  1376. msgstr[0] "%(username)s kullanıcısının %(posts)s mesajı var."
  1377. msgstr[1] "%(username)s kullanıcısının %(posts)s mesajı var."
  1378. #: static/misago/js/misago.js:1
  1379. msgid "Posts"
  1380. msgstr "İletiler"
  1381. #: static/misago/js/misago.js:1
  1382. msgid "You have no started threads."
  1383. msgstr "Başlatılmış sana ait konular yok."
  1384. #: static/misago/js/misago.js:1
  1385. msgid "%(username)s started no threads."
  1386. msgstr "%(username)s kullanıcısına ait başlatılmış konular yok"
  1387. #: static/misago/js/misago.js:1
  1388. msgid "You have started %(threads)s thread."
  1389. msgid_plural "You have started %(threads)s threads."
  1390. msgstr[0] "Sana ait %(threads)s adet başlatılmış konular var."
  1391. msgstr[1] "Sana ait %(threads)s adet başlatılmış konular var."
  1392. #: static/misago/js/misago.js:1
  1393. msgid "%(username)s has started %(threads)s thread."
  1394. msgid_plural "%(username)s has started %(threads)s threads."
  1395. msgstr[0] "%(username)s adlı kullanıcı %(threads)skonular ını başlattı."
  1396. msgstr[1] "%(username)s adlı kullanıcı %(threads)skonular ını başlattı."
  1397. #: static/misago/js/misago.js:1
  1398. msgid "Threads"
  1399. msgstr "Konular"
  1400. #: static/misago/js/misago.js:1
  1401. msgid "Enter a valid email address."
  1402. msgstr "Geçerli bir e-posta adresi girin."
  1403. #: static/misago/js/misago.js:1
  1404. msgid "Your e-mail address"
  1405. msgstr "E-posta Adresiniz"
  1406. #: static/misago/js/misago.js:1
  1407. msgid "Send link"
  1408. msgstr "Link gönder"
  1409. #: static/misago/js/misago.js:1
  1410. msgid "Activation link was sent to %(email)s"
  1411. msgstr "Aktivasyon linki %(email)s adresinize gönderildi."
  1412. #: static/misago/js/misago.js:1
  1413. msgid "Request another link"
  1414. msgstr "Başka bir link iste"
  1415. #: static/misago/js/misago.js:1
  1416. msgid "Reset password link was sent to %(email)s"
  1417. msgstr "Şifre sıfırlama linki %(email)s adresine gönderildi."
  1418. #: static/misago/js/misago.js:1
  1419. msgid "Activate your account."
  1420. msgstr "Hesabını etkinleştir."
  1421. #: static/misago/js/misago.js:1
  1422. msgid "Your account is inactive."
  1423. msgstr "hesabınız aktif değildir."
  1424. #: static/misago/js/misago.js:1
  1425. msgid "Enter new password."
  1426. msgstr "Yeni şifrenizi giriniz."
  1427. #: static/misago/js/misago.js:1
  1428. msgid "Enter new password"
  1429. msgstr "Yeni şifrenizi giriniz"
  1430. #: static/misago/js/misago.js:1
  1431. msgid "%(username)s, your password has been changed successfully."
  1432. msgstr "%(username)s, şifreniz başarıyla değiştirildi."
  1433. #: static/misago/js/misago.js:1
  1434. msgid "You will have to sign in using new password before continuing."
  1435. msgstr "Devam etmeden önce yeni bir şifre kullanarak oturum açmanız gerekir."
  1436. #: static/misago/js/misago.js:1
  1437. msgid "You have to enter search query."
  1438. msgstr "Arama sorgusu girmelisiniz."
  1439. #: static/misago/js/misago.js:1
  1440. msgid "Search"
  1441. msgstr "Ara"
  1442. #: static/misago/js/misago.js:1
  1443. msgid "Search took %(time)s s to complete"
  1444. msgstr "Arama %(time)s sürede tamamlandı."
  1445. #: static/misago/js/misago.js:1
  1446. msgid "Show more"
  1447. msgstr "Daha fazlasını göster"
  1448. #: static/misago/js/misago.js:1
  1449. msgid "Loading results..."
  1450. msgstr ""
  1451. #: static/misago/js/misago.js:1
  1452. msgid "No threads matching search query have been found."
  1453. msgstr "Arama sorgusu eşleşen konular bulunamadı."
  1454. #: static/misago/js/misago.js:1
  1455. msgid "Enter at least two characters to search threads."
  1456. msgstr "Konular aramak için en az iki karakter girin."
  1457. #: static/misago/js/misago.js:1
  1458. msgid "No users matching search query have been found."
  1459. msgstr "Arama sorgusuyla eşleşen hiçbir kullanıcı bulunamadı."
  1460. #: static/misago/js/misago.js:1
  1461. msgid "Enter at least two characters to search users."
  1462. msgstr "Kullanıcı aramak için en az iki karakter girin."
  1463. #: static/misago/js/misago.js:1
  1464. msgid "Sign in with %(backend)s"
  1465. msgstr "%(backend)s ile giriş yap."
  1466. #: static/misago/js/misago.js:1
  1467. msgid "You need to accept the privacy policy."
  1468. msgstr "Gizlilik ilke sini kabul etmelisiniz."
  1469. #: static/misago/js/misago.js:1
  1470. msgid "Your e-mail address has been verified by %(backend)s."
  1471. msgstr ""
  1472. #: static/misago/js/misago.js:1
  1473. msgid "Complete your details"
  1474. msgstr "Bilgilerini tamamla."
  1475. #: static/misago/js/misago.js:1
  1476. msgid "Username"
  1477. msgstr "Kullanıcı Adı"
  1478. #: static/misago/js/misago.js:1
  1479. msgid "E-mail address"
  1480. msgstr "E-mail adresi"
  1481. #: static/misago/js/misago.js:1
  1482. msgid ""
  1483. "%(username)s, your account has been created but you need to activate it "
  1484. "before you will be able to sign in."
  1485. msgstr ""
  1486. "%(username)s hesabınız oluşturuldu, ancak oturum açabilmeniz için önce "
  1487. "etkinleştirmeniz gerekir."
  1488. #: static/misago/js/misago.js:1
  1489. msgid ""
  1490. "%(username)s, your account has been created but board administrator will "
  1491. "have to activate it before you will be able to sign in."
  1492. msgstr ""
  1493. "%(username)shesabınız oluşturuldu fakat pano yöneticisi oturum açabilmeniz "
  1494. "için onu aktif hale getirmek zorundadır. "
  1495. #: static/misago/js/misago.js:1
  1496. msgid ""
  1497. "%(username)s, your account has been created and you have been signed in to "
  1498. "it."
  1499. msgstr "%(username)s, hesabınız oluşturuldu ve giriş yapıldı."
  1500. #: static/misago/js/misago.js:1
  1501. msgid "Registration completed!"
  1502. msgstr "Kayıt tamamlandı!"
  1503. #: static/misago/js/misago.js:1
  1504. msgid "Return to forum index"
  1505. msgstr "Forum anasayfasına dön."
  1506. #: static/misago/js/misago.js:1
  1507. msgid "You have to enter user name."
  1508. msgstr "Kullanıcı adını girmelisin."
  1509. #: static/misago/js/misago.js:1
  1510. msgid "New participant has been added to thread."
  1511. msgstr "Yeni katılımcı konu'ya eklendi."
  1512. #: static/misago/js/misago.js:1
  1513. msgid "User to add"
  1514. msgstr "Eklenecek kullanıcı"
  1515. #: static/misago/js/misago.js:1
  1516. msgid "Add participant"
  1517. msgstr "Katılımcı ekle"
  1518. #: static/misago/js/misago.js:1
  1519. msgid "Are you sure you want to take over this thread?"
  1520. msgstr "Bu konuyu sonlandırmak istediğinize emin misiniz?"
  1521. #: static/misago/js/misago.js:1
  1522. msgid "Are you sure you want to change thread owner to %(user)s?"
  1523. msgstr ""
  1524. "Konunun yöneticisini 1%(kullanıcı)lar olarak degiştirmek istediğinizden emin"
  1525. " misiniz?"
  1526. #: static/misago/js/misago.js:1
  1527. msgid "%(user)s has been made new thread owner."
  1528. msgstr "1%(kullanıcı)lar bu konuya yönetici atandı."
  1529. #: static/misago/js/misago.js:1
  1530. msgid "Make owner"
  1531. msgstr "Yönetici yap"
  1532. #: static/misago/js/misago.js:1
  1533. msgid "Are you sure you want to leave this thread?"
  1534. msgstr "Bu konudan ayrılmak istediğinize emin misiniz?"
  1535. #: static/misago/js/misago.js:1
  1536. msgid "Are you sure you want to remove %(user)s from this thread?"
  1537. msgstr "1%(kullanıcı)ları bu konudan silmek istediğinize emin misiniz?"
  1538. #: static/misago/js/misago.js:1
  1539. msgid "You have left this thread."
  1540. msgstr "Bu konuyu terkettiniz"
  1541. #: static/misago/js/misago.js:1
  1542. msgid "%(user)s has been removed from this thread."
  1543. msgstr "1%(kullanıcı)lar bu konudan silindi."
  1544. #: static/misago/js/misago.js:1
  1545. msgid "Leave thread"
  1546. msgstr "Konuyu terket"
  1547. #: static/misago/js/misago.js:1
  1548. msgid "Remove"
  1549. msgstr "Sil"
  1550. #: static/misago/js/misago.js:1
  1551. msgid "See profile"
  1552. msgstr "Profili gör"
  1553. #: static/misago/js/misago.js:1
  1554. msgid "Thread owner"
  1555. msgstr "Konu sahibi"
  1556. #: static/misago/js/misago.js:1
  1557. msgid "This thread has %(users)s participant."
  1558. msgid_plural "This thread has %(users)s participants."
  1559. msgstr[0] "Bu konu%(users)s'ların katılımcılarına sahip. "
  1560. msgstr[1] "Bu konu%(users)s'ların katılımcılarına sahip. "
  1561. #: static/misago/js/misago.js:1
  1562. msgctxt "thread poll"
  1563. msgid "%(votes)s vote, %(proc)s% of total."
  1564. msgid_plural "%(votes)s votes, %(proc)s% of total."
  1565. msgstr[0] ""
  1566. msgstr[1] ""
  1567. #: static/misago/js/misago.js:1
  1568. msgctxt "thread poll"
  1569. msgid "You've voted on this choice."
  1570. msgstr ""
  1571. #: static/misago/js/misago.js:1
  1572. msgctxt "thread poll"
  1573. msgid "Poll votes"
  1574. msgstr ""
  1575. #: static/misago/js/misago.js:1
  1576. msgctxt "thread poll"
  1577. msgid "%(votes)s user has voted for this choice."
  1578. msgid_plural "%(votes)s users have voted for this choice."
  1579. msgstr[0] ""
  1580. msgstr[1] ""
  1581. #: static/misago/js/misago.js:1
  1582. msgctxt "thread poll"
  1583. msgid "Vote"
  1584. msgstr ""
  1585. #: static/misago/js/misago.js:1
  1586. msgctxt "thread poll"
  1587. msgid "See votes"
  1588. msgstr ""
  1589. #: static/misago/js/misago.js:1
  1590. msgctxt "thread poll"
  1591. msgid "Edit"
  1592. msgstr ""
  1593. #: static/misago/js/misago.js:1
  1594. msgctxt "thread poll"
  1595. msgid ""
  1596. "Are you sure you want to delete this poll? This action is not reversible."
  1597. msgstr ""
  1598. #: static/misago/js/misago.js:1
  1599. msgctxt "thread poll"
  1600. msgid "Poll has been deleted"
  1601. msgstr ""
  1602. #: static/misago/js/misago.js:1
  1603. msgctxt "thread poll"
  1604. msgid "Delete"
  1605. msgstr ""
  1606. #: static/misago/js/misago.js:1
  1607. msgctxt "thread poll"
  1608. msgid "Started by %(poster)s %(posted_on)s."
  1609. msgstr ""
  1610. #: static/misago/js/misago.js:1
  1611. msgctxt "thread poll"
  1612. msgid "Voting ends %(ends_on)s."
  1613. msgstr ""
  1614. #: static/misago/js/misago.js:1
  1615. msgctxt "thread poll"
  1616. msgid "%(votes)s vote."
  1617. msgid_plural "%(votes)s votes."
  1618. msgstr[0] ""
  1619. msgstr[1] ""
  1620. #: static/misago/js/misago.js:1
  1621. msgctxt "thread poll"
  1622. msgid "Voting is public."
  1623. msgstr ""
  1624. #: static/misago/js/misago.js:1
  1625. msgctxt "thread poll"
  1626. msgid "You can't select any more choices."
  1627. msgstr ""
  1628. #: static/misago/js/misago.js:1
  1629. msgctxt "thread poll"
  1630. msgid "You can select %(choices)s more choice."
  1631. msgid_plural "You can select %(choices)s more choices."
  1632. msgstr[0] ""
  1633. msgstr[1] ""
  1634. #: static/misago/js/misago.js:1
  1635. msgctxt "thread poll"
  1636. msgid "You can change your vote later."
  1637. msgstr ""
  1638. #: static/misago/js/misago.js:1
  1639. msgctxt "thread poll"
  1640. msgid "Votes are final."
  1641. msgstr ""
  1642. #: static/misago/js/misago.js:1
  1643. msgid "You need to select at least one choice"
  1644. msgstr "En az bir seçim yapmanız gerekiyor."
  1645. #: static/misago/js/misago.js:1
  1646. msgid "Your vote has been saved."
  1647. msgstr "Oyunuz kaydedildi."
  1648. #: static/misago/js/misago.js:1
  1649. msgid "Save your vote"
  1650. msgstr "Oyunuzu kaydedin"
  1651. #: static/misago/js/misago.js:1
  1652. msgid "See results"
  1653. msgstr "Sonuçlara bak"
  1654. #: static/misago/js/misago.js:1
  1655. msgctxt "thread poll"
  1656. msgid "Add choice"
  1657. msgstr ""
  1658. #: static/misago/js/misago.js:1
  1659. msgctxt "thread poll"
  1660. msgid "Are you sure you want to remove this choice?"
  1661. msgstr ""
  1662. #: static/misago/js/misago.js:1
  1663. msgctxt "thread poll"
  1664. msgid "Remove this choice"
  1665. msgstr ""
  1666. #: static/misago/js/misago.js:1
  1667. msgctxt "thread poll"
  1668. msgid "Poll choice"
  1669. msgstr ""
  1670. #: static/misago/js/misago.js:1
  1671. msgctxt "thread poll"
  1672. msgid "Are you sure you want to discard changes?"
  1673. msgstr ""
  1674. #: static/misago/js/misago.js:1
  1675. msgctxt "thread poll"
  1676. msgid "Are you sure you want to discard new poll?"
  1677. msgstr ""
  1678. #: static/misago/js/misago.js:1
  1679. msgctxt "thread poll"
  1680. msgid "Poll has been edited."
  1681. msgstr ""
  1682. #: static/misago/js/misago.js:1
  1683. msgctxt "thread poll"
  1684. msgid "Poll has been posted."
  1685. msgstr ""
  1686. #: static/misago/js/misago.js:1
  1687. msgctxt "thread poll"
  1688. msgid "Edit poll"
  1689. msgstr ""
  1690. #: static/misago/js/misago.js:1
  1691. msgctxt "thread poll"
  1692. msgid "Add poll"
  1693. msgstr ""
  1694. #: static/misago/js/misago.js:1
  1695. msgctxt "thread poll"
  1696. msgid "Question and choices"
  1697. msgstr ""
  1698. #: static/misago/js/misago.js:1
  1699. msgctxt "thread poll"
  1700. msgid "Poll question"
  1701. msgstr ""
  1702. #: static/misago/js/misago.js:1
  1703. msgctxt "thread poll"
  1704. msgid "Available choices"
  1705. msgstr ""
  1706. #: static/misago/js/misago.js:1
  1707. msgctxt "thread poll"
  1708. msgid "Voting"
  1709. msgstr ""
  1710. #: static/misago/js/misago.js:1
  1711. msgctxt "thread poll"
  1712. msgid "Poll length"
  1713. msgstr ""
  1714. #: static/misago/js/misago.js:1
  1715. msgctxt "thread poll"
  1716. msgid ""
  1717. "Enter number of days for which voting in this poll should be possible or "
  1718. "zero to run this poll indefinitely."
  1719. msgstr ""
  1720. #: static/misago/js/misago.js:1
  1721. msgctxt "thread poll"
  1722. msgid "Allowed choices"
  1723. msgstr ""
  1724. #: static/misago/js/misago.js:1
  1725. msgctxt "thread poll"
  1726. msgid "Allow vote changes"
  1727. msgstr ""
  1728. #: static/misago/js/misago.js:1
  1729. msgctxt "thread poll"
  1730. msgid "Allow participants to change their vote"
  1731. msgstr ""
  1732. #: static/misago/js/misago.js:1
  1733. msgctxt "thread poll"
  1734. msgid "Don't allow participants to change their vote"
  1735. msgstr ""
  1736. #: static/misago/js/misago.js:1
  1737. msgctxt "thread poll"
  1738. msgid "Cancel"
  1739. msgstr ""
  1740. #: static/misago/js/misago.js:1
  1741. msgctxt "thread poll"
  1742. msgid "Save changes"
  1743. msgstr ""
  1744. #: static/misago/js/misago.js:1
  1745. msgctxt "thread poll"
  1746. msgid "Post poll"
  1747. msgstr ""
  1748. #: static/misago/js/misago.js:1
  1749. msgctxt "thread poll"
  1750. msgid "Make voting public"
  1751. msgstr ""
  1752. #: static/misago/js/misago.js:1
  1753. msgctxt "thread poll"
  1754. msgid ""
  1755. "Making voting public will allow everyone to access detailed list of votes, "
  1756. "showing which users voted for which choices and at which times. This option "
  1757. "can't be changed after poll's creation. Moderators may see voting details "
  1758. "for all polls."
  1759. msgstr ""
  1760. #: static/misago/js/misago.js:1
  1761. msgctxt "thread poll"
  1762. msgid "Votes are public"
  1763. msgstr ""
  1764. #: static/misago/js/misago.js:1
  1765. msgctxt "thread poll"
  1766. msgid "Votes are hidden"
  1767. msgstr ""
  1768. #: static/misago/js/misago.js:1
  1769. msgid "Hide"
  1770. msgstr "Gizle"
  1771. #: static/misago/js/misago.js:1
  1772. msgid "Unhide"
  1773. msgstr "Gizleme"
  1774. #: static/misago/js/misago.js:1
  1775. msgid ""
  1776. "Are you sure you wish to delete this event? This action is not reversible!"
  1777. msgstr "Bu olayı silmek istediğinizden emin misiniz? Bu eylem geri alınamaz!"
  1778. #: static/misago/js/misago.js:1
  1779. msgid "Event has been deleted."
  1780. msgstr "Olay silindi."
  1781. #: static/misago/js/misago.js:1
  1782. msgid "Delete"
  1783. msgstr "Silmek"
  1784. #: static/misago/js/misago.js:1
  1785. msgid "Hidden by %(event_by)s %(event_on)s."
  1786. msgstr "%(event_by)s tarafından %(event_on)s tarihinde gizlendi."
  1787. #: static/misago/js/misago.js:1
  1788. msgid "By %(event_by)s %(event_on)s."
  1789. msgstr "%(event_by)s tarafından %(event_on)s tarihinde."
  1790. #: static/misago/js/misago.js:1
  1791. msgid "Thread has been pinned globally."
  1792. msgstr "Konu iğnelendirildi."
  1793. #: static/misago/js/misago.js:1
  1794. msgid "Thread has been pinned locally."
  1795. msgstr "Konu yerel olarak sabitlendi."
  1796. #: static/misago/js/misago.js:1
  1797. msgid "Thread has been unpinned."
  1798. msgstr "Konu iğnesi kaldırıldı."
  1799. #: static/misago/js/misago.js:1
  1800. msgid "Thread has been approved."
  1801. msgstr "Konu onaylandı."
  1802. #: static/misago/js/misago.js:1
  1803. msgid "Thread has been opened."
  1804. msgstr "Konu açıldı."
  1805. #: static/misago/js/misago.js:1
  1806. msgid "Thread has been closed."
  1807. msgstr "Konu kapatıldı."
  1808. #: static/misago/js/misago.js:1
  1809. msgid "Thread has been revealed."
  1810. msgstr "Konu ortaya çıkarıldı."
  1811. #: static/misago/js/misago.js:1
  1812. msgid "Thread has been made hidden."
  1813. msgstr "Konu gizli hale getirildi."
  1814. #: static/misago/js/misago.js:1
  1815. msgid "Took thread over."
  1816. msgstr "Konu devralındı."
  1817. #: static/misago/js/misago.js:1
  1818. msgid "Owner has left thread. This thread is now closed."
  1819. msgstr "Sahibi konu yu terk etti. Bu konu şu an kapalı."
  1820. #: static/misago/js/misago.js:1
  1821. msgid "Participant has left thread."
  1822. msgstr "Katılımcı konu yu terk etti."
  1823. #: static/misago/js/misago.js:1
  1824. msgid "Thread title has been changed from %(old_title)s."
  1825. msgstr "%(old_title)s konu başlığı değiştirildi."
  1826. #: static/misago/js/misago.js:1
  1827. msgid "Thread has been moved from %(from_category)s."
  1828. msgstr "Konu %(from_category)s taşındı."
  1829. #: static/misago/js/misago.js:1
  1830. msgid "The %(merged_thread)s thread has been merged into this thread."
  1831. msgstr "%(merged_thread)s'nin konu su bu konu da birleştirildi."
  1832. #: static/misago/js/misago.js:1
  1833. msgid "Changed thread owner to %(user)s."
  1834. msgstr "Konu sahibi %(user)s olarak değiştirildi."
  1835. #: static/misago/js/misago.js:1
  1836. msgid "Added %(user)s to thread."
  1837. msgstr "Konu ya %(user)s eklendi."
  1838. #: static/misago/js/misago.js:1
  1839. msgid "Removed %(user)s from thread."
  1840. msgstr "%(user)skonu dan kaldırıldı."
  1841. #: static/misago/js/misago.js:1
  1842. msgid "New event"
  1843. msgstr "Yeni etkinlik"
  1844. #: static/misago/js/misago.js:1
  1845. msgid "%(filetype)s, %(size)s, uploaded by %(uploader)s %(uploaded_on)s."
  1846. msgstr ""
  1847. "%(uploader)s tarafından %(filetype)s, %(size)s yüklendi%(uploaded_on)s."
  1848. #: static/misago/js/misago.js:1
  1849. msgid "Hidden by %(hidden_by)s %(hidden_on)s."
  1850. msgstr "%(hidden_by)s tarafından %(hidden_on)s tarihinde gizlendi."
  1851. #: static/misago/js/misago.js:1
  1852. msgid "This post is hidden. You cannot see its contents."
  1853. msgstr "Bu ileti gizli. İçeriğini göremezsiniz."
  1854. #: static/misago/js/misago.js:1
  1855. msgid "Marked as best answer by you %(marked_on)s."
  1856. msgstr "%(marked_on)s , en iyi cevap olarak işaretlediniz."
  1857. #: static/misago/js/misago.js:1
  1858. msgid "Marked as best answer by %(marked_by)s %(marked_on)s."
  1859. msgstr ""
  1860. #: static/misago/js/misago.js:1
  1861. msgid "This post is hidden. Only users with permission may see its contents."
  1862. msgstr ""
  1863. "Bu ileti gizlenmiştir. Yalnızca izin verilen kullanıcılar içeriğini "
  1864. "görebilir."
  1865. #: static/misago/js/misago.js:1
  1866. msgid ""
  1867. "This post is unapproved. Only users with permission to approve posts and its"
  1868. " author may see its contents."
  1869. msgstr ""
  1870. "Bu ileti onaylanmamıştır. Sadece yayınları ve yazarını onaylama iznine sahip"
  1871. " kullanıcılar iletiler görebilir."
  1872. #: static/misago/js/misago.js:1
  1873. msgid "This post is protected. Only moderators may change it."
  1874. msgstr "Korunan ileti. Yalnızca moderatörler değiştirebilir."
  1875. #: static/misago/js/misago.js:1
  1876. msgid ""
  1877. "Are you sure you want to delete this post? This action is not reversible!"
  1878. msgstr ""
  1879. "Bu ileti yi silmek istediğinizden emin misiniz? Bu eylem geri alınamaz!"
  1880. #: static/misago/js/misago.js:1
  1881. msgid "Post has been deleted."
  1882. msgstr "İleti silindi."
  1883. #: static/misago/js/misago.js:1
  1884. msgid "No users have liked this post."
  1885. msgstr "Bu iletiyi hiç kimse beğenmedi."
  1886. #: static/misago/js/misago.js:1
  1887. msgid "Post Likes"
  1888. msgstr "İletiyi beğenenler"
  1889. #: static/misago/js/misago.js:1
  1890. msgid "%(likes)s like"
  1891. msgid_plural "%(likes)s likes"
  1892. msgstr[0] "%(likes)s beğenmeler"
  1893. msgstr[1] "%(likes)s beğenmeler"
  1894. #: static/misago/js/misago.js:1
  1895. msgid "Liked"
  1896. msgstr "Beğenilen"
  1897. #: static/misago/js/misago.js:1
  1898. msgid "Like"
  1899. msgstr "Beğeni"
  1900. #: static/misago/js/misago.js:1
  1901. msgid "%(user)s likes this."
  1902. msgstr "%(user)sBunu seviyor."
  1903. #: static/misago/js/misago.js:1
  1904. msgid "%(users)s and %(last_user)s"
  1905. msgstr "%(users)s ve %(last_user)s"
  1906. #: static/misago/js/misago.js:1
  1907. msgid "%(users)s like this."
  1908. msgstr "%(users)sbunu beğendi."
  1909. #: static/misago/js/misago.js:1
  1910. msgid "%(users)s and %(likes)s other user like this."
  1911. msgid_plural "%(users)s and %(likes)s other users like this."
  1912. msgstr[0] "%(users)s ve %(likes)s diğer kullanıcılar"
  1913. msgstr[1] "%(users)s ve %(likes)s diğer kullanıcılar"
  1914. #: static/misago/js/misago.js:1
  1915. msgid "Reply"
  1916. msgstr "Cevapla"
  1917. #: static/misago/js/misago.js:1
  1918. msgid "You have to enter link to the other thread."
  1919. msgstr "Diğer konu linkini girmelisin"
  1920. #: static/misago/js/misago.js:1
  1921. msgid "Selected post was moved to the other thread."
  1922. msgstr "Seçilen ileti diğer konu ya taşındı."
  1923. #: static/misago/js/misago.js:1
  1924. msgid "Link to thread you want to move post to"
  1925. msgstr "Taşımak istediğiniz ileti için konu linki ver"
  1926. #: static/misago/js/misago.js:1
  1927. msgid "Move post"
  1928. msgstr "İleti yi taşı"
  1929. #: static/misago/js/misago.js:1
  1930. msgid "Revert post to state from before this edit."
  1931. msgstr "İleti bu düzenlemeden önceki haline döner."
  1932. #: static/misago/js/misago.js:1
  1933. msgid "Revert"
  1934. msgstr "Geriye almak"
  1935. #: static/misago/js/misago.js:1
  1936. msgid "See previous change"
  1937. msgstr "Önceki değişikliği gör"
  1938. #: static/misago/js/misago.js:1
  1939. msgid "See next change"
  1940. msgstr "Sıradaki değişikliği gör."
  1941. #: static/misago/js/misago.js:1
  1942. msgid "By %(edited_by)s %(edited_on)s."
  1943. msgstr "%(edited_by)s tarafından %(edited_on)s tarihinde düzenlendi."
  1944. #: static/misago/js/misago.js:1
  1945. msgid ""
  1946. "Are you sure you with to revert this post to the state from before this "
  1947. "edit?"
  1948. msgstr "Bu ileti düzenlemeden önceki haline döner emin misiniz?"
  1949. #: static/misago/js/misago.js:1
  1950. msgid "Post has been reverted to previous state."
  1951. msgstr "İleti önceki duruma döndü."
  1952. #: static/misago/js/misago.js:1
  1953. msgid "Post edits history"
  1954. msgstr "İleti geçmişini yayımlamak"
  1955. #: static/misago/js/misago.js:1
  1956. msgid "Yes"
  1957. msgstr "evet"
  1958. #: static/misago/js/misago.js:1
  1959. msgid "Selected post was split into new thread."
  1960. msgstr "Seçilen ileti yeni konu için ayrıldı."
  1961. #: static/misago/js/misago.js:1
  1962. msgid "Not pinned"
  1963. msgstr "İğnelenmiş değil"
  1964. #: static/misago/js/misago.js:1
  1965. msgid "Pinned locally"
  1966. msgstr "Yerel olarak sabitlenmiş"
  1967. #: static/misago/js/misago.js:1
  1968. msgid "Thread weight"
  1969. msgstr "Konu ağırlığı"
  1970. #: static/misago/js/misago.js:1
  1971. msgid "Hide thread"
  1972. msgstr "Gizli konu"
  1973. #: static/misago/js/misago.js:1
  1974. msgid "Close thread"
  1975. msgstr "Kapalı konu"
  1976. #: static/misago/js/misago.js:1
  1977. msgid "Thread title"
  1978. msgstr "Konu başlığı"
  1979. #: static/misago/js/misago.js:1
  1980. msgid "Category"
  1981. msgstr "Bölüm"
  1982. #: static/misago/js/misago.js:1
  1983. msgid "Split post"
  1984. msgstr "Bölünmüş ileti"
  1985. #: static/misago/js/misago.js:1
  1986. msgid "You can't move this post at the moment."
  1987. msgstr "Bu ileti şu anda taşınamaz."
  1988. #: static/misago/js/misago.js:1
  1989. msgid "Split post into new thread"
  1990. msgstr "yeni bir konu için ileti böl"
  1991. #: static/misago/js/misago.js:1
  1992. msgid "Permament link to this post:"
  1993. msgstr "Bu ileti için kalıcı bağlantı:"
  1994. #: static/misago/js/misago.js:1
  1995. msgid "Permament link"
  1996. msgstr "Kalıcı bağlantı"
  1997. #: static/misago/js/misago.js:1
  1998. msgid "Mark as best answer"
  1999. msgstr "En iyi cevap olarak işaretle"
  2000. #: static/misago/js/misago.js:1
  2001. msgid "Unmark best answer"
  2002. msgstr "En iyi cevap işaretini kaldır"
  2003. #: static/misago/js/misago.js:1
  2004. msgid "This post was edited %(edits)s time."
  2005. msgid_plural "This post was edited %(edits)s times."
  2006. msgstr[0] "Bu ileti %(edits)s tarihinde düzenlendi."
  2007. msgstr[1] "Bu ileti %(edits)s tarihinde düzenlendi."
  2008. #: static/misago/js/misago.js:1
  2009. msgid "Changes history"
  2010. msgstr "Geçmişi değiştirir"
  2011. #: static/misago/js/misago.js:1
  2012. msgid "Approve"
  2013. msgstr "Onayla"
  2014. #: static/misago/js/misago.js:1
  2015. msgid "Move"
  2016. msgstr "Taşı"
  2017. #: static/misago/js/misago.js:1
  2018. msgid "Split"
  2019. msgstr "Ayır"
  2020. #: static/misago/js/misago.js:1
  2021. msgid "Protect"
  2022. msgstr "Koru"
  2023. #: static/misago/js/misago.js:1
  2024. msgid "Remove protection"
  2025. msgstr "Korumayı kaldır"
  2026. #: static/misago/js/misago.js:1
  2027. msgid "New post"
  2028. msgstr "Yeni ileti"
  2029. #: static/misago/js/misago.js:1
  2030. msgid "New"
  2031. msgstr "Yeni"
  2032. #: static/misago/js/misago.js:1
  2033. msgid "edited %(edits)s time"
  2034. msgid_plural "edited %(edits)s times"
  2035. msgstr[0] "%(edits)s defa düzenlendi."
  2036. msgstr[1] "%(edits)s defa düzenlendi."
  2037. #: static/misago/js/misago.js:1
  2038. msgid "%(edits)s edit"
  2039. msgid_plural "%(edits)s edits"
  2040. msgstr[0] "%(edits)s düzenleme"
  2041. msgstr[1] "%(edits)s düzenleme"
  2042. #: static/misago/js/misago.js:1
  2043. msgid "This post is protected and may not be edited."
  2044. msgstr "Bu korunan bir ileti ve düzenlenmez."
  2045. #: static/misago/js/misago.js:1
  2046. msgid "protected"
  2047. msgstr "korunan"
  2048. #: static/misago/js/misago.js:1
  2049. msgid "Thread author"
  2050. msgstr ""
  2051. #: static/misago/js/misago.js:1
  2052. msgid "Started on: %(timestamp)s"
  2053. msgstr ""
  2054. #: static/misago/js/misago.js:1
  2055. msgid "Change title"
  2056. msgstr "Başlığı değiştir"
  2057. #: static/misago/js/misago.js:1
  2058. msgid "Thread has been merged with other one."
  2059. msgstr "Konu, başka bir konu ile birleştirildi."
  2060. #: static/misago/js/misago.js:1
  2061. msgid "Link to thread you want to merge with"
  2062. msgstr "Birleştirmek istediğiniz konu linkini ver"
  2063. #: static/misago/js/misago.js:1
  2064. msgid ""
  2065. "Merge will delete current thread and move its contents to the thread "
  2066. "specified here."
  2067. msgstr ""
  2068. "Birleştirme yapılırken geçerli konu silinir ve burada belirtilen konu "
  2069. "içeriğine taşınır."
  2070. #: static/misago/js/misago.js:1
  2071. msgid "Merge thread"
  2072. msgstr "Birleştirilmiş konu"
  2073. #: static/misago/js/misago.js:1
  2074. msgid "Thread has been moved."
  2075. msgstr "Konu taşındı."
  2076. #: static/misago/js/misago.js:1
  2077. msgid "New category"
  2078. msgstr "Yeni bölüm"
  2079. #: static/misago/js/misago.js:1
  2080. msgid "Move thread"
  2081. msgstr "Konu taşı"
  2082. #: static/misago/js/misago.js:1
  2083. msgid "You can't move this thread at the moment."
  2084. msgstr "Bu konu şu anda taşınamaz."
  2085. #: static/misago/js/misago.js:1
  2086. msgid "Thread has been made visible."
  2087. msgstr "Konu görülür hale getirildi."
  2088. #: static/misago/js/misago.js:1
  2089. msgid "Are you sure you want to delete this thread?"
  2090. msgstr "Bu konu yu silmek istediğinizden emin misiniz?"
  2091. #: static/misago/js/misago.js:1
  2092. msgid "Thread has been deleted."
  2093. msgstr "Konu silindi."
  2094. #: static/misago/js/misago.js:1
  2095. msgid "Pin globally"
  2096. msgstr "Küresel olarak sabitlenmiş"
  2097. #: static/misago/js/misago.js:1
  2098. msgid "Pin locally"
  2099. msgstr "Yerel olarak sabitlenmiş"
  2100. #: static/misago/js/misago.js:1
  2101. msgid "Unpin"
  2102. msgstr "Sabitlemeyi kaldır."
  2103. #: static/misago/js/misago.js:1
  2104. msgid "Merge"
  2105. msgstr "kaynaşmak"
  2106. #: static/misago/js/misago.js:1
  2107. msgid "Open"
  2108. msgstr "Açık"
  2109. #: static/misago/js/misago.js:1
  2110. msgid "Thread options"
  2111. msgstr ""
  2112. #: static/misago/js/misago.js:1
  2113. msgid "E-mail"
  2114. msgstr "E-posta"
  2115. #: static/misago/js/misago.js:1
  2116. msgid "Enabled"
  2117. msgstr "İzin Ver"
  2118. #: static/misago/js/misago.js:1
  2119. msgid "Disabled"
  2120. msgstr "çevrimdışı"
  2121. #: static/misago/js/misago.js:1
  2122. msgid "Unsubscribe"
  2123. msgstr "Abonelikten Çık"
  2124. #: static/misago/js/misago.js:1
  2125. msgid "Subscribe"
  2126. msgstr "abone"
  2127. #: static/misago/js/misago.js:1
  2128. msgid "Subscribe with e-mail"
  2129. msgstr "E-posta ile abone ol"
  2130. #: static/misago/js/misago.js:1
  2131. msgid "Private threads"
  2132. msgstr "Özel Konular"
  2133. #: static/misago/js/misago.js:1
  2134. msgid "Go to first page"
  2135. msgstr "İlk sayfaya git"
  2136. #: static/misago/js/misago.js:1
  2137. msgid "Go to previous page"
  2138. msgstr "Önceki sayfaya git"
  2139. #: static/misago/js/misago.js:1
  2140. msgid "Go to next page"
  2141. msgstr "Bir sonraki sayfaya git"
  2142. #: static/misago/js/misago.js:1
  2143. msgid "Go to last page"
  2144. msgstr "Son sayfaya git"
  2145. #: static/misago/js/misago.js:1
  2146. msgid "There is %(more)s more post in this thread."
  2147. msgid_plural "There are %(more)s more posts in this thread."
  2148. msgstr[0] "Bu konu içinde %(more)s taneden daha fazla iletiler mevcut."
  2149. msgstr[1] "Bu konu içinde %(more)s taneden daha fazla iletiler mevcut."
  2150. #: static/misago/js/misago.js:1
  2151. msgid "There are no more posts in this thread."
  2152. msgstr "Bu konu daki başka iletiler yok."
  2153. #: static/misago/js/misago.js:1
  2154. msgid "Moderation"
  2155. msgstr "Moderasyon"
  2156. #: static/misago/js/misago.js:1
  2157. msgid "One or more posts could not be changed:"
  2158. msgstr "Bir veya daha fazla iletiler değiştirilemedi:"
  2159. #: static/misago/js/misago.js:1
  2160. msgid "%(username)s on %(posted_on)s"
  2161. msgstr "%(posted_on)s'de%(username)s"
  2162. #: static/misago/js/misago.js:1
  2163. msgid ""
  2164. "Are you sure you want to merge selected posts? This action is not "
  2165. "reversible!"
  2166. msgstr ""
  2167. "Seçilen iletiler i birleştirmek istediğinizden emin misiniz? Bu eylem geri "
  2168. "alınamaz!"
  2169. #: static/misago/js/misago.js:1
  2170. msgid ""
  2171. "Are you sure you want to delete selected posts? This action is not "
  2172. "reversible!"
  2173. msgstr ""
  2174. "Seçilen iletileri silmek istediğinizden emin misiniz? Bu eylem geri "
  2175. "alınamaz!"
  2176. #: static/misago/js/misago.js:1
  2177. msgid "Selected posts were moved to the other thread."
  2178. msgstr "Seçilen iletiler diğer bir konu ya taşındı."
  2179. #: static/misago/js/misago.js:1
  2180. msgid "Link to thread you want to move posts to"
  2181. msgstr "Taşımak istediğiniz iletiler için konu linki ver"
  2182. #: static/misago/js/misago.js:1
  2183. msgid "Move posts"
  2184. msgstr "İletiler i taşı"
  2185. #: static/misago/js/misago.js:1
  2186. msgid "Selected posts were split into new thread."
  2187. msgstr "Seçilen iletiler yeni konu için ayrıldı."
  2188. #: static/misago/js/misago.js:1
  2189. msgid "Split posts"
  2190. msgstr "yazıları ayırmak"
  2191. #: static/misago/js/misago.js:1
  2192. msgid "You can't move selected posts at the moment."
  2193. msgstr "Şu anda seçili iletiler taşınamaz."
  2194. #: static/misago/js/misago.js:1
  2195. msgid "Split posts into new thread"
  2196. msgstr "Yeni bir konu için iletiler bölünsün"
  2197. #: static/misago/js/misago.js:1
  2198. msgid "Unprotect"
  2199. msgstr "Korumalı değil"
  2200. #: static/misago/js/misago.js:1
  2201. msgid "Posts options"
  2202. msgstr "İletiler in ayarları"
  2203. #: static/misago/js/misago.js:1
  2204. msgid "Add poll"
  2205. msgstr "Anket ekle"
  2206. #: static/misago/js/misago.js:1
  2207. msgid "Shortcuts"
  2208. msgstr ""
  2209. #: static/misago/js/misago.js:1
  2210. msgid "Go to new post"
  2211. msgstr ""
  2212. #: static/misago/js/misago.js:1
  2213. msgid "Go to best answer"
  2214. msgstr "En iyi cevaba git."
  2215. #: static/misago/js/misago.js:1
  2216. msgid "Go to unapproved post"
  2217. msgstr ""
  2218. #: static/misago/js/misago.js:1
  2219. msgid "Go to last post"
  2220. msgstr "Son yazılan ileti göster"
  2221. #: static/misago/js/misago.js:1
  2222. msgid "Threads moderation"
  2223. msgstr "Konular moderasyonu"
  2224. #: static/misago/js/misago.js:1
  2225. msgid "One or more threads could not be deleted:"
  2226. msgstr "Bir veya daha fazla konular silinemedi:"
  2227. #: static/misago/js/misago.js:1
  2228. msgid ""
  2229. "You can't move threads because there are no categories you are allowed to "
  2230. "move them to."
  2231. msgstr ""
  2232. "Konular taşınamaz çünkü onları taşımanıza izin verilen kategori yoktur."
  2233. #: static/misago/js/misago.js:1
  2234. msgid ""
  2235. "You need permission to start threads in category to be able to merge threads"
  2236. " to it."
  2237. msgstr ""
  2238. "Konular ı birleştirmek için bölüm içindeki konular a başlatma izni almanız "
  2239. "gerekir."
  2240. #: static/misago/js/misago.js:1
  2241. msgid "Selected threads were moved."
  2242. msgstr "Seçilen konular taşındı."
  2243. #: static/misago/js/misago.js:1
  2244. msgid "Move threads"
  2245. msgstr "Konular taşı"
  2246. #: static/misago/js/misago.js:1
  2247. msgid ""
  2248. "You need permission to start threads in category to be able to move threads "
  2249. "to it."
  2250. msgstr ""
  2251. "Konular ı taşımak için bölüm içindeki konular a başlatma izni almanız "
  2252. "gerekir."
  2253. #: static/misago/js/misago.js:1
  2254. msgid "Selected threads were pinned globally."
  2255. msgstr "Seçilen konular herkese sabitlendi."
  2256. #: static/misago/js/misago.js:1
  2257. msgid "Selected threads were pinned locally."
  2258. msgstr "Seçilen konular yerele sabitlendi."
  2259. #: static/misago/js/misago.js:1
  2260. msgid "Selected threads were unpinned."
  2261. msgstr "Seçilen konular ın sabitlenmesi kaldırıldı."
  2262. #: static/misago/js/misago.js:1
  2263. msgid "Selected threads were approved."
  2264. msgstr "Seçilen konular onaylandı."
  2265. #: static/misago/js/misago.js:1
  2266. msgid "Selected threads were opened."
  2267. msgstr "Seçilen konular açıldı."
  2268. #: static/misago/js/misago.js:1
  2269. msgid "Selected threads were closed."
  2270. msgstr "Seçilen konular kapatıldı."
  2271. #: static/misago/js/misago.js:1
  2272. msgid "Selected threads were unhidden."
  2273. msgstr "Seçilen konular üzerindeki gizleme kaldırıldı."
  2274. #: static/misago/js/misago.js:1
  2275. msgid "Selected threads were hidden."
  2276. msgstr "Seçilen konular gizlendi."
  2277. #: static/misago/js/misago.js:1
  2278. msgid "You don't have permission to merge this thread with others."
  2279. msgstr "Bu konu için başkalarıyla birleştirme izniniz yok."
  2280. #: static/misago/js/misago.js:1
  2281. msgid "You have to select at least two threads to merge."
  2282. msgstr "Birleştirmek için en az iki konular seçmeniz gerekiyor."
  2283. #: static/misago/js/misago.js:1
  2284. msgid "Are you sure you want to delete selected threads?"
  2285. msgstr "Seçili konular ı silmek istediğinizden emin misiniz?"
  2286. #: static/misago/js/misago.js:1
  2287. msgid "Selected threads were deleted."
  2288. msgstr "Seçilen konular silindi."
  2289. #: static/misago/js/misago.js:1
  2290. msgid "Select all"
  2291. msgstr "Tümünü seç"
  2292. #: static/misago/js/misago.js:1
  2293. msgid "Select none"
  2294. msgstr "Birini seç"
  2295. #: static/misago/js/misago.js:1
  2296. msgid "Pin threads globally"
  2297. msgstr "Herkese sabitlenmiş konular"
  2298. #: static/misago/js/misago.js:1
  2299. msgid "Pin threads locally"
  2300. msgstr "Yerele sabitlenmiş konular"
  2301. #: static/misago/js/misago.js:1
  2302. msgid "Unpin threads"
  2303. msgstr "Sabitlenmesi kaldırılmış konular"
  2304. #: static/misago/js/misago.js:1
  2305. msgid "Approve threads"
  2306. msgstr "Konular onayla"
  2307. #: static/misago/js/misago.js:1
  2308. msgid "Open threads"
  2309. msgstr "Konular Açık"
  2310. #: static/misago/js/misago.js:1
  2311. msgid "Close threads"
  2312. msgstr "Kapalı konular"
  2313. #: static/misago/js/misago.js:1
  2314. msgid "Unhide threads"
  2315. msgstr "Gizlenmeyen konular"
  2316. #: static/misago/js/misago.js:1
  2317. msgid "Hide threads"
  2318. msgstr "Gizlenmiş konular"
  2319. #: static/misago/js/misago.js:1
  2320. msgid "Delete threads"
  2321. msgstr "Silinmiş konular"
  2322. #: static/misago/js/misago.js:1
  2323. msgid "All categories"
  2324. msgstr ""
  2325. #: static/misago/js/misago.js:1
  2326. msgid "All subcategories"
  2327. msgstr ""
  2328. #: static/misago/js/misago.js:1
  2329. msgid "Start thread"
  2330. msgstr "Konu başlat"
  2331. #: static/misago/js/misago.js:1
  2332. msgid "Why not start one yourself?"
  2333. msgstr "Neden kendiniz başlatmıyorsunuz?"
  2334. #: static/misago/js/misago.js:1
  2335. msgid "There are no threads on this forum... yet!"
  2336. msgstr "Bu forumda konular mevcut değil... henüz!"
  2337. #: static/misago/js/misago.js:1
  2338. msgid "There are no threads in this category."
  2339. msgstr "Bu bölüm de konular yok."
  2340. #: static/misago/js/misago.js:1
  2341. msgid "No threads matching specified criteria were found."
  2342. msgstr "Belirtilen kriterlere uyan konular bulunamadı."
  2343. #: static/misago/js/misago.js:1
  2344. msgid "Last activity: %(timestamp)s"
  2345. msgstr ""
  2346. #: static/misago/js/misago.js:1
  2347. msgid "No new posts"
  2348. msgstr ""
  2349. #: static/misago/js/misago.js:1
  2350. msgid "New posts"
  2351. msgstr "Yeni iletiler"
  2352. #: static/misago/js/misago.js:1
  2353. msgid "Last post by: %(poster)s"
  2354. msgstr ""
  2355. #: static/misago/js/misago.js:1
  2356. msgid "Subscribe with alert"
  2357. msgstr ""
  2358. #: static/misago/js/misago.js:1
  2359. msgid "Subscribed to e-mails"
  2360. msgstr ""
  2361. #: static/misago/js/misago.js:1
  2362. msgid "Subscribed to alerts"
  2363. msgstr ""
  2364. #: static/misago/js/misago.js:1
  2365. msgid "Not subscribed"
  2366. msgstr ""
  2367. #: static/misago/js/misago.js:1
  2368. msgid "There is %(threads)s new or updated thread. Click here to show it."
  2369. msgid_plural ""
  2370. "There are %(threads)s new or updated threads. Click here to show them."
  2371. msgstr[0] ""
  2372. msgstr[1] ""
  2373. #: static/misago/js/misago.js:1
  2374. msgid ""
  2375. "Private threads are threads which only those that started them and those "
  2376. "they have invited may see and participate in."
  2377. msgstr ""
  2378. "Özel konular, sadece onları başlatan ve katılmak için davet edilmiş "
  2379. "olanların görebileceği konular demektir."
  2380. #: static/misago/js/misago.js:1
  2381. msgid "You aren't participating in any private threads."
  2382. msgstr "Özel konular, katılamazsın."
  2383. #: static/misago/js/misago.js:1
  2384. msgid "All"
  2385. msgstr "Tümü"
  2386. #: static/misago/js/misago.js:1
  2387. msgid "All threads"
  2388. msgstr "Tüm konular"
  2389. #: static/misago/js/misago.js:1
  2390. msgid "My"
  2391. msgstr "Benim"
  2392. #: static/misago/js/misago.js:1
  2393. msgid "My threads"
  2394. msgstr "Benim konular"
  2395. #: static/misago/js/misago.js:1
  2396. msgid "New threads"
  2397. msgstr "Yeni Konular"
  2398. #: static/misago/js/misago.js:1
  2399. msgid "Unread"
  2400. msgstr "Okunmamış"
  2401. #: static/misago/js/misago.js:1
  2402. msgid "Unread threads"
  2403. msgstr "Okunmamış konular"
  2404. #: static/misago/js/misago.js:1
  2405. msgid "Subscribed"
  2406. msgstr "Abone olundu"
  2407. #: static/misago/js/misago.js:1
  2408. msgid "Subscribed threads"
  2409. msgstr "Abone olunan konular"
  2410. #: static/misago/js/misago.js:1
  2411. msgid "Unapproved"
  2412. msgstr "Onaylanmamış"
  2413. #: static/misago/js/misago.js:1
  2414. msgid "Unapproved content"
  2415. msgstr "Onaylanmamış içerik"
  2416. #: static/misago/js/misago.js:1
  2417. msgid "Search returned no results."
  2418. msgstr "Arama sonuç vermiyor."
  2419. #: static/misago/js/misago.js:1
  2420. msgid "See full \"%(provider)s\" results page with %(count)s result."
  2421. msgid_plural "See full \"%(provider)s\" results page with %(count)s results."
  2422. msgstr[0] ""
  2423. "%(count)s sonuçlarıyla birlikte tam \"%(provider)s\" sonuç sayfasını görün."
  2424. msgstr[1] ""
  2425. "%(count)s sonuçlarıyla birlikte tam \"%(provider)s\" sonuç sayfasını görün."
  2426. #: static/misago/js/misago.js:1
  2427. msgid "Posted by %(poster)s on %(posted_on)s in %(category)s."
  2428. msgstr ""
  2429. "%(poster)s tarafından, %(posted_on)s tarihinde %(category)s kategorisinde "
  2430. "yayımlandı."
  2431. #: static/misago/js/misago.js:1
  2432. msgid "%(title)s, joined on %(joined_on)s"
  2433. msgstr "%(title)s, %(joined_on)s'da katıldı."
  2434. #: static/misago/js/misago.js:1
  2435. msgid "Entered password is very weak."
  2436. msgstr "Girilen şifre çok zayıf."
  2437. #: static/misago/js/misago.js:1
  2438. msgid "Entered password is weak."
  2439. msgstr "Girilen şifre zayıf."
  2440. #: static/misago/js/misago.js:1
  2441. msgid "Entered password is average."
  2442. msgstr "Girilen şifre olağan."
  2443. #: static/misago/js/misago.js:1
  2444. msgid "Entered password is strong."
  2445. msgstr "Girilen şifre güçlü"
  2446. #: static/misago/js/misago.js:1
  2447. msgid "Entered password is very strong."
  2448. msgstr "Girilen şifre çok güçlü."
  2449. #: static/misago/js/misago.js:1
  2450. msgid "Register"
  2451. msgstr "Kayıt Ol"
  2452. #: static/misago/js/misago.js:1
  2453. msgid "Join with %(site)s"
  2454. msgstr "%(site)s ile katıl."
  2455. #: static/misago/js/misago.js:1
  2456. msgid "Or create forum account:"
  2457. msgstr "Veya forum hesabı oluştur:"
  2458. #: static/misago/js/misago.js:1
  2459. msgid "Register account"
  2460. msgstr "Hesabı Kaydet"
  2461. #: static/misago/js/misago.js:1
  2462. msgid ""
  2463. "We have sent an e-mail to %(email)s with link that you have to click to "
  2464. "activate your account."
  2465. msgstr ""
  2466. "Hesabınızı aktifleştirmek için gerekli linki %(email)s adresinize e-posta "
  2467. "yolladık."
  2468. #: static/misago/js/misago.js:1
  2469. msgid "We will send an e-mail to %(email)s when this takes place."
  2470. msgstr "Bu gerçekleştiğinde %(email)sadresinize e-posta göndereceğiz."
  2471. #: static/misago/js/misago.js:1
  2472. msgid "Registration complete"
  2473. msgstr "Kayıt tamamlandı."
  2474. #: static/misago/js/misago.js:1
  2475. msgid "New registrations are currently disabled."
  2476. msgstr "Yeni kullanıcı kayıtları şu anda devde dışıdır."
  2477. #: static/misago/js/misago.js:1
  2478. msgid "Registration is currently unavailable due to an error."
  2479. msgstr "Kayıt şu anda bir hata nedeniyle kullanılamıyor."
  2480. #: static/misago/js/misago.js:1
  2481. msgid "You are browsing as guest."
  2482. msgstr "Misafir olarak geziyorsun."
  2483. #: static/misago/js/misago.js:1
  2484. msgid "Sign in or register to start and participate in discussions."
  2485. msgstr ""
  2486. "Tartışmaya katılmak ve tartışma başlatmak için oturum açın veya kayıt olun."
  2487. #: static/misago/js/misago.js:1
  2488. msgid "Download my Gravatar"
  2489. msgstr "Gravatar'ımı indir"
  2490. #: static/misago/js/misago.js:1
  2491. msgid "Re-crop uploaded image"
  2492. msgstr "Yüklenen resmi tekrar boyutlandır"
  2493. #: static/misago/js/misago.js:1
  2494. msgid "Upload new image"
  2495. msgstr "Yeni resim yükle"
  2496. #: static/misago/js/misago.js:1
  2497. msgid "Pick avatar from gallery"
  2498. msgstr "Galeriden avatar'ını al"
  2499. #: static/misago/js/misago.js:1
  2500. msgid "Generate my individual avatar"
  2501. msgstr "Avatarımı oluştur"
  2502. #: static/misago/js/misago.js:1
  2503. msgid "Set avatar"
  2504. msgstr "Avatarı ayarla"
  2505. #: static/misago/js/misago.js:1
  2506. msgid "Crop image"
  2507. msgstr "Resmi kırp"
  2508. #: static/misago/js/misago.js:1
  2509. msgid "Your image has been uploaded and you may now crop it."
  2510. msgstr "Resminiz yüklendi, artık resminizi kırpabilirsiniz."
  2511. #: static/misago/js/misago.js:1
  2512. msgid "Selected file is too big. (%(filesize)s)"
  2513. msgstr "Seçilen dosya boyutu çok büyük. (%(filesize)s) "
  2514. #: static/misago/js/misago.js:1
  2515. msgid "Selected file type is not supported."
  2516. msgstr "Seçilen dosyanın uzantısı desteklenmiyor."
  2517. #: static/misago/js/misago.js:1
  2518. msgid "%(files)s files smaller than %(limit)s"
  2519. msgstr "%(files)s tane dosya %(limit)s limitinden daha küçük"
  2520. #: static/misago/js/misago.js:1
  2521. msgid "Select file"
  2522. msgstr "Dosya seç"
  2523. #: static/misago/js/misago.js:1
  2524. msgid "%(progress)s % complete"
  2525. msgstr "% %(progress)s tamamlandı"
  2526. #: static/misago/js/misago.js:1
  2527. msgid "Save choice"
  2528. msgstr "Değişiklikleri Kaydet"
  2529. #: static/misago/js/misago.js:1
  2530. msgid "Select avatar"
  2531. msgstr "Varsayılan Avatar"
  2532. #: static/misago/js/misago.js:1
  2533. msgid "Change your avatar"
  2534. msgstr "Avatarını değiştir"
  2535. #: static/misago/js/misago.js:1
  2536. msgid "See your profile"
  2537. msgstr "Profil Gör"
  2538. #: static/misago/js/misago.js:1
  2539. msgid "Change options"
  2540. msgstr "Seçenekleri değiştir"
  2541. #: static/misago/js/misago.js:1
  2542. msgid "Change avatar"
  2543. msgstr "Avatarı değiştir"
  2544. #: static/misago/js/misago.js:1
  2545. msgid "Log out"
  2546. msgstr "Çıkış yap"
  2547. #: static/misago/js/misago.js:1
  2548. msgid "You have unread private threads!"
  2549. msgstr "Okunmamış gizli konular ınız var !"
  2550. #: static/misago/js/misago.js:1
  2551. msgid "No users have posted any new messages during last %(days)s days."
  2552. msgstr "Hiçbir kullanıcı son %(days)s gün içinde yeni mesaj göndermedi."
  2553. #: static/misago/js/misago.js:1
  2554. msgid "Rank"
  2555. msgstr "Rütbe"
  2556. #: static/misago/js/misago.js:1
  2557. msgid "Ranked posts"
  2558. msgstr "Rütbeli iletiler"
  2559. #: static/misago/js/misago.js:1
  2560. msgid "Total posts"
  2561. msgstr "Toplam iletiler"
  2562. #: static/misago/js/misago.js:1
  2563. msgid "%(posters)s top poster from last %(days)s days."
  2564. msgid_plural "%(posters)s top posters from last %(days)s days."
  2565. msgstr[0] "Geçmiş %(days)s günün en iyi yayımcısı,%(posters)s"
  2566. msgstr[1] "Geçmiş %(days)s günün en iyi yayımcıları, %(posters)s"
  2567. #: static/misago/js/misago.js:1
  2568. msgid "Users"
  2569. msgstr "Kullanıcılar"
  2570. #: static/misago/js/misago.js:1
  2571. msgid "There is %(more)s more member with this role."
  2572. msgid_plural "There are %(more)s more members with this role."
  2573. msgstr[0] "Bu sıfat ile birlikte %(more)s taneden daha fazla üye var."
  2574. msgstr[1] "Bu sıfat ile birlikte %(more)s taneden daha fazla üye var."
  2575. #: static/misago/js/misago.js:1
  2576. msgid "There are no more members with this role."
  2577. msgstr "Bu sıfat ile hiçbir üye yoktur."
  2578. #: static/misago/js/misago.js:1
  2579. msgid "There are no users with this rank at the moment."
  2580. msgstr "Şu anda bu rütbeyle bir kullanıcı yoktur."
  2581. #: static/misago/js/misago.js:1
  2582. msgid "Lost connection with application."
  2583. msgstr "Uygulamayla bağlantı kesildi."
  2584. #: static/misago/js/misago.js:1
  2585. msgid "Action link is invalid."
  2586. msgstr "Aktivasyon linki geçersizdir."
  2587. #: static/misago/js/misago.js:1
  2588. msgid "Unknown error has occured."
  2589. msgstr "Bilinmeyen bir hata oluştu."
  2590. #: static/misago/js/misago.js:1
  2591. msgid "Upload was rejected by server as too large."
  2592. msgstr "Yükleme çok büyük sunucu tarafından reddedildi."
  2593. #: static/misago/js/misago.js:1
  2594. msgid "Failed to load CAPTCHA."
  2595. msgstr "CAPTCHA yüklemesi başarısız."
  2596. #: static/misago/js/misago.js:1
  2597. msgid "Please solve the quick test"
  2598. msgstr "Lütfen hızlı sınama çözün"
  2599. #: static/misago/js/misago.js:1
  2600. msgid "This test helps us prevent automated spam registrations on our site."
  2601. msgstr ""
  2602. "Bu sınama, sitemizdeki otomatik spam kayıtlarını önlememize yardımcı olur."
  2603. #: static/misago/js/misago.js:1
  2604. msgid "page: %(page)s"
  2605. msgstr "sayfa: %(page)s"
  2606. #: static/misago/js/misago.js:1
  2607. msgid "You are already working on other message. Do you want to discard it?"
  2608. msgstr "Zaten başka bir ileti üzerinde çalışıyoruz. Çöpe atmak ister misin?"
  2609. #: static/misago/js/misago.js:1
  2610. msgid "You don't have permission to perform this action."
  2611. msgstr "Bu eylemi gerçekleştirmek için iznin yok."
  2612. #: static/misago/js/misago.js:1
  2613. msgid "This ban is permanent."
  2614. msgstr "Bu ban kalıcıdır."
  2615. #: static/misago/js/misago.js:1
  2616. msgid "You are banned"
  2617. msgstr "Yasaklandin."
  2618. #: static/misago/js/misago.js:1
  2619. msgid "You have to accept the terms of service."
  2620. msgstr "Servis şartlarını kabul etmelisiniz."
  2621. #: static/misago/js/misago.js:1
  2622. msgid "You have to accept the privacy policy."
  2623. msgstr "Gizlilik ilke sini kabul etmelisiniz"
  2624. #: static/misago/js/misago.js:1
  2625. msgid ""
  2626. "Ensure this value has at least %(limit_value)s character (it has "
  2627. "%(show_value)s)."
  2628. msgid_plural ""
  2629. "Ensure this value has at least %(limit_value)s characters (it has "
  2630. "%(show_value)s)."
  2631. msgstr[0] ""
  2632. "Bu değerin en az %(limit_value)s karakterine sahip olduğundan emin olun "
  2633. "(%(show_value)s olmalıdır)."
  2634. msgstr[1] ""
  2635. "Bu değerin en az %(limit_value)s karakterine sahip olduğundan emin olun "
  2636. "(%(show_value)s olmalıdır)."
  2637. #: static/misago/js/misago.js:1
  2638. msgid ""
  2639. "Ensure this value has at most %(limit_value)s character (it has "
  2640. "%(show_value)s)."
  2641. msgid_plural ""
  2642. "Ensure this value has at most %(limit_value)s characters (it has "
  2643. "%(show_value)s)."
  2644. msgstr[0] ""
  2645. "Bu değerin en çok %(limit_value)s karakterine sahip olduğundan emin olun "
  2646. "(%(show_value)s olmalıdır)."
  2647. msgstr[1] ""
  2648. "Bu değerin en çok %(limit_value)s karakterine sahip olduğundan emin olun "
  2649. "(%(show_value)s olmalıdır)."
  2650. #: static/misago/js/misago.js:1
  2651. msgid "Username must be at least %(limit_value)s character long."
  2652. msgid_plural "Username must be at least %(limit_value)s characters long."
  2653. msgstr[0] ""
  2654. "Kullanıcı adı en az %(limit_value)s karakter uzunluğunda olmalıdır."
  2655. msgstr[1] ""
  2656. "Kullanıcı adı en az %(limit_value)s karakter uzunluğunda olmalıdır."
  2657. #: static/misago/js/misago.js:1
  2658. msgid "Username cannot be longer than %(limit_value)s character."
  2659. msgid_plural "Username cannot be longer than %(limit_value)s characters."
  2660. msgstr[0] "Kullanıcı adı %(limit_value)s karakterden uzun olamaz."
  2661. msgstr[1] "Kullanıcı adı %(limit_value)s karakterden uzun olamaz."
  2662. #: static/misago/js/misago.js:1
  2663. msgid "Username can only contain latin alphabet letters and digits."
  2664. msgstr ""
  2665. "Kullanıcı adı sadece latin alfabesindeki harfleri ve rakamları içerebilir."
  2666. #: static/misago/js/misago.js:1
  2667. msgid "Valid password must be at least %(limit_value)s character long."
  2668. msgid_plural ""
  2669. "Valid password must be at least %(limit_value)s characters long."
  2670. msgstr[0] ""
  2671. "Geçerli şifre en az %(limit_value)s karakter uzunluğunda olmalıdır."
  2672. msgstr[1] ""
  2673. "Geçerli şifre en az %(limit_value)s karakter uzunluğunda olmalıdır."
  2674. #: static/misago/js/vendor.js:2
  2675. msgid "<iframe frameborder='0' width='0' height='0'/>"
  2676. msgstr ""
  2677. #: static/misago/js/vendor.js:2
  2678. msgid "<script>"
  2679. msgstr ""
  2680. #: static/misago/js/vendor.js:2
  2681. msgid "<div>"
  2682. msgstr ""