messages.po 55 KB

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