tr.po 81 KB

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