tr.po 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280
  1. # Turkish translation for aria2
  2. # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008
  3. # This file is distributed under the same license as the aria2 package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, 2008.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: aria2\n"
  9. "Report-Msgid-Bugs-To: http://aria2.sourceforge.net/\n"
  10. "POT-Creation-Date: 2008-11-24 23:16+0900\n"
  11. "PO-Revision-Date: 2008-09-17 19:59+0900\n"
  12. "Last-Translator: wyginwys <Unknown>\n"
  13. "Language-Team: Turkish <tr@li.org>\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "X-Launchpad-Export-Date: 2008-09-17 10:24+0000\n"
  18. "X-Generator: Launchpad (build Unknown)\n"
  19. #: src/DownloadEngine.cc:820
  20. msgid ""
  21. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  22. msgstr "Kapanma başlıyor...Acil kapanış için Ctrl-C ye tekrar basın."
  23. #: src/DownloadEngine.cc:826
  24. msgid "Emergency shutdown sequence commencing..."
  25. msgstr "Acil kapanış başlıyor..."
  26. #: src/MultiUrlRequestInfo.cc:96
  27. msgid "aria2 will resume download if the transfer is restarted."
  28. msgstr "Transferi tekrar başlatırsanız, aria2 indirmeye devam edecek."
  29. #: src/MultiUrlRequestInfo.cc:98
  30. msgid ""
  31. "If there are any errors, then see the log file. See '-l' option in help/man "
  32. "page for details."
  33. msgstr ""
  34. "Bir hatayla karşılaşırsanız log dosyasına bakın. Detay için yardım ve man "
  35. "sayfalarındaki -l opsiyonuna bakın."
  36. #: src/RequestGroupMan.cc:389
  37. msgid "Download Results:"
  38. msgstr "Download Sonuçları:"
  39. #: src/RequestGroupMan.cc:430
  40. msgid "Status Legend:"
  41. msgstr "Durum Haritası:"
  42. #: src/OptionHandler.cc:38
  43. msgid " Default: "
  44. msgstr " Varsayılan: "
  45. #: src/OptionHandler.cc:39
  46. msgid " Tags: "
  47. msgstr " Etiketler: "
  48. #: src/OptionHandler.cc:40
  49. #, fuzzy
  50. msgid " Possible Values: "
  51. msgstr " Kullanılabilen Değerler: "
  52. #: src/OptionHandlerImpl.h:99
  53. msgid "must be either 'true' or 'false'."
  54. msgstr "ya 'doğru' ya da 'yanlış' olmalı"
  55. #: src/OptionHandlerImpl.h:130 src/OptionHandlerImpl.h:177
  56. #, c-format
  57. msgid "must be between %s and %s."
  58. msgstr "%s ya da %s arasında olmalı"
  59. #: src/OptionHandlerImpl.h:174
  60. #, c-format
  61. msgid "must be smaller than or equal to %s."
  62. msgstr "%s den küçük ya da ona eşit olmalı"
  63. #: src/OptionHandlerImpl.h:180
  64. #, c-format
  65. msgid "must be greater than or equal to %s."
  66. msgstr "%s den büyük ya da ona eşit olmalı"
  67. #: src/OptionHandlerImpl.h:183 src/OptionHandlerImpl.h:246
  68. msgid "must be a number."
  69. msgstr "bir sayı olmalı."
  70. #: src/OptionHandlerImpl.h:237
  71. #, c-format
  72. msgid "must be smaller than or equal to %.1f."
  73. msgstr "%.1f den küçük ya da ona eşit olmalı."
  74. #: src/OptionHandlerImpl.h:240
  75. #, c-format
  76. msgid "must be between %.1f and %.1f."
  77. msgstr "%.1f ya da %.1f arasında olmalı."
  78. #: src/OptionHandlerImpl.h:243
  79. #, c-format
  80. msgid "must be greater than or equal to %.1f."
  81. msgstr "%.1f den büyük ya da ona eşit olmalı"
  82. #: src/OptionHandlerImpl.h:380
  83. msgid "must be one of the following:"
  84. msgstr "şunlardan biri olmalı:"
  85. #: src/OptionHandlerImpl.h:427 src/OptionHandlerImpl.h:468
  86. msgid "unrecognized proxy format"
  87. msgstr "bilinmeyen proxy biçimi"
  88. #: src/usage_text.h:37
  89. msgid ""
  90. " -d, --dir=DIR The directory to store the downloaded file."
  91. msgstr " -d, --dir=KLASÖR İndirilen dosyanın saklanacağı klasör."
  92. #: src/usage_text.h:39
  93. msgid " -o, --out=FILE The file name of the downloaded file."
  94. msgstr " -o, --out=DOSYA İndirilen dosyanın adı."
  95. #: src/usage_text.h:41
  96. msgid ""
  97. " -l, --log=LOG The file name of the log file. If '-' is\n"
  98. " specified, log is written to stdout."
  99. msgstr ""
  100. " -l, --log=LOG Log dosyasının adı. Eğer '-' kullanılırsa\n"
  101. " log stdout a yazılır."
  102. #: src/usage_text.h:44
  103. msgid " -D, --daemon Run as daemon."
  104. msgstr " -D, --daemon Daemon olarak çalıştır."
  105. #: src/usage_text.h:46
  106. #, fuzzy
  107. msgid ""
  108. " -s, --split=N Download a file using N connections. If more\n"
  109. " than N URLs are given, first N URLs are used "
  110. "and\n"
  111. " remaining URLs are used for backup. If less "
  112. "than\n"
  113. " N URLs are given, those URLs are used more "
  114. "than\n"
  115. " once so that N connections total are made\n"
  116. " simultaneously. Please see -j option too.\n"
  117. " Please note that in Metalink download, this\n"
  118. " option has no effect and use -C option instead."
  119. msgstr ""
  120. " -s, --split=N N adet bağlantı kullanarak dosya indir.Eğer N den fazla URL "
  121. "verilirse,\n"
  122. " ilkönce N adet URL kullanılır ve\n"
  123. " kalanlar yedekleme için ayrılır.\n"
  124. " Eğer N den az URL verilirse,\n"
  125. " N adet bağlantı yapılacak şekilde\n"
  126. " verilen URLler birden fazla kullanılır.\n"
  127. " Lütfen -j opsiyonuna da bakın."
  128. #: src/usage_text.h:55
  129. #, fuzzy
  130. msgid ""
  131. " --retry-wait=SEC Set the seconds to wait to retry after an "
  132. "error\n"
  133. " has occured."
  134. msgstr ""
  135. " --retry-wait=SAN Bir hata olduğunda tekrar denemek\n"
  136. " için geçmesi geçen saniye. 0-60\n"
  137. " arasında bir değer veriniz.\n"
  138. " Varsayılan: 5"
  139. #: src/usage_text.h:58
  140. #, fuzzy
  141. msgid " -t, --timeout=SEC Set timeout in seconds."
  142. msgstr " -t, --timeout=SAN Saniye olarak zamanaşımı süresi.Varsayılan:60"
  143. #: src/usage_text.h:60
  144. #, fuzzy
  145. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  146. msgstr ""
  147. " -m, --max-tries=N Deneme sayısı. 0 girilirse sınırsız olarak denenir.\n"
  148. " Varsayılan: 5"
  149. #: src/usage_text.h:62
  150. #, fuzzy
  151. msgid ""
  152. " --http-proxy=PROXY Use this proxy server for HTTP.\n"
  153. " See also --all-proxy option.\n"
  154. " This affects all URLs."
  155. msgstr ""
  156. " --http-proxy-method=METOD Proxy isteği için metodu belirle.\n"
  157. " Metod 'get' ya da 'tunnel' den biri "
  158. "olmalıdır.\n"
  159. " Varsayılan: tunnel"
  160. #: src/usage_text.h:66
  161. #, fuzzy
  162. msgid ""
  163. " --https-proxy=PROXY Use this proxy server for HTTPS.\n"
  164. " See also --all-proxy option.\n"
  165. " This affects all URLs."
  166. msgstr ""
  167. " --http-proxy-method=METOD Proxy isteği için metodu belirle.\n"
  168. " Metod 'get' ya da 'tunnel' den biri "
  169. "olmalıdır.\n"
  170. " Varsayılan: tunnel"
  171. #: src/usage_text.h:70
  172. #, fuzzy
  173. msgid ""
  174. " --ftp-proxy=PROXY Use this proxy server for FTP.\n"
  175. " See also --all-proxy option.\n"
  176. " This affects all URLs."
  177. msgstr ""
  178. " --ftp-type=TİP FTP transfer tipini belirle. TİP 'binary' veya 'ascii' den "
  179. "biri olabilir.\n"
  180. " Varsayılan: binary"
  181. #: src/usage_text.h:74
  182. #, fuzzy
  183. msgid ""
  184. " --all-proxy=PROXY Use this proxy server in the all protocols.\n"
  185. " You can override this setting and specify a\n"
  186. " proxy server for particular proctol using\n"
  187. " --http-proxy, --https-proxy and --ftp-proxy\n"
  188. " options.\n"
  189. " This affects all URLs."
  190. msgstr ""
  191. " -c, --continue Daha önce bir kısmı indirilmiş dosyayı indirmeye devam et.\n"
  192. " Bu seçenek dosya baştan başlanarak "
  193. "indirildiği \n"
  194. " durumlarda (bir web tarayıcısı veya başka bir "
  195. "program)\n"
  196. " indirmeye devam etmek için kullanılır.Şimdilik "
  197. "sadece\n"
  198. " http(s) ve ftp için geçerlidir."
  199. #: src/usage_text.h:81
  200. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  201. msgstr ""
  202. " --http-user=KULLANICI HTTP kullanıcısını belirle.Bu bütün URLleri etkiler."
  203. #: src/usage_text.h:83
  204. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  205. msgstr " --http-passwd=SIFRE HTTP şifresini belirle.Bu bütün URLleri etkiler."
  206. #: src/usage_text.h:85
  207. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  208. msgstr ""
  209. #: src/usage_text.h:87
  210. #, fuzzy
  211. msgid ""
  212. " --http-auth-scheme=SCHEME Set HTTP authentication scheme. Currently, "
  213. "basic\n"
  214. " is the only supported scheme."
  215. msgstr ""
  216. " --http-auth-scheme=ŞEMA HTTP kimlik onaylama şeması.Şu anda\n"
  217. " sadece 'basic' destekleniyor.Varsayılan: basic"
  218. #: src/usage_text.h:90
  219. msgid " --referer=REFERER Set Referer. This affects all URLs."
  220. msgstr " --referer=REFERER Referer i belirle.Bu bütün URLleri etkiler."
  221. #: src/usage_text.h:92
  222. #, fuzzy
  223. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  224. msgstr ""
  225. " --http-user=KULLANICI HTTP kullanıcısını belirle.Bu bütün URLleri etkiler."
  226. #: src/usage_text.h:94
  227. #, fuzzy
  228. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  229. msgstr " --http-passwd=SIFRE HTTP şifresini belirle.Bu bütün URLleri etkiler."
  230. #: src/usage_text.h:96
  231. msgid " --ftp-type=TYPE Set FTP transfer type."
  232. msgstr ""
  233. #: src/usage_text.h:98
  234. msgid ""
  235. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  236. "given,\n"
  237. " the active mode will be used."
  238. msgstr ""
  239. #: src/usage_text.h:101
  240. #, fuzzy
  241. msgid ""
  242. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  243. "than\n"
  244. " or equal to this value(bytes per sec).\n"
  245. " 0 means aria2 does not have a lowest speed "
  246. "limit.\n"
  247. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  248. " This option does not affect BitTorrent "
  249. "downloads."
  250. msgstr ""
  251. " --lowest-speed-limit=HIZ Download hızı bu değerden düşük veya eşitse "
  252. "bağlantıyı\n"
  253. " kapat.Bu değer 0 olursa böyle bir limit "
  254. "olmaz.\n"
  255. " Değerin yanına K veya M (1K=1024, 1M=1024K) \n"
  256. " ekleyebilirsiniz.Bu değer BitTorrent "
  257. "downloadlarını\n"
  258. " etkilemez.Varsayılan:0"
  259. #: src/usage_text.h:107
  260. #, fuzzy
  261. msgid ""
  262. " --max-download-limit=SPEED Set max download speed in bytes per sec.\n"
  263. " 0 means unrestricted.\n"
  264. " You can append K or M(1K = 1024, 1M = 1024K)."
  265. msgstr ""
  266. " --max-download-limit=HIZ Maksimum download hızı(Bytes/saniye).\n"
  267. " 0 olursa sınırlama olmaz.Değerin yanına K veya "
  268. "M\n"
  269. " (1K=1024, 1M=1024K) ekleyebilirsiniz.\n"
  270. " Varsayılan:0"
  271. #: src/usage_text.h:111
  272. #, fuzzy
  273. msgid ""
  274. " --file-allocation=METHOD Specify file allocation method.\n"
  275. " 'none' doesn't pre-allocate file space. "
  276. "'prealloc'\n"
  277. " pre-allocates file space before download "
  278. "begins.\n"
  279. " This may take some time depending on the size "
  280. "of\n"
  281. " the file."
  282. msgstr ""
  283. " --file-allocation=METOD Dosya dağılım metodu. Metod 'none' veya\n"
  284. " 'prealloc' değerlerini alabilir.'none' "
  285. "seçilirse bir dağılım\n"
  286. " yapılmaz.'prealloc' seçilirse download "
  287. "başlamadan önce\n"
  288. " yer tahsis edilir.Bu işlem dosyanın "
  289. "bütüklüğüne göre belli\n"
  290. " bir süre alabilir.Varsayılan: prealloc"
  291. #: src/usage_text.h:117
  292. msgid ""
  293. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  294. " size is smaller than SIZE.\n"
  295. " You can append K or M(1K = 1024, 1M = 1024K)."
  296. msgstr ""
  297. " --no-file-allocation-limit=DEĞER Bu değerden küçük boyutlu dosyalar\n"
  298. " için yer ayrılmaz.Değerin yanına K veya M"
  299. "(1K=1024,\n"
  300. " 1M=1024K) ekleyebilirsiniz."
  301. #: src/usage_text.h:121
  302. msgid ""
  303. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  304. "while\n"
  305. " allocating files.\n"
  306. " Turn off if you encounter any error"
  307. msgstr ""
  308. " --enable-direct-io=true|false Direk G/Ç belirle.True yapılırsa\n"
  309. " dosya yer ayrımlarında düşük işlemci\n"
  310. " gücü kullanılır.Eğer bir hata olursa kapatın."
  311. #: src/usage_text.h:125
  312. #, fuzzy
  313. msgid ""
  314. " --allow-overwrite=true|false If false, aria2 doesn't download a file which\n"
  315. " already exists but the corresponding .aria2 "
  316. "file\n"
  317. " doesn't exist."
  318. msgstr ""
  319. " --allow-owerwrite=true|false False seçilirse aria2, .aria2 dosyası olmayan\n"
  320. " ama kendisi olan dosyayı indirmez.Varsayılan: "
  321. "false"
  322. #: src/usage_text.h:129
  323. msgid ""
  324. " --allow-piece-length-change=true|false If false is given, aria2 aborts "
  325. "download\n"
  326. " when a piece length is different from one in\n"
  327. " a control file. If true is given, you can "
  328. "proceed\n"
  329. " but some download progress will be lost."
  330. msgstr ""
  331. " --allow-piece-length-change=true|false False seçilirse, aria2 parça "
  332. "uzunluğunun\n"
  333. " kontrol dosyasındakinden farklı olduğu durumda "
  334. "indirmeyi\n"
  335. " bitirir.Eğer true seçilirse, devam "
  336. "edebilirsiniz ama indirmenizin\n"
  337. " bir kısmı kaybolur."
  338. #: src/usage_text.h:134
  339. #, fuzzy
  340. msgid ""
  341. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  342. "sequentially\n"
  343. " and download each URI in a separate session, "
  344. "like\n"
  345. " the usual command-line download utilities."
  346. msgstr ""
  347. " -Z, --force-sequential=true|false Komut satırındaki URIleri sırayla getir\n"
  348. " ve her URI yi ayrı bir oturumda indir (diğer "
  349. "komut satırı indirme\n"
  350. " programlarının yaptığı gibi).Varsayılan:false"
  351. #: src/usage_text.h:138
  352. #, fuzzy
  353. msgid ""
  354. " --auto-file-renaming[=true|false] Rename file name if the same file "
  355. "already\n"
  356. " exists. This option works only in http(s)/ftp\n"
  357. " download.\n"
  358. " The new file name has a dot and a number"
  359. "(1..9999)\n"
  360. " appended."
  361. msgstr ""
  362. " --auto-file-renaming=true|false Aynı isimli dosya varsa dosya ismini "
  363. "değiştir.\n"
  364. " Bu seçenek sadece http(s) ve ftp "
  365. "indirmelerinde geçerlidir.\n"
  366. " Yeni dosya adı . ve 1-9999 arasında bir sayı "
  367. "eklenerek oluşturulur.\n"
  368. " Varsayılan: true"
  369. #: src/usage_text.h:144
  370. #, fuzzy
  371. msgid ""
  372. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  373. " You can specify set of parts:\n"
  374. " http://{sv1,sv2,sv3}/foo.iso\n"
  375. " Also you can specify numeric sequences with "
  376. "step\n"
  377. " counter:\n"
  378. " http://host/image[000-100:2].img\n"
  379. " A step counter can be omitted.\n"
  380. " If all URIs do not point to the same file, "
  381. "such\n"
  382. " as the second example above, -Z option is\n"
  383. " required."
  384. msgstr ""
  385. " -P, --parametrized-uri=true|false Parametreli URI desteğini aç.\n"
  386. " Bir küme tanımlayabilirsiniz: \n"
  387. " http://{sv1,sv2,sv3}/foo.iso\n"
  388. " Bir dizi ve artış tanımlayabilirsiniz:\n"
  389. " http://host/image[000-100:2].img\n"
  390. " Artış atlanabilir.Eğer URIlerin hepsi\n"
  391. " aynı dosyaya işaret etmiyorsa(2.örnekte olduğu "
  392. "gibi)\n"
  393. " o zaman -Z eklenmelidir.Varsayılan: false"
  394. #: src/usage_text.h:155
  395. msgid ""
  396. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  397. msgstr " --enable-http-keep-alive=true|false HTTP/1.1devamlı bağlantıyı aç."
  398. #: src/usage_text.h:157
  399. #, fuzzy
  400. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  401. msgstr " --enable-http-keep-alive=true|false HTTP/1.1devamlı bağlantıyı aç."
  402. #: src/usage_text.h:159
  403. #, fuzzy
  404. msgid ""
  405. " -V, --check-integrity[=true|false] Check file integrity by validating "
  406. "piece\n"
  407. " hashes. This option has effect only in "
  408. "BitTorrent\n"
  409. " and Metalink downloads with chunk checksums.\n"
  410. " Use this option to re-download a damaged "
  411. "portion\n"
  412. " of a file."
  413. msgstr ""
  414. " --check-integrity=true|false Parça hashine bakarak dosya bütünlüğünü "
  415. "kontrol et.\n"
  416. " Bu seçenek sadece BitTorrent downloadlarında "
  417. "ve chunck checksum \n"
  418. " içeren Metalink downloadlarında geçerlidir. Bu "
  419. "seçenek kullanılarak\n"
  420. " bozuk parçalı bir dosya tekrar indirilebilir."
  421. "Varsayılan: false"
  422. #: src/usage_text.h:165
  423. #, fuzzy
  424. msgid ""
  425. " --realtime-chunk-checksum=true|false Validate chunk checksum while\n"
  426. " downloading a file in Metalink mode. This "
  427. "option\n"
  428. " on affects Metalink mode with chunk checksums."
  429. msgstr ""
  430. " --realtime-chunck-checksum=true|false Metalink modunda dosya indirirken \n"
  431. " chunkc checksumını doğrula.Bu seçenek sadece "
  432. "Metalink\n"
  433. " modunda ve chuck checksum olunca geçerlidir."
  434. "Varsayılan: true"
  435. #: src/usage_text.h:169
  436. msgid ""
  437. " -c, --continue Continue downloading a partially downloaded\n"
  438. " file. Use this option to resume a download\n"
  439. " started by a web browser or another program\n"
  440. " which downloads files sequentially from the\n"
  441. " beginning. Currently this option is only\n"
  442. " applicable to http(s)/ftp downloads."
  443. msgstr ""
  444. " -c, --continue Daha önce bir kısmı indirilmiş dosyayı indirmeye devam et.\n"
  445. " Bu seçenek dosya baştan başlanarak "
  446. "indirildiği \n"
  447. " durumlarda (bir web tarayıcısı veya başka bir "
  448. "program)\n"
  449. " indirmeye devam etmek için kullanılır.Şimdilik "
  450. "sadece\n"
  451. " http(s) ve ftp için geçerlidir."
  452. #: src/usage_text.h:176
  453. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  454. msgstr ""
  455. " -U, --user-agent=TARAYICI_KİMLİĞİ HTTP(S) için tarayıcı kimliğini belirler."
  456. #: src/usage_text.h:178
  457. msgid " -n, --no-netrc Disables netrc support."
  458. msgstr " -n, --no-netrc netrc desteğini kapatır."
  459. #: src/usage_text.h:180
  460. #, fuzzy
  461. msgid ""
  462. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  463. " multiple URIs for a single entity: separate\n"
  464. " URIs on a single line using the TAB "
  465. "character.\n"
  466. " Reads input from stdin when '-' is specified.\n"
  467. " The additional out and dir options can be\n"
  468. " specified after each line of URIs. This "
  469. "optional\n"
  470. " line must start with white space(s). See "
  471. "INPUT\n"
  472. " FILE section of man page for details."
  473. msgstr ""
  474. " -i, --input-file=DOSYA DOSYAda bulunan URIleri indirir.Bir dosya için "
  475. "değişik \n"
  476. " URIler tanımlamak istiyorsanız tek satıra TAB "
  477. "ile ayırarak\n"
  478. " yazın.Eğer '-' olarak belirtilirse stdin den "
  479. "okur."
  480. #: src/usage_text.h:189
  481. #, fuzzy
  482. msgid ""
  483. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  484. "for\n"
  485. " every static (HTTP/FTP) URL, torrent and "
  486. "metalink.\n"
  487. " See also -s and -C options."
  488. msgstr ""
  489. " -i, --max-concurrent-downloads=N Her statik HTTP/FTP URL, torrent ve "
  490. "metalink için maksimum \n"
  491. " paralel indirme sayısını belirler."
  492. #: src/usage_text.h:193
  493. #, fuzzy
  494. msgid ""
  495. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  496. "format\n"
  497. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  498. msgstr ""
  499. " --load-cookies=DOSYA Mozilla/Firefox (1.x/2.x) ve Netscape biçimlerini \n"
  500. " kullanarak DOSYAdaki çerezleri yükler."
  501. #: src/usage_text.h:196
  502. msgid ""
  503. " -S, --show-files Print file listing of .torrent or .metalink "
  504. "file\n"
  505. " and exit. More detailed information will be "
  506. "listed\n"
  507. " in case of torrent file."
  508. msgstr ""
  509. " -S\\ --show-files .torrent ve .metalink dosyasının listesini göster ve çık."
  510. "Torrent dosyalarında\n"
  511. " daha detaylı bilgi gösterilir."
  512. #: src/usage_text.h:200
  513. msgid ""
  514. " --select-file=INDEX... Set file to download by specifing its index.\n"
  515. " You can find the file index using the\n"
  516. " --show-files option. Multiple indexes can be\n"
  517. " specified by using ',', for example: \"3,6\".\n"
  518. " You can also use '-' to specify a range: \"1-5"
  519. "\".\n"
  520. " ',' and '-' can be used together.\n"
  521. " When used with the -M option, index may vary\n"
  522. " depending on the query(see --metalink-* "
  523. "options)."
  524. msgstr ""
  525. " --select-file=INDEKS... Indeksini belirlenen dosyayı indir.Dosyanın \n"
  526. " indeksini --show-files seçeneğini kullanarak "
  527. "bulabilirsiniz.\n"
  528. " ',' kullanarak birden fazla indeks "
  529. "belirtilebilir,örnek: \"3,6\".\n"
  530. " '-' kullanarak bir aralık belirtebilirsiniz: "
  531. "\"1-5\".\n"
  532. " '-' ve ',' bir arada kullanılabilir. -M "
  533. "seçeneğiyle birlikte\n"
  534. " kullanıldığında sorguya bağlı olarak indeks "
  535. "değişebilir\n"
  536. " (Daha fazla bilgi için --metalink* "
  537. "seçeneklerine bakın)."
  538. #: src/usage_text.h:209
  539. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  540. msgstr " -T, --torrent-file=TORRENT_DOSYASI .torrent dosyasının bulunduğu yer."
  541. #: src/usage_text.h:211
  542. msgid ""
  543. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  544. " whose suffix is .torrent or content type is\n"
  545. " application/x-bittorrent is downloaded, aria2\n"
  546. " parses it as a torrent file and downloads "
  547. "files\n"
  548. " mentioned in it.\n"
  549. " If mem is specified, a torrent file is not\n"
  550. " written to the disk, but is just kept in "
  551. "memory.\n"
  552. " If false is specified, the action mentioned "
  553. "above\n"
  554. " is not taken."
  555. msgstr ""
  556. " --follow-torrent=true|false|mem True veya mem seçilirse, .torrent uzantılı "
  557. "bir dosya ya da \n"
  558. " içerik tipi application/x-bittorrent olan bir "
  559. "dosya indirildiğinde, aria2\n"
  560. " onu bir torrent dosyası olarak okur ve "
  561. "içindeki dosyaları indirir.\n"
  562. " Eğer mem seçilirse, torrent dosyası diske "
  563. "yazılmaz sadece hafızada\n"
  564. " tutulur.Eğer false seçilirse, yukarıda "
  565. "anlatılan işler yapılmaz."
  566. #: src/usage_text.h:221
  567. #, fuzzy
  568. msgid ""
  569. " --direct-file-mapping=true|false Directly read from and write to each file\n"
  570. " mentioned in .torrent file."
  571. msgstr ""
  572. " --direct-file-mapping=true|false Bahsedilen .torrent dosyasındaki "
  573. "dosyalardan\n"
  574. " direkt oku ve hepsine yaz.Varsayılan: true."
  575. #: src/usage_text.h:224
  576. msgid ""
  577. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  578. " Multiple ports can be specified by using ',',\n"
  579. " for example: \"6881,6885\". You can also use "
  580. "'-'\n"
  581. " to specify a range: \"6881-6999\". ',' and '-' "
  582. "can\n"
  583. " be used together."
  584. msgstr ""
  585. " --listen-port=PORT BitTorrent için kullanılacak TCP Port numarası belirle.\n"
  586. " ',' kullanılarak birden çok port numarası "
  587. "belirtilebilir:\n"
  588. " örnek: '6881,6885'. '-' kullanılarak bir "
  589. "aralık da blirtebilirsiniz\n"
  590. " örnek: '6881-6999'. '-' ve ',' birlikte de "
  591. "kullanılabilir."
  592. #: src/usage_text.h:230
  593. #, fuzzy
  594. msgid ""
  595. " -u, --max-upload-limit=SPEED Set max upload speed in bytes per sec.\n"
  596. " 0 means unrestricted.\n"
  597. " You can append K or M(1K = 1024, 1M = 1024K)."
  598. msgstr ""
  599. " --max-upload-limit=HIZ Maksimum upload hızını belirler(bytes/saniye)\n"
  600. " 0 yapılırsa bir sınırlama olmaz.\n"
  601. " Değere K ve M (1K=1024, 1M=1024K)\n"
  602. " ekleyebilirsiniz.Varsayılan: 0"
  603. #: src/usage_text.h:234
  604. msgid ""
  605. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  606. " --seed-ratio option."
  607. msgstr ""
  608. " --speed-time=DAKİKA Tohumlama(seed) zamanını belirler. \n"
  609. " --seed-ratio seçeneğine de bakınız."
  610. #: src/usage_text.h:237
  611. msgid ""
  612. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  613. " until share ratio reaches RATIO. 1.0 is\n"
  614. " encouraged. Specify 0.0 if you intend to do\n"
  615. " seeding regardless of share ratio.\n"
  616. " If --seed-time option is specified along with\n"
  617. " this option, seeding ends when at least one "
  618. "of\n"
  619. " the conditions is satisfied."
  620. msgstr ""
  621. " --seed-ratio=ORAN Paylaşma oranını belirler. Paylaşma oranı ORAN olana "
  622. "kadar\n"
  623. " biten torrentleri tohumlar. 1.0 değeri tavsiye "
  624. "edilir. Paylaşma \n"
  625. " oranı ne olursa olsun tohumlama yapmak "
  626. "isterseniz bu değeri 0.0 \n"
  627. " yapın. --seed-time seçeneği de belirlenmişse, "
  628. "tohumlama işi bu iki\n"
  629. " şarttan biri sağlanınca biter."
  630. #: src/usage_text.h:245
  631. #, fuzzy
  632. msgid ""
  633. " --peer-id-prefix=PEERI_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  634. "in\n"
  635. " BitTorrent is 20 byte length. If more than 20\n"
  636. " bytes are specified, only first 20\n"
  637. " bytes are used. If less than 20 bytes are\n"
  638. " specified, the random alphabet characters are\n"
  639. " added to make it's length 20 bytes."
  640. msgstr ""
  641. " --peer-id-prefix=PEER_ID_ÖNEK Peer ID ön ekini belirler.BitTorrent de peer "
  642. "ID 20byte\n"
  643. " uzunluğundadır.20Byte dan daha fazla bir değer "
  644. "verilirse, sadece\n"
  645. " ilk 20 byte kullanılır.20Byte dan daha az bir "
  646. "değer verilirse, uzunluk\n"
  647. " 20Byte olacak şekilde rastgele alfabetik "
  648. "karakterler eklenir.\n"
  649. " Varsayılan: -aria2-"
  650. #: src/usage_text.h:252
  651. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  652. msgstr " --enable-peer-exchange=true|false Peer değişim eklentisini aç."
  653. #: src/usage_text.h:254
  654. msgid " --enable-dht[=true|false] Enable DHT functionality."
  655. msgstr " --enable-dht=true|false DHT özelliklerini aç."
  656. #: src/usage_text.h:256
  657. msgid ""
  658. " --dht-listen-port=PORT... Set UDP listening port for DHT.\n"
  659. " Multiple ports can be specified by using ',',\n"
  660. " for example: \"6881,6885\". You can also use "
  661. "'-'\n"
  662. " to specify a range: \"6881-6999\". ',' and '-' "
  663. "can\n"
  664. " be used together."
  665. msgstr " --dht-listen-port=PORT... DHT için UDP dinleme portunu aç."
  666. #: src/usage_text.h:262
  667. msgid ""
  668. " --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"
  669. " network."
  670. msgstr ""
  671. " --dht-entry-point=MAKİNE:PORT Makine ve portu DHT ağına giriş noktası "
  672. "olarak belirle."
  673. #: src/usage_text.h:265
  674. #, fuzzy
  675. msgid ""
  676. " --dht-file-path=PATH Change the DHT routing table file to PATH."
  677. msgstr " --conf-path=YOL Konfigürasyon dosyasının yerini belirle."
  678. #: src/usage_text.h:267
  679. msgid ""
  680. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  681. " If several encryption methods are provided by "
  682. "a\n"
  683. " peer, aria2 chooses a lowest one which "
  684. "satisfies\n"
  685. " the given level."
  686. msgstr ""
  687. " --bt-min-crypto-level=plain|arc4 Minimum şifreleme düzeyini belirle.\n"
  688. " Birden fazla şifreleme metodu peer tarafından\n"
  689. " sağlanıyorsa, aria2 bu düzeyi sağlayan en "
  690. "küçük\n"
  691. " olanın seçer."
  692. #: src/usage_text.h:272
  693. msgid ""
  694. " --bt-require-crypto=true|false If true is given, aria2 doesn't accept and\n"
  695. " establish connection with legacy BitTorrent\n"
  696. " handshake. Thus aria2 always uses Obfuscation\n"
  697. " handshake."
  698. msgstr ""
  699. " --bt-require-crypto=true|false True seçilirse aria2 BitTorrent tokalaşması "
  700. "ile\n"
  701. " bağlantıyı kabul etmez ve kurmaz.Dolayısıyla "
  702. "aria2\n"
  703. " her zaman obfuskasyon tokalaşmasını kullanır."
  704. #: src/usage_text.h:277
  705. msgid ""
  706. " --bt-request-peer-speed-limit=SPEED In BitTorrent downloads, if the "
  707. "download\n"
  708. " speed is lower than SPEED, aria2 initiates "
  709. "and\n"
  710. " accepts connections ignoring max peer cap.\n"
  711. " You can append K or M(1K = 1024, 1M = 1024K)."
  712. msgstr ""
  713. " --bt-request-peer-speed-limit=HIZ BitTorrent downloadlarında download hızı\n"
  714. " HIZ dan düşükse, aria2 maksimum peer "
  715. "kapasitesini\n"
  716. " gözönüne almadan bağlantıları başlatır.Değerin "
  717. "yanına\n"
  718. " K ve M (1K=1024, 1M=1024K) ekleyebilirsiniz."
  719. #: src/usage_text.h:282
  720. msgid ""
  721. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  722. "each\n"
  723. " BitTorrent download."
  724. msgstr ""
  725. " --bt-max-open-files=SAYI Bir BitTorrent downloadında açılacak maksimum \n"
  726. " dosya sayısını belirle."
  727. #: src/usage_text.h:285
  728. msgid ""
  729. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  730. " verifying piece hashes."
  731. msgstr ""
  732. " --bt-seed-unverified=true|false Daha önce indirilmiş dosyaları \n"
  733. " parça hashlerini kontrol etmeden tohumla."
  734. #: src/usage_text.h:288
  735. msgid " -M, --metalink-file=METALINK_FILE The file path to the .metalink file."
  736. msgstr ""
  737. " -M, --metalink-file=METALINK_FILE .metalink dosyasının yolunu belirle."
  738. #: src/usage_text.h:290
  739. #, fuzzy
  740. msgid ""
  741. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  742. " simultaneously. Some Metalinks regulates the\n"
  743. " number of servers to connect. aria2 strictly\n"
  744. " respects them. This means that if Metalink "
  745. "defines\n"
  746. " the maxconnections attribute lower than\n"
  747. " NUM_SERVERS, then aria2 uses the value of\n"
  748. " maxconnections attribute instead of "
  749. "NUM_SERVERS.\n"
  750. " See also -s and -j options."
  751. msgstr ""
  752. " --follow-metalink=true|false|mem True veya mem seçilirse, sonu .metalink "
  753. "olan veya\n"
  754. " içerik tipi application/metalink+xml olan bir "
  755. "dosya indirildiğinde,\n"
  756. " aria2 onu bir metalink dosyası olarak süzer ve "
  757. "onda belirtilen \n"
  758. " dosyaları indirir.\n"
  759. " Mem seçilirse metalink dosyası diske yazılmaz "
  760. "sadece hafızada \n"
  761. " tutulur. False seçilirse yukarıda bahsedilen "
  762. "işlem yapılmaz."
  763. #: src/usage_text.h:299
  764. msgid " --metalink-version=VERSION The version of the file to download."
  765. msgstr " --metalink-version=SÜRÜM İndirilecek dosyanın sürümü."
  766. #: src/usage_text.h:301
  767. msgid " --metalink-language=LANGUAGE The language of the file to download."
  768. msgstr " --metalink-language=DİL İndirilecek dosyanın dili."
  769. #: src/usage_text.h:303
  770. msgid ""
  771. " --metalink-os=OS The operating system of the file to download."
  772. msgstr " --metalink-os=OS İndirilecek dosyanın işletim sistemi."
  773. #: src/usage_text.h:305
  774. msgid ""
  775. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  776. " A comma-deliminated list of locations is\n"
  777. " acceptable."
  778. msgstr ""
  779. " --metalink-location=YER[,...] Tercih edilen sunucunun yeri.\n"
  780. " Virgülle ayrılmış liste de yazabilirsiniz."
  781. #: src/usage_text.h:309
  782. #, fuzzy
  783. msgid ""
  784. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specifiy "
  785. "'none'\n"
  786. " if you don't have any preferred protocol."
  787. msgstr " --metalink-preferred-protocol=PROTO Tercih edilen prokolü belirle."
  788. #: src/usage_text.h:312
  789. msgid ""
  790. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  791. " whose suffix is .metaink or content type is\n"
  792. " application/metalink+xml is downloaded, aria2\n"
  793. " parses it as a metalink file and downloads "
  794. "files\n"
  795. " mentioned in it.\n"
  796. " If mem is specified, a metalink file is not\n"
  797. " written to the disk, but is just kept in "
  798. "memory.\n"
  799. " If false is specified, the action mentioned "
  800. "above\n"
  801. " is not taken."
  802. msgstr ""
  803. " --follow-metalink=true|false|mem True veya mem seçilirse, sonu .metalink "
  804. "olan veya\n"
  805. " içerik tipi application/metalink+xml olan bir "
  806. "dosya indirildiğinde,\n"
  807. " aria2 onu bir metalink dosyası olarak süzer ve "
  808. "onda belirtilen \n"
  809. " dosyaları indirir.\n"
  810. " Mem seçilirse metalink dosyası diske yazılmaz "
  811. "sadece hafızada \n"
  812. " tutulur. False seçilirse yukarıda bahsedilen "
  813. "işlem yapılmaz."
  814. #: src/usage_text.h:322
  815. msgid ""
  816. " --metalink-enable-unique-protocol=true|false If true is given and several\n"
  817. " protocols are available for a mirror in a "
  818. "metalink\n"
  819. " file, aria2 uses one of them.\n"
  820. " Use --metalink-preferred-protocol option to\n"
  821. " specify the preference of protocol."
  822. msgstr ""
  823. " --metalink-enable-unique-protocol=true|false True seçilir ve bir metalink "
  824. "dosyasındaki\n"
  825. " yansı için farklı protokoller mevcutsa, aria2 "
  826. "onlardan birini kullanır.\n"
  827. " Protokol tercihi için --metalink-preferred-"
  828. "protocol seçeneğini\n"
  829. " kullanın."
  830. #: src/usage_text.h:328
  831. msgid " -v, --version Print the version number and exit."
  832. msgstr " -v, --version Sürüm numarasını göster ve çık."
  833. #: src/usage_text.h:330
  834. #, fuzzy
  835. msgid ""
  836. " -h, --help[=CATEGORY] Print usage and exit.\n"
  837. " The help messages are classified in several\n"
  838. " categories. For example, type \"--help=http\" "
  839. "for\n"
  840. " detailed explanation for the options related "
  841. "to\n"
  842. " http. If no matching category is found, "
  843. "search\n"
  844. " option name using a given word in middle "
  845. "match\n"
  846. " and print the result."
  847. msgstr " -h, --help=KATEGORİ Kullanımı göster ve çık."
  848. #: src/usage_text.h:338
  849. msgid " --no-conf Disable loading aria2.conf file."
  850. msgstr " --no-conf aria2.conf dosyasını yüklemeyi kapa."
  851. #: src/usage_text.h:340
  852. msgid ""
  853. " --conf-path=PATH Change the configuration file path to PATH."
  854. msgstr " --conf-path=YOL Konfigürasyon dosyasının yerini belirle."
  855. #: src/usage_text.h:342
  856. msgid ""
  857. " --stop=SEC Stop application after SEC seconds has "
  858. "passed.\n"
  859. " If 0 is given, this feature is disabled."
  860. msgstr ""
  861. " --stop=SANİYE SANİYE geçtiğinde uygulamayı durdur. 0 girilirse\n"
  862. " bu özellik kapatılır."
  863. #: src/usage_text.h:345
  864. msgid ""
  865. " --header=HEADER Append HEADER to HTTP request header. You can "
  866. "use\n"
  867. " this option repeatedly to specify more than "
  868. "one\n"
  869. " header:\n"
  870. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  871. "9J1\"\n"
  872. " http://host/file"
  873. msgstr ""
  874. " --header=BAŞLIK BAŞLIK başlığını HTTP istek başlığına ekle.Değişik \n"
  875. " başlıklar eklemek için bir kaç kere "
  876. "kullanabilirsiniz\n"
  877. " örnek: aria2c --header=\"X-A: b78\" --header="
  878. "\"X-B 9j1\" \n"
  879. " http://host/file"
  880. #: src/usage_text.h:351
  881. msgid " -q, --quiet[=true|false] Make aria2 quite (no console output)."
  882. msgstr ""
  883. " -q, --quiet=true|false aria2 yi sessiz (konsola çıktı gönderilmez) yapar."
  884. #: src/usage_text.h:353
  885. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  886. msgstr " --async-dns=true|false Asenkronize DNSi açar."
  887. #: src/usage_text.h:355
  888. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  889. msgstr " --ftp-reuse-connection=true|false FTPde bağlantıyı tekrar kullanır."
  890. #: src/usage_text.h:357
  891. msgid ""
  892. " --summary-interval=SEC Set interval to output download progress "
  893. "summary.\n"
  894. " Setting 0 suppresses the output."
  895. msgstr ""
  896. " --summary-interval=SANİYE İndirme ilerleme durumunun gösterileceği\n"
  897. " zaman aralığını belirler. 0 seçilirse çıktı "
  898. "gönderilmez."
  899. #: src/usage_text.h:360
  900. msgid " --log-level=LEVEL Set log level to output."
  901. msgstr " --log-level=SEVİYE Çıktı için log seviyesini belirler."
  902. #: src/usage_text.h:362
  903. #, fuzzy
  904. msgid ""
  905. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  906. "the\n"
  907. " remote HTTP/FTP server and if it is "
  908. "available,\n"
  909. " apply it to the local file."
  910. msgstr ""
  911. " --direct-file-mapping=true|false Bahsedilen .torrent dosyasındaki "
  912. "dosyalardan\n"
  913. " direkt oku ve hepsine yaz.Varsayılan: true."
  914. #: src/usage_text.h:366
  915. msgid ""
  916. " --connect-timeout=SEC Set the connect timeout in seconds to "
  917. "establish\n"
  918. " connection to HTTP/FTP/proxy server. After "
  919. "the\n"
  920. " connection is established, this option makes "
  921. "no\n"
  922. " effect and --timeout option is used instead."
  923. msgstr ""
  924. #: src/usage_text.h:371
  925. #, fuzzy
  926. msgid ""
  927. " --max-file-not-found=NUM If aria2 recieves `file not found' status from "
  928. "the\n"
  929. " remote HTTP/FTP servers NUM times without "
  930. "getting\n"
  931. " a single byte, then force the download to "
  932. "fail.\n"
  933. " Specify 0 to disable this option.\n"
  934. " This options is only effective only when "
  935. "using\n"
  936. " HTTP/FTP servers."
  937. msgstr ""
  938. " --file-allocation=METOD Dosya dağılım metodu. Metod 'none' veya\n"
  939. " 'prealloc' değerlerini alabilir.'none' "
  940. "seçilirse bir dağılım\n"
  941. " yapılmaz.'prealloc' seçilirse download "
  942. "başlamadan önce\n"
  943. " yer tahsis edilir.Bu işlem dosyanın "
  944. "bütüklüğüne göre belli\n"
  945. " bir süre alabilir.Varsayılan: prealloc"
  946. #: src/usage_text.h:378
  947. #, fuzzy
  948. msgid ""
  949. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  950. " If 'inorder' is given, URI is tried in the "
  951. "order\n"
  952. " appeared in the URI list.\n"
  953. " If 'feedback' is given, aria2 uses download "
  954. "speed\n"
  955. " observed in the previous downloads and choose\n"
  956. " fastest server in the URI list. This also\n"
  957. " effectively skips dead mirrors. The observed\n"
  958. " download speed is a part of performance "
  959. "profile\n"
  960. " of servers mentioned in --server-stat-of and\n"
  961. " --server-stat-if options."
  962. msgstr ""
  963. " --follow-torrent=true|false|mem True veya mem seçilirse, .torrent uzantılı "
  964. "bir dosya ya da \n"
  965. " içerik tipi application/x-bittorrent olan bir "
  966. "dosya indirildiğinde, aria2\n"
  967. " onu bir torrent dosyası olarak okur ve "
  968. "içindeki dosyaları indirir.\n"
  969. " Eğer mem seçilirse, torrent dosyası diske "
  970. "yazılmaz sadece hafızada\n"
  971. " tutulur.Eğer false seçilirse, yukarıda "
  972. "anlatılan işler yapılmaz."
  973. #: src/usage_text.h:389
  974. #, fuzzy
  975. msgid ""
  976. " --server-stat-of=FILE Specify the filename to which performance "
  977. "profile\n"
  978. " of the servers is saved. You can load saved "
  979. "data\n"
  980. " using --server-stat-if option."
  981. msgstr ""
  982. " --retry-wait=SAN Bir hata olduğunda tekrar denemek\n"
  983. " için geçmesi geçen saniye. 0-60\n"
  984. " arasında bir değer veriniz.\n"
  985. " Varsayılan: 5"
  986. #: src/usage_text.h:393
  987. msgid ""
  988. " --server-stat-if=FILE Specify the filename to load performance "
  989. "profile\n"
  990. " of the servers. The loaded data will be used "
  991. "in\n"
  992. " some URI selector such as 'feedback'.\n"
  993. " See also --uri-selector option"
  994. msgstr ""
  995. #: src/usage_text.h:398
  996. #, fuzzy
  997. msgid ""
  998. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  999. " performance profile of the servers since the "
  1000. "last\n"
  1001. " contact to them."
  1002. msgstr ""
  1003. " --retry-wait=SAN Bir hata olduğunda tekrar denemek\n"
  1004. " için geçmesi geçen saniye. 0-60\n"
  1005. " arasında bir değer veriniz.\n"
  1006. " Varsayılan: 5"
  1007. #: src/usage_text.h:402
  1008. #, fuzzy
  1009. msgid ""
  1010. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  1011. "seconds.\n"
  1012. " If 0 is given, a control file is not saved "
  1013. "during\n"
  1014. " download. aria2 saves a control file when it "
  1015. "stops\n"
  1016. " regardless of the value."
  1017. msgstr ""
  1018. " --bt-min-crypto-level=plain|arc4 Minimum şifreleme düzeyini belirle.\n"
  1019. " Birden fazla şifreleme metodu peer tarafından\n"
  1020. " sağlanıyorsa, aria2 bu düzeyi sağlayan en "
  1021. "küçük\n"
  1022. " olanın seçer."
  1023. #: src/usage_text.h:407
  1024. msgid ""
  1025. " --certificate=FILE Use the client certificate in FILE.\n"
  1026. " The certificate must be in PEM format.\n"
  1027. " You may use --private-key option to specify "
  1028. "the\n"
  1029. " private key."
  1030. msgstr ""
  1031. #: src/usage_text.h:412
  1032. #, fuzzy
  1033. msgid ""
  1034. " --private-key=FILE Use the private key in FILE.\n"
  1035. " The private key must be decrypted and in PEM\n"
  1036. " format. See also --certificate option."
  1037. msgstr ""
  1038. " --retry-wait=SAN Bir hata olduğunda tekrar denemek\n"
  1039. " için geçmesi geçen saniye. 0-60\n"
  1040. " arasında bir değer veriniz.\n"
  1041. " Varsayılan: 5"
  1042. #: src/usage_text.h:416
  1043. #, fuzzy
  1044. msgid ""
  1045. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  1046. "verify\n"
  1047. " the peers. The certificate file must be in "
  1048. "PEM\n"
  1049. " format and can contain multiple CA "
  1050. "certificates.\n"
  1051. " Use --check-certificate option to enable\n"
  1052. " verification."
  1053. msgstr ""
  1054. " --file-allocation=METOD Dosya dağılım metodu. Metod 'none' veya\n"
  1055. " 'prealloc' değerlerini alabilir.'none' "
  1056. "seçilirse bir dağılım\n"
  1057. " yapılmaz.'prealloc' seçilirse download "
  1058. "başlamadan önce\n"
  1059. " yer tahsis edilir.Bu işlem dosyanın "
  1060. "bütüklüğüne göre belli\n"
  1061. " bir süre alabilir.Varsayılan: prealloc"
  1062. #: src/usage_text.h:422
  1063. #, fuzzy
  1064. msgid ""
  1065. " --check-certificate[=true|false] Verify the peer using certificates "
  1066. "specified\n"
  1067. " in --ca-certificate option."
  1068. msgstr ""
  1069. " --bt-seed-unverified=true|false Daha önce indirilmiş dosyaları \n"
  1070. " parça hashlerini kontrol etmeden tohumla."
  1071. #: src/usage_text.h:425
  1072. #, fuzzy
  1073. msgid ""
  1074. " --no-proxy=DOMAINS Specify comma separated hostnames or domains "
  1075. "to\n"
  1076. " which proxy should not be used."
  1077. msgstr ""
  1078. " --speed-time=DAKİKA Tohumlama(seed) zamanını belirler. \n"
  1079. " --seed-ratio seçeneğine de bakınız."
  1080. #: src/version_usage.cc:54
  1081. msgid " version "
  1082. msgstr " sürüm "
  1083. #: src/version_usage.cc:71
  1084. #, c-format
  1085. msgid "Report bugs to %s"
  1086. msgstr "Hataları %s ye raporla"
  1087. #: src/version_usage.cc:76
  1088. #, c-format
  1089. msgid "Usage: %s [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]..."
  1090. msgstr ""
  1091. "Kullanım: %s [SEÇENEKLER ] [URL | TORRENT_DOSYASI | METALINK_DOSYASI]..."
  1092. #: src/version_usage.cc:86
  1093. #, fuzzy, c-format
  1094. msgid "Printing options whose name includes '%s'."
  1095. msgstr "'%s' ile başlayan seçenekler gösteriliyor."
  1096. #: src/version_usage.cc:89 src/version_usage.cc:111
  1097. msgid "Options:"
  1098. msgstr "Seçenekler:"
  1099. #: src/version_usage.cc:94
  1100. #, c-format
  1101. msgid "No help category or option name matching with '%s'."
  1102. msgstr "'%s' ile eşlenen bir seçenek ya da yardım kategorisi bulunamadı."
  1103. #: src/version_usage.cc:100
  1104. msgid "Printing all options."
  1105. msgstr "Tüm seçenekler gösteriliyor."
  1106. #: src/version_usage.cc:102
  1107. #, c-format
  1108. msgid "Printing options tagged with '%s'."
  1109. msgstr "%s ile etiketlenmiş seçenekler gösteriliyor."
  1110. #: src/version_usage.cc:106
  1111. #, c-format
  1112. msgid "See -h option to know other command-line options(%s)."
  1113. msgstr ""
  1114. "Diğer komut satırı seçeneklerine(%s) bakmak için -h seçeneğini kullanınız."
  1115. #: src/version_usage.cc:121
  1116. msgid ""
  1117. " You can specify multiple URLs. Unless you specify -Z option, all URLs must\n"
  1118. " point to the same file or downloading will fail."
  1119. msgstr ""
  1120. " Birde fazla URL belirleyebilirsiniz. -Z seçeneğini kullanmadığınız sürece,\n"
  1121. "tüm URLler aynı dosyayı göstermek zorundadır aksi halde download başlamaz."
  1122. #: src/version_usage.cc:123
  1123. msgid ""
  1124. " You can also specify arbitrary number of torrent files and metalink files\n"
  1125. " stored in a local drive. Please note that they are always treated as a\n"
  1126. " separate download."
  1127. msgstr ""
  1128. " Bir diskte depolanmış istediğiniz sayıda torrent ya da metalink dosyası\n"
  1129. "belirleyebilirsiniz.Bunların farklı downloadlar olarak değerlendirileceğini\n"
  1130. "unutmayınız."
  1131. #: src/version_usage.cc:128
  1132. msgid ""
  1133. " You can specify both torrent file with -T option and URLs. By doing this,\n"
  1134. " download a file from both torrent swarm and http/ftp server at the same "
  1135. "time,\n"
  1136. " while the data from http/ftp are uploaded to the torrent swarm. Note that\n"
  1137. " only single file torrent can be integrated with http/ftp."
  1138. msgstr ""
  1139. " -T seçeneğiyle torrent dosyasını ve URLleri belirleyebilirsiniz.Bu şekilde\n"
  1140. "bir dosyayı, http/ftp deki verinin torrent yığınına upload edildiği sırada,\n"
  1141. "hem torrent yığınından hem de http/ftp sunuculardan aynı anda "
  1142. "indirebilirsiniz.\n"
  1143. "Sadece bir dosyanın http/ftp ile entegre edileceğini unutmayın."
  1144. #: src/version_usage.cc:133
  1145. msgid ""
  1146. " Make sure that URL is quoted with single(') or double(\") quotation if it\n"
  1147. " contains \"&\" or any characters that have special meaning in shell."
  1148. msgstr ""
  1149. " Yazdığınız URL içinde, kabukta özel anlama sahip karakterler veya \"&\" "
  1150. "geçiyorsa\n"
  1151. "URLyi (') veya (\") içinde yazınız."
  1152. #: src/version_usage.cc:137
  1153. msgid "Refer to man page for more information."
  1154. msgstr "Detaylı bilgi için man sayfasına bakınız."
  1155. #: src/message.h:40
  1156. #, c-format
  1157. msgid "CUID#%d - The download for one segment completed successfully."
  1158. msgstr "CUID#%d - Bir parça başarıyla indirildi."
  1159. #: src/message.h:41
  1160. #, c-format
  1161. msgid "CUID#%d - No segment available."
  1162. msgstr "CUID#%d - Kullanılabilir parça yok."
  1163. #: src/message.h:42
  1164. #, c-format
  1165. msgid "CUID#%d - Connecting to %s:%d"
  1166. msgstr "CUID#%d - %s:%d ye bağlanıyor."
  1167. #: src/message.h:43
  1168. #, c-format
  1169. msgid ""
  1170. "CUID#%d - The segment changed. We send the request again with new Range "
  1171. "header."
  1172. msgstr "CUID#%d - Parça değişti.Yeni aralık başlıklı isteği gönderdik."
  1173. #: src/message.h:44
  1174. #, c-format
  1175. msgid "CUID#%d - Redirecting to %s"
  1176. msgstr "CUID#%d - %s'a yönlendiriliyor"
  1177. #: src/message.h:45
  1178. #, c-format
  1179. msgid ""
  1180. "CUID#%d - Requesting:\n"
  1181. "%s"
  1182. msgstr ""
  1183. "CUID#%d - İsteniyor:\n"
  1184. "%s"
  1185. #: src/message.h:46
  1186. #, c-format
  1187. msgid ""
  1188. "CUID#%d - Response received:\n"
  1189. "%s"
  1190. msgstr ""
  1191. "CUID#%d - Cevap alındı:\n"
  1192. "%s"
  1193. #: src/message.h:47
  1194. #, c-format
  1195. msgid "CUID#%d - Download aborted. URI=%s"
  1196. msgstr "CUID#%d - indirme iptal edildi. URI=%s"
  1197. #: src/message.h:48
  1198. #, c-format
  1199. msgid "CUID#%d - Restarting the download. URI=%s"
  1200. msgstr "CUID#%d - İndirmeye yeniden başlanıyor. URI=%s"
  1201. #: src/message.h:49
  1202. #, c-format
  1203. msgid "CUID#%d - Download aborted."
  1204. msgstr "CUID#%d - İndirme iptal edildi."
  1205. #: src/message.h:50
  1206. #, c-format
  1207. msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  1208. msgstr "CUID#%d - %d kere denendi, ama sonuç başarısız. İndirme iptal edildi."
  1209. #: src/message.h:51
  1210. #, c-format
  1211. msgid "CUID#%d - Unregistering cuid from segmentManager."
  1212. msgstr "CUID#%d - segmentManager daki cuid kaydı siliniyor."
  1213. #: src/message.h:57
  1214. #, c-format
  1215. msgid "CUID#%d - we got new piece. index=%d"
  1216. msgstr "CUID#%d - yeni parça aldık. indeks=%d"
  1217. #: src/message.h:58
  1218. #, c-format
  1219. msgid "CUID#%d - we got wrong piece. index=%d"
  1220. msgstr "CUID#%d - yanlış parça aldık. indeks=%d"
  1221. #: src/message.h:59
  1222. #, c-format
  1223. msgid "CUID#%d - Download not complete: %s"
  1224. msgstr "CUID#%d - İndirme tamamlanmadı: %s"
  1225. #: src/message.h:60
  1226. #, c-format
  1227. msgid "#%d - Download has already completed: %s"
  1228. msgstr "#%d - İndirme zaten bitmişti : %s"
  1229. #: src/message.h:61
  1230. #, c-format
  1231. msgid "CUID#%d - Good checksum: %s"
  1232. msgstr "CUID#%d - Checksum doğru: %s"
  1233. #: src/message.h:62
  1234. #, c-format
  1235. msgid "CUID#%d - Bad checksum: %s"
  1236. msgstr "CUID#%d - Checksum yanlış: %s"
  1237. #: src/message.h:63
  1238. #, c-format
  1239. msgid "CUID#%d - Resolving hostname %s"
  1240. msgstr "CUID#%d - Makine adı çözülüyor %s"
  1241. #: src/message.h:64
  1242. #, c-format
  1243. msgid "CUID#%d - Name resolution complete: %s -> %s"
  1244. msgstr "CUID#%d - Makine adı çözüldü : %s -> %s"
  1245. #: src/message.h:65
  1246. #, c-format
  1247. msgid "CUID#%d - Name resolution for %s failed:%s"
  1248. msgstr "CUID#%d - %s için makine adı çözülemedi. %s"
  1249. #: src/message.h:66
  1250. #, c-format
  1251. msgid "CUID#%d - DNS cache hit: %s -> %s"
  1252. msgstr "CUID%d - DNS kaşesi bulundu: %s -> %s"
  1253. #: src/message.h:67
  1254. #, c-format
  1255. msgid "CUID#%d - Abort requested."
  1256. msgstr "CUID#%d - İşlem iptal edildi."
  1257. #: src/message.h:68
  1258. #, c-format
  1259. msgid "CUID#%d - Connecting to the peer %s"
  1260. msgstr "CUID#%d - %s peer ine bağlanıyor"
  1261. #: src/message.h:69
  1262. #, c-format
  1263. msgid ""
  1264. "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  1265. "blockIndex=%d"
  1266. msgstr ""
  1267. "CUID#%d - Parça alındı. indeks=%d, başlangıç=%d, uzunluk=%d, artış=%llu, "
  1268. "blokindeksi=%d"
  1269. #: src/message.h:70
  1270. #, c-format
  1271. msgid "CUID#%d - Piece bitfield %s"
  1272. msgstr "CUID#%d - bitfield parçası %s"
  1273. #: src/message.h:71
  1274. #, c-format
  1275. msgid ""
  1276. "CUID#%d - Reject piece message in queue because the peer has been choked. "
  1277. "index=%d, begin=%d, length=%d"
  1278. msgstr ""
  1279. "CUID#%d - peer tıkandığı için sıradaki mesaj parçasını kabul etme. indeks=%"
  1280. "d, başlangıç=%d, uzunluk=%d"
  1281. #: src/message.h:72
  1282. #, c-format
  1283. msgid ""
  1284. "CUID#%d - Reject piece message in queue because cancel message received. "
  1285. "index=%d, begin=%d, length=%d"
  1286. msgstr ""
  1287. "CUID#%d - İptal mesajı alındığı için sıradaki mesaj parçasını kabul etme. "
  1288. "indeks=%d, başlangıç=%d, uzunluk=%d"
  1289. #: src/message.h:73
  1290. #, c-format
  1291. msgid "CUID#%d - Exception caught while validating file integrity."
  1292. msgstr "CUID#%d - Dosya bütünlüğü doğrulanırken öngörülmeyen bir hata oluştu."
  1293. #: src/message.h:74
  1294. #, c-format
  1295. msgid "CUID#%d - Interested in the peer"
  1296. msgstr "CUID#%d - peer ile ilgileniyor"
  1297. #: src/message.h:75
  1298. #, c-format
  1299. msgid "CUID#%d - Not interested in the peer"
  1300. msgstr "CUID#%d - peer ile ilgilenmiyor"
  1301. #: src/message.h:76
  1302. #, c-format
  1303. msgid "CUID#%d - Deleting request slot index=%d, blockIndex=%d"
  1304. msgstr "CUID#%d - İstek yuvası siliniyor indeks=%d, blokindeksi=%d"
  1305. #: src/message.h:77
  1306. #, c-format
  1307. msgid ""
  1308. "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  1309. "got choked."
  1310. msgstr ""
  1311. "CUID#%d - Bu makine tıkandığı için istek yuvası siliniyor indeks=%d, "
  1312. "blokindeksi=%d"
  1313. #: src/message.h:78
  1314. #, c-format
  1315. msgid "CUID#%d - Deleting request slot blockIndex=%d because of time out"
  1316. msgstr "CUID#%d - Zamanaşımından dolayı istek yuvası siliniyor blokindeksi=%d"
  1317. #: src/message.h:79
  1318. #, c-format
  1319. msgid ""
  1320. "CUID#%d - Deleting request slot blockIndex=%d because the block has been "
  1321. "acquired."
  1322. msgstr "CUID#%d - Blok elde edildiği için blok yuvası siliniyor blokindeksi=%d"
  1323. #: src/message.h:80
  1324. #, c-format
  1325. msgid "CUID#%d - Fast extension enabled."
  1326. msgstr "CUID#%d - Hızlı eklenti açıldı."
  1327. #: src/message.h:81
  1328. #, c-format
  1329. msgid "CUID#%d - Extended Messaging enabled."
  1330. msgstr "CUID#%d - İlave mesajlaşma açıldı."
  1331. #: src/message.h:82
  1332. #, c-format
  1333. msgid "CUID#%d - Exception caught while allocating file space."
  1334. msgstr "CUID#%d - Dosya alanı ayrılırken öngörülmeyen bir hata oluştu."
  1335. #: src/message.h:83
  1336. #, c-format
  1337. msgid "CUID#%d - Content-Disposition detected. Use %s as filename"
  1338. msgstr ""
  1339. "CUID#%d - Content-Disposition algılandı. Dosya adı olarak %s kullanınız."
  1340. #: src/message.h:84
  1341. #, c-format
  1342. msgid "CUID#%d - Peer %s:%d banned."
  1343. msgstr "CUID#%d - Peer %s:%d yasaklandı."
  1344. #: src/message.h:85
  1345. #, c-format
  1346. msgid "CUID#%d - Using port %d for accepting new connections"
  1347. msgstr "CUID#%d - Yeni bağlantılar için %d portu kullanılıyor."
  1348. #: src/message.h:86
  1349. #, c-format
  1350. msgid "CUID#%d - An error occurred while binding port=%d"
  1351. msgstr "CUID#%d - %d portu bağlanırken bir hata oluştu."
  1352. #: src/message.h:87
  1353. #, c-format
  1354. msgid "CUID#%d - Incoming connection, adding new command CUID#%d"
  1355. msgstr "CUID#%d - Yeni bağlantı geliyor, CUID#%d komutu ekleniyor"
  1356. #: src/message.h:88
  1357. #, c-format
  1358. msgid "CUID#%d - Error in accepting connection"
  1359. msgstr "CUID#%d - Bağlantı kabulünde hata"
  1360. #: src/message.h:89
  1361. #, c-format
  1362. msgid "CUID#%d - Error occurred while processing tracker response."
  1363. msgstr "CUID#%d - İzleyenin cevabını işlerken bir hata oluştu."
  1364. #: src/message.h:90
  1365. #, c-format
  1366. msgid "CUID#%d - Cannot create tracker request."
  1367. msgstr "CUID#%d - İzleyici isteği oluşturulamıyor."
  1368. #: src/message.h:91
  1369. #, c-format
  1370. msgid "CUID#%d - Creating new tracker request command #%d"
  1371. msgstr "CUID#%d - #%d yeni izleyici istek komutu oluşturuluyor"
  1372. #: src/message.h:92
  1373. #, c-format
  1374. msgid "CUID#%d - The peer is DHT-enabled."
  1375. msgstr "CUID#%d - Peer de DHT mevcut."
  1376. #: src/message.h:94
  1377. #, c-format
  1378. msgid "Unrecognized URI or unsupported protocol: %s"
  1379. msgstr "Anlaşılmayan URI ya da desteklenmeyen protokol: %s"
  1380. #: src/message.h:95
  1381. #, c-format
  1382. msgid "Tracker returned warning message: %s"
  1383. msgstr "İzleyici %s uyarı mesajını gönderdi."
  1384. #: src/message.h:96
  1385. #, c-format
  1386. msgid "The segment file %s exists."
  1387. msgstr "%s dosya parçası var."
  1388. #: src/message.h:97
  1389. #, c-format
  1390. msgid "The segment file %s does not exist."
  1391. msgstr "%s dosya parçası yok."
  1392. #: src/message.h:98
  1393. #, c-format
  1394. msgid "Saving the segment file %s"
  1395. msgstr "%s dosya parçası kaydediliyor."
  1396. #: src/message.h:99
  1397. msgid "The segment file was saved successfully."
  1398. msgstr "Dosya parçası başarıyla kaydedildi."
  1399. #: src/message.h:100
  1400. #, c-format
  1401. msgid "Loading the segment file %s."
  1402. msgstr "%s dosya parçası yükleniyor."
  1403. #: src/message.h:101
  1404. msgid "The segment file was loaded successfully."
  1405. msgstr "Dosya parçası başarıyla yüklendi."
  1406. #: src/message.h:102
  1407. msgid "No URI to download. Download aborted."
  1408. msgstr "İndirilecek URI yok.İndirme iptal edildi."
  1409. #: src/message.h:103
  1410. #, c-format
  1411. msgid ""
  1412. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1413. "canceled in order to prevent your file from being truncated to 0. If you are "
  1414. "sure to download the file all over again, then delete it or add --allow-"
  1415. "overwrite=true option and restart aria2."
  1416. msgstr ""
  1417. "%s dosyası var ama (*.aria2) kontrol dosyası yok.İndirme dosyanızın boyutunu "
  1418. "sıfırlamamak için iptal edildi.\n"
  1419. "Tekrar indirmek istediğinizden emin iseniz ya silin ya da --allow-"
  1420. "overwrıte=true seçeneğini ekleyip aria2yi tekrar başlatın."
  1421. #: src/message.h:104
  1422. #, c-format
  1423. msgid "Allocating file %s, %s bytes"
  1424. msgstr "%s dosyasına yer ayrılıyor, %s bytes"
  1425. #: src/message.h:105
  1426. msgid "File not found"
  1427. msgstr "Dosya bulunamadı"
  1428. #: src/message.h:106
  1429. msgid "Not a directory"
  1430. msgstr "Bir dizin değil"
  1431. #: src/message.h:107
  1432. #, c-format
  1433. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1434. msgstr "Chekcksumlar yetersiz. checksumuzunluğu=%d checksumsayısı=%d"
  1435. #: src/message.h:108
  1436. #, c-format
  1437. msgid "Writing file %s"
  1438. msgstr "%s dosyası yazılıyor"
  1439. #: src/message.h:109
  1440. msgid "No peer list received."
  1441. msgstr "Hiç peer listesi alınmadı"
  1442. #: src/message.h:110
  1443. #, c-format
  1444. msgid "Adding peer %s:%d"
  1445. msgstr "%s:%d peer i ekleniyor"
  1446. #: src/message.h:111
  1447. #, c-format
  1448. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1449. msgstr "Kullanılan parça siliniyor indeks=%d, fillRate(%%)=%d<=%d"
  1450. #: src/message.h:112
  1451. msgid "Download of selected files was complete."
  1452. msgstr "Seçilen dosya indirildi."
  1453. #: src/message.h:113
  1454. msgid "The download was complete."
  1455. msgstr "İndirme tamamnlandı."
  1456. #: src/message.h:114
  1457. #, c-format
  1458. msgid "Removed %d have entries."
  1459. msgstr "Girdili %d silindi."
  1460. #: src/message.h:115
  1461. #, c-format
  1462. msgid "Validating file %s"
  1463. msgstr "%s dosyası doğrulanıyor"
  1464. #: src/message.h:116
  1465. #, c-format
  1466. msgid "%d seconds to allocate %s byte(s)"
  1467. msgstr "%d saniyede %s byte(s) için yer ayrılacak"
  1468. #: src/message.h:117
  1469. #, c-format
  1470. msgid "Dispatching FileAllocationCommand for CUID#%d."
  1471. msgstr "CUID#%d için FileAllocationCommand gönderiliyor"
  1472. #: src/message.h:118
  1473. #, c-format
  1474. msgid "Metalink: Queueing %s for download."
  1475. msgstr "Metalink: %s indirme sırasına alınıyor."
  1476. #: src/message.h:119
  1477. #, c-format
  1478. msgid "Download complete: %s"
  1479. msgstr "İndirme tamamnlandı: %s"
  1480. #: src/message.h:120
  1481. msgid "Seeding is over."
  1482. msgstr "Tohumlama bitti."
  1483. #: src/message.h:121
  1484. #, c-format
  1485. msgid "CUID#%d cancels segment index=%d. CUID#%d handles it instead."
  1486. msgstr "CUID#%d indeks=%d segmenti iptal etti.CUID#%d onunla ilgileniyor."
  1487. #: src/message.h:122
  1488. msgid "No chunk to verify."
  1489. msgstr "Doğrulanacak parça yok."
  1490. #: src/message.h:123
  1491. #, c-format
  1492. msgid "Good chunk checksum. hash=%s"
  1493. msgstr "Parça checksumı doğru. hash=%s"
  1494. #: src/message.h:124
  1495. #, c-format
  1496. msgid "Failed to load cookies from %s"
  1497. msgstr "%s den çerezler yüklenemedi."
  1498. #: src/message.h:125
  1499. #, c-format
  1500. msgid ""
  1501. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1502. "support disabled."
  1503. msgstr ""
  1504. "%s .netrc dosyasında doğru izinler yok.İzinler 600 olmalıydı. netrc desteği "
  1505. "kaptıldı."
  1506. #: src/message.h:126
  1507. msgid "Logging started."
  1508. msgstr "Loglama başladı."
  1509. #: src/message.h:127
  1510. msgid "Specify at least one URL."
  1511. msgstr "En az bir URl belirlemelisiniz."
  1512. #: src/message.h:128
  1513. msgid "daemon failed."
  1514. msgstr "daemon başarısız."
  1515. #: src/message.h:129
  1516. #, c-format
  1517. msgid "Verification finished successfully. file=%s"
  1518. msgstr "Doğrulama başarıyla tamamlandı.Dosya=%s"
  1519. #: src/message.h:130
  1520. #, c-format
  1521. msgid "Checksum error detected. file=%s"
  1522. msgstr "Checksumda hata bulundu. Dosya=%s"
  1523. #: src/message.h:131
  1524. #, c-format
  1525. msgid "Incomplete range specified. %s"
  1526. msgstr "Eksik aralık belirtildi.%s"
  1527. #: src/message.h:132
  1528. #, c-format
  1529. msgid "Failed to convert string into value: %s"
  1530. msgstr "Dizi değeri sayıya çevrilemiyor: %s"
  1531. #: src/message.h:133
  1532. msgid "Resource not found"
  1533. msgstr "Kaynak bulunamadı"
  1534. #: src/message.h:134
  1535. #, c-format
  1536. msgid "File already exists. Renamed to %s."
  1537. msgstr "Bu isimde zaten bir dosya var. Yeni isim %s verildi."
  1538. #: src/message.h:135
  1539. msgid "Cannot parse metalink XML file. XML may be malformed."
  1540. msgstr "Metalink XML dosyası okunamıyor.Yanlış formatta olabilir."
  1541. #: src/message.h:136
  1542. #, c-format
  1543. msgid "Too small payload size for %s, size=%d."
  1544. msgstr "%s için payload büyüklüğü çok az, büyüklük=%d"
  1545. #: src/message.h:137
  1546. #, c-format
  1547. msgid ""
  1548. "Removed the defunct control file %s because the download file %s doesn't "
  1549. "exist."
  1550. msgstr "Çalışmayan kontrol dosyası %s silindi, çünkü %s indirme dosyası yok."
  1551. #: src/message.h:138
  1552. #, c-format
  1553. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1554. msgstr "Paylaşma oranınız %.1f , upload/download=%sB/%sB"
  1555. #: src/message.h:139
  1556. #, c-format
  1557. msgid "Missing %s in torrent metainfo."
  1558. msgstr "Torrent meta bilgilerinde %s eksik."
  1559. #: src/message.h:140
  1560. msgid "Tracker returned null data."
  1561. msgstr "İzleyici boş veri gönderdi."
  1562. #: src/message.h:141
  1563. msgid "Windows socket library initialization failed"
  1564. msgstr "Windows soket kütüphanesi başlatılamadı."
  1565. #: src/message.h:142
  1566. #, c-format
  1567. msgid "%d second(s) has passed. Stopping application."
  1568. msgstr "%d saniye geçti.Uygulama sonlandırılıyor."
  1569. #: src/message.h:143
  1570. #, c-format
  1571. msgid ""
  1572. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1573. msgstr ""
  1574. "İmza %s olarak kaydedildi.aria2 nin imzaları kontrol etmediğini unutmayınız."
  1575. #: src/message.h:145
  1576. #, c-format
  1577. msgid "Saving signature as %s failed. Maybe file already exists."
  1578. msgstr "İmza %s olarak kayededilemiyor.Böyle bir dosya var olabilir."
  1579. #: src/message.h:148
  1580. #, fuzzy, c-format
  1581. msgid "Failed to open ServerStat file %s for read."
  1582. msgstr "%s dosyası %s sebebinden açılamadı"
  1583. #: src/message.h:149
  1584. #, fuzzy, c-format
  1585. msgid "ServerStat file %s loaded successfully."
  1586. msgstr "Dosya parçası başarıyla yüklendi."
  1587. #: src/message.h:150
  1588. #, fuzzy, c-format
  1589. msgid "Failed to read ServerStat from %s."
  1590. msgstr "Diskten veri okunamadı."
  1591. #: src/message.h:153
  1592. #, fuzzy, c-format
  1593. msgid "Failed to open ServerStat file %s for write."
  1594. msgstr "%s dosyası %s sebebinden açılamadı"
  1595. #: src/message.h:154
  1596. #, fuzzy, c-format
  1597. msgid "ServerStat file %s saved successfully."
  1598. msgstr "Dosya parçası başarıyla kaydedildi."
  1599. #: src/message.h:155
  1600. #, fuzzy, c-format
  1601. msgid "Failed to write ServerStat to %s."
  1602. msgstr "%s sebebinden dolayı veri alınamıyor"
  1603. #: src/message.h:158
  1604. #, fuzzy, c-format
  1605. msgid "Failed to establish connection, cause: %s"
  1606. msgstr "%s sebebiyle peer bağlantısı kabul edilmedi"
  1607. #: src/message.h:159
  1608. #, c-format
  1609. msgid "Network problem has occurred. cause:%s"
  1610. msgstr ""
  1611. #: src/message.h:161
  1612. #, fuzzy, c-format
  1613. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  1614. msgstr "%s dosyasından %s sebebiyle okunamadı"
  1615. #: src/message.h:163
  1616. #, c-format
  1617. msgid "Certificate verification failed. Cause: %s"
  1618. msgstr ""
  1619. #: src/message.h:164
  1620. #, fuzzy
  1621. msgid "No certificate found."
  1622. msgstr "Hiç başlık bulunamadı."
  1623. #: src/message.h:165
  1624. msgid "Hostname not match."
  1625. msgstr ""
  1626. #: src/message.h:167
  1627. msgid "Timeout."
  1628. msgstr "Zamanaşımı."
  1629. #: src/message.h:168
  1630. msgid "Invalid chunk size."
  1631. msgstr "Geçersiz parça büyüklüğü."
  1632. #: src/message.h:169
  1633. #, c-format
  1634. msgid "Too large chunk. size=%d"
  1635. msgstr "Çok büyük parça. büyüklük=%d"
  1636. #: src/message.h:170
  1637. msgid "Invalid header."
  1638. msgstr "Geçersiz başlık."
  1639. #: src/message.h:171
  1640. msgid "Invalid response."
  1641. msgstr "Geçersiz cevap."
  1642. #: src/message.h:172
  1643. msgid "No header found."
  1644. msgstr "Hiç başlık bulunamadı."
  1645. #: src/message.h:173
  1646. msgid "No status header."
  1647. msgstr "Durum başlığı yok."
  1648. #: src/message.h:174
  1649. msgid "Proxy connection failed."
  1650. msgstr "Proxy bağlantısı oluşturulamadı."
  1651. #: src/message.h:175
  1652. msgid "Connection failed."
  1653. msgstr "Bağlantı başarısız."
  1654. #: src/message.h:176
  1655. #, c-format
  1656. msgid ""
  1657. "The requested filename and the previously registered one are not same. "
  1658. "Expected:%s Actual:%s"
  1659. msgstr ""
  1660. "İstenilen ve daha önce kaydedilen dosya isimleri aynı değil. Beklenen:%s "
  1661. "Verilen:%s"
  1662. #: src/message.h:177
  1663. #, c-format
  1664. msgid "The response status is not successful. status=%d"
  1665. msgstr "Cevap durumu başarılı değil. durum=%d"
  1666. #: src/message.h:178
  1667. #, c-format
  1668. msgid "Too large file size. size=%s"
  1669. msgstr "Çok büyük dosya büyüklüğü. büyüklük=%s"
  1670. #: src/message.h:179
  1671. #, c-format
  1672. msgid "Transfer encoding %s is not supported."
  1673. msgstr "Transfer şifrelemesi %s desteklenmiyor."
  1674. #: src/message.h:180
  1675. #, c-format
  1676. msgid "SSL initialization failed: %s"
  1677. msgstr "SSl başlatılamadı: %s"
  1678. #: src/message.h:181
  1679. msgid "SSL I/O error"
  1680. msgstr "SSL G/Ç hatası"
  1681. #: src/message.h:182
  1682. msgid "SSL protocol error"
  1683. msgstr "SSL protokol hatası"
  1684. #: src/message.h:183
  1685. #, c-format
  1686. msgid "SSL unknown error %d"
  1687. msgstr "SSL bilinmeyen hata %d"
  1688. #: src/message.h:184
  1689. #, c-format
  1690. msgid "SSL initialization failed: OpenSSL connect error %d"
  1691. msgstr "SSL başlatılamadı: OpenSSL bağlantı hatası %d"
  1692. #: src/message.h:185
  1693. #, c-format
  1694. msgid "Size mismatch Expected:%s Actual:%s"
  1695. msgstr "Büyüklük uyuşmuyor Beklenen:%s Gelen:%s"
  1696. #: src/message.h:186
  1697. msgid "Authorization failed."
  1698. msgstr "Yetkilendirme başarısız."
  1699. #: src/message.h:187
  1700. msgid "Got EOF from the server."
  1701. msgstr "Sunucudan EOF alındı."
  1702. #: src/message.h:188
  1703. msgid "Got EOF from peer."
  1704. msgstr "Peerden EOF alındı."
  1705. #: src/message.h:189
  1706. msgid "Malformed meta info."
  1707. msgstr "Yanlış formatlı meta bilgisi."
  1708. #: src/message.h:191
  1709. #, c-format
  1710. msgid "Failed to open the file %s, cause: %s"
  1711. msgstr "%s dosyası %s sebebinden açılamadı"
  1712. #: src/message.h:192
  1713. #, c-format
  1714. msgid "Failed to write into the file %s, cause: %s"
  1715. msgstr "%s dosyasına %s sebebinden yazılamadı"
  1716. #: src/message.h:193
  1717. #, c-format
  1718. msgid "Failed to read from the file %s, cause: %s"
  1719. msgstr "%s dosyasından %s sebebiyle okunamadı"
  1720. #: src/message.h:194
  1721. msgid "Failed to read data from disk."
  1722. msgstr "Diskten veri okunamadı."
  1723. #: src/message.h:195
  1724. #, c-format
  1725. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  1726. msgstr ""
  1727. "%s dosyasının bir parçası veya SHA1 özeti hesaplaması %s sebebiyle yapılamadı"
  1728. #: src/message.h:196
  1729. #, c-format
  1730. msgid "Failed to seek the file %s, cause: %s"
  1731. msgstr "%s dosyası %s sebebiyle aranamadı"
  1732. #: src/message.h:197
  1733. #, c-format
  1734. msgid "The offset is out of range, offset=%s"
  1735. msgstr "Artış aralık dışı, artış=%s"
  1736. #: src/message.h:198
  1737. #, c-format
  1738. msgid "%s is not a directory."
  1739. msgstr "%s bir dizin değil"
  1740. #: src/message.h:199
  1741. #, c-format
  1742. msgid "Failed to make the directory %s, cause: %s"
  1743. msgstr "%s dizini %s sebebiyle oluşturulamadı"
  1744. #: src/message.h:200
  1745. #, c-format
  1746. msgid "Failed to open the segment file %s, cause: %s"
  1747. msgstr "%s parça dosyası %s sebebiyle açılamadı"
  1748. #: src/message.h:201
  1749. #, c-format
  1750. msgid "Failed to write into the segment file %s, cause: %s"
  1751. msgstr "%s parça dosyasına %s sebebiyle yazılamadı"
  1752. #: src/message.h:202
  1753. #, c-format
  1754. msgid "Failed to read from the segment file %s, cause: %s"
  1755. msgstr "%s parça dosyasından %s sebebiyle okunamadı"
  1756. #: src/message.h:204
  1757. #, c-format
  1758. msgid "Failed to open a socket, cause: %s"
  1759. msgstr "%s sebebiyle soket açılamadı"
  1760. #: src/message.h:205
  1761. #, c-format
  1762. msgid "Failed to set a socket option, cause: %s"
  1763. msgstr "%s sebebiyle soket yerleştirilemedi"
  1764. #: src/message.h:206
  1765. #, c-format
  1766. msgid "Failed to set a socket as blocking, cause: %s"
  1767. msgstr "%s sebebiyle soket bloke edilemedi"
  1768. #: src/message.h:207
  1769. #, c-format
  1770. msgid "Failed to set a socket as non-blocking, cause: %s"
  1771. msgstr "%s sebebiyle soket bloke olmayan olarak ayarlanamadı"
  1772. #: src/message.h:208
  1773. #, c-format
  1774. msgid "Failed to bind a socket, cause: %s"
  1775. msgstr "%s sebebiyle soket tutulamadı"
  1776. #: src/message.h:209
  1777. #, c-format
  1778. msgid "Failed to listen to a socket, cause: %s"
  1779. msgstr "%s sebebiyle soket dinlenemedi"
  1780. #: src/message.h:210
  1781. #, c-format
  1782. msgid "Failed to accept a peer connection, cause: %s"
  1783. msgstr "%s sebebiyle peer bağlantısı kabul edilmedi"
  1784. #: src/message.h:211
  1785. #, c-format
  1786. msgid "Failed to get the name of socket, cause: %s"
  1787. msgstr "%s sebeiyle soketin adı alınamadı"
  1788. #: src/message.h:212
  1789. #, c-format
  1790. msgid "Failed to get the name of connected peer, cause: %s"
  1791. msgstr "%s sebebiyle bağlanılan peer in adı alınamadı"
  1792. #: src/message.h:213
  1793. #, c-format
  1794. msgid "Failed to resolve the hostname %s, cause: %s"
  1795. msgstr "%s makinesinin adı çözülemedi sebep: %s"
  1796. #: src/message.h:214
  1797. #, c-format
  1798. msgid "Failed to connect to the host %s, cause: %s"
  1799. msgstr "%s makinesine %s sebebinden dolayı bağlanılamyor"
  1800. #: src/message.h:215
  1801. #, c-format
  1802. msgid "Failed to check whether the socket is writable, cause: %s"
  1803. msgstr "%s sebebinden dolayı soketin yazılabilir olduğu anlaşılamıyor"
  1804. #: src/message.h:216
  1805. #, c-format
  1806. msgid "Failed to check whether the socket is readable, cause: %s"
  1807. msgstr "%s sebebinden dolayı soketin okunabilir olduğu anlaşılamıyor"
  1808. #: src/message.h:217
  1809. #, c-format
  1810. msgid "Failed to send data, cause: %s"
  1811. msgstr "%s sebebiyle veri gönderilemiyor"
  1812. #: src/message.h:218
  1813. #, c-format
  1814. msgid "Failed to receive data, cause: %s"
  1815. msgstr "%s sebebinden dolayı veri alınamıyor"
  1816. #: src/message.h:219
  1817. #, c-format
  1818. msgid "Failed to peek data, cause: %s"
  1819. msgstr "%s sebebinden dolayı veri gözlenemiyor"
  1820. #: src/message.h:220
  1821. #, c-format
  1822. msgid "Unknown socket error %d (0x%x)"
  1823. msgstr "Bilinmeyen soket hatası %d (0x%x)"
  1824. #: src/message.h:221
  1825. #, c-format
  1826. msgid "File %s exists, but %s does not exist."
  1827. msgstr "%s dosyası var ama %s dosyası yok."
  1828. #: src/message.h:222
  1829. #, c-format
  1830. msgid "Invalid payload size for %s, size=%d. It should be %d."
  1831. msgstr "%s için geçersiz payload büyüklüğü,büyüklük=%d. %d olmalıydı."
  1832. #: src/message.h:223
  1833. #, c-format
  1834. msgid "Invalid ID=%d for %s. It should be %d."
  1835. msgstr "Geçersiz ID=%d %s için . %d olmalıydı."
  1836. #: src/message.h:224
  1837. #, c-format
  1838. msgid ""
  1839. "Chunk checksum validation failed. checksumIndex=%d, offset=%s, expectedHash=%"
  1840. "s, actualHash=%s"
  1841. msgstr ""
  1842. "Parça checksum doğrulaması başarısız. checksumindeks=%d artış=%s, "
  1843. "beklenenHash=%s, eldekıhash=%s"
  1844. #: src/message.h:225
  1845. msgid "Download aborted."
  1846. msgstr "İndirme iptal edildi."
  1847. #: src/message.h:226
  1848. #, c-format
  1849. msgid "File %s is being downloaded by other command."
  1850. msgstr "%s dosyası başka bir komut tarafından indiriliyor."
  1851. #: src/message.h:227
  1852. msgid "Insufficient checksums."
  1853. msgstr "Yetersiz checksumlar."
  1854. #: src/message.h:228
  1855. #, c-format
  1856. msgid "Tracker returned failure reason: %s"
  1857. msgstr "İzleyici başarısızlık sebebi olarak %s gönderdi."
  1858. #: src/message.h:229
  1859. msgid "Flooding detected."
  1860. msgstr "Flooding algılandı."
  1861. #: src/message.h:230
  1862. #, c-format
  1863. msgid ""
  1864. "Drop connection because no request/piece messages were exchanged in a "
  1865. "certain period(%d seconds)."
  1866. msgstr ""
  1867. "%d saniyede herhangi istek/parça mesajı alişverişi yapılmadığı için bağlantı "
  1868. "kapatıldı."
  1869. #: src/message.h:231
  1870. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  1871. msgstr "Torrent dosyasındaki infoHash .aria2 dosyasındaki ile tutmuyor."
  1872. #: src/message.h:232
  1873. #, c-format
  1874. msgid "No such file entry %s"
  1875. msgstr "%s dosya girdisi yok."
  1876. #: src/message.h:233
  1877. #, c-format
  1878. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  1879. msgstr "Download hızı çok yavaş: %d <= %d(B/s), makine:%s"
  1880. #: src/message.h:234
  1881. msgid "No HttpRequestEntry found."
  1882. msgstr "HttpRequestEntry bulunamadı."
  1883. #: src/message.h:235
  1884. #, c-format
  1885. msgid "Got %d status, but no location header provided."
  1886. msgstr "%d durumu alındı ama yer başlığı gönderilmedi."
  1887. #: src/message.h:236
  1888. #, c-format
  1889. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  1890. msgstr "Geçersiz başlık aralığı.İstek: %s-%s/%s, Cevap: %s-%s/%s"
  1891. #: src/message.h:237
  1892. msgid "No file matched with your preference."
  1893. msgstr "Tercihlerinizle eşleşen dosya yok."
  1894. #: src/message.h:238
  1895. msgid "Exception caught"
  1896. msgstr "Öngörülmeyen hata algılandı."
  1897. #: src/message.h:239
  1898. #, c-format
  1899. msgid "Max payload length exceeded or invalid. length = %u"
  1900. msgstr "Maksimum payload uzunluğu aşıldı ve geçersiz. uzunluk= %u"
  1901. #: src/message.h:240
  1902. #, c-format
  1903. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  1904. msgstr ""
  1905. "Geçersiz dosya uzunluğu. Download devam ettirilemiyor %s: yerel %s, uzak %s"
  1906. #: src/BtSetup.cc:160
  1907. msgid "Errors occurred while binding port.\n"
  1908. msgstr "Port bağlanırken hata oldu.\n"
  1909. #: src/Util.cc:715
  1910. msgid "Files:"
  1911. msgstr "Dosyalar:"
  1912. #~ msgid ""
  1913. #~ " --http-proxy=HOST:PORT Use HTTP proxy server. This affects all "
  1914. #~ "URLs."
  1915. #~ msgstr ""
  1916. #~ " --http-proxy=MAKİNE:PORT HTTP Proxy sunucusu kullan. Bu bütün URLleri "
  1917. #~ "etkiler."
  1918. #~ msgid ""
  1919. #~ " --http-proxy-user=USER Set HTTP proxy user. This affects all URLs."
  1920. #~ msgstr ""
  1921. #~ " --http-proxy-user=KULLANICI HTTP proxy kullanıcısını belirle. Bu bütün "
  1922. #~ "URLleri etkiler."
  1923. #~ msgid ""
  1924. #~ " --http-proxy-passwd=PASSWD Set HTTP proxy password. This affects all "
  1925. #~ "URLs."
  1926. #~ msgstr ""
  1927. #~ " --http-proxy-passwd=SIFRE HTTP proxy şifresini belirle.Bu bütün URLleri "
  1928. #~ "etkiler."
  1929. #~ msgid " -p, --ftp-pasv Use passive mode in FTP."
  1930. #~ msgstr " -p, --ftp-pasv Pasif mod FTP kullan."
  1931. #~ msgid ""
  1932. #~ " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  1933. #~ " simultaneously."
  1934. #~ msgstr ""
  1935. #~ " -C, --metalink-servers=SUNUCU_SAYISI Aynı anda bağlanılacak sunucu "
  1936. #~ "sayısı."
  1937. #~ msgid ""
  1938. #~ " --ftp-user=USER Set FTP user. This affects all URLs.\n"
  1939. #~ " Default: anonymous"
  1940. #~ msgstr ""
  1941. #~ " --ftp-user=KULLANICI FTP kullanıcısını belirle.Bu bütün URLleri etkiler."
  1942. #~ msgid ""
  1943. #~ " --ftp-passwd=PASSWD Set FTP password. This affects all URLs.\n"
  1944. #~ " Default: ARIA2USER@"
  1945. #~ msgstr ""
  1946. #~ " --ftp-passwd=PASSWD FTP şifresini belirle.Bu bütün URLleri etkiler."
  1947. #~ msgid ""
  1948. #~ " --ftp-via-http-proxy=METHOD Use HTTP proxy in FTP. METHOD is either "
  1949. #~ "'get' or\n"
  1950. #~ " 'tunnel'.\n"
  1951. #~ " Default: tunnel"
  1952. #~ msgstr ""
  1953. #~ " --ftp-via-http-proxy=METOD HTTP proxy üzerinden FTP kullan.Metod 'get' "
  1954. #~ "ya da \n"
  1955. #~ " 'tunnel' den biri olabilir.Varsayılan:tunnel"
  1956. #~ msgid ""
  1957. #~ " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining.\n"
  1958. #~ " Default: false"
  1959. #~ msgstr " --enable-http-pipelining=true|false HTTP/1.1 pipelining aç."