messages.po 50 KB

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