messages.po 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376
  1. # Turkish translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # Arda Kılıçdağı <ardakilicdagi@gmail.com>, 2018
  7. # BouRock, 2020
  8. # Caner Başaran <basaran.caner@gmail.com>, 2014-2016
  9. # FIRST AUTHOR <EMAIL@ADDRESS>, 2014
  10. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  11. # 0xFFD <barann.afsarr@gmail.com>, 2022.
  12. # crazychicken1 <seymaomay1809@gmail.com>, 2022.
  13. # Kayra Uylar <k.uylar@outlook.com>, 2022.
  14. # emirhan <xemirhankoc@gmail.com>, 2023.
  15. # return42 <markus.heiser@darmarit.de>, 2023, 2024.
  16. # plawlost <ceo@plawlabs.org>, 2023.
  17. # Oğuz Ersen <oguz@ersen.moe>, 2024.
  18. # ggnoredo <mail@fahriuzun.com>, 2024.
  19. # return42 <return42@users.noreply.translate.codeberg.org>, 2024, 2025.
  20. # Oğuz Ersen <ersen@users.noreply.translate.codeberg.org>, 2024, 2025.
  21. # Quitaxd <Quitaxd@users.noreply.translate.codeberg.org>, 2024.
  22. # sygmamess <sygmamess@users.noreply.translate.codeberg.org>, 2024, 2025.
  23. # ahmetax <ahmetax@users.noreply.translate.codeberg.org>, 2024, 2025.
  24. # ulsaa <ulsaa@users.noreply.translate.codeberg.org>, 2024, 2025.
  25. # Anonymous <anonymous@users.noreply.translate.codeberg.org>, 2025.
  26. # ggnoredo <ggnoredo@users.noreply.translate.codeberg.org>, 2025.
  27. # plawlost <plawlost@users.noreply.translate.codeberg.org>, 2025.
  28. # akinu <akinu@users.noreply.translate.codeberg.org>, 2025.
  29. # return42 <return42@noreply.codeberg.org>, 2025.
  30. msgid ""
  31. msgstr ""
  32. "Project-Id-Version: searx\n"
  33. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  34. "POT-Creation-Date: 2025-06-23 21:05+0000\n"
  35. "PO-Revision-Date: 2025-07-03 10:26+0000\n"
  36. "Last-Translator: return42 <return42@noreply.codeberg.org>\n"
  37. "Language-Team: Turkish <https://translate.codeberg.org/projects/searxng/"
  38. "searxng/tr/>\n"
  39. "Language: tr\n"
  40. "MIME-Version: 1.0\n"
  41. "Content-Type: text/plain; charset=utf-8\n"
  42. "Content-Transfer-Encoding: 8bit\n"
  43. "Plural-Forms: nplurals=2; plural=(n > 1);\n"
  44. "X-Generator: Weblate 5.11.4\n"
  45. "Generated-By: Babel 2.17.0\n"
  46. #. CONSTANT_NAMES['NO_SUBGROUPING']
  47. #: searx/searxng.msg
  48. msgid "without further subgrouping"
  49. msgstr "daha fazla alt grup olmadan"
  50. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  51. #: searx/searxng.msg
  52. msgid "other"
  53. msgstr "diğer"
  54. #. CATEGORY_NAMES['FILES']
  55. #: searx/searxng.msg
  56. msgid "files"
  57. msgstr "dosyalar"
  58. #. CATEGORY_NAMES['GENERAL']
  59. #: searx/searxng.msg
  60. msgid "general"
  61. msgstr "genel"
  62. #. CATEGORY_NAMES['MUSIC']
  63. #: searx/searxng.msg
  64. msgid "music"
  65. msgstr "müzik"
  66. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  67. #: searx/searxng.msg
  68. msgid "social media"
  69. msgstr "sosyal medya"
  70. #. CATEGORY_NAMES['IMAGES']
  71. #: searx/searxng.msg
  72. msgid "images"
  73. msgstr "görseller"
  74. #. CATEGORY_NAMES['VIDEOS']
  75. #: searx/searxng.msg
  76. msgid "videos"
  77. msgstr "görüntüler"
  78. #. CATEGORY_NAMES['RADIO']
  79. #: searx/engines/radio_browser.py:151 searx/searxng.msg
  80. msgid "radio"
  81. msgstr "radyo"
  82. #. CATEGORY_NAMES['TV']
  83. #: searx/searxng.msg
  84. msgid "tv"
  85. msgstr "televizyon"
  86. #. CATEGORY_NAMES['IT']
  87. #: searx/searxng.msg
  88. msgid "it"
  89. msgstr "bilişim"
  90. #. CATEGORY_NAMES['NEWS']
  91. #: searx/searxng.msg
  92. msgid "news"
  93. msgstr "haberler"
  94. #. CATEGORY_NAMES['MAP']
  95. #: searx/searxng.msg
  96. msgid "map"
  97. msgstr "harita"
  98. #. CATEGORY_NAMES['ONIONS']
  99. #: searx/searxng.msg
  100. msgid "onions"
  101. msgstr "onion lar"
  102. #. CATEGORY_NAMES['SCIENCE']
  103. #: searx/searxng.msg
  104. msgid "science"
  105. msgstr "bilim"
  106. #. CATEGORY_GROUPS['APPS']
  107. #: searx/searxng.msg
  108. msgid "apps"
  109. msgstr "uygulamalar"
  110. #. CATEGORY_GROUPS['DICTIONARIES']
  111. #: searx/searxng.msg
  112. msgid "dictionaries"
  113. msgstr "sözlükler"
  114. #. CATEGORY_GROUPS['LYRICS']
  115. #: searx/searxng.msg
  116. msgid "lyrics"
  117. msgstr "şarkı sözleri"
  118. #. CATEGORY_GROUPS['PACKAGES']
  119. #: searx/searxng.msg
  120. msgid "packages"
  121. msgstr "paketler"
  122. #. CATEGORY_GROUPS['Q_A']
  123. #: searx/searxng.msg
  124. msgid "q&a"
  125. msgstr "soru ve cevap"
  126. #. CATEGORY_GROUPS['REPOS']
  127. #: searx/searxng.msg
  128. msgid "repos"
  129. msgstr "depolar"
  130. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  131. #: searx/searxng.msg
  132. msgid "software wikis"
  133. msgstr "yazılım vikileri"
  134. #. CATEGORY_GROUPS['WEB']
  135. #: searx/searxng.msg
  136. msgid "web"
  137. msgstr "ağ"
  138. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  139. #: searx/searxng.msg
  140. msgid "scientific publications"
  141. msgstr "bilimsel yayınlar"
  142. #. STYLE_NAMES['AUTO']
  143. #: searx/searxng.msg
  144. msgid "auto"
  145. msgstr "otomatik"
  146. #. STYLE_NAMES['LIGHT']
  147. #: searx/searxng.msg
  148. msgid "light"
  149. msgstr "aydınlık"
  150. #. STYLE_NAMES['DARK']
  151. #: searx/searxng.msg
  152. msgid "dark"
  153. msgstr "karanlık"
  154. #. STYLE_NAMES['BLACK']
  155. #: searx/searxng.msg
  156. msgid "black"
  157. msgstr "siyah"
  158. #. BRAND_CUSTOM_LINKS['UPTIME']
  159. #: searx/searxng.msg
  160. msgid "Uptime"
  161. msgstr "Çalışma Süresi"
  162. #. BRAND_CUSTOM_LINKS['ABOUT']
  163. #: searx/searxng.msg searx/templates/simple/base.html:49
  164. msgid "About"
  165. msgstr "Hakkında"
  166. #. WEATHER_TERMS['AVERAGE TEMP.']
  167. #: searx/engines/wttr.py:32 searx/searxng.msg
  168. msgid "Average temp."
  169. msgstr "Ortalama sıcaklık."
  170. #. WEATHER_TERMS['CLOUD COVER']
  171. #: searx/searxng.msg
  172. msgid "Cloud cover"
  173. msgstr "Bulut örtüsü"
  174. #. WEATHER_TERMS['CONDITION']
  175. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  176. #: searx/searxng.msg
  177. msgid "Condition"
  178. msgstr "Durum"
  179. #. WEATHER_TERMS['CURRENT CONDITION']
  180. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  181. #: searx/searxng.msg
  182. msgid "Current condition"
  183. msgstr "Şimdiki durum"
  184. #. WEATHER_TERMS['EVENING']
  185. #: searx/engines/wttr.py:100 searx/searxng.msg
  186. msgid "Evening"
  187. msgstr "Akşam"
  188. #. WEATHER_TERMS['FEELS LIKE']
  189. #: searx/engines/duckduckgo_weather.py:53 searx/engines/wttr.py:59
  190. #: searx/searxng.msg
  191. msgid "Feels like"
  192. msgstr "hissettiren"
  193. #. WEATHER_TERMS['HUMIDITY']
  194. #: searx/engines/duckduckgo_weather.py:64 searx/engines/wttr.py:68
  195. #: searx/searxng.msg searx/templates/simple/answer/weather.html:29
  196. msgid "Humidity"
  197. msgstr "Rutubet"
  198. #. WEATHER_TERMS['MAX TEMP.']
  199. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  200. #: searx/searxng.msg
  201. msgid "Max temp."
  202. msgstr "Max Sıcaklık.."
  203. #. WEATHER_TERMS['MIN TEMP.']
  204. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  205. #: searx/searxng.msg
  206. msgid "Min temp."
  207. msgstr "Min Sıcaklık"
  208. #. WEATHER_TERMS['MORNING']
  209. #: searx/engines/wttr.py:100 searx/searxng.msg
  210. msgid "Morning"
  211. msgstr "Gündüz"
  212. #. WEATHER_TERMS['NIGHT']
  213. #: searx/engines/wttr.py:100 searx/searxng.msg
  214. msgid "Night"
  215. msgstr "Gece"
  216. #. WEATHER_TERMS['NOON']
  217. #: searx/engines/wttr.py:100 searx/searxng.msg
  218. msgid "Noon"
  219. msgstr "Öğlen"
  220. #. WEATHER_TERMS['PRESSURE']
  221. #: searx/searxng.msg searx/templates/simple/answer/weather.html:25
  222. msgid "Pressure"
  223. msgstr "Basınç"
  224. #. WEATHER_TERMS['SUNRISE']
  225. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  226. #: searx/searxng.msg
  227. msgid "Sunrise"
  228. msgstr "gündoğumu"
  229. #. WEATHER_TERMS['SUNSET']
  230. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  231. #: searx/searxng.msg
  232. msgid "Sunset"
  233. msgstr "Gün batımı"
  234. #. WEATHER_TERMS['TEMPERATURE']
  235. #: searx/engines/duckduckgo_weather.py:48 searx/engines/wttr.py:55
  236. #: searx/searxng.msg searx/templates/simple/answer/weather.html:17
  237. msgid "Temperature"
  238. msgstr "Sıcaklık"
  239. #. WEATHER_TERMS['UV INDEX']
  240. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  241. #: searx/searxng.msg
  242. msgid "UV index"
  243. msgstr "UV Endeksi"
  244. #. WEATHER_TERMS['VISIBILITY']
  245. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  246. #: searx/searxng.msg
  247. msgid "Visibility"
  248. msgstr "Görünürlük"
  249. #. WEATHER_TERMS['WIND']
  250. #: searx/engines/duckduckgo_weather.py:58 searx/engines/wttr.py:62
  251. #: searx/searxng.msg searx/templates/simple/answer/weather.html:23
  252. msgid "Wind"
  253. msgstr "Rüzgâr"
  254. #. WEATHER_CONDITIONS
  255. #: searx/searxng.msg
  256. msgid "Clear sky"
  257. msgstr "Açık gökyüzü"
  258. #. WEATHER_CONDITIONS
  259. #: searx/searxng.msg
  260. msgid "Cloudy"
  261. msgstr "Bulutlu"
  262. #. WEATHER_CONDITIONS
  263. #: searx/searxng.msg
  264. msgid "Fair"
  265. msgstr "Güzel"
  266. #. WEATHER_CONDITIONS
  267. #: searx/searxng.msg
  268. msgid "Fog"
  269. msgstr "Sis"
  270. #. WEATHER_CONDITIONS
  271. #: searx/searxng.msg
  272. msgid "Heavy rain and thunder"
  273. msgstr ""
  274. #. WEATHER_CONDITIONS
  275. #: searx/searxng.msg
  276. msgid "Heavy rain showers and thunder"
  277. msgstr ""
  278. #. WEATHER_CONDITIONS
  279. #: searx/searxng.msg
  280. msgid "Heavy rain showers"
  281. msgstr ""
  282. #. WEATHER_CONDITIONS
  283. #: searx/searxng.msg
  284. msgid "Heavy rain"
  285. msgstr ""
  286. #. WEATHER_CONDITIONS
  287. #: searx/searxng.msg
  288. msgid "Heavy sleet and thunder"
  289. msgstr ""
  290. #. WEATHER_CONDITIONS
  291. #: searx/searxng.msg
  292. msgid "Heavy sleet showers and thunder"
  293. msgstr ""
  294. #. WEATHER_CONDITIONS
  295. #: searx/searxng.msg
  296. msgid "Heavy sleet showers"
  297. msgstr ""
  298. #. WEATHER_CONDITIONS
  299. #: searx/searxng.msg
  300. msgid "Heavy sleet"
  301. msgstr ""
  302. #. WEATHER_CONDITIONS
  303. #: searx/searxng.msg
  304. msgid "Heavy snow and thunder"
  305. msgstr ""
  306. #. WEATHER_CONDITIONS
  307. #: searx/searxng.msg
  308. msgid "Heavy snow showers and thunder"
  309. msgstr ""
  310. #. WEATHER_CONDITIONS
  311. #: searx/searxng.msg
  312. msgid "Heavy snow showers"
  313. msgstr ""
  314. #. WEATHER_CONDITIONS
  315. #: searx/searxng.msg
  316. msgid "Heavy snow"
  317. msgstr ""
  318. #. WEATHER_CONDITIONS
  319. #: searx/searxng.msg
  320. msgid "Light rain and thunder"
  321. msgstr ""
  322. #. WEATHER_CONDITIONS
  323. #: searx/searxng.msg
  324. msgid "Light rain showers and thunder"
  325. msgstr ""
  326. #. WEATHER_CONDITIONS
  327. #: searx/searxng.msg
  328. msgid "Light rain showers"
  329. msgstr ""
  330. #. WEATHER_CONDITIONS
  331. #: searx/searxng.msg
  332. msgid "Light rain"
  333. msgstr ""
  334. #. WEATHER_CONDITIONS
  335. #: searx/searxng.msg
  336. msgid "Light sleet and thunder"
  337. msgstr ""
  338. #. WEATHER_CONDITIONS
  339. #: searx/searxng.msg
  340. msgid "Light sleet showers and thunder"
  341. msgstr ""
  342. #. WEATHER_CONDITIONS
  343. #: searx/searxng.msg
  344. msgid "Light sleet showers"
  345. msgstr ""
  346. #. WEATHER_CONDITIONS
  347. #: searx/searxng.msg
  348. msgid "Light sleet"
  349. msgstr ""
  350. #. WEATHER_CONDITIONS
  351. #: searx/searxng.msg
  352. msgid "Light snow and thunder"
  353. msgstr ""
  354. #. WEATHER_CONDITIONS
  355. #: searx/searxng.msg
  356. msgid "Light snow showers and thunder"
  357. msgstr ""
  358. #. WEATHER_CONDITIONS
  359. #: searx/searxng.msg
  360. msgid "Light snow showers"
  361. msgstr ""
  362. #. WEATHER_CONDITIONS
  363. #: searx/searxng.msg
  364. msgid "Light snow"
  365. msgstr ""
  366. #. WEATHER_CONDITIONS
  367. #: searx/searxng.msg
  368. msgid "Partly cloudy"
  369. msgstr ""
  370. #. WEATHER_CONDITIONS
  371. #: searx/searxng.msg
  372. msgid "Rain and thunder"
  373. msgstr ""
  374. #. WEATHER_CONDITIONS
  375. #: searx/searxng.msg
  376. msgid "Rain showers and thunder"
  377. msgstr ""
  378. #. WEATHER_CONDITIONS
  379. #: searx/searxng.msg
  380. msgid "Rain showers"
  381. msgstr ""
  382. #. WEATHER_CONDITIONS
  383. #: searx/searxng.msg
  384. msgid "Rain"
  385. msgstr ""
  386. #. WEATHER_CONDITIONS
  387. #: searx/searxng.msg
  388. msgid "Sleet and thunder"
  389. msgstr ""
  390. #. WEATHER_CONDITIONS
  391. #: searx/searxng.msg
  392. msgid "Sleet showers and thunder"
  393. msgstr ""
  394. #. WEATHER_CONDITIONS
  395. #: searx/searxng.msg
  396. msgid "Sleet showers"
  397. msgstr ""
  398. #. WEATHER_CONDITIONS
  399. #: searx/searxng.msg
  400. msgid "Sleet"
  401. msgstr ""
  402. #. WEATHER_CONDITIONS
  403. #: searx/searxng.msg
  404. msgid "Snow and thunder"
  405. msgstr ""
  406. #. WEATHER_CONDITIONS
  407. #: searx/searxng.msg
  408. msgid "Snow showers and thunder"
  409. msgstr ""
  410. #. WEATHER_CONDITIONS
  411. #: searx/searxng.msg
  412. msgid "Snow showers"
  413. msgstr ""
  414. #. WEATHER_CONDITIONS
  415. #: searx/searxng.msg
  416. msgid "Snow"
  417. msgstr ""
  418. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  419. #: searx/engines/lemmy.py:85 searx/searxng.msg
  420. msgid "subscribers"
  421. msgstr "aboneler"
  422. #. SOCIAL_MEDIA_TERMS['POSTS']
  423. #: searx/engines/lemmy.py:86 searx/searxng.msg
  424. msgid "posts"
  425. msgstr "gönderiler"
  426. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  427. #: searx/engines/lemmy.py:87 searx/searxng.msg
  428. msgid "active users"
  429. msgstr "aktif kullanıcılar"
  430. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  431. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  432. #: searx/engines/lemmy.py:130 searx/searxng.msg
  433. msgid "comments"
  434. msgstr "yorumlar"
  435. #. SOCIAL_MEDIA_TERMS['USER']
  436. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  437. msgid "user"
  438. msgstr "kullanıcı"
  439. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  440. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  441. msgid "community"
  442. msgstr "topluluk"
  443. #. SOCIAL_MEDIA_TERMS['POINTS']
  444. #: searx/engines/hackernews.py:82 searx/searxng.msg
  445. msgid "points"
  446. msgstr "puanlar"
  447. #. SOCIAL_MEDIA_TERMS['TITLE']
  448. #: searx/searxng.msg
  449. msgid "title"
  450. msgstr "başlık"
  451. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  452. #: searx/engines/hackernews.py:85 searx/searxng.msg
  453. msgid "author"
  454. msgstr "yazar"
  455. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  456. #: searx/engines/discourse.py:149 searx/searxng.msg
  457. msgid "open"
  458. msgstr "açık"
  459. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  460. #: searx/engines/discourse.py:149 searx/searxng.msg
  461. msgid "closed"
  462. msgstr "kapalı"
  463. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  464. #: searx/engines/discourse.py:160 searx/searxng.msg
  465. msgid "answered"
  466. msgstr "yanıtlandı"
  467. #: searx/webapp.py:292
  468. msgid "No item found"
  469. msgstr "Öğe bulunamadı"
  470. #: searx/engines/qwant.py:291
  471. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:294
  472. msgid "Source"
  473. msgstr "Kaynak"
  474. #: searx/webapp.py:296
  475. msgid "Error loading the next page"
  476. msgstr "Sonraki sayfa yüklenemedi"
  477. #: searx/webapp.py:447 searx/webapp.py:845
  478. msgid "Invalid settings, please edit your preferences"
  479. msgstr "Geçersiz ayarlar, lütfen tercihlerinizi düzenleyin"
  480. #: searx/webapp.py:463
  481. msgid "Invalid settings"
  482. msgstr "Geçersiz ayarlar"
  483. #: searx/webapp.py:540 searx/webapp.py:630
  484. msgid "search error"
  485. msgstr "arama hatası"
  486. #: searx/webutils.py:35
  487. msgid "timeout"
  488. msgstr "zaman aşımı"
  489. #: searx/webutils.py:36
  490. msgid "parsing error"
  491. msgstr "ayrıştırma hatası"
  492. #: searx/webutils.py:37
  493. msgid "HTTP protocol error"
  494. msgstr "HTTP protokol hatası"
  495. #: searx/webutils.py:38
  496. msgid "network error"
  497. msgstr "bağlantı hatası"
  498. #: searx/webutils.py:39
  499. msgid "SSL error: certificate validation has failed"
  500. msgstr "SSL Hatası: Sertifika doğrulaması başarısız oldu"
  501. #: searx/webutils.py:41
  502. msgid "unexpected crash"
  503. msgstr "beklenmeyen çökme"
  504. #: searx/webutils.py:48
  505. msgid "HTTP error"
  506. msgstr "HTTP hatası"
  507. #: searx/webutils.py:49
  508. msgid "HTTP connection error"
  509. msgstr "HTTP bağlantı hatası"
  510. #: searx/webutils.py:55
  511. msgid "proxy error"
  512. msgstr "proxy hatası"
  513. #: searx/webutils.py:56
  514. msgid "CAPTCHA"
  515. msgstr "CAPTCHA"
  516. #: searx/webutils.py:57
  517. msgid "too many requests"
  518. msgstr "çok fazla istek"
  519. #: searx/webutils.py:58
  520. msgid "access denied"
  521. msgstr "erişim engellendi"
  522. #: searx/webutils.py:59
  523. msgid "server API error"
  524. msgstr "sunucu API hatası"
  525. #: searx/webutils.py:78
  526. msgid "Suspended"
  527. msgstr "Askıya alındı"
  528. #: searx/webutils.py:313
  529. #, python-brace-format
  530. msgid "{minutes} minute(s) ago"
  531. msgstr "{minutes} dakika önce"
  532. #: searx/webutils.py:314
  533. #, python-brace-format
  534. msgid "{hours} hour(s), {minutes} minute(s) ago"
  535. msgstr "{hours} saat, {minutes} dakika önce"
  536. #: searx/answerers/random.py:69
  537. msgid "Generate different random values"
  538. msgstr "Farklı rastgele değerler üret"
  539. #: searx/answerers/statistics.py:36
  540. #, python-brace-format
  541. msgid "Compute {func} of the arguments"
  542. msgstr "Argümanların değerini hesapla {func}"
  543. #: searx/engines/openstreetmap.py:158
  544. msgid "Show route in map .."
  545. msgstr "Yol tarifini haritada goster .."
  546. #: searx/engines/pdbe.py:96
  547. #, python-brace-format
  548. msgid "{title} (OBSOLETE)"
  549. msgstr "{title} (ESKİ)"
  550. #: searx/engines/pdbe.py:103
  551. msgid "This entry has been superseded by"
  552. msgstr "Bu girişin yerini alan"
  553. #: searx/engines/qwant.py:293
  554. msgid "Channel"
  555. msgstr "Kanal"
  556. #: searx/engines/radio_browser.py:153
  557. msgid "bitrate"
  558. msgstr "bit hızı"
  559. #: searx/engines/radio_browser.py:154
  560. msgid "votes"
  561. msgstr "oylar"
  562. #: searx/engines/radio_browser.py:155
  563. msgid "clicks"
  564. msgstr "tıklamalar"
  565. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  566. #: searx/engines/zlibrary.py:137
  567. msgid "Language"
  568. msgstr "Dil"
  569. #: searx/engines/semantic_scholar.py:101
  570. #, python-brace-format
  571. msgid ""
  572. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  573. "{lastCitationVelocityYear}"
  574. msgstr ""
  575. "{firstCitationVelocityYear} yılından {lastCitationVelocityYear} yılına "
  576. "kadar {numCitations} alıntı(lar)"
  577. #: searx/engines/tineye.py:48
  578. msgid ""
  579. "Could not read that image url. This may be due to an unsupported file "
  580. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  581. " WebP."
  582. msgstr ""
  583. "Görsel bağlantısı okunamadı. Bu desteklenmeyen bir dosya uzantısı "
  584. "yüzünden olabilir. TinEye sadece JPEG, PNG, GIF, BMP, TIFF veya WebP "
  585. "uzantılı görselleri destekliyor."
  586. #: searx/engines/tineye.py:54
  587. msgid ""
  588. "The image is too simple to find matches. TinEye requires a basic level of"
  589. " visual detail to successfully identify matches."
  590. msgstr ""
  591. "Fotoğraf aranmak için fazla basit. TinEye 'ın başarılı şekilde çalışması "
  592. "için basit detaylar gereklidir."
  593. #: searx/engines/tineye.py:59
  594. msgid "The image could not be downloaded."
  595. msgstr "Görsel indirilemedi."
  596. #: searx/engines/zlibrary.py:138
  597. msgid "Book rating"
  598. msgstr "Kitap değerlendirmesi"
  599. #: searx/engines/zlibrary.py:139
  600. msgid "File quality"
  601. msgstr "Dosya kalitesi"
  602. #: searx/plugins/ahmia_filter.py:32
  603. msgid "Ahmia blacklist"
  604. msgstr "Ahmia kara listesi"
  605. #: searx/plugins/ahmia_filter.py:33
  606. msgid "Filter out onion results that appear in Ahmia's blacklist."
  607. msgstr "Ahmia kara listesinde görünen onion sonuçlarını filtrele"
  608. #: searx/plugins/calculator.py:38
  609. msgid "Basic Calculator"
  610. msgstr "Temel Hesap Makinesi"
  611. #: searx/plugins/calculator.py:39
  612. msgid "Calculate mathematical expressions via the search bar"
  613. msgstr "Arama çubuğunu kullanarak matematiksel ifadeleri hesaplayın"
  614. #: searx/plugins/hash_plugin.py:34
  615. msgid "Hash plugin"
  616. msgstr "Hash eklentisi"
  617. #: searx/plugins/hash_plugin.py:36
  618. msgid ""
  619. "Converts strings to different hash digests. Available functions: md5, "
  620. "sha1, sha224, sha256, sha384, sha512."
  621. msgstr ""
  622. #: searx/plugins/hash_plugin.py:64
  623. msgid "hash digest"
  624. msgstr "özdeğer"
  625. #: searx/plugins/hostnames.py:123
  626. msgid "Hostnames plugin"
  627. msgstr "Sunucu adı eklentisi"
  628. #: searx/plugins/hostnames.py:124
  629. msgid "Rewrite hostnames and remove or prioritize results based on the hostname"
  630. msgstr ""
  631. #: searx/plugins/oa_doi_rewrite.py:55
  632. msgid "Open Access DOI rewrite"
  633. msgstr "Açık Erişim DOI yeniden yazma"
  634. #: searx/plugins/oa_doi_rewrite.py:56
  635. msgid ""
  636. "Avoid paywalls by redirecting to open-access versions of publications "
  637. "when available"
  638. msgstr ""
  639. "Mevcut olduğunda yayınların açık erişim sürümlerine yeniden yönlendirerek"
  640. " ödeme ekranlarını önle"
  641. #: searx/plugins/self_info.py:37
  642. msgid "Self Information"
  643. msgstr "kişisel bilgi"
  644. #: searx/plugins/self_info.py:39
  645. msgid ""
  646. "Displays your IP if the query is \"ip\" and your user agent if the query "
  647. "is \"user-agent\"."
  648. msgstr ""
  649. "Sorgu \"ip\" ise IP adresinizi, \"user-agent\" ise kullanıcı aracınızı "
  650. "gösterir."
  651. #: searx/plugins/self_info.py:52
  652. msgid "Your IP is: "
  653. msgstr "IP adresiniz: "
  654. #: searx/plugins/self_info.py:55
  655. msgid "Your user-agent is: "
  656. msgstr "Kullanıcı-ajanınız: "
  657. #: searx/plugins/tor_check.py:42
  658. msgid "Tor check plugin"
  659. msgstr "Tor kontrol eklentisi"
  660. #: searx/plugins/tor_check.py:44
  661. msgid ""
  662. "This plugin checks if the address of the request is a Tor exit-node, and "
  663. "informs the user if it is; like check.torproject.org, but from SearXNG."
  664. msgstr ""
  665. "Bu eklenti, isteğin adresinin bir Tor çıkış düğümü olup olmadığını "
  666. "kontrol eder ve varsa kullanıcıyı bilgilendirir; check.torproject.org "
  667. "gibi, ancak SearXNG'den."
  668. #: searx/plugins/tor_check.py:65
  669. msgid "Could not download the list of Tor exit-nodes from"
  670. msgstr "Tor çıkış noktalarinin listesini indiremiyor"
  671. #: searx/plugins/tor_check.py:72
  672. msgid "You are using Tor and it looks like you have the external IP address"
  673. msgstr "Su anda Tor'a baglisiniz ve dış IP adresiniz var gibi görünüyor"
  674. #: searx/plugins/tor_check.py:76
  675. msgid "You are not using Tor and you have the external IP address"
  676. msgstr "Tor kullanmıyorsunuz ve harici IP adresiniz var"
  677. #: searx/plugins/tracker_url_remover.py:35
  678. msgid "Tracker URL remover"
  679. msgstr "Takip URL kaldırıcı"
  680. #: searx/plugins/tracker_url_remover.py:36
  681. msgid "Remove trackers arguments from the returned URL"
  682. msgstr "Takip parametrelerini URL'den kaldır"
  683. #: searx/plugins/unit_converter.py:49
  684. msgid "Unit converter plugin"
  685. msgstr "Birim dönüştürme eklentisi"
  686. #: searx/plugins/unit_converter.py:50
  687. msgid "Convert between units"
  688. msgstr "Birimler arasında dönüştürme"
  689. #: searx/result_types/answer.py:224
  690. #, python-brace-format
  691. msgid "{location}: {temperature}, {condition}"
  692. msgstr "{location}: {temperature}, {condition}"
  693. #: searx/templates/simple/404.html:4
  694. msgid "Page not found"
  695. msgstr "Sayfa bulunamadı"
  696. #: searx/templates/simple/404.html:6
  697. #, python-format
  698. msgid "Go to %(search_page)s."
  699. msgstr "%(search_page)s sayfasına git."
  700. #: searx/templates/simple/404.html:6
  701. msgid "search page"
  702. msgstr "arama sayfası"
  703. #: searx/templates/simple/base.html:53
  704. msgid "Donate"
  705. msgstr "Bağış"
  706. #: searx/templates/simple/base.html:57
  707. #: searx/templates/simple/preferences.html:156
  708. msgid "Preferences"
  709. msgstr "Tercihler"
  710. #: searx/templates/simple/base.html:67
  711. msgid "Powered by"
  712. msgstr "Destekleyen"
  713. #: searx/templates/simple/base.html:67
  714. msgid "a privacy-respecting, open metasearch engine"
  715. msgstr "Gizliliğiniz önemseyen, açık meta arama motoru"
  716. #: searx/templates/simple/base.html:68
  717. #: searx/templates/simple/result_templates/packages.html:59
  718. msgid "Source code"
  719. msgstr "Kaynak kodu"
  720. #: searx/templates/simple/base.html:69
  721. msgid "Issue tracker"
  722. msgstr "Sorun izleyici"
  723. #: searx/templates/simple/base.html:70 searx/templates/simple/stats.html:18
  724. msgid "Engine stats"
  725. msgstr "Motor istatistikleri"
  726. #: searx/templates/simple/base.html:72
  727. msgid "Public instances"
  728. msgstr "Açık sunucular"
  729. #: searx/templates/simple/base.html:75
  730. msgid "Privacy policy"
  731. msgstr "Gizlilik politikası"
  732. #: searx/templates/simple/base.html:78
  733. msgid "Contact instance maintainer"
  734. msgstr "Sunucu sahibi ile iletişime geçin"
  735. #: searx/templates/simple/categories.html:30
  736. msgid "Click on the magnifier to perform search"
  737. msgstr "Arama yapmak için büyütece tıklayın"
  738. #: searx/templates/simple/macros.html:40
  739. msgid "Length"
  740. msgstr "Uzunluk"
  741. #: searx/templates/simple/macros.html:41
  742. msgid "Views"
  743. msgstr "Görüntülemeler"
  744. #: searx/templates/simple/macros.html:42
  745. #: searx/templates/simple/result_templates/files.html:34
  746. #: searx/templates/simple/result_templates/images.html:19
  747. #: searx/templates/simple/result_templates/paper.html:6
  748. msgid "Author"
  749. msgstr "Hazırlayan"
  750. #: searx/templates/simple/macros.html:50
  751. msgid "cached"
  752. msgstr "önbellek"
  753. #: searx/templates/simple/new_issue.html:64
  754. msgid "Start submitting a new issue on GitHub"
  755. msgstr "GitHub'a Yeni bir hata göndeymeye başlayin"
  756. #: searx/templates/simple/new_issue.html:66
  757. msgid "Please check for existing bugs about this engine on GitHub"
  758. msgstr ""
  759. "Lütfen Github üzerinden bu tarayıcı hakkında devam eden sorunları kontrol"
  760. " ediniz"
  761. #: searx/templates/simple/new_issue.html:69
  762. msgid "I confirm there is no existing bug about the issue I encounter"
  763. msgstr "Karşılaştığım hata ile ilgili süregelen bir hata bulunmadığını onaylıyorum"
  764. #: searx/templates/simple/new_issue.html:71
  765. msgid "If this is a public instance, please specify the URL in the bug report"
  766. msgstr ""
  767. "Eğer bu bir bulut üzerinde bir bilgisayar ise lütfen URL'yi hata "
  768. "raporunda belirtin"
  769. #: searx/templates/simple/new_issue.html:72
  770. msgid "Submit a new issue on Github including the above information"
  771. msgstr "Yukarıdaki bilgilerle Github'da bir sorun bildirin"
  772. #: searx/templates/simple/preferences.html:65
  773. msgid "No HTTPS"
  774. msgstr "HTTPS Yok"
  775. #: searx/templates/simple/elements/engines_msg.html:14
  776. #: searx/templates/simple/preferences.html:69
  777. #: searx/templates/simple/preferences.html:70
  778. msgid "View error logs and submit a bug report"
  779. msgstr "Hata kayıtlarını incele ve bir hata raporu gönder"
  780. #: searx/templates/simple/preferences.html:74
  781. msgid "!bang for this engine"
  782. msgstr "bu motor için"
  783. #: searx/templates/simple/preferences.html:80
  784. msgid "!bang for its categories"
  785. msgstr "bu kategoriler için"
  786. #: searx/templates/simple/preferences.html:102
  787. #: searx/templates/simple/stats.html:64
  788. msgid "Median"
  789. msgstr "ortalama"
  790. #: searx/templates/simple/preferences.html:103
  791. #: searx/templates/simple/stats.html:70
  792. msgid "P80"
  793. msgstr "P80"
  794. #: searx/templates/simple/preferences.html:104
  795. #: searx/templates/simple/stats.html:76
  796. msgid "P95"
  797. msgstr "P95"
  798. #: searx/templates/simple/preferences.html:136
  799. msgid "Failed checker test(s): "
  800. msgstr "Başarısız kontrol deneme(leri) "
  801. #: searx/templates/simple/preferences.html:138
  802. msgid "Errors:"
  803. msgstr "Hatalar:"
  804. #: searx/templates/simple/preferences.html:163
  805. msgid "General"
  806. msgstr "Genel"
  807. #: searx/templates/simple/preferences.html:166
  808. msgid "Default categories"
  809. msgstr "Varsayılan kategoriler"
  810. #: searx/templates/simple/preferences.html:194
  811. msgid "User interface"
  812. msgstr "Kullanıcı arayüzü"
  813. #: searx/templates/simple/preferences.html:217
  814. msgid "Privacy"
  815. msgstr "Gizlilik"
  816. #: searx/templates/simple/preferences.html:232
  817. msgid "Engines"
  818. msgstr "Motorlar"
  819. #: searx/templates/simple/preferences.html:234
  820. msgid "Currently used search engines"
  821. msgstr "Şu anda kullanılan arama motorları"
  822. #: searx/templates/simple/preferences.html:243
  823. msgid "Special Queries"
  824. msgstr "Özel Arama Sorguları"
  825. #: searx/templates/simple/preferences.html:251
  826. msgid "Cookies"
  827. msgstr "Tanımlama Bilgileri"
  828. #: searx/templates/simple/results.html:30
  829. msgid "Number of results"
  830. msgstr "Sonuç sayısı"
  831. #: searx/templates/simple/results.html:36
  832. msgid "Info"
  833. msgstr "Bilgi"
  834. #: searx/templates/simple/results.html:77
  835. msgid "Back to top"
  836. msgstr "Yukarıya dön"
  837. #: searx/templates/simple/results.html:95
  838. msgid "Previous page"
  839. msgstr "Önceki sayfa"
  840. #: searx/templates/simple/results.html:113
  841. msgid "Next page"
  842. msgstr "Sonraki sayfa"
  843. #: searx/templates/simple/search.html:3
  844. msgid "Display the front page"
  845. msgstr "Ön sayfayı göster"
  846. #: searx/templates/simple/search.html:9
  847. #: searx/templates/simple/simple_search.html:5
  848. msgid "Search for..."
  849. msgstr "Aranan..."
  850. #: searx/templates/simple/search.html:10
  851. #: searx/templates/simple/simple_search.html:6
  852. msgid "clear"
  853. msgstr "temizle"
  854. #: searx/templates/simple/search.html:11
  855. #: searx/templates/simple/simple_search.html:7
  856. msgid "search"
  857. msgstr "ara"
  858. #: searx/templates/simple/stats.html:21
  859. msgid "There is currently no data available. "
  860. msgstr "Şu anda mevcut veri yok. "
  861. #: searx/templates/simple/preferences/engines.html:24
  862. #: searx/templates/simple/stats.html:25
  863. msgid "Engine name"
  864. msgstr "Motor adı"
  865. #: searx/templates/simple/stats.html:26
  866. msgid "Scores"
  867. msgstr "Skor"
  868. #: searx/templates/simple/stats.html:27
  869. msgid "Result count"
  870. msgstr "Sonuç sayısı"
  871. #: searx/templates/simple/elements/engines_msg.html:7
  872. #: searx/templates/simple/preferences/engines.html:31
  873. #: searx/templates/simple/stats.html:28
  874. msgid "Response time"
  875. msgstr "Yanıt süresi"
  876. #: searx/templates/simple/preferences/engines.html:35
  877. #: searx/templates/simple/stats.html:29
  878. msgid "Reliability"
  879. msgstr "Güvenilirlik"
  880. #: searx/templates/simple/stats.html:59
  881. msgid "Total"
  882. msgstr "Toplam"
  883. #: searx/templates/simple/stats.html:60
  884. msgid "HTTP"
  885. msgstr "HTTP"
  886. #: searx/templates/simple/stats.html:61
  887. msgid "Processing"
  888. msgstr "İşlem"
  889. #: searx/templates/simple/stats.html:99
  890. msgid "Warnings"
  891. msgstr "Uyarılar"
  892. #: searx/templates/simple/stats.html:99
  893. msgid "Errors and exceptions"
  894. msgstr "Hatalar ve istisnalar"
  895. #: searx/templates/simple/stats.html:105
  896. msgid "Exception"
  897. msgstr "İstisna"
  898. #: searx/templates/simple/stats.html:107
  899. msgid "Message"
  900. msgstr "Mesaj"
  901. #: searx/templates/simple/stats.html:109
  902. msgid "Percentage"
  903. msgstr "Yüzde"
  904. #: searx/templates/simple/stats.html:111
  905. msgid "Parameter"
  906. msgstr "Parametre"
  907. #: searx/templates/simple/result_templates/files.html:36
  908. #: searx/templates/simple/stats.html:119
  909. msgid "Filename"
  910. msgstr "Dosya adı"
  911. #: searx/templates/simple/stats.html:120
  912. msgid "Function"
  913. msgstr "İşlev"
  914. #: searx/templates/simple/stats.html:121
  915. msgid "Code"
  916. msgstr "Kod"
  917. #: searx/templates/simple/stats.html:128
  918. msgid "Checker"
  919. msgstr "Denetleyici"
  920. #: searx/templates/simple/stats.html:131
  921. msgid "Failed test"
  922. msgstr "Başarısız deneme"
  923. #: searx/templates/simple/stats.html:132
  924. msgid "Comment(s)"
  925. msgstr "Yorum"
  926. #: searx/templates/simple/answer/translations.html:12
  927. #: searx/templates/simple/preferences/answerers.html:8
  928. msgid "Examples"
  929. msgstr "Örnekler"
  930. #: searx/templates/simple/answer/translations.html:21
  931. msgid "Definitions"
  932. msgstr "Tanımlar"
  933. #: searx/templates/simple/answer/translations.html:30
  934. msgid "Synonyms"
  935. msgstr "Eş Anlamlılar"
  936. #: searx/templates/simple/answer/weather.html:19
  937. msgid "Feels Like"
  938. msgstr ""
  939. #: searx/templates/simple/elements/answers.html:2
  940. msgid "Answers"
  941. msgstr "Yanıtlar"
  942. #: searx/templates/simple/elements/apis.html:3
  943. msgid "Download results"
  944. msgstr "Sonuçlarını indir"
  945. #: searx/templates/simple/elements/corrections.html:2
  946. msgid "Try searching for:"
  947. msgstr "Aramaya çalışılan:"
  948. #: searx/templates/simple/elements/engines_msg.html:4
  949. msgid "Messages from the search engines"
  950. msgstr "Arama motorlarından gelen mesajlar"
  951. #: searx/templates/simple/elements/engines_msg.html:7
  952. msgid "seconds"
  953. msgstr "s"
  954. #: searx/templates/simple/elements/search_url.html:3
  955. msgid "Search URL"
  956. msgstr "Arama URL'si"
  957. #: searx/templates/simple/elements/search_url.html:4
  958. #: searx/templates/simple/preferences/cookies.html:54
  959. msgid "Copied"
  960. msgstr "kopyalandı"
  961. #: searx/templates/simple/elements/search_url.html:4
  962. #: searx/templates/simple/preferences/cookies.html:54
  963. msgid "Copy"
  964. msgstr "kopyala"
  965. #: searx/templates/simple/elements/suggestions.html:3
  966. msgid "Suggestions"
  967. msgstr "Öneriler"
  968. #: searx/templates/simple/filters/languages.html:1
  969. #: searx/templates/simple/preferences/language.html:2
  970. msgid "Search language"
  971. msgstr "Arama dili"
  972. #: searx/templates/simple/filters/languages.html:4
  973. #: searx/templates/simple/preferences/language.html:7
  974. msgid "Default language"
  975. msgstr "Varsayılan dil"
  976. #: searx/templates/simple/filters/languages.html:8
  977. #: searx/templates/simple/preferences/language.html:11
  978. msgid "Auto-detect"
  979. msgstr "Özdevimli algılama"
  980. #: searx/templates/simple/filters/safesearch.html:1
  981. #: searx/templates/simple/filters/safesearch.html:2
  982. #: searx/templates/simple/filters/safesearch.html:3
  983. #: searx/templates/simple/filters/safesearch.html:4
  984. #: searx/templates/simple/preferences/engines.html:27
  985. #: searx/templates/simple/preferences/safesearch.html:2
  986. msgid "SafeSearch"
  987. msgstr "Güvenli Arama"
  988. #: searx/templates/simple/filters/safesearch.html:2
  989. #: searx/templates/simple/preferences/safesearch.html:7
  990. msgid "Strict"
  991. msgstr "Sıkı"
  992. #: searx/templates/simple/filters/safesearch.html:3
  993. #: searx/templates/simple/preferences/safesearch.html:11
  994. msgid "Moderate"
  995. msgstr "Orta"
  996. #: searx/templates/simple/filters/safesearch.html:4
  997. #: searx/templates/simple/preferences/safesearch.html:15
  998. msgid "None"
  999. msgstr "Yok"
  1000. #: searx/templates/simple/filters/time_range.html:1
  1001. #: searx/templates/simple/preferences/engines.html:28
  1002. msgid "Time range"
  1003. msgstr "Zaman aralığı"
  1004. #: searx/templates/simple/filters/time_range.html:3
  1005. msgid "Anytime"
  1006. msgstr "Herhangi bir zaman"
  1007. #: searx/templates/simple/filters/time_range.html:6
  1008. msgid "Last day"
  1009. msgstr "Geçen gün"
  1010. #: searx/templates/simple/filters/time_range.html:9
  1011. msgid "Last week"
  1012. msgstr "Geçen hafta"
  1013. #: searx/templates/simple/filters/time_range.html:12
  1014. msgid "Last month"
  1015. msgstr "Geçen ay"
  1016. #: searx/templates/simple/filters/time_range.html:15
  1017. msgid "Last year"
  1018. msgstr "Geçen yıl"
  1019. #: searx/templates/simple/messages/no_cookies.html:3
  1020. msgid "Information!"
  1021. msgstr "Bilgiler!"
  1022. #: searx/templates/simple/messages/no_cookies.html:4
  1023. msgid "currently, there are no cookies defined."
  1024. msgstr "şu anda, tanımlanmış tanımlama bilgileri yok."
  1025. #: searx/templates/simple/messages/no_results.html:6
  1026. msgid "Sorry!"
  1027. msgstr "Üzgünüz!"
  1028. #: searx/templates/simple/messages/no_results.html:12
  1029. msgid "No results were found. You can try to:"
  1030. msgstr "Hiç sonuç bulunamadı. Bunları deneyebilirsin:"
  1031. #: searx/templates/simple/messages/no_results.html:14
  1032. msgid "There are no more results. You can try to:"
  1033. msgstr "Daha fazla sonuç yok. Şunu deneyebilirsin:"
  1034. #: searx/templates/simple/messages/no_results.html:19
  1035. msgid "Refresh the page."
  1036. msgstr "Sayfayı yenile."
  1037. #: searx/templates/simple/messages/no_results.html:20
  1038. msgid "Search for another query or select another category (above)."
  1039. msgstr "Başka bir sorguyu ara veya başka bir kategori seç (yukarıda)."
  1040. #: searx/templates/simple/messages/no_results.html:21
  1041. msgid "Change the search engine used in the preferences:"
  1042. msgstr "Ayarlardan kullanılan arama motorunu değiştir:"
  1043. #: searx/templates/simple/messages/no_results.html:22
  1044. msgid "Switch to another instance:"
  1045. msgstr "Başka bir sağlayıcıya geçiş yapın:"
  1046. #: searx/templates/simple/messages/no_results.html:24
  1047. msgid "Search for another query or select another category."
  1048. msgstr "Başka bir sorgu arayın veya başka bir kategori seçin."
  1049. #: searx/templates/simple/messages/no_results.html:25
  1050. msgid "Go back to the previous page using the previous page button."
  1051. msgstr "Önceki sayfa butonunu kullanarak bir önceki sayfaya geri dön."
  1052. #: searx/templates/simple/preferences/answerers.html:4
  1053. #: searx/templates/simple/preferences/engines.html:23
  1054. msgid "Allow"
  1055. msgstr "İzin ver"
  1056. #: searx/templates/simple/preferences/answerers.html:5
  1057. msgid "Keywords (first word in query)"
  1058. msgstr "Anahtar kelimeler (sorgudaki ilk kelime)"
  1059. #: searx/templates/simple/preferences/answerers.html:6
  1060. #: searx/templates/simple/result_templates/packages.html:7
  1061. msgid "Name"
  1062. msgstr "Ad"
  1063. #: searx/templates/simple/preferences/answerers.html:7
  1064. msgid "Description"
  1065. msgstr "Açıklama"
  1066. #: searx/templates/simple/preferences/answerers.html:13
  1067. msgid "This is the list of SearXNG's instant answering modules."
  1068. msgstr "Bu, SearXNG'in anlık cevap modüllerinin listesidir."
  1069. #: searx/templates/simple/preferences/answerers.html:29
  1070. msgid "This is the list of plugins."
  1071. msgstr "Bu eklentilerin listesidir."
  1072. #: searx/templates/simple/preferences/autocomplete.html:2
  1073. msgid "Autocomplete"
  1074. msgstr "Otomatik tamamlama"
  1075. #: searx/templates/simple/preferences/autocomplete.html:15
  1076. msgid "Show possible queries as you type"
  1077. msgstr ""
  1078. #: searx/templates/simple/preferences/center_alignment.html:2
  1079. msgid "Center Alignment"
  1080. msgstr "Ortaya hizalama"
  1081. #: searx/templates/simple/preferences/center_alignment.html:14
  1082. msgid "Display results in the center of the page (Oscar layout)."
  1083. msgstr ""
  1084. #: searx/templates/simple/preferences/cookies.html:2
  1085. msgid ""
  1086. "This is the list of cookies and their values SearXNG is storing on your "
  1087. "computer."
  1088. msgstr ""
  1089. "Bu, SearXNG'nin bilgasayarında sakladığı çerezlerin ve çerezlerin "
  1090. "değerlerinin bir listesidir."
  1091. #: searx/templates/simple/preferences/cookies.html:3
  1092. msgid "With this list, you can assess the transparency of SearXNG."
  1093. msgstr ""
  1094. #: searx/templates/simple/preferences/cookies.html:9
  1095. msgid "Cookie name"
  1096. msgstr "Tanımlama bilgisi adı"
  1097. #: searx/templates/simple/preferences/cookies.html:10
  1098. msgid "Value"
  1099. msgstr "Değer"
  1100. #: searx/templates/simple/preferences/cookies.html:23
  1101. msgid "Search URL of the currently saved preferences"
  1102. msgstr "Şu anda kaydedilmiş tercihlerin arama URL'si"
  1103. #: searx/templates/simple/preferences/cookies.html:32
  1104. msgid ""
  1105. "Note: specifying custom settings in the search URL can reduce privacy by "
  1106. "leaking data to the clicked result sites."
  1107. msgstr ""
  1108. "Not: Arama URL'sinde özel ayarların belirtilmesi, tıklanan sonuç "
  1109. "sitelerine veri sızdırarak gizliliği azaltabilir."
  1110. #: searx/templates/simple/preferences/cookies.html:35
  1111. msgid "URL to restore your preferences in another browser"
  1112. msgstr "Seçeneklerinizi farklı bir tarayıcıda yükleme URL'i"
  1113. #: searx/templates/simple/preferences/cookies.html:43
  1114. msgid ""
  1115. "A URL containing your preferences. This URL can be used to restore your "
  1116. "settings on a different device."
  1117. msgstr ""
  1118. "Tercihlerinizi içeren bir URL. Bu URL, ayarlarınızı farklı bir cihazda "
  1119. "geri yüklemek için kullanılabilir."
  1120. #: searx/templates/simple/preferences/cookies.html:46
  1121. msgid "Copy preferences hash"
  1122. msgstr "Ayarlar hash değerini kopyala"
  1123. #: searx/templates/simple/preferences/cookies.html:57
  1124. msgid "Insert copied preferences hash (without URL) to restore"
  1125. msgstr "Geri yüklemek için kopyalanan tercihleri hash (URL olmadan) ekleyin"
  1126. #: searx/templates/simple/preferences/cookies.html:59
  1127. msgid "Preferences hash"
  1128. msgstr "Hah tercihleri"
  1129. #: searx/templates/simple/preferences/doi_resolver.html:1
  1130. msgid "Digital Object Identifier (DOI)"
  1131. msgstr "Dijital Nesne Tanımlayıcı (DOI)"
  1132. #: searx/templates/simple/preferences/doi_resolver.html:6
  1133. msgid "Open Access DOI resolver"
  1134. msgstr "Açık Erişim DOI çözümleyicisi"
  1135. #: searx/templates/simple/preferences/doi_resolver.html:18
  1136. msgid "Select service used by DOI rewrite"
  1137. msgstr "DOI rewrite tarafından kullanılan hizmeti seçin"
  1138. #: searx/templates/simple/preferences/engines.html:9
  1139. msgid ""
  1140. "This tab does not exist in the user interface, but you can search with "
  1141. "these engines via !bangs."
  1142. msgstr ""
  1143. #: searx/templates/simple/preferences/engines.html:15
  1144. msgid "Enable all"
  1145. msgstr "Hepsini etkinleştir"
  1146. #: searx/templates/simple/preferences/engines.html:16
  1147. msgid "Disable all"
  1148. msgstr "Hepsini hızmet dışı bırak"
  1149. #: searx/templates/simple/preferences/engines.html:25
  1150. msgid "!bang"
  1151. msgstr "!bang"
  1152. #: searx/templates/simple/preferences/engines.html:26
  1153. msgid "Supports selected language"
  1154. msgstr "Seçili dili destekler"
  1155. #: searx/templates/simple/preferences/engines.html:29
  1156. msgid "Weight"
  1157. msgstr "Ağırlık"
  1158. #: searx/templates/simple/preferences/engines.html:33
  1159. msgid "Max time"
  1160. msgstr "En fazla zaman"
  1161. #: searx/templates/simple/preferences/favicon.html:2
  1162. msgid "Favicon Resolver"
  1163. msgstr "Favicon Çözümleyicisi"
  1164. #: searx/templates/simple/preferences/favicon.html:15
  1165. msgid "Display favicons near search results"
  1166. msgstr "Arama sonuçlarının yanında favsimgelerini göster"
  1167. #: searx/templates/simple/preferences/footer.html:2
  1168. msgid ""
  1169. "These settings are stored in your cookies. This allows us not to store "
  1170. "this data about you."
  1171. msgstr ""
  1172. #: searx/templates/simple/preferences/footer.html:3
  1173. msgid "These cookies serve your sole convenience; we don't use them to track you."
  1174. msgstr ""
  1175. #: searx/templates/simple/preferences/footer.html:6
  1176. msgid "Save"
  1177. msgstr "Kaydet"
  1178. #: searx/templates/simple/preferences/footer.html:9
  1179. msgid "Reset defaults"
  1180. msgstr "Varsayılanları sıfırla"
  1181. #: searx/templates/simple/preferences/footer.html:13
  1182. msgid "Back"
  1183. msgstr "Geri"
  1184. #: searx/templates/simple/preferences/hotkeys.html:2
  1185. msgid "Hotkeys"
  1186. msgstr "Kısayollar"
  1187. #: searx/templates/simple/preferences/hotkeys.html:13
  1188. msgid "Vim-like"
  1189. msgstr "Vim-tarzı"
  1190. #: searx/templates/simple/preferences/hotkeys.html:18
  1191. msgid ""
  1192. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  1193. "key on main or result page to get help."
  1194. msgstr ""
  1195. "Kısayollar ile arama sonuçlarını hareket ettirin (JavaScript gerektirir)."
  1196. " Ana sayfada veya sonuç sayfasında yardım almak için \"h\" tuşuna basın."
  1197. #: searx/templates/simple/preferences/image_proxy.html:2
  1198. msgid "Image proxy"
  1199. msgstr "Görsel vekil sunucu"
  1200. #: searx/templates/simple/preferences/image_proxy.html:14
  1201. msgid "Proxy image results through SearXNG"
  1202. msgstr ""
  1203. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1204. msgid "Infinite scroll"
  1205. msgstr "Sonsuz kaydırma"
  1206. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1207. msgid ""
  1208. "Automatically load the next page when scrolling to the bottom of the "
  1209. "current page"
  1210. msgstr ""
  1211. #: searx/templates/simple/preferences/language.html:24
  1212. msgid "What language do you prefer for search?"
  1213. msgstr "Arama için hangi dili tercih edersiniz?"
  1214. #: searx/templates/simple/preferences/language.html:25
  1215. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1216. msgstr ""
  1217. "SearXNG'nin sorgunuzun dilini algılamasına izin vermek için Özdevimli "
  1218. "algıla'yı seçin."
  1219. #: searx/templates/simple/preferences/method.html:2
  1220. msgid "HTTP Method"
  1221. msgstr "HTTP Metodu"
  1222. #: searx/templates/simple/preferences/method.html:14
  1223. msgid "Change how forms are submitted"
  1224. msgstr "Formların nasıl gönderildiğini değiştir"
  1225. #: searx/templates/simple/preferences/query_in_title.html:2
  1226. msgid "Query in the page's title"
  1227. msgstr "Sayfanın başındaki arama sorgusu"
  1228. #: searx/templates/simple/preferences/query_in_title.html:14
  1229. msgid ""
  1230. "When enabled, the result page's title contains your query. Your browser "
  1231. "can record this title"
  1232. msgstr ""
  1233. "Bu etkinleştirildiği zaman sonuç sayfasının başlığı arama sonuçlarınızı "
  1234. "da içerir. Tarayıcınız bu başlığı kaydedebilir"
  1235. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1236. msgid "Results in new tabs"
  1237. msgstr ""
  1238. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1239. msgid "Open result links in new browser tabs"
  1240. msgstr ""
  1241. #: searx/templates/simple/preferences/safesearch.html:20
  1242. msgid "Filter content"
  1243. msgstr "İçeriği süzün"
  1244. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1245. msgid "Search on category select"
  1246. msgstr "Kategori seçimine göre ara"
  1247. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1248. msgid ""
  1249. "Perform a search immediately if a category is selected. Disable to select"
  1250. " multiple categories"
  1251. msgstr ""
  1252. #: searx/templates/simple/preferences/theme.html:2
  1253. msgid "Theme"
  1254. msgstr "Tema"
  1255. #: searx/templates/simple/preferences/theme.html:14
  1256. msgid "Change the layout of SearXNG"
  1257. msgstr ""
  1258. #: searx/templates/simple/preferences/theme.html:19
  1259. msgid "Theme style"
  1260. msgstr "Tema stili"
  1261. #: searx/templates/simple/preferences/theme.html:31
  1262. msgid "Choose auto to follow your browser settings"
  1263. msgstr "İnternet tarayıcınızın ayarlarını kullanmak için otomatik modu seçin"
  1264. #: searx/templates/simple/preferences/tokens.html:2
  1265. msgid "Engine tokens"
  1266. msgstr "Motor belirteçleri"
  1267. #: searx/templates/simple/preferences/tokens.html:9
  1268. msgid "Access tokens for private engines"
  1269. msgstr "Özel motorlar için erişim belirteçleri"
  1270. #: searx/templates/simple/preferences/ui_locale.html:2
  1271. msgid "Interface language"
  1272. msgstr "Arayüz dili"
  1273. #: searx/templates/simple/preferences/ui_locale.html:14
  1274. msgid "Change the language of the layout"
  1275. msgstr "Düzen dilini değiştirin"
  1276. #: searx/templates/simple/preferences/urlformatting.html:2
  1277. msgid "URL formatting"
  1278. msgstr "URL Formatı"
  1279. #: searx/templates/simple/preferences/urlformatting.html:8
  1280. msgid "Pretty"
  1281. msgstr "Tatlı"
  1282. #: searx/templates/simple/preferences/urlformatting.html:13
  1283. msgid "Full"
  1284. msgstr "Tam dolu"
  1285. #: searx/templates/simple/preferences/urlformatting.html:18
  1286. msgid "Host"
  1287. msgstr "Host"
  1288. #: searx/templates/simple/preferences/urlformatting.html:23
  1289. msgid "Change result URL formatting"
  1290. msgstr "Sonuç URL biçimlendirmesini değiştir"
  1291. #: searx/templates/simple/result_templates/code.html:13
  1292. msgid "repo"
  1293. msgstr "depo"
  1294. #: searx/templates/simple/result_templates/default.html:6
  1295. #: searx/templates/simple/result_templates/files.html:8
  1296. #: searx/templates/simple/result_templates/files.html:11
  1297. msgid "show media"
  1298. msgstr "medyayı göster"
  1299. #: searx/templates/simple/result_templates/default.html:6
  1300. #: searx/templates/simple/result_templates/files.html:8
  1301. msgid "hide media"
  1302. msgstr "medyayı gizle"
  1303. #: searx/templates/simple/result_templates/default.html:14
  1304. #: searx/templates/simple/result_templates/videos.html:14
  1305. msgid "This site did not provide any description."
  1306. msgstr "BU site herhangi bir açıklama sağlamadı."
  1307. #: searx/templates/simple/result_templates/files.html:38
  1308. #: searx/templates/simple/result_templates/images.html:22
  1309. #: searx/templates/simple/result_templates/torrent.html:18
  1310. msgid "Filesize"
  1311. msgstr "Dosya boyutu"
  1312. #: searx/templates/simple/result_templates/files.html:40
  1313. msgid "Date"
  1314. msgstr "Gün"
  1315. #: searx/templates/simple/result_templates/files.html:42
  1316. #: searx/templates/simple/result_templates/paper.html:24
  1317. msgid "Type"
  1318. msgstr "Yaz"
  1319. #: searx/templates/simple/result_templates/images.html:20
  1320. msgid "Resolution"
  1321. msgstr "Çözünürlük"
  1322. #: searx/templates/simple/result_templates/images.html:21
  1323. msgid "Format"
  1324. msgstr "Format"
  1325. #: searx/templates/simple/result_templates/images.html:24
  1326. msgid "Engine"
  1327. msgstr "Motor"
  1328. #: searx/templates/simple/result_templates/images.html:25
  1329. msgid "View source"
  1330. msgstr "Kaynağı göster"
  1331. #: searx/templates/simple/result_templates/map.html:12
  1332. msgid "address"
  1333. msgstr "adres"
  1334. #: searx/templates/simple/result_templates/map.html:43
  1335. msgid "show map"
  1336. msgstr "haritayı göster"
  1337. #: searx/templates/simple/result_templates/map.html:43
  1338. msgid "hide map"
  1339. msgstr "haritayı gizle"
  1340. #: searx/templates/simple/result_templates/packages.html:12
  1341. msgid "Version"
  1342. msgstr "Sürüm"
  1343. #: searx/templates/simple/result_templates/packages.html:18
  1344. msgid "Maintainer"
  1345. msgstr "Sahibi"
  1346. #: searx/templates/simple/result_templates/packages.html:24
  1347. msgid "Updated at"
  1348. msgstr "Güncellenme tarihi"
  1349. #: searx/templates/simple/result_templates/packages.html:30
  1350. #: searx/templates/simple/result_templates/paper.html:25
  1351. msgid "Tags"
  1352. msgstr "Etiketler"
  1353. #: searx/templates/simple/result_templates/packages.html:36
  1354. msgid "Popularity"
  1355. msgstr "Popülerlik"
  1356. #: searx/templates/simple/result_templates/packages.html:42
  1357. msgid "License"
  1358. msgstr "Lisans"
  1359. #: searx/templates/simple/result_templates/packages.html:52
  1360. msgid "Project"
  1361. msgstr "Proje"
  1362. #: searx/templates/simple/result_templates/packages.html:55
  1363. msgid "Project homepage"
  1364. msgstr "Proje ana sayfası"
  1365. #: searx/templates/simple/result_templates/paper.html:5
  1366. msgid "Published date"
  1367. msgstr "Yayınlanma tarihi"
  1368. #: searx/templates/simple/result_templates/paper.html:9
  1369. msgid "Journal"
  1370. msgstr "Günlük"
  1371. #: searx/templates/simple/result_templates/paper.html:22
  1372. msgid "Editor"
  1373. msgstr "Editör"
  1374. #: searx/templates/simple/result_templates/paper.html:23
  1375. msgid "Publisher"
  1376. msgstr "Yayımlayıcı"
  1377. #: searx/templates/simple/result_templates/paper.html:26
  1378. msgid "DOI"
  1379. msgstr "DOI"
  1380. #: searx/templates/simple/result_templates/paper.html:27
  1381. msgid "ISSN"
  1382. msgstr "ISSN"
  1383. #: searx/templates/simple/result_templates/paper.html:28
  1384. msgid "ISBN"
  1385. msgstr "ISBN"
  1386. #: searx/templates/simple/result_templates/paper.html:33
  1387. msgid "PDF"
  1388. msgstr "PDF"
  1389. #: searx/templates/simple/result_templates/paper.html:34
  1390. msgid "HTML"
  1391. msgstr "HTML"
  1392. #: searx/templates/simple/result_templates/torrent.html:7
  1393. msgid "magnet link"
  1394. msgstr "magnet bağlantısı"
  1395. #: searx/templates/simple/result_templates/torrent.html:8
  1396. msgid "torrent file"
  1397. msgstr "torrent dosyası"
  1398. #: searx/templates/simple/result_templates/torrent.html:13
  1399. msgid "Seeder"
  1400. msgstr "Gönderenler"
  1401. #: searx/templates/simple/result_templates/torrent.html:14
  1402. msgid "Leecher"
  1403. msgstr "Çekenler"
  1404. #: searx/templates/simple/result_templates/torrent.html:19
  1405. msgid "Number of Files"
  1406. msgstr "Dosya Sayısı"
  1407. #: searx/templates/simple/result_templates/videos.html:6
  1408. msgid "show video"
  1409. msgstr "görüntüyü göster"
  1410. #: searx/templates/simple/result_templates/videos.html:6
  1411. msgid "hide video"
  1412. msgstr "görüntüyü gizle"
  1413. #~ msgid "Engine time (sec)"
  1414. #~ msgstr "Motor süresi (san)"
  1415. #~ msgid "Page loads (sec)"
  1416. #~ msgstr "Sayfa yüklemeleri (san)"
  1417. #~ msgid "Errors"
  1418. #~ msgstr "Hatalar"
  1419. #~ msgid "CAPTCHA required"
  1420. #~ msgstr "CAPTCHA gerekli"
  1421. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1422. #~ msgstr "Mümkünse HTTP bağlantıları HTTPS olarak yeniden yaz"
  1423. #~ msgid ""
  1424. #~ "Results are opened in the same "
  1425. #~ "window by default. This plugin "
  1426. #~ "overwrites the default behaviour to open"
  1427. #~ " links on new tabs/windows. (JavaScript "
  1428. #~ "required)"
  1429. #~ msgstr ""
  1430. #~ "Sonuçlar varsayılan olarak aynı pencerede "
  1431. #~ "açılır. Bu eklenti, bağlantıları yeni "
  1432. #~ "sekmelerde/pencerelerde açmak için varsayılan "
  1433. #~ "davranışın üzerine yazar. (JavaScript gerekli)"
  1434. #~ msgid "Color"
  1435. #~ msgstr "Renk"
  1436. #~ msgid "Blue (default)"
  1437. #~ msgstr "Mavi (varsayılan)"
  1438. #~ msgid "Violet"
  1439. #~ msgstr "Mor"
  1440. #~ msgid "Green"
  1441. #~ msgstr "Yeşil"
  1442. #~ msgid "Cyan"
  1443. #~ msgstr "Camgöbeği"
  1444. #~ msgid "Orange"
  1445. #~ msgstr "Turuncu"
  1446. #~ msgid "Red"
  1447. #~ msgstr "Kırmızı"
  1448. #~ msgid "Category"
  1449. #~ msgstr "Kategori"
  1450. #~ msgid "Block"
  1451. #~ msgstr "Engelle"
  1452. #~ msgid "original context"
  1453. #~ msgstr "orijinal içerik"
  1454. #~ msgid "Plugins"
  1455. #~ msgstr "Eklentiler"
  1456. #~ msgid "Answerers"
  1457. #~ msgstr "Yanıtlayanlar"
  1458. #~ msgid "Avg. time"
  1459. #~ msgstr "Ort. zaman"
  1460. #~ msgid "show details"
  1461. #~ msgstr "ayrıntıları göster"
  1462. #~ msgid "hide details"
  1463. #~ msgstr "ayrıntıları gizle"
  1464. #~ msgid "Load more..."
  1465. #~ msgstr "Daha fazla yükle..."
  1466. #~ msgid "Loading..."
  1467. #~ msgstr "Yükleniyor..."
  1468. #~ msgid "Change searx layout"
  1469. #~ msgstr "Searx düzenini değiştirin"
  1470. #~ msgid "Proxying image results through searx"
  1471. #~ msgstr "Searx aracılığıyla görsel sonuçlarını vekil sunucusu üzerinden geçirin"
  1472. #~ msgid "This is the list of searx's instant answering modules."
  1473. #~ msgstr "Bu, searx'in anında yanıtlama modüllerinin listesidir."
  1474. #~ msgid ""
  1475. #~ "This is the list of cookies and"
  1476. #~ " their values searx is storing on "
  1477. #~ "your computer."
  1478. #~ msgstr ""
  1479. #~ "Bu, searx'in bilgisayarınızda depoladığı "
  1480. #~ "tanımlama bilgileri ve değerleri listesidir."
  1481. #~ msgid "With that list, you can assess searx transparency."
  1482. #~ msgstr "Bu listeyle searx şeffaflığını değerlendirebilirsiniz."
  1483. #~ msgid "It look like you are using searx first time."
  1484. #~ msgstr "İlk defa searx kullanıyor gibi görünüyorsunuz."
  1485. #~ msgid "Please, try again later or find another searx instance."
  1486. #~ msgstr "Lütfen daha sonra tekrar deneyin veya başka bir searx örneği bulun."
  1487. #~ msgid "Themes"
  1488. #~ msgstr "Temalar"
  1489. #~ msgid "Reliablity"
  1490. #~ msgstr ""
  1491. #~ msgid ""
  1492. #~ "When enabled, the result page's title"
  1493. #~ " contains your query. Your browser "
  1494. #~ "can record this title."
  1495. #~ msgstr ""
  1496. #~ msgid "Method"
  1497. #~ msgstr "Yöntem"
  1498. #~ msgid ""
  1499. #~ "This tab does not show up for "
  1500. #~ "search results but you can search "
  1501. #~ "the engines listed here via bangs."
  1502. #~ msgstr ""
  1503. #~ msgid "Advanced settings"
  1504. #~ msgstr "Gelişmiş ayarlar"
  1505. #~ msgid "Close"
  1506. #~ msgstr "Kapat"
  1507. #~ msgid "Language"
  1508. #~ msgstr "Dil"
  1509. #~ msgid "broken"
  1510. #~ msgstr "bozuk"
  1511. #~ msgid "supported"
  1512. #~ msgstr "desteklenir"
  1513. #~ msgid "not supported"
  1514. #~ msgstr "desteklenmez"
  1515. #~ msgid "about"
  1516. #~ msgstr "hakkında"
  1517. #~ msgid "Avg."
  1518. #~ msgstr "ortalama"
  1519. #~ msgid "User Interface"
  1520. #~ msgstr "kullanıcı arayüzü"
  1521. #~ msgid "Choose style for this theme"
  1522. #~ msgstr "Bu tema için stil seçin"
  1523. #~ msgid "Style"
  1524. #~ msgstr "Stil"
  1525. #~ msgid "Show advanced settings"
  1526. #~ msgstr "gelişmiş ayarları göster"
  1527. #~ msgid "Show advanced settings panel in the home page by default"
  1528. #~ msgstr "Gelişmiş ayarlar panelini ana sayfada varsayılan olarak göster"
  1529. #~ msgid "Allow all"
  1530. #~ msgstr "Tümüne izin ver"
  1531. #~ msgid "Disable all"
  1532. #~ msgstr "Tümünü etkisizleştir"
  1533. #~ msgid "Selected language"
  1534. #~ msgstr "Seçilen dil"
  1535. #~ msgid "Query"
  1536. #~ msgstr "Sorgu"
  1537. #~ msgid "save"
  1538. #~ msgstr "kaydet"
  1539. #~ msgid "back"
  1540. #~ msgstr "geri"
  1541. #~ msgid "Links"
  1542. #~ msgstr "Bağlantılar"
  1543. #~ msgid "RSS subscription"
  1544. #~ msgstr "RSS aboneliği"
  1545. #~ msgid "Search results"
  1546. #~ msgstr "Arama sonuçları"
  1547. #~ msgid "next page"
  1548. #~ msgstr "sonraki sayfa"
  1549. #~ msgid "previous page"
  1550. #~ msgstr "önceki sayfa"
  1551. #~ msgid "Start search"
  1552. #~ msgstr "Aramayı başlat"
  1553. #~ msgid "Clear search"
  1554. #~ msgstr "Aramayı temizle"
  1555. #~ msgid "Clear"
  1556. #~ msgstr "Temizle"
  1557. #~ msgid "stats"
  1558. #~ msgstr "istatistikler"
  1559. #~ msgid "Heads up!"
  1560. #~ msgstr "Dikkat et!"
  1561. #~ msgid "It look like you are using SearXNG first time."
  1562. #~ msgstr ""
  1563. #~ msgid "Well done!"
  1564. #~ msgstr "Aferin!"
  1565. #~ msgid "Settings saved successfully."
  1566. #~ msgstr "Ayarlar başarılı olarak kaydedildi."
  1567. #~ msgid "Oh snap!"
  1568. #~ msgstr "Hay aksi!"
  1569. #~ msgid "Something went wrong."
  1570. #~ msgstr "Bir şeyler ters gitti."
  1571. #~ msgid "Date"
  1572. #~ msgstr "Tarih"
  1573. #~ msgid "Type"
  1574. #~ msgstr ""
  1575. #~ msgid "Get image"
  1576. #~ msgstr "Görseli al"
  1577. #~ msgid "Center Alignment"
  1578. #~ msgstr ""
  1579. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1580. #~ msgstr "Sonuçları sayfanın ortasında görüntüler (Oscar düzeni)."
  1581. #~ msgid "preferences"
  1582. #~ msgstr "tercihler"
  1583. #~ msgid "Scores per result"
  1584. #~ msgstr "Sonuç başına skor"
  1585. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1586. #~ msgstr "gizliliğe saygılı, kurcalanabilir bir meta arama motoru"
  1587. #~ msgid "No abstract is available for this publication."
  1588. #~ msgstr "Bu yayın için özet mevcut değil."
  1589. #~ msgid "Self Informations"
  1590. #~ msgstr "kişisel bilgileri"
  1591. #~ msgid ""
  1592. #~ "Change how forms are submited, <a "
  1593. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1594. #~ " rel=\"external\">learn more about request "
  1595. #~ "methods</a>"
  1596. #~ msgstr ""
  1597. #~ "Formların nasıl gönderildiğini değiştirin, <a"
  1598. #~ " "
  1599. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1600. #~ " rel=\"external\">istek yöntemleri hakkında daha"
  1601. #~ " fazla bilgi edinin</a>"
  1602. #~ msgid ""
  1603. #~ "This plugin checks if the address "
  1604. #~ "of the request is a TOR exit "
  1605. #~ "node, and informs the user if it"
  1606. #~ " is, like check.torproject.org but from "
  1607. #~ "searxng."
  1608. #~ msgstr ""
  1609. #~ "Bu eklenti istek adresinin TOR çıkış "
  1610. #~ "düğümü olup olmadığını kontrol eder ve"
  1611. #~ " öyleyse kullanıcıya haber verir, "
  1612. #~ "check.torproject.org benzeri ama searxng'den."
  1613. #~ msgid ""
  1614. #~ "The TOR exit node list "
  1615. #~ "(https://check.torproject.org/exit-addresses) is "
  1616. #~ "unreachable."
  1617. #~ msgstr ""
  1618. #~ "TOR cıkış düğümü listesine "
  1619. #~ "(https://check.torproject.org/exit-addresses) "
  1620. #~ "ulaşılamıyor."
  1621. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1622. #~ msgstr "TOR kullanıyorsunuz. Gözüken IP adresiniz: {ip_address}."
  1623. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1624. #~ msgstr "TOR kullanmıyorsunuz. Gözüken IP adresiniz: {ip_address}."
  1625. #~ msgid ""
  1626. #~ "The could not download the list of"
  1627. #~ " Tor exit-nodes from "
  1628. #~ "https://check.torproject.org/exit-addresses."
  1629. #~ msgstr ""
  1630. #~ msgid ""
  1631. #~ "You are using Tor. It looks like"
  1632. #~ " you have this external IP address:"
  1633. #~ " {ip_address}."
  1634. #~ msgstr ""
  1635. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1636. #~ msgstr ""
  1637. #~ msgid "Autodetect search language"
  1638. #~ msgstr "Arama dilini otomatik algıla"
  1639. #~ msgid "Automatically detect the query search language and switch to it."
  1640. #~ msgstr "Arama dilini otomatik algıla ve değiştir."
  1641. #~ msgid "others"
  1642. #~ msgstr "diğer"
  1643. #~ msgid ""
  1644. #~ "This tab does not show up for "
  1645. #~ "search results, but you can search "
  1646. #~ "the engines listed here via bangs."
  1647. #~ msgstr ""
  1648. #~ "Bu sekme arama sonuçlarında görünmüyor, "
  1649. #~ "ama listelenen motorlarını \"bang\"ler ile "
  1650. #~ "arayabilirsiniz."
  1651. #~ msgid "Shortcut"
  1652. #~ msgstr "Kısayol"
  1653. #~ msgid "!bang"
  1654. #~ msgstr ""
  1655. #~ msgid ""
  1656. #~ "This tab dues not exists in the"
  1657. #~ " user interface, but you can search"
  1658. #~ " in these engines by its !bangs."
  1659. #~ msgstr ""
  1660. #~ "Bu sekme kullanıcı arayüzünde yoktur, "
  1661. #~ "ancak bu motorlarda ona göre arama "
  1662. #~ "yapabilirsiniz."
  1663. #~ msgid "Engines cannot retrieve results."
  1664. #~ msgstr "Motorlar sonuçları alamıyor."
  1665. #~ msgid "Please, try again later or find another SearXNG instance."
  1666. #~ msgstr "Lütfen daha sonra tekrar deneyin veya başka bir SearXNG örneği bulun."
  1667. #~ msgid ""
  1668. #~ "Redirect to open-access versions of "
  1669. #~ "publications when available (plugin required)"
  1670. #~ msgstr ""
  1671. #~ "Mümkün olduğunda yayınların açık erişimli "
  1672. #~ "sürümlerine yeniden yönlendirir (eklenti "
  1673. #~ "gerekli)"
  1674. #~ msgid "Bang"
  1675. #~ msgstr "!bang"
  1676. #~ msgid ""
  1677. #~ "Change how forms are submitted, <a "
  1678. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1679. #~ " rel=\"external\">learn more about request "
  1680. #~ "methods</a>"
  1681. #~ msgstr ""
  1682. #~ "Formların gönderilme şeklini değiştirin, <a"
  1683. #~ " "
  1684. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1685. #~ " rel=\"external\">istek yöntemleri hakkında daha"
  1686. #~ " fazlasını öğrenin</a>"
  1687. #~ msgid "On"
  1688. #~ msgstr "Açık"
  1689. #~ msgid "Off"
  1690. #~ msgstr "Kapalı"
  1691. #~ msgid "Enabled"
  1692. #~ msgstr "Etkinleştirildi"
  1693. #~ msgid "Disabled"
  1694. #~ msgstr "Etkisizleştirildi"
  1695. #~ msgid ""
  1696. #~ "Perform search immediately if a category"
  1697. #~ " selected. Disable to select multiple "
  1698. #~ "categories. (JavaScript required)"
  1699. #~ msgstr ""
  1700. #~ "Bir kategori seçilirse hemen arama yap."
  1701. #~ " Birden çok kategori seçmek için "
  1702. #~ "devre dışı bırak. (JavaScript gerekli)"
  1703. #~ msgid "Vim-like hotkeys"
  1704. #~ msgstr "Vim benzeri kısayol tuşları"
  1705. #~ msgid ""
  1706. #~ "Navigate search results with Vim-like"
  1707. #~ " hotkeys (JavaScript required). Press \"h\""
  1708. #~ " key on main or result page to"
  1709. #~ " get help."
  1710. #~ msgstr ""
  1711. #~ "Vim benzeri kısayol tuşlarıyla arama "
  1712. #~ "sonuçlarında gezinin (JavaScript gerekli). "
  1713. #~ "Yardım almak için ana sayfada veya "
  1714. #~ "sonuç sayfasında \"h\" tuşuna basın."
  1715. #~ msgid ""
  1716. #~ "we didn't find any results. Please "
  1717. #~ "use another query or search in "
  1718. #~ "more categories."
  1719. #~ msgstr ""
  1720. #~ "herhangi bir sonuç bulamadık. Lütfen, "
  1721. #~ "başka bir sorgu kullanın veya daha "
  1722. #~ "fazla kategoride arama yapın."
  1723. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1724. #~ msgstr ""
  1725. #~ "Sonuçların sunucu adlarını tekrar yaz ya"
  1726. #~ " da sunucu adına göre sonuçları sil"
  1727. #~ msgid "Bytes"
  1728. #~ msgstr "Bayt"
  1729. #~ msgid "kiB"
  1730. #~ msgstr "kiB"
  1731. #~ msgid "MiB"
  1732. #~ msgstr "MiB"
  1733. #~ msgid "GiB"
  1734. #~ msgstr "GiB"
  1735. #~ msgid "TiB"
  1736. #~ msgstr "TiB"
  1737. #~ msgid "Hostname replace"
  1738. #~ msgstr "Sunucu adını değiştir"
  1739. #~ msgid "Error!"
  1740. #~ msgstr "Hata!"
  1741. #~ msgid "Engines cannot retrieve results"
  1742. #~ msgstr "Motorlar sonuçları alamıyor"
  1743. #~ msgid "Start submiting a new issue on GitHub"
  1744. #~ msgstr "GitHub'a Yeni bir hata göndeymeye başlayin"
  1745. #~ msgid "dummy"
  1746. #~ msgstr ""
  1747. #~ msgid "Random value generator"
  1748. #~ msgstr "Rastgele değer üreteci"
  1749. #~ msgid "Statistics functions"
  1750. #~ msgstr "İstatistik fonksiyonları"
  1751. #~ msgid "Compute {functions} of the arguments"
  1752. #~ msgstr "Bağımsız değişkenlerin {functions} değerini hesapla"
  1753. #~ msgid "Get directions"
  1754. #~ msgstr "Yönleri al"
  1755. #~ msgid ""
  1756. #~ "Displays your IP if the query is"
  1757. #~ " \"ip\" and your user agent if "
  1758. #~ "the query contains \"user agent\"."
  1759. #~ msgstr ""
  1760. #~ "Sorgu \"ip\" ise IP'nizi ve sorgu "
  1761. #~ "\"kullanıcı tanıtıcısı\" içeriyorsa kullanıcı "
  1762. #~ "tanıtıcınızı görüntüler."
  1763. #~ msgid ""
  1764. #~ "Could not download the list of Tor"
  1765. #~ " exit-nodes from: https://check.torproject.org"
  1766. #~ "/exit-addresses"
  1767. #~ msgstr ""
  1768. #~ "Tor çıkış düğümlerinin listesi şu "
  1769. #~ "adresten indirilemedi: https://check.torproject.org"
  1770. #~ "/exit-addresses"
  1771. #~ msgid ""
  1772. #~ "You are using Tor and it looks "
  1773. #~ "like you have this external IP "
  1774. #~ "address: {ip_address}"
  1775. #~ msgstr ""
  1776. #~ "Tor kullanıyorsunuz ve şu harici IP "
  1777. #~ "adresine sahip olduğunuz anlaşılıyor: "
  1778. #~ "{ip_address}"
  1779. #~ msgid ""
  1780. #~ "You are not using Tor and you "
  1781. #~ "have this external IP address: "
  1782. #~ "{ip_address}"
  1783. #~ msgstr "Tor kullanmıyorsunuz ve şu harici IP adresine sahipsiniz: {ip_address}"
  1784. #~ msgid "Keywords"
  1785. #~ msgstr "Anahtar kelimeler"
  1786. #~ msgid "/"
  1787. #~ msgstr ""
  1788. #~ msgid ""
  1789. #~ "Specifying custom settings in the "
  1790. #~ "preferences URL can be used to "
  1791. #~ "sync preferences across devices."
  1792. #~ msgstr ""
  1793. #~ "Tercihler URL'sinde özel ayarları belirtmek,"
  1794. #~ " cihazlar arasında senkronize etmek için"
  1795. #~ " kullanılabilir."
  1796. #~ msgid "proxied"
  1797. #~ msgstr "proxylendi"
  1798. #~ msgid ""
  1799. #~ "This tab does not exists in the"
  1800. #~ " user interface, but you can search"
  1801. #~ " in these engines by its !bangs."
  1802. #~ msgstr ""
  1803. #~ "Bu sekme kullanıcı arayüzünde yoktur, "
  1804. #~ "ancak bu motorlarda ona göre arama "
  1805. #~ "yapabilirsiniz."
  1806. #~ msgid "Results on new tabs"
  1807. #~ msgstr "Sonuçlar yeni sekmelerde"
  1808. #~ msgid "Open result links on new browser tabs"
  1809. #~ msgstr "Yeni tarayıcı sekmelerinde sonuçta ortaya çıkan bağlantıları aç"
  1810. #~ msgid "Find stuff as you type"
  1811. #~ msgstr "Yazarken bir şeyler bulun"
  1812. #~ msgid "Converts strings to different hash digests."
  1813. #~ msgstr "Dizileri farklı özdeğerlerine çevirir."
  1814. #~ msgid ""
  1815. #~ "Rewrite hostnames, remove results or "
  1816. #~ "prioritize them based on the hostname"
  1817. #~ msgstr ""
  1818. #~ "Sunucu adını tekrar yaz, sonuçları sil"
  1819. #~ " veya sunucu adına göre öncelik ver"
  1820. #~ msgid "With that list, you can assess SearXNG transparency."
  1821. #~ msgstr "Bu listeyle SeaXNG şeffaflığına ulaşbilirsiniz."
  1822. #~ msgid ""
  1823. #~ "These settings are stored in your "
  1824. #~ "cookies, this allows us not to "
  1825. #~ "store this data about you."
  1826. #~ msgstr ""
  1827. #~ "Bu ayarlar tanımlama bilgilerinde saklanır,"
  1828. #~ " bu sizin hakkınızda bu verileri "
  1829. #~ "saklamamamıza izin verir."
  1830. #~ msgid ""
  1831. #~ "These cookies serve your sole "
  1832. #~ "convenience, we don't use these cookies"
  1833. #~ " to track you."
  1834. #~ msgstr ""
  1835. #~ "Bu tanımlama bilgileri size kolaylık "
  1836. #~ "sağlar, sizi izlemek için bu çerezleri"
  1837. #~ " kullanmayız."
  1838. #~ msgid "Proxying image results through SearXNG"
  1839. #~ msgstr "Resim sonuçları SearXNG üzerinden vekil sunucu ile iletiliyor"
  1840. #~ msgid "Automatically load next page when scrolling to bottom of current page"
  1841. #~ msgstr ""
  1842. #~ "Şu anki sayfanın en altına "
  1843. #~ "kaydırıldığında sonraki sayfayı otomatik "
  1844. #~ "olarak yükle"
  1845. #~ msgid ""
  1846. #~ "Perform search immediately if a category"
  1847. #~ " selected. Disable to select multiple "
  1848. #~ "categories"
  1849. #~ msgstr ""
  1850. #~ "Kategori seçildikten sonra aramayı hemen "
  1851. #~ "uygulayın. Birden fazla kategori seçmek "
  1852. #~ "için devre dışı bırakın"
  1853. #~ msgid "Change SearXNG layout"
  1854. #~ msgstr "SearXNG düzenini değiştir"