tr.po 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490
  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: 2011-03-18 23:58+0900\n"
  11. "PO-Revision-Date: 2010-07-19 18:10+0000\n"
  12. "Last-Translator: Fatih Aşıcı <Unknown>\n"
  13. "Language-Team: Turkish <tr@li.org>\n"
  14. "Language: tr\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "X-Launchpad-Export-Date: 2010-08-29 13:48+0000\n"
  19. "X-Generator: Launchpad (build Unknown)\n"
  20. #: src/DownloadEngine.cc:233
  21. msgid ""
  22. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  23. msgstr ""
  24. "Kapanış işlemleri başlıyor... Acil kapanış için Ctrl-C'ye tekrar basın."
  25. #: src/DownloadEngine.cc:240
  26. msgid "Emergency shutdown sequence commencing..."
  27. msgstr "Acil kapanış başlıyor..."
  28. #: src/MultiUrlRequestInfo.cc:157
  29. msgid "aria2 will resume download if the transfer is restarted."
  30. msgstr "Transferi tekrar başlatırsanız, aria2 indirmeye devam edecek."
  31. #: src/MultiUrlRequestInfo.cc:159
  32. msgid ""
  33. "If there are any errors, then see the log file. See '-l' option in help/man "
  34. "page for details."
  35. msgstr ""
  36. "Bir hatayla karşılaşırsanız log dosyasına bakın. Detaylar için yardım ve man "
  37. "sayfalarındaki '-l' seçeneğine bakın."
  38. #: src/RequestGroupMan.cc:600
  39. msgid "Download Results:"
  40. msgstr "İndirme Sonuçları:"
  41. #: src/RequestGroupMan.cc:634
  42. msgid "Status Legend:"
  43. msgstr "Durum Kısaltmaları:"
  44. #: src/OptionHandler.cc:38
  45. msgid " Default: "
  46. msgstr " Öntanımlı: "
  47. #: src/OptionHandler.cc:39
  48. msgid " Tags: "
  49. msgstr " Etiketler: "
  50. #: src/OptionHandler.cc:40
  51. msgid " Possible Values: "
  52. msgstr " Alabileceği Değerler: "
  53. #: src/usage_text.h:37
  54. msgid ""
  55. " -d, --dir=DIR The directory to store the downloaded file."
  56. msgstr " -d, --dir=DIZIN İndirilen dosyanın saklanacağı dizin."
  57. #: src/usage_text.h:39
  58. msgid ""
  59. " -o, --out=FILE The file name of the downloaded file. When -Z\n"
  60. " option is used, this option is ignored."
  61. msgstr ""
  62. " -o, --out=DOSYA İndirilen dosyanın adı. -Z seçeneği\n"
  63. " kullanıldığında bu seçenek yok sayılır."
  64. #: src/usage_text.h:42
  65. msgid ""
  66. " -l, --log=LOG The file name of the log file. If '-' is\n"
  67. " specified, log is written to stdout."
  68. msgstr ""
  69. " -l, --log=LOG Log dosyasının adı. Eğer '-' kullanılırsa,\n"
  70. " standart çıktıya yazılır."
  71. #: src/usage_text.h:45
  72. #, fuzzy
  73. msgid ""
  74. " -D, --daemon[=true|false] Run as daemon. The current working directory "
  75. "will\n"
  76. " be changed to \"/\" and standard input, "
  77. "standard\n"
  78. " output and standard error will be redirected "
  79. "to\n"
  80. " \"/dev/null\"."
  81. msgstr ""
  82. " -D, --daemon Arkaplanda çalıştır. Geçerli çalışma dizini \"/"
  83. "\"\n"
  84. " olarak değiştirilip standart çıktı ve "
  85. "standart\n"
  86. " hata \"/dev/null\" dosyasına "
  87. "yönlendirilecektir."
  88. #: src/usage_text.h:50
  89. msgid ""
  90. " -s, --split=N Download a file using N connections. If more\n"
  91. " than N URLs are given, first N URLs are used "
  92. "and\n"
  93. " remaining URLs are used for backup. If less "
  94. "than\n"
  95. " N URLs are given, those URLs are used more "
  96. "than\n"
  97. " once so that N connections total are made\n"
  98. " simultaneously. The number of connections to "
  99. "the\n"
  100. " same host is restricted by\n"
  101. " --max-connection-per-server option. Please see "
  102. "-j\n"
  103. " and --min-split-size option too.\n"
  104. " Please note that in Metalink download, this\n"
  105. " option has no effect and use -C option instead."
  106. msgstr ""
  107. #: src/usage_text.h:62
  108. #, fuzzy
  109. msgid ""
  110. " --retry-wait=SEC Set the seconds to wait between retries. \n"
  111. " With SEC > 0, aria2 will retry download when "
  112. "the\n"
  113. " HTTP server returns 503 response."
  114. msgstr ""
  115. " --retry-wait=SAN Bir hata olduğunda tekrar denemeden önce\n"
  116. " beklenecek süreyi saniye cinsinden belirle."
  117. #: src/usage_text.h:66
  118. msgid " -t, --timeout=SEC Set timeout in seconds."
  119. msgstr " -t, --timeout=SAN Saniye olarak zaman aşımını belirle."
  120. #: src/usage_text.h:68
  121. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  122. msgstr ""
  123. " -m, --max-tries=N Deneme sayısını belirle. 0 sınırsız "
  124. "anlamındadır."
  125. #: src/usage_text.h:70
  126. msgid ""
  127. " --http-proxy=PROXY Use this proxy server for HTTP. To erase\n"
  128. " previously defined proxy, use \"\".\n"
  129. " See also --all-proxy option.\n"
  130. " This affects all URLs."
  131. msgstr ""
  132. " --http-proxy=VEKİL HTTP için bu vekil sunucusunu kullan. Daha\n"
  133. " önce verilmiş bir vekili silmek için \"\"\n"
  134. " kullanın. Ayrıca --all-proxy seçeneğine\n"
  135. " bakın. Bu, tüm URL'leri etkiler."
  136. #: src/usage_text.h:75
  137. msgid ""
  138. " --https-proxy=PROXY Use this proxy server for HTTPS. To erase\n"
  139. " previously defined proxy, use \"\".\n"
  140. " See also --all-proxy option.\n"
  141. " This affects all URLs."
  142. msgstr ""
  143. " --https-proxy=VEKİL HTTPS için bu vekil sunucusunu kullan. Daha\n"
  144. " önce verilmiş bir vekili silmek için \"\"\n"
  145. " kullanın. Ayrıca --all-proxy seçeneğine\n"
  146. " bakın. Bu, tüm URL'leri etkiler."
  147. #: src/usage_text.h:80
  148. msgid ""
  149. " --ftp-proxy=PROXY Use this proxy server for FTP. To erase "
  150. "previously\n"
  151. " defined proxy, use \"\".\n"
  152. " See also --all-proxy option.\n"
  153. " This affects all URLs."
  154. msgstr ""
  155. " --ftp-proxy=VEKİL FTP için bu vekil sunucusunu kullan. Daha\n"
  156. " önce verilmiş bir vekili silmek için \"\"\n"
  157. " kullanın. Ayrıca --all-proxy seçeneğine\n"
  158. " bakın. Bu, tüm URL'leri etkiler."
  159. #: src/usage_text.h:85
  160. msgid ""
  161. " --all-proxy=PROXY Use this proxy server for all protocols. To "
  162. "erase\n"
  163. " previously defined proxy, use \"\".\n"
  164. " You can override this setting and specify a\n"
  165. " proxy server for a particular protocol using\n"
  166. " --http-proxy, --https-proxy and --ftp-proxy\n"
  167. " options.\n"
  168. " This affects all URLs."
  169. msgstr ""
  170. #: src/usage_text.h:93
  171. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  172. msgstr ""
  173. " --http-user=KULLANICI HTTP kullanıcısını belirle.Bu bütün URLleri etkiler."
  174. #: src/usage_text.h:95
  175. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  176. msgstr " --http-passwd=SIFRE HTTP şifresini belirle.Bu bütün URLleri etkiler."
  177. #: src/usage_text.h:97
  178. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  179. msgstr ""
  180. #: src/usage_text.h:99
  181. msgid " --referer=REFERER Set Referer. This affects all URLs."
  182. msgstr " --referer=REFERER Referer i belirle.Bu bütün URLleri etkiler."
  183. #: src/usage_text.h:101
  184. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  185. msgstr ""
  186. #: src/usage_text.h:103
  187. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  188. msgstr ""
  189. #: src/usage_text.h:105
  190. msgid " --ftp-type=TYPE Set FTP transfer type."
  191. msgstr ""
  192. #: src/usage_text.h:107
  193. msgid ""
  194. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  195. "given,\n"
  196. " the active mode will be used."
  197. msgstr ""
  198. #: src/usage_text.h:110
  199. msgid ""
  200. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  201. "than\n"
  202. " or equal to this value(bytes per sec).\n"
  203. " 0 means aria2 does not have a lowest speed "
  204. "limit.\n"
  205. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  206. " This option does not affect BitTorrent "
  207. "downloads."
  208. msgstr ""
  209. #: src/usage_text.h:116
  210. msgid ""
  211. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  212. "sec.\n"
  213. " 0 means unrestricted.\n"
  214. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  215. " To limit the download speed per download, use\n"
  216. " --max-download-limit option."
  217. msgstr ""
  218. #: src/usage_text.h:122
  219. msgid ""
  220. " --max-download-limit=SPEED Set max download speed per each download in\n"
  221. " bytes/sec. 0 means unrestricted.\n"
  222. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  223. " To limit the overall download speed, use\n"
  224. " --max-overall-download-limit option."
  225. msgstr ""
  226. #: src/usage_text.h:128
  227. msgid ""
  228. " --file-allocation=METHOD Specify file allocation method.\n"
  229. " 'none' doesn't pre-allocate file space. "
  230. "'prealloc'\n"
  231. " pre-allocates file space before download "
  232. "begins.\n"
  233. " This may take some time depending on the size "
  234. "of\n"
  235. " the file.\n"
  236. " If you are using newer file systems such as "
  237. "ext4\n"
  238. " (with extents support), btrfs or xfs, 'falloc' "
  239. "is\n"
  240. " your best choice. It allocates large(few GiB)\n"
  241. " files almost instantly. Don't use 'falloc' "
  242. "with\n"
  243. " legacy file systems such as ext3 because it "
  244. "takes\n"
  245. " almost same time as 'prealloc' and it blocks "
  246. "aria2\n"
  247. " entirely until allocation finishes. 'falloc' "
  248. "may\n"
  249. " not be available if your system doesn't have\n"
  250. " posix_fallocate() function."
  251. msgstr ""
  252. #: src/usage_text.h:143
  253. msgid ""
  254. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  255. " size is smaller than SIZE.\n"
  256. " You can append K or M(1K = 1024, 1M = 1024K)."
  257. msgstr ""
  258. " --no-file-allocation-limit=DEĞER Bu değerden küçük boyutlu dosyalar\n"
  259. " için yer ayrılmaz.Değerin yanına K veya M"
  260. "(1K=1024,\n"
  261. " 1M=1024K) ekleyebilirsiniz."
  262. #: src/usage_text.h:147
  263. msgid ""
  264. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  265. "while\n"
  266. " allocating files.\n"
  267. " Turn off if you encounter any error"
  268. msgstr ""
  269. " --enable-direct-io=true|false Direk G/Ç belirle.True yapılırsa\n"
  270. " dosya yer ayrımlarında düşük işlemci\n"
  271. " gücü kullanılır.Eğer bir hata olursa kapatın."
  272. #: src/usage_text.h:151
  273. #, fuzzy
  274. msgid ""
  275. " --allow-overwrite[=true|false] Restart download from scratch if the\n"
  276. " corresponding control file doesn't exist. "
  277. "See\n"
  278. " also --auto-file-renaming option."
  279. msgstr ""
  280. " --enable-direct-io=true|false Direk G/Ç belirle.True yapılırsa\n"
  281. " dosya yer ayrımlarında düşük işlemci\n"
  282. " gücü kullanılır.Eğer bir hata olursa kapatın."
  283. #: src/usage_text.h:155
  284. #, fuzzy
  285. msgid ""
  286. " --allow-piece-length-change[=true|false] If false is given, aria2 aborts\n"
  287. " download when a piece length is different "
  288. "from\n"
  289. " one in a control file. If true is given, you "
  290. "can\n"
  291. " proceed but some download progress will be "
  292. "lost."
  293. msgstr ""
  294. " --allow-piece-length-change=true|false False seçilirse, aria2 parça "
  295. "uzunluğunun\n"
  296. " kontrol dosyasındakinden farklı olduğu durumda "
  297. "indirmeyi\n"
  298. " bitirir.Eğer true seçilirse, devam "
  299. "edebilirsiniz ama indirmenizin\n"
  300. " bir kısmı kaybolur."
  301. #: src/usage_text.h:160
  302. msgid ""
  303. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  304. "sequentially\n"
  305. " and download each URI in a separate session, "
  306. "like\n"
  307. " the usual command-line download utilities."
  308. msgstr ""
  309. #: src/usage_text.h:164
  310. msgid ""
  311. " --auto-file-renaming[=true|false] Rename file name if the same file "
  312. "already\n"
  313. " exists. This option works only in http(s)/ftp\n"
  314. " download.\n"
  315. " The new file name has a dot and a number"
  316. "(1..9999)\n"
  317. " appended."
  318. msgstr ""
  319. #: src/usage_text.h:170
  320. msgid ""
  321. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  322. " You can specify set of parts:\n"
  323. " http://{sv1,sv2,sv3}/foo.iso\n"
  324. " Also you can specify numeric sequences with "
  325. "step\n"
  326. " counter:\n"
  327. " http://host/image[000-100:2].img\n"
  328. " A step counter can be omitted.\n"
  329. " If all URIs do not point to the same file, "
  330. "such\n"
  331. " as the second example above, -Z option is\n"
  332. " required."
  333. msgstr ""
  334. #: src/usage_text.h:181
  335. msgid ""
  336. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  337. msgstr " --enable-http-keep-alive=true|false HTTP/1.1devamlı bağlantıyı aç."
  338. #: src/usage_text.h:183
  339. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  340. msgstr ""
  341. #: src/usage_text.h:185
  342. msgid ""
  343. " -V, --check-integrity[=true|false] Check file integrity by validating "
  344. "piece\n"
  345. " hashes. This option has effect only in "
  346. "BitTorrent\n"
  347. " and Metalink downloads with chunk checksums.\n"
  348. " Use this option to re-download a damaged "
  349. "portion\n"
  350. " of a file. See also --bt-hash-check-seed "
  351. "option."
  352. msgstr ""
  353. #: src/usage_text.h:191
  354. msgid ""
  355. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  356. " --check-integrity option and file is "
  357. "complete,\n"
  358. " continue to seed file. If you want to check "
  359. "file\n"
  360. " and download it only when it is damaged or\n"
  361. " incomplete, set this option to false.\n"
  362. " This option has effect only on BitTorrent\n"
  363. " download."
  364. msgstr ""
  365. #: src/usage_text.h:199
  366. #, fuzzy
  367. msgid ""
  368. " --realtime-chunk-checksum[=true|false] Validate chunk of data by "
  369. "calculating\n"
  370. " checksum while downloading a file if chunk\n"
  371. " checksums are provided."
  372. msgstr ""
  373. " --enable-direct-io=true|false Direk G/Ç belirle.True yapılırsa\n"
  374. " dosya yer ayrımlarında düşük işlemci\n"
  375. " gücü kullanılır.Eğer bir hata olursa kapatın."
  376. #: src/usage_text.h:203
  377. #, fuzzy
  378. msgid ""
  379. " -c, --continue[=true|false] Continue downloading a partially downloaded\n"
  380. " file. Use this option to resume a download\n"
  381. " started by a web browser or another program\n"
  382. " which downloads files sequentially from the\n"
  383. " beginning. Currently this option is only\n"
  384. " applicable to http(s)/ftp downloads."
  385. msgstr ""
  386. " -c, --continue Daha önce bir kısmı indirilmiş dosyayı indirmeye devam et.\n"
  387. " Bu seçenek dosya baştan başlanarak "
  388. "indirildiği \n"
  389. " durumlarda (bir web tarayıcısı veya başka bir "
  390. "program)\n"
  391. " indirmeye devam etmek için kullanılır.Şimdilik "
  392. "sadece\n"
  393. " http(s) ve ftp için geçerlidir."
  394. #: src/usage_text.h:210
  395. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  396. msgstr ""
  397. " -U, --user-agent=TARAYICI_KİMLİĞİ HTTP(S) için tarayıcı kimliğini belirler."
  398. #: src/usage_text.h:212
  399. #, fuzzy
  400. msgid " -n, --no-netrc[=true|false] Disables netrc support."
  401. msgstr " -n, --no-netrc netrc desteğini kapatır."
  402. #: src/usage_text.h:214
  403. #, fuzzy
  404. msgid ""
  405. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  406. " multiple URIs for a single entity: separate\n"
  407. " URIs on a single line using the TAB "
  408. "character.\n"
  409. " Reads input from stdin when '-' is specified.\n"
  410. " Additionally, options can be specified after "
  411. "each\n"
  412. " line of URI. This optional line must start "
  413. "with\n"
  414. " one or more white spaces and have one option "
  415. "per\n"
  416. " single line. See INPUT FILE section of man "
  417. "page\n"
  418. " for details."
  419. msgstr ""
  420. " --follow-torrent=true|false|mem True veya mem seçilirse, .torrent uzantılı "
  421. "bir dosya ya da \n"
  422. " içerik tipi application/x-bittorrent olan bir "
  423. "dosya indirildiğinde, aria2\n"
  424. " onu bir torrent dosyası olarak okur ve "
  425. "içindeki dosyaları indirir.\n"
  426. " Eğer mem seçilirse, torrent dosyası diske "
  427. "yazılmaz sadece hafızada\n"
  428. " tutulur.Eğer false seçilirse, yukarıda "
  429. "anlatılan işler yapılmaz."
  430. #: src/usage_text.h:224
  431. msgid ""
  432. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  433. "for\n"
  434. " every static (HTTP/FTP) URL, torrent and "
  435. "metalink.\n"
  436. " See also -s and -C options."
  437. msgstr ""
  438. #: src/usage_text.h:228
  439. msgid ""
  440. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  441. "format\n"
  442. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  443. msgstr ""
  444. #: src/usage_text.h:231
  445. msgid ""
  446. " --save-cookies=FILE Save Cookies to FILE in Mozilla/Firefox(1.x/2."
  447. "x)/\n"
  448. " Netscape format. If FILE already exists, it "
  449. "is\n"
  450. " overwritten. Session Cookies are also saved "
  451. "and\n"
  452. " their expiry values are treated as 0."
  453. msgstr ""
  454. #: src/usage_text.h:236
  455. #, fuzzy
  456. msgid ""
  457. " -S, --show-files[=true|false] Print file listing of .torrent, .meta4 and\n"
  458. " .metalink file and exit. More detailed\n"
  459. " information will be listed in case of torrent\n"
  460. " file."
  461. msgstr ""
  462. " -S\\ --show-files .torrent ve .metalink dosyasının listesini göster ve çık."
  463. "Torrent dosyalarında\n"
  464. " daha detaylı bilgi gösterilir."
  465. #: src/usage_text.h:241
  466. msgid ""
  467. " --select-file=INDEX... Set file to download by specifying its index.\n"
  468. " You can find the file index using the\n"
  469. " --show-files option. Multiple indexes can be\n"
  470. " specified by using ',', for example: \"3,6\".\n"
  471. " You can also use '-' to specify a range: "
  472. "\"1-5\".\n"
  473. " ',' and '-' can be used together.\n"
  474. " When used with the -M option, index may vary\n"
  475. " depending on the query(see --metalink-* "
  476. "options)."
  477. msgstr ""
  478. #: src/usage_text.h:250
  479. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  480. msgstr " -T, --torrent-file=TORRENT_DOSYASI .torrent dosyasının bulunduğu yer."
  481. #: src/usage_text.h:252
  482. msgid ""
  483. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  484. " whose suffix is .torrent or content type is\n"
  485. " application/x-bittorrent is downloaded, aria2\n"
  486. " parses it as a torrent file and downloads "
  487. "files\n"
  488. " mentioned in it.\n"
  489. " If mem is specified, a torrent file is not\n"
  490. " written to the disk, but is just kept in "
  491. "memory.\n"
  492. " If false is specified, the action mentioned "
  493. "above\n"
  494. " is not taken."
  495. msgstr ""
  496. " --follow-torrent=true|false|mem True veya mem seçilirse, .torrent uzantılı "
  497. "bir dosya ya da \n"
  498. " içerik tipi application/x-bittorrent olan bir "
  499. "dosya indirildiğinde, aria2\n"
  500. " onu bir torrent dosyası olarak okur ve "
  501. "içindeki dosyaları indirir.\n"
  502. " Eğer mem seçilirse, torrent dosyası diske "
  503. "yazılmaz sadece hafızada\n"
  504. " tutulur.Eğer false seçilirse, yukarıda "
  505. "anlatılan işler yapılmaz."
  506. #: src/usage_text.h:262
  507. msgid ""
  508. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  509. " Multiple ports can be specified by using ',',\n"
  510. " for example: \"6881,6885\". You can also use "
  511. "'-'\n"
  512. " to specify a range: \"6881-6999\". ',' and '-' "
  513. "can\n"
  514. " be used together."
  515. msgstr ""
  516. " --listen-port=PORT BitTorrent için kullanılacak TCP Port numarası belirle.\n"
  517. " ',' kullanılarak birden çok port numarası "
  518. "belirtilebilir:\n"
  519. " örnek: '6881,6885'. '-' kullanılarak bir "
  520. "aralık da blirtebilirsiniz\n"
  521. " örnek: '6881-6999'. '-' ve ',' birlikte de "
  522. "kullanılabilir."
  523. #: src/usage_text.h:268
  524. msgid ""
  525. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  526. "sec.\n"
  527. " 0 means unrestricted.\n"
  528. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  529. " To limit the upload speed per torrent, use\n"
  530. " --max-upload-limit option."
  531. msgstr ""
  532. #: src/usage_text.h:274
  533. msgid ""
  534. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  535. " bytes/sec. 0 means unrestricted.\n"
  536. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  537. " To limit the overall upload speed, use\n"
  538. " --max-overall-upload-limit option."
  539. msgstr ""
  540. #: src/usage_text.h:280
  541. msgid ""
  542. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  543. " --seed-ratio option."
  544. msgstr ""
  545. " --speed-time=DAKİKA Tohumlama(seed) zamanını belirler. \n"
  546. " --seed-ratio seçeneğine de bakınız."
  547. #: src/usage_text.h:283
  548. msgid ""
  549. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  550. " until share ratio reaches RATIO.\n"
  551. " You are strongly encouraged to specify equals "
  552. "or\n"
  553. " more than 1.0 here. Specify 0.0 if you intend "
  554. "to\n"
  555. " do seeding regardless of share ratio.\n"
  556. " If --seed-time option is specified along with\n"
  557. " this option, seeding ends when at least one "
  558. "of\n"
  559. " the conditions is satisfied."
  560. msgstr ""
  561. #: src/usage_text.h:292
  562. msgid ""
  563. " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  564. "in\n"
  565. " BitTorrent is 20 byte length. If more than 20\n"
  566. " bytes are specified, only first 20 bytes are\n"
  567. " used. If less than 20 bytes are specified, "
  568. "random\n"
  569. " byte data are added to make its length 20 "
  570. "bytes."
  571. msgstr ""
  572. #: src/usage_text.h:298
  573. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  574. msgstr " --enable-peer-exchange=true|false Peer değişim eklentisini aç."
  575. #: src/usage_text.h:300
  576. #, fuzzy
  577. msgid " --enable-dht[=true|false] Enable IPv4 DHT functionality."
  578. msgstr " --enable-dht=true|false DHT özelliklerini aç."
  579. #: src/usage_text.h:302
  580. #, fuzzy
  581. msgid ""
  582. " --dht-listen-port=PORT... Set UDP listening port for both IPv4 and IPv6\n"
  583. " DHT. Multiple ports can be specified by using\n"
  584. " ',', for example: \"6881,6885\". You can also\n"
  585. " use '-' to specify a range: \"6881-6999\". "
  586. "','\n"
  587. " and '-' can be used together."
  588. msgstr " --dht-listen-port=PORT... DHT için UDP dinleme portunu aç."
  589. #: src/usage_text.h:308
  590. #, fuzzy
  591. msgid ""
  592. " --dht-entry-point=HOST:PORT Set host and port as an entry point to IPv4 "
  593. "DHT\n"
  594. " network."
  595. msgstr ""
  596. " --dht-entry-point=MAKİNE:PORT Makine ve portu DHT ağına giriş noktası "
  597. "olarak belirle."
  598. #: src/usage_text.h:311
  599. #, fuzzy
  600. msgid ""
  601. " --dht-file-path=PATH Change the IPv4 DHT routing table file to PATH."
  602. msgstr " --conf-path=YOL Konfigürasyon dosyasının yerini belirle."
  603. #: src/usage_text.h:313
  604. msgid ""
  605. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  606. " If several encryption methods are provided by "
  607. "a\n"
  608. " peer, aria2 chooses the lowest one which "
  609. "satisfies\n"
  610. " the given level."
  611. msgstr ""
  612. #: src/usage_text.h:318
  613. #, fuzzy
  614. msgid ""
  615. " --bt-require-crypto[=true|false] If true is given, aria2 doesn't accept "
  616. "and\n"
  617. " establish connection with legacy BitTorrent\n"
  618. " handshake. Thus aria2 always uses Obfuscation\n"
  619. " handshake."
  620. msgstr ""
  621. " --bt-require-crypto=true|false True seçilirse aria2 BitTorrent tokalaşması "
  622. "ile\n"
  623. " bağlantıyı kabul etmez ve kurmaz.Dolayısıyla "
  624. "aria2\n"
  625. " her zaman obfuskasyon tokalaşmasını kullanır."
  626. #: src/usage_text.h:323
  627. msgid ""
  628. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  629. " torrent is lower than SPEED, aria2 "
  630. "temporarily\n"
  631. " increases the number of peers to try for more\n"
  632. " download speed. Configuring this option with "
  633. "your\n"
  634. " preferred download speed can increase your\n"
  635. " download speed in some cases.\n"
  636. " You can append K or M(1K = 1024, 1M = 1024K)."
  637. msgstr ""
  638. #: src/usage_text.h:331
  639. msgid ""
  640. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  641. "each\n"
  642. " BitTorrent download."
  643. msgstr ""
  644. " --bt-max-open-files=SAYI Bir BitTorrent downloadında açılacak maksimum \n"
  645. " dosya sayısını belirle."
  646. #: src/usage_text.h:334
  647. msgid ""
  648. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  649. " verifying piece hashes."
  650. msgstr ""
  651. " --bt-seed-unverified=true|false Daha önce indirilmiş dosyaları \n"
  652. " parça hashlerini kontrol etmeden tohumla."
  653. #: src/usage_text.h:337
  654. msgid ""
  655. " --bt-max-peers=NUM Specify the maximum number of peers per "
  656. "torrent.\n"
  657. " 0 means unlimited.\n"
  658. " See also --bt-request-peer-speed-limit option."
  659. msgstr ""
  660. #: src/usage_text.h:341
  661. #, fuzzy
  662. msgid ""
  663. " -M, --metalink-file=METALINK_FILE The file path to the .meta4 and ."
  664. "metalink\n"
  665. " file. Reads input from stdin when '-' is\n"
  666. " specified."
  667. msgstr ""
  668. " -S\\ --show-files .torrent ve .metalink dosyasının listesini göster ve çık."
  669. "Torrent dosyalarında\n"
  670. " daha detaylı bilgi gösterilir."
  671. #: src/usage_text.h:345
  672. msgid ""
  673. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  674. " simultaneously. Some Metalinks regulate the\n"
  675. " number of servers to connect. aria2 strictly\n"
  676. " respects them. This means that if Metalink "
  677. "defines\n"
  678. " the maxconnections attribute lower than\n"
  679. " NUM_SERVERS, then aria2 uses the value of\n"
  680. " maxconnections attribute instead of "
  681. "NUM_SERVERS.\n"
  682. " See also -s and -j options."
  683. msgstr ""
  684. #: src/usage_text.h:354
  685. msgid " --metalink-version=VERSION The version of the file to download."
  686. msgstr " --metalink-version=SÜRÜM İndirilecek dosyanın sürümü."
  687. #: src/usage_text.h:356
  688. msgid " --metalink-language=LANGUAGE The language of the file to download."
  689. msgstr " --metalink-language=DİL İndirilecek dosyanın dili."
  690. #: src/usage_text.h:358
  691. msgid ""
  692. " --metalink-os=OS The operating system of the file to download."
  693. msgstr " --metalink-os=OS İndirilecek dosyanın işletim sistemi."
  694. #: src/usage_text.h:360
  695. msgid ""
  696. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  697. " A comma-delimited list of locations is\n"
  698. " acceptable."
  699. msgstr ""
  700. #: src/usage_text.h:364
  701. msgid ""
  702. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  703. "'none'\n"
  704. " if you don't have any preferred protocol."
  705. msgstr ""
  706. #: src/usage_text.h:367
  707. #, fuzzy
  708. msgid ""
  709. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  710. " whose suffix is .meta4 or .metalink, or "
  711. "content\n"
  712. " type of application/metalink4+xml or\n"
  713. " application/metalink+xml is downloaded, aria2\n"
  714. " parses it as a metalink file and downloads "
  715. "files\n"
  716. " mentioned in it.\n"
  717. " If mem is specified, a metalink file is not\n"
  718. " written to the disk, but is just kept in "
  719. "memory.\n"
  720. " If false is specified, the action mentioned "
  721. "above\n"
  722. " is not taken."
  723. msgstr ""
  724. " --follow-torrent=true|false|mem True veya mem seçilirse, .torrent uzantılı "
  725. "bir dosya ya da \n"
  726. " içerik tipi application/x-bittorrent olan bir "
  727. "dosya indirildiğinde, aria2\n"
  728. " onu bir torrent dosyası olarak okur ve "
  729. "içindeki dosyaları indirir.\n"
  730. " Eğer mem seçilirse, torrent dosyası diske "
  731. "yazılmaz sadece hafızada\n"
  732. " tutulur.Eğer false seçilirse, yukarıda "
  733. "anlatılan işler yapılmaz."
  734. #: src/usage_text.h:378
  735. #, fuzzy
  736. msgid ""
  737. " --metalink-enable-unique-protocol[=true|false] If true is given and "
  738. "several\n"
  739. " protocols are available for a mirror in a "
  740. "metalink\n"
  741. " file, aria2 uses one of them.\n"
  742. " Use --metalink-preferred-protocol option to\n"
  743. " specify the preference of protocol."
  744. msgstr ""
  745. " --metalink-enable-unique-protocol=true|false True seçilir ve bir metalink "
  746. "dosyasındaki\n"
  747. " yansı için farklı protokoller mevcutsa, aria2 "
  748. "onlardan birini kullanır.\n"
  749. " Protokol tercihi için --metalink-preferred-"
  750. "protocol seçeneğini\n"
  751. " kullanın."
  752. #: src/usage_text.h:384
  753. msgid " -v, --version Print the version number and exit."
  754. msgstr " -v, --version Sürüm numarasını göster ve çık."
  755. #: src/usage_text.h:386
  756. msgid ""
  757. " -h, --help[=TAG|KEYWORD] Print usage and exit.\n"
  758. " The help messages are classified with tags. A "
  759. "tag\n"
  760. " starts with \"#\". For example, type \"--"
  761. "help=#http\"\n"
  762. " to get the usage for the options tagged with\n"
  763. " \"#http\". If non-tag word is given, print the "
  764. "usage\n"
  765. " for the options whose name includes that word."
  766. msgstr ""
  767. #: src/usage_text.h:393
  768. #, fuzzy
  769. msgid " --no-conf[=true|false] Disable loading aria2.conf file."
  770. msgstr " --no-conf aria2.conf dosyasını yüklemeyi kapa."
  771. #: src/usage_text.h:395
  772. msgid ""
  773. " --conf-path=PATH Change the configuration file path to PATH."
  774. msgstr " --conf-path=YOL Konfigürasyon dosyasının yerini belirle."
  775. #: src/usage_text.h:397
  776. msgid ""
  777. " --stop=SEC Stop application after SEC seconds has "
  778. "passed.\n"
  779. " If 0 is given, this feature is disabled."
  780. msgstr ""
  781. " --stop=SANİYE SANİYE geçtiğinde uygulamayı durdur. 0 girilirse\n"
  782. " bu özellik kapatılır."
  783. #: src/usage_text.h:400
  784. msgid ""
  785. " --header=HEADER Append HEADER to HTTP request header. You can "
  786. "use\n"
  787. " this option repeatedly to specify more than "
  788. "one\n"
  789. " header:\n"
  790. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  791. "9J1\"\n"
  792. " http://host/file"
  793. msgstr ""
  794. " --header=BAŞLIK BAŞLIK başlığını HTTP istek başlığına ekle.Değişik \n"
  795. " başlıklar eklemek için bir kaç kere "
  796. "kullanabilirsiniz\n"
  797. " örnek: aria2c --header=\"X-A: b78\" --header="
  798. "\"X-B 9j1\" \n"
  799. " http://host/file"
  800. #: src/usage_text.h:406
  801. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  802. msgstr ""
  803. #: src/usage_text.h:408
  804. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  805. msgstr " --async-dns=true|false Asenkronize DNSi açar."
  806. #: src/usage_text.h:410
  807. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  808. msgstr " --ftp-reuse-connection=true|false FTPde bağlantıyı tekrar kullanır."
  809. #: src/usage_text.h:412
  810. msgid ""
  811. " --summary-interval=SEC Set interval to output download progress "
  812. "summary.\n"
  813. " Setting 0 suppresses the output."
  814. msgstr ""
  815. " --summary-interval=SANİYE İndirme ilerleme durumunun gösterileceği\n"
  816. " zaman aralığını belirler. 0 seçilirse çıktı "
  817. "gönderilmez."
  818. #: src/usage_text.h:415
  819. msgid " --log-level=LEVEL Set log level to output."
  820. msgstr " --log-level=SEVİYE Çıktı için log seviyesini belirler."
  821. #: src/usage_text.h:417
  822. msgid ""
  823. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  824. "the\n"
  825. " remote HTTP/FTP server and if it is "
  826. "available,\n"
  827. " apply it to the local file."
  828. msgstr ""
  829. #: src/usage_text.h:421
  830. msgid ""
  831. " --connect-timeout=SEC Set the connect timeout in seconds to "
  832. "establish\n"
  833. " connection to HTTP/FTP/proxy server. After "
  834. "the\n"
  835. " connection is established, this option makes "
  836. "no\n"
  837. " effect and --timeout option is used instead."
  838. msgstr ""
  839. #: src/usage_text.h:426
  840. msgid ""
  841. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  842. "the\n"
  843. " remote HTTP/FTP servers NUM times without "
  844. "getting\n"
  845. " a single byte, then force the download to "
  846. "fail.\n"
  847. " Specify 0 to disable this option.\n"
  848. " This options is effective only when using\n"
  849. " HTTP/FTP servers."
  850. msgstr ""
  851. #: src/usage_text.h:433
  852. msgid ""
  853. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  854. " If 'inorder' is given, URI is tried in the "
  855. "order\n"
  856. " appeared in the URI list.\n"
  857. " If 'feedback' is given, aria2 uses download "
  858. "speed\n"
  859. " observed in the previous downloads and choose\n"
  860. " fastest server in the URI list. This also\n"
  861. " effectively skips dead mirrors. The observed\n"
  862. " download speed is a part of performance "
  863. "profile\n"
  864. " of servers mentioned in --server-stat-of and\n"
  865. " --server-stat-if options.\n"
  866. " If 'adaptive' is given, selects one of the "
  867. "best\n"
  868. " mirrors for the first and reserved "
  869. "connections.\n"
  870. " For supplementary ones, it returns mirrors "
  871. "which\n"
  872. " has not been tested yet, and if each of them "
  873. "has\n"
  874. " already been tested, returns mirrors which has "
  875. "to\n"
  876. " be tested again. Otherwise, it doesn't select\n"
  877. " anymore mirrors. Like 'feedback', it uses a\n"
  878. " performance profile of servers."
  879. msgstr ""
  880. #: src/usage_text.h:452
  881. msgid ""
  882. " --server-stat-of=FILE Specify the filename to which performance "
  883. "profile\n"
  884. " of the servers is saved. You can load saved "
  885. "data\n"
  886. " using --server-stat-if option."
  887. msgstr ""
  888. #: src/usage_text.h:456
  889. msgid ""
  890. " --server-stat-if=FILE Specify the filename to load performance "
  891. "profile\n"
  892. " of the servers. The loaded data will be used "
  893. "in\n"
  894. " some URI selector such as 'feedback'.\n"
  895. " See also --uri-selector option"
  896. msgstr ""
  897. #: src/usage_text.h:461
  898. msgid ""
  899. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  900. " performance profile of the servers since the "
  901. "last\n"
  902. " contact to them."
  903. msgstr ""
  904. #: src/usage_text.h:465
  905. msgid ""
  906. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  907. "seconds.\n"
  908. " If 0 is given, a control file is not saved "
  909. "during\n"
  910. " download. aria2 saves a control file when it "
  911. "stops\n"
  912. " regardless of the value."
  913. msgstr ""
  914. #: src/usage_text.h:470
  915. msgid ""
  916. " --certificate=FILE Use the client certificate in FILE.\n"
  917. " The certificate must be in PEM format.\n"
  918. " You may use --private-key option to specify "
  919. "the\n"
  920. " private key."
  921. msgstr ""
  922. #: src/usage_text.h:475
  923. msgid ""
  924. " --private-key=FILE Use the private key in FILE.\n"
  925. " The private key must be decrypted and in PEM\n"
  926. " format. See also --certificate option."
  927. msgstr ""
  928. #: src/usage_text.h:479
  929. msgid ""
  930. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  931. "verify\n"
  932. " the peers. The certificate file must be in "
  933. "PEM\n"
  934. " format and can contain multiple CA "
  935. "certificates.\n"
  936. " Use --check-certificate option to enable\n"
  937. " verification."
  938. msgstr ""
  939. #: src/usage_text.h:485
  940. msgid ""
  941. " --check-certificate[=true|false] Verify the peer using certificates "
  942. "specified\n"
  943. " in --ca-certificate option."
  944. msgstr ""
  945. #: src/usage_text.h:488
  946. msgid ""
  947. " --no-proxy=DOMAINS Specify comma separated hostnames, domains or\n"
  948. " network address with or without CIDR block "
  949. "where\n"
  950. " proxy should not be used."
  951. msgstr ""
  952. #: src/usage_text.h:492
  953. msgid ""
  954. " --use-head[=true|false] Use HEAD method for the first request to the "
  955. "HTTP\n"
  956. " server."
  957. msgstr ""
  958. #: src/usage_text.h:495
  959. msgid " --event-poll=POLL Specify the method for polling events."
  960. msgstr ""
  961. #: src/usage_text.h:497
  962. msgid ""
  963. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  964. "a\n"
  965. " BitTorrent tracker. Although this function is\n"
  966. " named 'external', it can accept any kind of "
  967. "IP\n"
  968. " addresses."
  969. msgstr ""
  970. #: src/usage_text.h:502
  971. msgid ""
  972. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  973. "it\n"
  974. " is requested by the server. If false is set, "
  975. "then\n"
  976. " authorization header is always sent to the "
  977. "server.\n"
  978. " There is an exception: if username and "
  979. "password\n"
  980. " are embedded in URI, authorization header is\n"
  981. " always sent to the server regardless of this\n"
  982. " option."
  983. msgstr ""
  984. #: src/usage_text.h:510
  985. msgid ""
  986. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  987. "can\n"
  988. " find the file index using the --show-files "
  989. "option.\n"
  990. " PATH is a relative path to the path specified "
  991. "in\n"
  992. " --dir option. You can use this option "
  993. "multiple\n"
  994. " times."
  995. msgstr ""
  996. #: src/usage_text.h:516
  997. msgid ""
  998. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  999. "the\n"
  1000. " remote file is available and doesn't download\n"
  1001. " data. This option has effect on HTTP/FTP "
  1002. "download.\n"
  1003. " BitTorrent downloads are canceled if true is\n"
  1004. " specified."
  1005. msgstr ""
  1006. #: src/usage_text.h:522
  1007. msgid ""
  1008. " --bt-tracker-interval=SEC Set the interval in seconds between tracker\n"
  1009. " requests. This completely overrides interval "
  1010. "value\n"
  1011. " and aria2 just uses this value and ignores "
  1012. "the\n"
  1013. " min interval and interval value in the "
  1014. "response of\n"
  1015. " tracker. If 0 is set, aria2 determines "
  1016. "interval\n"
  1017. " based on the response of tracker and the "
  1018. "download\n"
  1019. " progress."
  1020. msgstr ""
  1021. #: src/usage_text.h:530
  1022. msgid ""
  1023. " --on-download-complete=COMMAND Set the command to be executed after "
  1024. "download\n"
  1025. " completed.\n"
  1026. " See --on-download-start option for the\n"
  1027. " requirement of COMMAND.\n"
  1028. " See also --on-download-stop option."
  1029. msgstr ""
  1030. #: src/usage_text.h:536
  1031. msgid ""
  1032. " --on-download-start=COMMAND Set the command to be executed after download\n"
  1033. " got started. aria2 passes 3 arguments to "
  1034. "COMMAND:\n"
  1035. " GID, the nubmer of files and file path. See "
  1036. "Event\n"
  1037. " Hook in man page for more details."
  1038. msgstr ""
  1039. #: src/usage_text.h:541
  1040. #, fuzzy
  1041. msgid ""
  1042. " --on-download-pause=COMMAND Set the command to be executed after download\n"
  1043. " was paused.\n"
  1044. " See --on-download-start option for the\n"
  1045. " requirement of COMMAND."
  1046. msgstr ""
  1047. " --ftp-proxy=VEKİL FTP için bu vekil sunucusunu kullan. Daha\n"
  1048. " önce verilmiş bir vekili silmek için \"\"\n"
  1049. " kullanın. Ayrıca --all-proxy seçeneğine\n"
  1050. " bakın. Bu, tüm URL'leri etkiler."
  1051. #: src/usage_text.h:546
  1052. msgid ""
  1053. " --on-download-error=COMMAND Set the command to be executed after download\n"
  1054. " aborted due to error.\n"
  1055. " See --on-download-start option for the\n"
  1056. " requirement of COMMAND.\n"
  1057. " See also --on-download-stop option."
  1058. msgstr ""
  1059. #: src/usage_text.h:552
  1060. #, fuzzy
  1061. msgid ""
  1062. " --on-download-stop=COMMAND Set the command to be executed after download\n"
  1063. " stopped. You can override the command to be\n"
  1064. " executed for particular download result using\n"
  1065. " --on-download-complete and --on-download-"
  1066. "error. If\n"
  1067. " they are specified, command specified in this\n"
  1068. " option is not executed.\n"
  1069. " See --on-download-start option for the\n"
  1070. " requirement of COMMAND."
  1071. msgstr ""
  1072. " --follow-torrent=true|false|mem True veya mem seçilirse, .torrent uzantılı "
  1073. "bir dosya ya da \n"
  1074. " içerik tipi application/x-bittorrent olan bir "
  1075. "dosya indirildiğinde, aria2\n"
  1076. " onu bir torrent dosyası olarak okur ve "
  1077. "içindeki dosyaları indirir.\n"
  1078. " Eğer mem seçilirse, torrent dosyası diske "
  1079. "yazılmaz sadece hafızada\n"
  1080. " tutulur.Eğer false seçilirse, yukarıda "
  1081. "anlatılan işler yapılmaz."
  1082. #: src/usage_text.h:561
  1083. msgid ""
  1084. " --bt-stop-timeout=SEC Stop BitTorrent download if download speed is "
  1085. "0 in\n"
  1086. " consecutive SEC seconds. If 0 is given, this\n"
  1087. " feature is disabled."
  1088. msgstr ""
  1089. #: src/usage_text.h:565
  1090. msgid ""
  1091. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] Try to download first and "
  1092. "last\n"
  1093. " pieces of each file first. This is useful for\n"
  1094. " previewing files. The argument can contain 2\n"
  1095. " keywords:head and tail. To include both "
  1096. "keywords,\n"
  1097. " they must be separated by comma. These "
  1098. "keywords\n"
  1099. " can take one parameter, SIZE. For example, if\n"
  1100. " head=SIZE is specified, pieces in the range "
  1101. "of\n"
  1102. " first SIZE bytes of each file get higher "
  1103. "priority.\n"
  1104. " tail=SIZE means the range of last SIZE bytes "
  1105. "of\n"
  1106. " each file. SIZE can include K or M(1K = 1024, "
  1107. "1M =\n"
  1108. " 1024K). If SIZE is omitted, SIZE=1M is used."
  1109. msgstr ""
  1110. #: src/usage_text.h:577
  1111. msgid ""
  1112. " --interface=INTERFACE Bind sockets to given interface. You can "
  1113. "specify\n"
  1114. " interface name, IP address and hostname."
  1115. msgstr ""
  1116. #: src/usage_text.h:580
  1117. msgid " --disable-ipv6[=true|false] Disable IPv6."
  1118. msgstr ""
  1119. #: src/usage_text.h:582
  1120. msgid ""
  1121. " --bt-save-metadata[=true|false] Save metadata as .torrent file. This option "
  1122. "has\n"
  1123. " effect only when BitTorrent Magnet URI is "
  1124. "used.\n"
  1125. " The filename is hex encoded info hash with "
  1126. "suffix\n"
  1127. " .torrent. The directory to be saved is the "
  1128. "same\n"
  1129. " directory where download file is saved. If "
  1130. "the\n"
  1131. " same file already exists, metadata is not "
  1132. "saved.\n"
  1133. " See also --bt-metadata-only option."
  1134. msgstr ""
  1135. #: src/usage_text.h:590
  1136. msgid ""
  1137. " --http-no-cache[=true|false] Send Cache-Control: no-cache and Pragma: no-"
  1138. "cache\n"
  1139. " header to avoid cached content. If false is\n"
  1140. " given, these headers are not sent and you can "
  1141. "add\n"
  1142. " Cache-Control header with a directive you "
  1143. "like\n"
  1144. " using --header option."
  1145. msgstr ""
  1146. #: src/usage_text.h:596
  1147. msgid ""
  1148. " --bt-metadata-only[=true|false] Download metadata only. The file(s) "
  1149. "described\n"
  1150. " in metadata will not be downloaded. This "
  1151. "option\n"
  1152. " has effect only when BitTorrent Magnet URI is\n"
  1153. " used. See also --bt-save-metadata option."
  1154. msgstr ""
  1155. #: src/usage_text.h:601
  1156. msgid ""
  1157. " --human-readable[=true|false] Print sizes and speed in human readable "
  1158. "format\n"
  1159. " (e.g., 1.2Ki, 3.4Mi) in the console readout."
  1160. msgstr ""
  1161. #: src/usage_text.h:604
  1162. msgid " --bt-enable-lpd[=true|false] Enable Local Peer Discovery."
  1163. msgstr ""
  1164. #: src/usage_text.h:606
  1165. msgid ""
  1166. " --bt-lpd-interface=INTERFACE Use given interface for Local Peer Discovery. "
  1167. "If\n"
  1168. " this option is not specified, the default\n"
  1169. " interface is chosen. You can specify "
  1170. "interface\n"
  1171. " name and IP address."
  1172. msgstr ""
  1173. #: src/usage_text.h:611
  1174. msgid ""
  1175. " --reuse-uri[=true|false] Reuse already used URIs if no unused URIs are\n"
  1176. " left."
  1177. msgstr ""
  1178. #: src/usage_text.h:614
  1179. msgid " --all-proxy-user=USER Set user for --all-proxy option."
  1180. msgstr ""
  1181. #: src/usage_text.h:616
  1182. msgid " --all-proxy-passwd=PASSWD Set password for --all-proxy option."
  1183. msgstr ""
  1184. #: src/usage_text.h:618
  1185. msgid " --http-proxy-user=USER Set user for --http-proxy option."
  1186. msgstr ""
  1187. #: src/usage_text.h:620
  1188. msgid " --http-proxy-passwd=PASSWD Set password for --http-proxy option."
  1189. msgstr ""
  1190. #: src/usage_text.h:622
  1191. msgid " --https-proxy-user=USER Set user for --https-proxy option."
  1192. msgstr ""
  1193. #: src/usage_text.h:624
  1194. msgid " --https-proxy-passwd=PASSWD Set password for --https-proxy option."
  1195. msgstr ""
  1196. #: src/usage_text.h:626
  1197. msgid " --ftp-proxy-user=USER Set user for --ftp-proxy option."
  1198. msgstr ""
  1199. #: src/usage_text.h:628
  1200. msgid " --ftp-proxy-passwd=PASSWD Set password for --ftp-proxy option."
  1201. msgstr ""
  1202. #: src/usage_text.h:630
  1203. msgid ""
  1204. " --remove-control-file[=true|false] Remove control file before download. "
  1205. "Using\n"
  1206. " with --allow-overwrite=true, download always\n"
  1207. " starts from scratch. This will be useful for\n"
  1208. " users behind proxy server which disables "
  1209. "resume."
  1210. msgstr ""
  1211. #: src/usage_text.h:635
  1212. msgid ""
  1213. " --always-resume[=true|false] Always resume download. If true is given, "
  1214. "aria2\n"
  1215. " always tries to resume download and if resume "
  1216. "is\n"
  1217. " not possible, aborts download. If false is "
  1218. "given,\n"
  1219. " when all given URIs do not support resume or\n"
  1220. " aria2 encounters N URIs which does not "
  1221. "support\n"
  1222. " resume (N is the value specified using\n"
  1223. " --max-resume-failure-tries option), aria2\n"
  1224. " downloads file from scratch.\n"
  1225. " See --max-resume-failure-tries option."
  1226. msgstr ""
  1227. #: src/usage_text.h:645
  1228. msgid ""
  1229. " --max-resume-failure-tries=N When used with --always-resume=false, aria2\n"
  1230. " downloads file from scratch when aria2 detects "
  1231. "N\n"
  1232. " number of URIs that does not support resume. "
  1233. "If N\n"
  1234. " is 0, aria2 downloads file from scratch when "
  1235. "all\n"
  1236. " given URIs do not support resume.\n"
  1237. " See --always-resume option."
  1238. msgstr ""
  1239. #: src/usage_text.h:652
  1240. msgid " --bt-tracker-timeout=SEC Set timeout in seconds."
  1241. msgstr ""
  1242. #: src/usage_text.h:654
  1243. msgid ""
  1244. " --bt-tracker-connect-timeout=SEC Set the connect timeout in seconds to\n"
  1245. " establish connection to tracker. After the\n"
  1246. " connection is established, this option makes "
  1247. "no\n"
  1248. " effect and --bt-tracker-timeout option is "
  1249. "used\n"
  1250. " instead."
  1251. msgstr ""
  1252. #: src/usage_text.h:660
  1253. msgid " --dht-message-timeout=SEC Set timeout in seconds."
  1254. msgstr ""
  1255. #: src/usage_text.h:662
  1256. msgid ""
  1257. " --http-accept-gzip[=true|false] Send 'Accept: deflate, gzip' request "
  1258. "header\n"
  1259. " and inflate response if remote server "
  1260. "responds\n"
  1261. " with 'Content-Encoding: gzip' or\n"
  1262. " 'Content-Encoding: deflate'."
  1263. msgstr ""
  1264. #: src/usage_text.h:667
  1265. msgid ""
  1266. " --save-session=FILE Save error/unfinished downloads to FILE on "
  1267. "exit.\n"
  1268. " You can pass this output file to aria2c with -"
  1269. "i\n"
  1270. " option on restart. Please note that downloads\n"
  1271. " added by aria2.addTorrent and aria2."
  1272. "addMetalink\n"
  1273. " RPC method are not saved."
  1274. msgstr ""
  1275. #: src/usage_text.h:673
  1276. #, fuzzy
  1277. msgid ""
  1278. " -x, --max-connection-per-server=NUM The maximum number of connections to "
  1279. "one\n"
  1280. " server for each download."
  1281. msgstr ""
  1282. " --bt-max-open-files=SAYI Bir BitTorrent downloadında açılacak maksimum \n"
  1283. " dosya sayısını belirle."
  1284. #: src/usage_text.h:676
  1285. msgid ""
  1286. " -k, --min-split-size=SIZE aria2 does not split less than 2*SIZE byte "
  1287. "range.\n"
  1288. " For example, let's consider downloading 20MiB\n"
  1289. " file. If SIZE is 10M, aria2 can split file "
  1290. "into 2\n"
  1291. " range [0-10MiB) and [10MiB-20MiB) and download "
  1292. "it\n"
  1293. " using 2 sources(if --split >= 2, of course).\n"
  1294. " If SIZE is 15M, since 2*15M > 20MiB, aria2 "
  1295. "does\n"
  1296. " not split file and download it using 1 "
  1297. "source.\n"
  1298. " You can append K or M(1K = 1024, 1M = 1024K)."
  1299. msgstr ""
  1300. #: src/usage_text.h:685
  1301. #, fuzzy
  1302. msgid ""
  1303. " --conditional-get[=true|false] Download file only when the local file is "
  1304. "older\n"
  1305. " than remote file. Currently, this function "
  1306. "has\n"
  1307. " many limitations. See man page for details."
  1308. msgstr ""
  1309. " --enable-direct-io=true|false Direk G/Ç belirle.True yapılırsa\n"
  1310. " dosya yer ayrımlarında düşük işlemci\n"
  1311. " gücü kullanılır.Eğer bir hata olursa kapatın."
  1312. #: src/usage_text.h:689
  1313. msgid ""
  1314. " --on-bt-download-complete=COMMAND For BitTorrent, a command specified in\n"
  1315. " --on-download-complete is called after "
  1316. "download\n"
  1317. " completed and seeding is over. On the other "
  1318. "hand,\n"
  1319. " this option sets the command to be executed "
  1320. "after\n"
  1321. " download completed but before seeding.\n"
  1322. " See --on-download-start option for the\n"
  1323. " requirement of COMMAND."
  1324. msgstr ""
  1325. #: src/usage_text.h:697
  1326. #, fuzzy
  1327. msgid ""
  1328. " --enable-async-dns6[=true|false] Enable IPv6 name resolution in "
  1329. "asynchronous\n"
  1330. " DNS resolver. This option will be ignored "
  1331. "when\n"
  1332. " --async-dns=false."
  1333. msgstr ""
  1334. " --enable-direct-io=true|false Direk G/Ç belirle.True yapılırsa\n"
  1335. " dosya yer ayrımlarında düşük işlemci\n"
  1336. " gücü kullanılır.Eğer bir hata olursa kapatın."
  1337. #: src/usage_text.h:701
  1338. #, fuzzy
  1339. msgid ""
  1340. " --enable-dht6[=true|false] Enable IPv6 DHT functionality.\n"
  1341. " Use --dht-listen-port option to specify port\n"
  1342. " number to listen on. See also --dht-listen-"
  1343. "addr6\n"
  1344. " option."
  1345. msgstr ""
  1346. " --bt-require-crypto=true|false True seçilirse aria2 BitTorrent tokalaşması "
  1347. "ile\n"
  1348. " bağlantıyı kabul etmez ve kurmaz.Dolayısıyla "
  1349. "aria2\n"
  1350. " her zaman obfuskasyon tokalaşmasını kullanır."
  1351. #: src/usage_text.h:706
  1352. msgid ""
  1353. " --dht-listen-addr6=ADDR Specify address to bind socket for IPv6 DHT. \n"
  1354. " It should be a global unicast IPv6 address of "
  1355. "the\n"
  1356. " host."
  1357. msgstr ""
  1358. #: src/usage_text.h:710
  1359. #, fuzzy
  1360. msgid ""
  1361. " --dht-entry-point6=HOST:PORT Set host and port as an entry point to IPv6 "
  1362. "DHT\n"
  1363. " network."
  1364. msgstr ""
  1365. " --dht-entry-point=MAKİNE:PORT Makine ve portu DHT ağına giriş noktası "
  1366. "olarak belirle."
  1367. #: src/usage_text.h:713
  1368. #, fuzzy
  1369. msgid ""
  1370. " --dht-file-path6=PATH Change the IPv6 DHT routing table file to PATH."
  1371. msgstr " --conf-path=YOL Konfigürasyon dosyasının yerini belirle."
  1372. #: src/usage_text.h:715
  1373. msgid ""
  1374. " --bt-tracker=URI[,...] Comma separated list of additional BitTorrent\n"
  1375. " tracker's announce URI. These URIs are not\n"
  1376. " affected by --bt-exclude-tracker option "
  1377. "because\n"
  1378. " they are added after URIs in --bt-exclude-"
  1379. "tracker\n"
  1380. " option are removed."
  1381. msgstr ""
  1382. #: src/usage_text.h:721
  1383. msgid ""
  1384. " --bt-exclude-tracker=URI[,...] Comma separated list of BitTorrent "
  1385. "tracker's\n"
  1386. " announce URI to remove. You can use special "
  1387. "value\n"
  1388. " '*' which matches all URIs, thus removes all\n"
  1389. " announce URIs. When specifying '*' in shell\n"
  1390. " command-line, don't forget to escape or quote "
  1391. "it.\n"
  1392. " See also --bt-tracker option."
  1393. msgstr ""
  1394. #: src/usage_text.h:728
  1395. msgid ""
  1396. " --max-download-result=NUM Set maximum number of download result kept in\n"
  1397. " memory. The download results are completed/"
  1398. "error/\n"
  1399. " removed downloads. The download results are "
  1400. "stored\n"
  1401. " in FIFO queue and it can store at most NUM\n"
  1402. " download results. When queue is full and new\n"
  1403. " download result is created, oldest download "
  1404. "result\n"
  1405. " is removed from the front of the queue and new "
  1406. "one\n"
  1407. " is pushed to the back. Setting big number in "
  1408. "this\n"
  1409. " option may result high memory consumption "
  1410. "after\n"
  1411. " thousands of downloads. Specifying 0 means no\n"
  1412. " download result is kept."
  1413. msgstr ""
  1414. #: src/usage_text.h:740
  1415. msgid ""
  1416. " --async-dns-server=IPADDRESS[,...] Comma separated list of DNS server "
  1417. "address\n"
  1418. " used in asynchronous DNS resolver. Usually\n"
  1419. " asynchronous DNS resolver reads DNS server\n"
  1420. " addresses from /etc/resolv.conf. When this "
  1421. "option\n"
  1422. " is used, it uses DNS servers specified in "
  1423. "this\n"
  1424. " option instead of ones in /etc/resolv.conf. "
  1425. "You\n"
  1426. " can specify both IPv4 and IPv6 address. This\n"
  1427. " option is useful when the system does not "
  1428. "have\n"
  1429. " /etc/resolv.conf and user does not have the\n"
  1430. " permission to create it."
  1431. msgstr ""
  1432. #: src/usage_text.h:751
  1433. #, fuzzy
  1434. msgid ""
  1435. " --enable-rpc[=true|false] Enable JSON-RPC/XML-RPC server.\n"
  1436. " It is strongly recommended to set username "
  1437. "and\n"
  1438. " password using --rpc-user and --rpc-passwd\n"
  1439. " option. See also --rpc-listen-port option."
  1440. msgstr ""
  1441. " --bt-require-crypto=true|false True seçilirse aria2 BitTorrent tokalaşması "
  1442. "ile\n"
  1443. " bağlantıyı kabul etmez ve kurmaz.Dolayısıyla "
  1444. "aria2\n"
  1445. " her zaman obfuskasyon tokalaşmasını kullanır."
  1446. #: src/usage_text.h:756
  1447. msgid ""
  1448. " --rpc-max-request-size=SIZE Set max size of JSON-RPC/XML-RPC request. If "
  1449. "aria2\n"
  1450. " detects the request is more than SIZE bytes, "
  1451. "it\n"
  1452. " drops connection."
  1453. msgstr ""
  1454. #: src/usage_text.h:760
  1455. #, fuzzy
  1456. msgid " --rpc-user=USER Set JSON-RPC/XML-RPC user."
  1457. msgstr ""
  1458. " --http-user=KULLANICI HTTP kullanıcısını belirle.Bu bütün URLleri etkiler."
  1459. #: src/usage_text.h:762
  1460. #, fuzzy
  1461. msgid " --rpc-passwd=PASSWD Set JSON-RPC/XML-RPC password."
  1462. msgstr " --http-passwd=SIFRE HTTP şifresini belirle.Bu bütün URLleri etkiler."
  1463. #: src/usage_text.h:764
  1464. #, fuzzy
  1465. msgid ""
  1466. " --rpc-listen-all[=true|false] Listen incoming JSON-RPC/XML-RPC requests on "
  1467. "all\n"
  1468. " network interfaces. If false is given, listen "
  1469. "only\n"
  1470. " on local loopback interface."
  1471. msgstr ""
  1472. " -S\\ --show-files .torrent ve .metalink dosyasının listesini göster ve çık."
  1473. "Torrent dosyalarında\n"
  1474. " daha detaylı bilgi gösterilir."
  1475. #: src/usage_text.h:768
  1476. msgid ""
  1477. " --rpc-listen-port=PORT Specify a port number for JSON-RPC/XML-RPC "
  1478. "server\n"
  1479. " to listen to."
  1480. msgstr ""
  1481. #: src/usage_text.h:771
  1482. msgid " --enable-xml-rpc[=true|false] Deprecated. Use --enable-rpc instead."
  1483. msgstr ""
  1484. #: src/usage_text.h:773
  1485. msgid ""
  1486. " --xml-rpc-max-request-size=SIZE Deprecated. Use --rpc-max-request-size\n"
  1487. " instead."
  1488. msgstr ""
  1489. #: src/usage_text.h:776
  1490. msgid " --xml-rpc-user=USER Deprecated. Use --rpc-user instead."
  1491. msgstr ""
  1492. #: src/usage_text.h:778
  1493. msgid " --xml-rpc-passwd=PASSWD Deprecated. Use --rpc-passwd instead."
  1494. msgstr ""
  1495. #: src/usage_text.h:780
  1496. msgid ""
  1497. " --xml-rpc-listen-all[=true|false] Deprecated. Use --rpc-listen-all instead."
  1498. msgstr ""
  1499. #: src/usage_text.h:782
  1500. msgid ""
  1501. " --xml-rpc-listen-port=PORT Deprecated. Use --rpc-listen-port instead."
  1502. msgstr ""
  1503. #: src/version_usage.cc:57
  1504. msgid " version "
  1505. msgstr " sürüm "
  1506. #: src/version_usage.cc:80
  1507. #, c-format
  1508. msgid "Report bugs to %s"
  1509. msgstr "Hataları %s ye raporla"
  1510. #: src/version_usage.cc:85
  1511. msgid ""
  1512. "Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | METALINK_FILE]..."
  1513. msgstr ""
  1514. #: src/version_usage.cc:92
  1515. msgid "Printing all options."
  1516. msgstr "Tüm seçenekler gösteriliyor."
  1517. #: src/version_usage.cc:94
  1518. #, c-format
  1519. msgid "Printing options tagged with '%s'."
  1520. msgstr "%s ile etiketlenmiş seçenekler gösteriliyor."
  1521. #: src/version_usage.cc:98
  1522. #, c-format
  1523. msgid "See -h option to know other command-line options(%s)."
  1524. msgstr ""
  1525. "Diğer komut satırı seçeneklerine(%s) bakmak için -h seçeneğini kullanınız."
  1526. #: src/version_usage.cc:103 src/version_usage.cc:115
  1527. msgid "Options:"
  1528. msgstr "Seçenekler:"
  1529. #: src/version_usage.cc:112
  1530. #, c-format
  1531. msgid "Printing options whose name includes '%s'."
  1532. msgstr ""
  1533. #: src/version_usage.cc:121
  1534. #, c-format
  1535. msgid "No option matching with '%s'."
  1536. msgstr ""
  1537. #: src/version_usage.cc:129
  1538. msgid ""
  1539. " You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z option, "
  1540. "all\n"
  1541. " URIs must point to the same file or downloading will fail."
  1542. msgstr ""
  1543. #: src/version_usage.cc:131
  1544. msgid ""
  1545. " You can also specify arbitrary number of BitTorrent Magnet URIs, torrent/\n"
  1546. " metalink files stored in a local drive. Please note that they are always\n"
  1547. " treated as a separate download."
  1548. msgstr ""
  1549. #: src/version_usage.cc:136
  1550. msgid ""
  1551. " You can specify both torrent file with -T option and URIs. By doing this,\n"
  1552. " download a file from both torrent swarm and HTTP/FTP server at the same "
  1553. "time,\n"
  1554. " while the data from HTTP/FTP are uploaded to the torrent swarm. For single "
  1555. "file\n"
  1556. " torrents, URI can be a complete URI pointing to the resource or if URI "
  1557. "ends\n"
  1558. " with '/', 'name' in torrent file is added. For multi-file torrents, 'name' "
  1559. "and\n"
  1560. " 'path' in torrent are added to form a URI for each file."
  1561. msgstr ""
  1562. #: src/version_usage.cc:143
  1563. msgid ""
  1564. " Make sure that URI is quoted with single(') or double(\") quotation if it\n"
  1565. " contains \"&\" or any characters that have special meaning in shell."
  1566. msgstr ""
  1567. #: src/version_usage.cc:153
  1568. msgid "Refer to man page for more information."
  1569. msgstr "Detaylı bilgi için man sayfasına bakınız."
  1570. #: src/message.h:57
  1571. #, c-format
  1572. msgid "GID#%s - Download has already completed: %s"
  1573. msgstr ""
  1574. #: src/message.h:106
  1575. #, c-format
  1576. msgid "Unrecognized URI or unsupported protocol: %s"
  1577. msgstr "Anlaşılmayan URI ya da desteklenmeyen protokol: %s"
  1578. #: src/message.h:107
  1579. #, c-format
  1580. msgid "Tracker returned warning message: %s"
  1581. msgstr "İzleyici %s uyarı mesajını gönderdi."
  1582. #: src/message.h:108
  1583. #, c-format
  1584. msgid "The segment file %s exists."
  1585. msgstr "%s dosya parçası var."
  1586. #: src/message.h:109
  1587. #, c-format
  1588. msgid "The segment file %s does not exist."
  1589. msgstr "%s dosya parçası yok."
  1590. #: src/message.h:110
  1591. #, c-format
  1592. msgid "Saving the segment file %s"
  1593. msgstr "%s dosya parçası kaydediliyor."
  1594. #: src/message.h:111
  1595. msgid "The segment file was saved successfully."
  1596. msgstr "Dosya parçası başarıyla kaydedildi."
  1597. #: src/message.h:112
  1598. #, c-format
  1599. msgid "Loading the segment file %s."
  1600. msgstr "%s dosya parçası yükleniyor."
  1601. #: src/message.h:113
  1602. msgid "The segment file was loaded successfully."
  1603. msgstr "Dosya parçası başarıyla yüklendi."
  1604. #: src/message.h:114
  1605. msgid "No URI to download. Download aborted."
  1606. msgstr "İndirilecek URI yok.İndirme iptal edildi."
  1607. #: src/message.h:115
  1608. #, c-format
  1609. msgid ""
  1610. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1611. "canceled in order to prevent your file from being truncated to 0. If you are "
  1612. "sure to download the file all over again, then delete it or add --allow-"
  1613. "overwrite=true option and restart aria2."
  1614. msgstr ""
  1615. "%s dosyası var ama (*.aria2) kontrol dosyası yok.İndirme dosyanızın boyutunu "
  1616. "sıfırlamamak için iptal edildi.\n"
  1617. "Tekrar indirmek istediğinizden emin iseniz ya silin ya da --allow-"
  1618. "overwrıte=true seçeneğini ekleyip aria2yi tekrar başlatın."
  1619. #: src/message.h:116
  1620. #, c-format
  1621. msgid "Allocating file %s, %s bytes"
  1622. msgstr "%s dosyasına yer ayrılıyor, %s bytes"
  1623. #: src/message.h:117
  1624. msgid "File not found"
  1625. msgstr "Dosya bulunamadı"
  1626. #: src/message.h:118
  1627. msgid "Not a directory"
  1628. msgstr "Bir dizin değil"
  1629. #: src/message.h:119
  1630. #, c-format
  1631. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1632. msgstr "Chekcksumlar yetersiz. checksumuzunluğu=%d checksumsayısı=%d"
  1633. #: src/message.h:120
  1634. #, c-format
  1635. msgid "Writing file %s"
  1636. msgstr "%s dosyası yazılıyor"
  1637. #: src/message.h:121
  1638. msgid "No peer list received."
  1639. msgstr "Hiç peer listesi alınmadı"
  1640. #: src/message.h:122
  1641. #, c-format
  1642. msgid "Adding peer %s:%d"
  1643. msgstr "%s:%d peer i ekleniyor"
  1644. #: src/message.h:123
  1645. #, c-format
  1646. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1647. msgstr "Kullanılan parça siliniyor indeks=%d, fillRate(%%)=%d<=%d"
  1648. #: src/message.h:124
  1649. msgid "Download of selected files was complete."
  1650. msgstr "Seçilen dosya indirildi."
  1651. #: src/message.h:125
  1652. msgid "The download was complete."
  1653. msgstr "İndirme tamamlandı."
  1654. #: src/message.h:126
  1655. #, fuzzy, c-format
  1656. msgid "Removed %lu have entries."
  1657. msgstr "Girdili %d silindi."
  1658. #: src/message.h:127
  1659. #, c-format
  1660. msgid "Validating file %s"
  1661. msgstr "%s dosyası doğrulanıyor"
  1662. #: src/message.h:128
  1663. #, fuzzy, c-format
  1664. msgid "%ld seconds to allocate %s byte(s)"
  1665. msgstr "%d saniyede %s byte(s) için yer ayrılacak"
  1666. #: src/message.h:131
  1667. #, c-format
  1668. msgid "Metalink: Queueing %s for download."
  1669. msgstr "Metalink: %s indirme sırasına alınıyor."
  1670. #: src/message.h:132
  1671. #, c-format
  1672. msgid "Download complete: %s"
  1673. msgstr "İndirme tamamlandı: %s"
  1674. #: src/message.h:133
  1675. msgid "Seeding is over."
  1676. msgstr "Tohumlama bitti."
  1677. #: src/message.h:134
  1678. msgid "No chunk to verify."
  1679. msgstr "Doğrulanacak parça yok."
  1680. #: src/message.h:135
  1681. #, c-format
  1682. msgid "Good chunk checksum. hash=%s"
  1683. msgstr "Parça checksumı doğru. hash=%s"
  1684. #: src/message.h:136
  1685. #, c-format
  1686. msgid "Failed to load cookies from %s"
  1687. msgstr "%s den çerezler yüklenemedi."
  1688. #: src/message.h:137
  1689. #, c-format
  1690. msgid ""
  1691. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1692. "support disabled."
  1693. msgstr ""
  1694. "%s .netrc dosyasında doğru izinler yok.İzinler 600 olmalıydı. netrc desteği "
  1695. "kaptıldı."
  1696. #: src/message.h:138
  1697. msgid "Logging started."
  1698. msgstr "Loglama başladı."
  1699. #: src/message.h:139
  1700. msgid "Specify at least one URL."
  1701. msgstr "En az bir URl belirlemelisiniz."
  1702. #: src/message.h:140
  1703. msgid "daemon failed."
  1704. msgstr "daemon başarısız."
  1705. #: src/message.h:141
  1706. #, c-format
  1707. msgid "Verification finished successfully. file=%s"
  1708. msgstr "Doğrulama başarıyla tamamlandı. dosya=%s"
  1709. #: src/message.h:142
  1710. #, c-format
  1711. msgid "Checksum error detected. file=%s"
  1712. msgstr "Checksumda hata bulundu. dosya=%s"
  1713. #: src/message.h:143
  1714. #, c-format
  1715. msgid "Incomplete range specified. %s"
  1716. msgstr "Eksik aralık belirtildi. %s"
  1717. #: src/message.h:144
  1718. #, c-format
  1719. msgid "Failed to convert string into value: %s"
  1720. msgstr "Dizi değeri sayıya çevrilemiyor: %s"
  1721. #: src/message.h:145
  1722. msgid "Resource not found"
  1723. msgstr "Kaynak bulunamadı"
  1724. #: src/message.h:146
  1725. #, c-format
  1726. msgid "File already exists. Renamed to %s."
  1727. msgstr "Bu isimde zaten bir dosya var. Yeni isim %s verildi."
  1728. #: src/message.h:147
  1729. msgid "Cannot parse metalink XML file. XML may be malformed."
  1730. msgstr "Metalink XML dosyası okunamıyor.Yanlış formatta olabilir."
  1731. #: src/message.h:148
  1732. #, fuzzy, c-format
  1733. msgid "Too small payload size for %s, size=%lu."
  1734. msgstr "%s için payload büyüklüğü çok az, büyüklük=%d"
  1735. #: src/message.h:149
  1736. #, c-format
  1737. msgid ""
  1738. "Removed the defunct control file %s because the download file %s doesn't "
  1739. "exist."
  1740. msgstr "Çalışmayan kontrol dosyası %s silindi, çünkü %s indirme dosyası yok."
  1741. #: src/message.h:150
  1742. #, c-format
  1743. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1744. msgstr "Paylaşma oranınız %.1f , upload/download=%sB/%sB"
  1745. #: src/message.h:151
  1746. #, c-format
  1747. msgid "Missing %s in torrent metainfo."
  1748. msgstr "Torrent meta bilgilerinde %s eksik."
  1749. #: src/message.h:152
  1750. msgid "Tracker returned null data."
  1751. msgstr "İzleyici boş veri gönderdi."
  1752. #: src/message.h:153
  1753. msgid "Windows socket library initialization failed"
  1754. msgstr "Windows soket kütüphanesi başlatılamadı."
  1755. #: src/message.h:154
  1756. #, fuzzy, c-format
  1757. msgid "%ld second(s) has passed. Stopping application."
  1758. msgstr "%d saniye geçti.Uygulama sonlandırılıyor."
  1759. #: src/message.h:155
  1760. #, c-format
  1761. msgid ""
  1762. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1763. msgstr ""
  1764. "İmza %s olarak kaydedildi.aria2 nin imzaları kontrol etmediğini unutmayınız."
  1765. #: src/message.h:157
  1766. #, c-format
  1767. msgid "Saving signature as %s failed. Maybe file already exists."
  1768. msgstr "İmza %s olarak kayededilemiyor.Böyle bir dosya var olabilir."
  1769. #: src/message.h:160
  1770. #, c-format
  1771. msgid "Failed to open ServerStat file %s for read."
  1772. msgstr ""
  1773. #: src/message.h:161
  1774. #, c-format
  1775. msgid "ServerStat file %s loaded successfully."
  1776. msgstr ""
  1777. #: src/message.h:162
  1778. #, c-format
  1779. msgid "Failed to read ServerStat from %s."
  1780. msgstr ""
  1781. #: src/message.h:165
  1782. #, c-format
  1783. msgid "Failed to open ServerStat file %s for write."
  1784. msgstr ""
  1785. #: src/message.h:166
  1786. #, c-format
  1787. msgid "ServerStat file %s saved successfully."
  1788. msgstr ""
  1789. #: src/message.h:167
  1790. #, c-format
  1791. msgid "Failed to write ServerStat to %s."
  1792. msgstr ""
  1793. #: src/message.h:170
  1794. #, c-format
  1795. msgid "Failed to establish connection, cause: %s"
  1796. msgstr ""
  1797. #: src/message.h:171
  1798. #, c-format
  1799. msgid "Network problem has occurred. cause:%s"
  1800. msgstr ""
  1801. #: src/message.h:173
  1802. #, c-format
  1803. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  1804. msgstr ""
  1805. #: src/message.h:175
  1806. #, c-format
  1807. msgid ""
  1808. "Certificate verification failed. Cause: %s See --ca-certificate and --check-"
  1809. "certificate option."
  1810. msgstr ""
  1811. #: src/message.h:177
  1812. msgid "No certificate found."
  1813. msgstr ""
  1814. #: src/message.h:178
  1815. msgid "Hostname not match."
  1816. msgstr ""
  1817. #: src/message.h:179
  1818. msgid "No files to download."
  1819. msgstr ""
  1820. #: src/message.h:181
  1821. msgid ""
  1822. "You may encounter the certificate verification error with HTTPS server. See "
  1823. "--ca-certificate and --check-certificate option."
  1824. msgstr ""
  1825. #: src/message.h:183
  1826. #, c-format
  1827. msgid "Printing the contents of file '%s'..."
  1828. msgstr ""
  1829. #: src/message.h:184
  1830. msgid "This file is neither Torrent nor Metalink file. Skipping."
  1831. msgstr ""
  1832. #: src/message.h:189
  1833. #, c-format
  1834. msgid "Is '%s' a file?"
  1835. msgstr ""
  1836. #: src/message.h:190
  1837. #, c-format
  1838. msgid "Failed to find given interface %s, cause: %s"
  1839. msgstr ""
  1840. #: src/message.h:192
  1841. #, c-format
  1842. msgid "Saved metadata as %s."
  1843. msgstr ""
  1844. #: src/message.h:193
  1845. #, c-format
  1846. msgid "Saving metadata as %s failed. Maybe file already exists."
  1847. msgstr ""
  1848. #: src/message.h:195
  1849. #, c-format
  1850. msgid "Detected directory traversal directive in %s"
  1851. msgstr ""
  1852. #: src/message.h:199
  1853. msgid "Timeout."
  1854. msgstr "Zamanaşımı."
  1855. #: src/message.h:200
  1856. msgid "Invalid chunk size."
  1857. msgstr "Geçersiz parça büyüklüğü."
  1858. #: src/message.h:201
  1859. #, c-format
  1860. msgid "Too large chunk. size=%d"
  1861. msgstr "Çok büyük parça. büyüklük=%d"
  1862. #: src/message.h:202
  1863. msgid "Invalid header."
  1864. msgstr "Geçersiz başlık."
  1865. #: src/message.h:203
  1866. msgid "Invalid response."
  1867. msgstr "Geçersiz cevap."
  1868. #: src/message.h:204
  1869. msgid "No header found."
  1870. msgstr "Hiç başlık bulunamadı."
  1871. #: src/message.h:205
  1872. msgid "No status header."
  1873. msgstr "Durum başlığı yok."
  1874. #: src/message.h:206
  1875. msgid "Proxy connection failed."
  1876. msgstr "Proxy bağlantısı oluşturulamadı."
  1877. #: src/message.h:207
  1878. msgid "Connection failed."
  1879. msgstr "Bağlantı başarısız."
  1880. #: src/message.h:208
  1881. #, c-format
  1882. msgid ""
  1883. "The requested filename and the previously registered one are not same. "
  1884. "Expected:%s Actual:%s"
  1885. msgstr ""
  1886. "İstenilen ve daha önce kaydedilen dosya isimleri aynı değil. Beklenen:%s "
  1887. "Verilen:%s"
  1888. #: src/message.h:209
  1889. #, c-format
  1890. msgid "The response status is not successful. status=%d"
  1891. msgstr "Cevap durumu başarılı değil. durum=%d"
  1892. #: src/message.h:210
  1893. #, c-format
  1894. msgid "Too large file size. size=%s"
  1895. msgstr "Çok büyük dosya büyüklüğü. büyüklük=%s"
  1896. #: src/message.h:211
  1897. #, c-format
  1898. msgid "Transfer encoding %s is not supported."
  1899. msgstr "Transfer şifrelemesi %s desteklenmiyor."
  1900. #: src/message.h:212
  1901. #, c-format
  1902. msgid "SSL initialization failed: %s"
  1903. msgstr "SSl başlatılamadı: %s"
  1904. #: src/message.h:213
  1905. msgid "SSL I/O error"
  1906. msgstr "SSL G/Ç hatası"
  1907. #: src/message.h:214
  1908. msgid "SSL protocol error"
  1909. msgstr "SSL protokol hatası"
  1910. #: src/message.h:215
  1911. #, c-format
  1912. msgid "SSL unknown error %d"
  1913. msgstr "SSL bilinmeyen hata %d"
  1914. #: src/message.h:216
  1915. #, c-format
  1916. msgid "SSL initialization failed: OpenSSL connect error %d"
  1917. msgstr "SSL başlatılamadı: OpenSSL bağlantı hatası %d"
  1918. #: src/message.h:217
  1919. #, c-format
  1920. msgid "Size mismatch Expected:%s Actual:%s"
  1921. msgstr "Büyüklük uyuşmuyor Beklenen:%s Gelen:%s"
  1922. #: src/message.h:218
  1923. msgid "Authorization failed."
  1924. msgstr "Yetkilendirme başarısız."
  1925. #: src/message.h:219
  1926. msgid "Got EOF from the server."
  1927. msgstr "Sunucudan EOF alındı."
  1928. #: src/message.h:220
  1929. msgid "Got EOF from peer."
  1930. msgstr "Peerden EOF alındı."
  1931. #: src/message.h:221
  1932. msgid "Malformed meta info."
  1933. msgstr "Yanlış formatlı meta bilgisi."
  1934. #: src/message.h:223
  1935. #, c-format
  1936. msgid "Failed to open the file %s, cause: %s"
  1937. msgstr "%s dosyası %s sebebinden açılamadı"
  1938. #: src/message.h:224
  1939. #, c-format
  1940. msgid "Failed to write into the file %s, cause: %s"
  1941. msgstr "%s dosyasına %s sebebinden yazılamadı"
  1942. #: src/message.h:225
  1943. #, c-format
  1944. msgid "Failed to read from the file %s, cause: %s"
  1945. msgstr "%s dosyasından %s sebebiyle okunamadı"
  1946. #: src/message.h:226
  1947. msgid "Failed to read data from disk."
  1948. msgstr "Diskten veri okunamadı."
  1949. #: src/message.h:227
  1950. #, c-format
  1951. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  1952. msgstr ""
  1953. "%s dosyasının bir parçası veya SHA1 özeti hesaplaması %s sebebiyle yapılamadı"
  1954. #: src/message.h:228
  1955. #, c-format
  1956. msgid "Failed to seek the file %s, cause: %s"
  1957. msgstr "%s dosyası %s sebebiyle aranamadı"
  1958. #: src/message.h:229
  1959. #, c-format
  1960. msgid "The offset is out of range, offset=%s"
  1961. msgstr "Artış aralık dışı, artış=%s"
  1962. #: src/message.h:230
  1963. #, c-format
  1964. msgid "%s is not a directory."
  1965. msgstr "%s bir dizin değil"
  1966. #: src/message.h:231
  1967. #, c-format
  1968. msgid "Failed to make the directory %s, cause: %s"
  1969. msgstr "%s dizini %s sebebiyle oluşturulamadı"
  1970. #: src/message.h:235
  1971. #, c-format
  1972. msgid "Failed to open a socket, cause: %s"
  1973. msgstr "%s sebebiyle soket açılamadı"
  1974. #: src/message.h:236
  1975. #, c-format
  1976. msgid "Failed to set a socket option, cause: %s"
  1977. msgstr "%s sebebiyle soket yerleştirilemedi"
  1978. #: src/message.h:237
  1979. #, c-format
  1980. msgid "Failed to set a socket as blocking, cause: %s"
  1981. msgstr "%s sebebiyle soket bloke edilemedi"
  1982. #: src/message.h:238
  1983. #, c-format
  1984. msgid "Failed to set a socket as non-blocking, cause: %s"
  1985. msgstr "%s sebebiyle soket bloke olmayan olarak ayarlanamadı"
  1986. #: src/message.h:239
  1987. #, c-format
  1988. msgid "Failed to bind a socket, cause: %s"
  1989. msgstr "%s sebebiyle soket tutulamadı"
  1990. #: src/message.h:240
  1991. #, c-format
  1992. msgid "Failed to listen to a socket, cause: %s"
  1993. msgstr "%s sebebiyle soket dinlenemedi"
  1994. #: src/message.h:241
  1995. #, c-format
  1996. msgid "Failed to accept a peer connection, cause: %s"
  1997. msgstr "%s sebebiyle peer bağlantısı kabul edilmedi"
  1998. #: src/message.h:242
  1999. #, c-format
  2000. msgid "Failed to get the name of socket, cause: %s"
  2001. msgstr "%s sebeiyle soketin adı alınamadı"
  2002. #: src/message.h:243
  2003. #, c-format
  2004. msgid "Failed to get the name of connected peer, cause: %s"
  2005. msgstr "%s sebebiyle bağlanılan peer in adı alınamadı"
  2006. #: src/message.h:244
  2007. #, c-format
  2008. msgid "Failed to resolve the hostname %s, cause: %s"
  2009. msgstr "%s makinesinin adı çözülemedi sebep: %s"
  2010. #: src/message.h:245
  2011. #, c-format
  2012. msgid "Failed to connect to the host %s, cause: %s"
  2013. msgstr "%s makinesine %s sebebinden dolayı bağlanılamyor"
  2014. #: src/message.h:246
  2015. #, c-format
  2016. msgid "Failed to check whether the socket is writable, cause: %s"
  2017. msgstr "%s sebebinden dolayı soketin yazılabilir olduğu anlaşılamıyor"
  2018. #: src/message.h:247
  2019. #, c-format
  2020. msgid "Failed to check whether the socket is readable, cause: %s"
  2021. msgstr "%s sebebinden dolayı soketin okunabilir olduğu anlaşılamıyor"
  2022. #: src/message.h:248
  2023. #, c-format
  2024. msgid "Failed to send data, cause: %s"
  2025. msgstr "%s sebebiyle veri gönderilemiyor"
  2026. #: src/message.h:249
  2027. #, c-format
  2028. msgid "Failed to receive data, cause: %s"
  2029. msgstr "%s sebebinden dolayı veri alınamıyor"
  2030. #: src/message.h:250
  2031. #, c-format
  2032. msgid "Failed to peek data, cause: %s"
  2033. msgstr "%s sebebinden dolayı veri gözlenemiyor"
  2034. #: src/message.h:251
  2035. #, c-format
  2036. msgid "Unknown socket error %d (0x%x)"
  2037. msgstr "Bilinmeyen soket hatası %d (0x%x)"
  2038. #: src/message.h:252
  2039. #, c-format
  2040. msgid "File %s exists, but %s does not exist."
  2041. msgstr "%s dosyası var ama %s dosyası yok."
  2042. #: src/message.h:254
  2043. #, fuzzy, c-format
  2044. msgid "Invalid payload size for %s, size=%lu. It should be %lu."
  2045. msgstr "%s için geçersiz payload büyüklüğü,büyüklük=%d. %d olmalıydı."
  2046. #: src/message.h:255
  2047. #, c-format
  2048. msgid "Invalid ID=%d for %s. It should be %d."
  2049. msgstr "Geçersiz ID=%d %s için . %d olmalıydı."
  2050. #: src/message.h:256
  2051. #, fuzzy, c-format
  2052. msgid ""
  2053. "Chunk checksum validation failed. checksumIndex=%lu, offset=%s, expectedHash="
  2054. "%s, actualHash=%s"
  2055. msgstr ""
  2056. "Parça checksum doğrulaması başarısız. checksumindeks=%d artış=%s, "
  2057. "beklenenHash=%s, eldekıhash=%s"
  2058. #: src/message.h:257
  2059. msgid "Download aborted."
  2060. msgstr "İndirme iptal edildi."
  2061. #: src/message.h:258
  2062. #, c-format
  2063. msgid "File %s is being downloaded by other command."
  2064. msgstr "%s dosyası başka bir komut tarafından indiriliyor."
  2065. #: src/message.h:259
  2066. msgid "Insufficient checksums."
  2067. msgstr "Yetersiz checksumlar."
  2068. #: src/message.h:260
  2069. #, c-format
  2070. msgid "Tracker returned failure reason: %s"
  2071. msgstr "İzleyici başarısızlık sebebi olarak %s gönderdi."
  2072. #: src/message.h:261
  2073. msgid "Flooding detected."
  2074. msgstr "Flooding algılandı."
  2075. #: src/message.h:263
  2076. #, fuzzy, c-format
  2077. msgid ""
  2078. "Drop connection because no request/piece messages were exchanged in a "
  2079. "certain period(%ld seconds)."
  2080. msgstr ""
  2081. "%d saniyede herhangi istek/parça mesajı alişverişi yapılmadığı için bağlantı "
  2082. "kapatıldı."
  2083. #: src/message.h:265
  2084. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  2085. msgstr "Torrent dosyasındaki infoHash .aria2 dosyasındaki ile tutmuyor."
  2086. #: src/message.h:266
  2087. #, c-format
  2088. msgid "No such file entry %s"
  2089. msgstr "%s dosya girdisi yok."
  2090. #: src/message.h:267
  2091. #, c-format
  2092. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  2093. msgstr "Download hızı çok yavaş: %d <= %d(B/s), makine:%s"
  2094. #: src/message.h:268
  2095. msgid "No HttpRequestEntry found."
  2096. msgstr "HttpRequestEntry bulunamadı."
  2097. #: src/message.h:269
  2098. #, c-format
  2099. msgid "Got %d status, but no location header provided."
  2100. msgstr "%d durumu alındı ama yer başlığı gönderilmedi."
  2101. #: src/message.h:270
  2102. #, c-format
  2103. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  2104. msgstr "Geçersiz başlık aralığı.İstek: %s-%s/%s, Cevap: %s-%s/%s"
  2105. #: src/message.h:271
  2106. msgid "No file matched with your preference."
  2107. msgstr "Tercihlerinizle eşleşen dosya yok."
  2108. #: src/message.h:272
  2109. msgid "Exception caught"
  2110. msgstr "Öngörülmeyen hata algılandı."
  2111. #: src/message.h:273
  2112. #, c-format
  2113. msgid "Max payload length exceeded or invalid. length = %u"
  2114. msgstr "Maksimum payload uzunluğu aşıldı ve geçersiz. uzunluk= %u"
  2115. #: src/message.h:274
  2116. #, c-format
  2117. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  2118. msgstr ""
  2119. "Geçersiz dosya uzunluğu. Download devam ettirilemiyor %s: yerel %s, uzak %s"
  2120. #: src/BtSetup.cc:212
  2121. msgid "Errors occurred while binding port.\n"
  2122. msgstr "Port bağlanırken hata oldu.\n"
  2123. #~ msgid "must be either 'true' or 'false'."
  2124. #~ msgstr "ya 'true' ya da 'false' olmalı."
  2125. #~ msgid "must be between %s and %s."
  2126. #~ msgstr "%s ve %s arasında olmalı."
  2127. #~ msgid "must be smaller than or equal to %s."
  2128. #~ msgstr "en fazla %s değerini almalı."
  2129. #~ msgid "must be greater than or equal to %s."
  2130. #~ msgstr "en az %s değerini almalı."
  2131. #~ msgid "must be a number."
  2132. #~ msgstr "bir sayı olmalı."
  2133. #~ msgid "must be smaller than or equal to %.1f."
  2134. #~ msgstr "en fazla %.1f değerini almalı."
  2135. #~ msgid "must be between %.1f and %.1f."
  2136. #~ msgstr "%.1f ve %.1f arasında olmalı."
  2137. #~ msgid "must be greater than or equal to %.1f."
  2138. #~ msgstr "en az %.1f değerini almalı."
  2139. #~ msgid "must be one of the following:"
  2140. #~ msgstr "şunlardan biri olmalı:"
  2141. #, fuzzy
  2142. #~ msgid "Unrecognized format"
  2143. #~ msgstr "tanınmayan proxy biçimi"
  2144. #~ msgid "unrecognized proxy format"
  2145. #~ msgstr "tanınmayan proxy biçimi"
  2146. #~ msgid "Failed to open the segment file %s, cause: %s"
  2147. #~ msgstr "%s parça dosyası %s sebebiyle açılamadı"
  2148. #~ msgid "Failed to write into the segment file %s, cause: %s"
  2149. #~ msgstr "%s parça dosyasına %s sebebiyle yazılamadı"
  2150. #~ msgid "Failed to read from the segment file %s, cause: %s"
  2151. #~ msgstr "%s parça dosyasından %s sebebiyle okunamadı"