messages.po 53 KB

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