messages.po 50 KB

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