nl.po 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769
  1. # Dutch translation for aria2
  2. # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007
  3. # This file is distributed under the same license as the aria2 package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, 2007.
  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: 2012-05-27 17:21+0900\n"
  11. "PO-Revision-Date: 2008-03-03 14:10+0000\n"
  12. "Last-Translator: Joram Pereira <joramrp@gmail.com>\n"
  13. "Language-Team: Dutch <nl@li.org>\n"
  14. "Language: nl\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: 2008-03-15 07:56+0000\n"
  19. "X-Generator: Launchpad (build Unknown)\n"
  20. #: src/DownloadEngine.cc:225
  21. msgid ""
  22. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  23. msgstr ""
  24. #: src/DownloadEngine.cc:232
  25. msgid "Emergency shutdown sequence commencing..."
  26. msgstr ""
  27. #: src/MultiUrlRequestInfo.cc:125
  28. msgid "aria2 will resume download if the transfer is restarted."
  29. msgstr ""
  30. #: src/MultiUrlRequestInfo.cc:126
  31. msgid ""
  32. "If there are any errors, then see the log file. See '-l' option in help/man "
  33. "page for details."
  34. msgstr ""
  35. #: src/MultiUrlRequestInfo.cc:250
  36. #, fuzzy, c-format
  37. msgid "Serialized session to '%s' successfully."
  38. msgstr "Het segmentsbestand is succesvol opgeslagen"
  39. #: src/MultiUrlRequestInfo.cc:253
  40. #, fuzzy, c-format
  41. msgid "Failed to serialize session to '%s'."
  42. msgstr "Kon geen data van de hardeschijf lezen."
  43. #: src/RequestGroupMan.cc:390
  44. #, fuzzy, c-format
  45. msgid "Download GID#%lld not complete: %s"
  46. msgstr "Download afgerond: %s"
  47. #: src/RequestGroupMan.cc:671
  48. msgid "Download Results:"
  49. msgstr ""
  50. #: src/RequestGroupMan.cc:714
  51. msgid "Status Legend:"
  52. msgstr ""
  53. #: src/RequestGroupMan.cc:716
  54. #, fuzzy
  55. msgid "(OK):download completed."
  56. msgstr "De download was compleet."
  57. #: src/RequestGroupMan.cc:719
  58. msgid "(ERR):error occurred."
  59. msgstr ""
  60. #: src/RequestGroupMan.cc:722
  61. msgid "(INPR):download in-progress."
  62. msgstr ""
  63. #: src/RequestGroupMan.cc:725
  64. #, fuzzy
  65. msgid "(RM):download removed."
  66. msgstr "Download afgebroken."
  67. #: src/OptionHandler.cc:38
  68. msgid " Default: "
  69. msgstr ""
  70. #: src/OptionHandler.cc:39
  71. msgid " Tags: "
  72. msgstr ""
  73. #: src/OptionHandler.cc:40
  74. msgid " Possible Values: "
  75. msgstr ""
  76. #: src/usage_text.h:37
  77. msgid ""
  78. " -d, --dir=DIR The directory to store the downloaded file."
  79. msgstr " -d, --dir=MAP De map om de gedownloade bestanden in op te slaan."
  80. #: src/usage_text.h:39
  81. #, fuzzy
  82. msgid ""
  83. " -o, --out=FILE The file name of the downloaded file. When -Z\n"
  84. " option is used, this option is ignored."
  85. msgstr " -o, --out=FILE De bestandsnaam van het gedownloade bestand."
  86. #: src/usage_text.h:42
  87. msgid ""
  88. " -l, --log=LOG The file name of the log file. If '-' is\n"
  89. " specified, log is written to stdout."
  90. msgstr ""
  91. #: src/usage_text.h:45
  92. msgid ""
  93. " -D, --daemon[=true|false] Run as daemon. The current working directory "
  94. "will\n"
  95. " be changed to \"/\" and standard input, "
  96. "standard\n"
  97. " output and standard error will be redirected "
  98. "to\n"
  99. " \"/dev/null\"."
  100. msgstr ""
  101. #: src/usage_text.h:50
  102. msgid ""
  103. " -s, --split=N Download a file using N connections. If more\n"
  104. " than N URLs are given, first N URLs are used "
  105. "and\n"
  106. " remaining URLs are used for backup. If less "
  107. "than\n"
  108. " N URLs are given, those URLs are used more "
  109. "than\n"
  110. " once so that N connections total are made\n"
  111. " simultaneously. The number of connections to "
  112. "the\n"
  113. " same host is restricted by\n"
  114. " --max-connection-per-server option. See also\n"
  115. " --min-split-size option."
  116. msgstr ""
  117. #: src/usage_text.h:60
  118. msgid ""
  119. " --retry-wait=SEC Set the seconds to wait between retries. \n"
  120. " With SEC > 0, aria2 will retry download when "
  121. "the\n"
  122. " HTTP server returns 503 response."
  123. msgstr ""
  124. #: src/usage_text.h:64
  125. msgid " -t, --timeout=SEC Set timeout in seconds."
  126. msgstr ""
  127. #: src/usage_text.h:66
  128. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  129. msgstr ""
  130. #: src/usage_text.h:68
  131. msgid ""
  132. " --http-proxy=PROXY Use this proxy server for HTTP. To erase\n"
  133. " previously defined proxy, use \"\".\n"
  134. " See also --all-proxy option.\n"
  135. " This affects all URLs."
  136. msgstr ""
  137. #: src/usage_text.h:73
  138. msgid ""
  139. " --https-proxy=PROXY Use this proxy server for HTTPS. To erase\n"
  140. " previously defined proxy, use \"\".\n"
  141. " See also --all-proxy option.\n"
  142. " This affects all URLs."
  143. msgstr ""
  144. #: src/usage_text.h:78
  145. msgid ""
  146. " --ftp-proxy=PROXY Use this proxy server for FTP. To erase "
  147. "previously\n"
  148. " defined proxy, use \"\".\n"
  149. " See also --all-proxy option.\n"
  150. " This affects all URLs."
  151. msgstr ""
  152. #: src/usage_text.h:83
  153. msgid ""
  154. " --all-proxy=PROXY Use this proxy server for all protocols. To "
  155. "erase\n"
  156. " previously defined proxy, use \"\".\n"
  157. " You can override this setting and specify a\n"
  158. " proxy server for a particular protocol using\n"
  159. " --http-proxy, --https-proxy and --ftp-proxy\n"
  160. " options.\n"
  161. " This affects all URLs."
  162. msgstr ""
  163. #: src/usage_text.h:91
  164. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  165. msgstr ""
  166. #: src/usage_text.h:93
  167. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  168. msgstr ""
  169. #: src/usage_text.h:95
  170. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  171. msgstr ""
  172. #: src/usage_text.h:97
  173. msgid " --referer=REFERER Set Referer. This affects all URLs."
  174. msgstr ""
  175. #: src/usage_text.h:99
  176. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  177. msgstr ""
  178. #: src/usage_text.h:101
  179. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  180. msgstr ""
  181. #: src/usage_text.h:103
  182. msgid " --ftp-type=TYPE Set FTP transfer type."
  183. msgstr ""
  184. #: src/usage_text.h:105
  185. msgid ""
  186. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  187. "given,\n"
  188. " the active mode will be used."
  189. msgstr ""
  190. #: src/usage_text.h:108
  191. msgid ""
  192. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  193. "than\n"
  194. " or equal to this value(bytes per sec).\n"
  195. " 0 means aria2 does not have a lowest speed "
  196. "limit.\n"
  197. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  198. " This option does not affect BitTorrent "
  199. "downloads."
  200. msgstr ""
  201. #: src/usage_text.h:114
  202. msgid ""
  203. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  204. "sec.\n"
  205. " 0 means unrestricted.\n"
  206. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  207. " To limit the download speed per download, use\n"
  208. " --max-download-limit option."
  209. msgstr ""
  210. #: src/usage_text.h:120
  211. msgid ""
  212. " --max-download-limit=SPEED Set max download speed per each download in\n"
  213. " bytes/sec. 0 means unrestricted.\n"
  214. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  215. " To limit the overall download speed, use\n"
  216. " --max-overall-download-limit option."
  217. msgstr ""
  218. #: src/usage_text.h:126
  219. msgid ""
  220. " --file-allocation=METHOD Specify file allocation method.\n"
  221. " 'none' doesn't pre-allocate file space. "
  222. "'prealloc'\n"
  223. " pre-allocates file space before download "
  224. "begins.\n"
  225. " This may take some time depending on the size "
  226. "of\n"
  227. " the file.\n"
  228. " If you are using newer file systems such as "
  229. "ext4\n"
  230. " (with extents support), btrfs, xfs or NTFS\n"
  231. " (MinGW build only), 'falloc' is your best\n"
  232. " choice. It allocates large(few GiB) files\n"
  233. " almost instantly. Don't use 'falloc' with "
  234. "legacy\n"
  235. " file systems such as ext3 and FAT32 because "
  236. "it\n"
  237. " takes almost same time as 'prealloc' and it\n"
  238. " blocks aria2 entirely until allocation "
  239. "finishes.\n"
  240. " 'falloc' may not be available if your system\n"
  241. " doesn't have posix_fallocate() function."
  242. msgstr ""
  243. #: src/usage_text.h:142
  244. msgid ""
  245. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  246. " size is smaller than SIZE.\n"
  247. " You can append K or M(1K = 1024, 1M = 1024K)."
  248. msgstr ""
  249. #: src/usage_text.h:146
  250. msgid ""
  251. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  252. "while\n"
  253. " allocating files.\n"
  254. " Turn off if you encounter any error"
  255. msgstr ""
  256. #: src/usage_text.h:150
  257. msgid ""
  258. " --allow-overwrite[=true|false] Restart download from scratch if the\n"
  259. " corresponding control file doesn't exist. "
  260. "See\n"
  261. " also --auto-file-renaming option."
  262. msgstr ""
  263. #: src/usage_text.h:154
  264. msgid ""
  265. " --allow-piece-length-change[=true|false] If false is given, aria2 aborts\n"
  266. " download when a piece length is different "
  267. "from\n"
  268. " one in a control file. If true is given, you "
  269. "can\n"
  270. " proceed but some download progress will be "
  271. "lost."
  272. msgstr ""
  273. #: src/usage_text.h:159
  274. msgid ""
  275. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  276. "sequentially\n"
  277. " and download each URI in a separate session, "
  278. "like\n"
  279. " the usual command-line download utilities."
  280. msgstr ""
  281. #: src/usage_text.h:163
  282. msgid ""
  283. " --auto-file-renaming[=true|false] Rename file name if the same file "
  284. "already\n"
  285. " exists. This option works only in http(s)/ftp\n"
  286. " download.\n"
  287. " The new file name has a dot and a number"
  288. "(1..9999)\n"
  289. " appended."
  290. msgstr ""
  291. #: src/usage_text.h:169
  292. msgid ""
  293. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  294. " You can specify set of parts:\n"
  295. " http://{sv1,sv2,sv3}/foo.iso\n"
  296. " Also you can specify numeric sequences with "
  297. "step\n"
  298. " counter:\n"
  299. " http://host/image[000-100:2].img\n"
  300. " A step counter can be omitted.\n"
  301. " If all URIs do not point to the same file, "
  302. "such\n"
  303. " as the second example above, -Z option is\n"
  304. " required."
  305. msgstr ""
  306. #: src/usage_text.h:180
  307. msgid ""
  308. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  309. msgstr ""
  310. #: src/usage_text.h:182
  311. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  312. msgstr ""
  313. #: src/usage_text.h:184
  314. msgid ""
  315. " -V, --check-integrity[=true|false] Check file integrity by validating "
  316. "piece\n"
  317. " hashes or a hash of entire file. This option "
  318. "has\n"
  319. " effect only in BitTorrent, Metalink downloads\n"
  320. " with checksums or HTTP(S)/FTP downloads with\n"
  321. " --checksum option. If piece hashes are "
  322. "provided,\n"
  323. " this option can detect damaged portions of a "
  324. "file\n"
  325. " and re-download them. If a hash of entire file "
  326. "is\n"
  327. " provided, hash check is only done when file "
  328. "has\n"
  329. " been already download. This is determined by "
  330. "file\n"
  331. " length. If hash check fails, file is\n"
  332. " re-downloaded from scratch. If both piece "
  333. "hashes\n"
  334. " and a hash of entire file are provided, only\n"
  335. " piece hashes are used."
  336. msgstr ""
  337. #: src/usage_text.h:198
  338. msgid ""
  339. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  340. " --check-integrity option and file is "
  341. "complete,\n"
  342. " continue to seed file. If you want to check "
  343. "file\n"
  344. " and download it only when it is damaged or\n"
  345. " incomplete, set this option to false.\n"
  346. " This option has effect only on BitTorrent\n"
  347. " download."
  348. msgstr ""
  349. #: src/usage_text.h:206
  350. msgid ""
  351. " --realtime-chunk-checksum[=true|false] Validate chunk of data by "
  352. "calculating\n"
  353. " checksum while downloading a file if chunk\n"
  354. " checksums are provided."
  355. msgstr ""
  356. #: src/usage_text.h:210
  357. msgid ""
  358. " -c, --continue[=true|false] Continue downloading a partially downloaded\n"
  359. " file. Use this option to resume a download\n"
  360. " started by a web browser or another program\n"
  361. " which downloads files sequentially from the\n"
  362. " beginning. Currently this option is only\n"
  363. " applicable to http(s)/ftp downloads."
  364. msgstr ""
  365. #: src/usage_text.h:217
  366. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  367. msgstr ""
  368. #: src/usage_text.h:219
  369. #, fuzzy
  370. msgid " -n, --no-netrc[=true|false] Disables netrc support."
  371. msgstr " -n, --no-netrc Schakel netrc ondersteuning uit."
  372. #: src/usage_text.h:221
  373. msgid ""
  374. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  375. " multiple URIs for a single entity: separate\n"
  376. " URIs on a single line using the TAB "
  377. "character.\n"
  378. " Reads input from stdin when '-' is specified.\n"
  379. " Additionally, options can be specified after "
  380. "each\n"
  381. " line of URI. This optional line must start "
  382. "with\n"
  383. " one or more white spaces and have one option "
  384. "per\n"
  385. " single line. See INPUT FILE section of man "
  386. "page\n"
  387. " for details. See also --deferred-input option."
  388. msgstr ""
  389. #: src/usage_text.h:231
  390. #, fuzzy
  391. msgid ""
  392. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  393. "for\n"
  394. " every static (HTTP/FTP) URL, torrent and "
  395. "metalink.\n"
  396. " See also --split option."
  397. msgstr ""
  398. " -C, --metalink-servers=AANTAL_SERVERS Het aantal servers om simultaan een\n"
  399. " connectie mee te maken.\n"
  400. " Standaard: 5"
  401. #: src/usage_text.h:235
  402. msgid ""
  403. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  404. "format\n"
  405. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  406. msgstr ""
  407. #: src/usage_text.h:238
  408. msgid ""
  409. " --save-cookies=FILE Save Cookies to FILE in Mozilla/Firefox(1.x/2."
  410. "x)/\n"
  411. " Netscape format. If FILE already exists, it "
  412. "is\n"
  413. " overwritten. Session Cookies are also saved "
  414. "and\n"
  415. " their expiry values are treated as 0."
  416. msgstr ""
  417. #: src/usage_text.h:243
  418. msgid ""
  419. " -S, --show-files[=true|false] Print file listing of .torrent, .meta4 and\n"
  420. " .metalink file and exit. More detailed\n"
  421. " information will be listed in case of torrent\n"
  422. " file."
  423. msgstr ""
  424. #: src/usage_text.h:248
  425. msgid ""
  426. " --select-file=INDEX... Set file to download by specifying its index.\n"
  427. " You can find the file index using the\n"
  428. " --show-files option. Multiple indexes can be\n"
  429. " specified by using ',', for example: \"3,6\".\n"
  430. " You can also use '-' to specify a range: "
  431. "\"1-5\".\n"
  432. " ',' and '-' can be used together.\n"
  433. " When used with the -M option, index may vary\n"
  434. " depending on the query(see --metalink-* "
  435. "options)."
  436. msgstr ""
  437. #: src/usage_text.h:257
  438. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  439. msgstr ""
  440. #: src/usage_text.h:259
  441. msgid ""
  442. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  443. " whose suffix is .torrent or content type is\n"
  444. " application/x-bittorrent is downloaded, aria2\n"
  445. " parses it as a torrent file and downloads "
  446. "files\n"
  447. " mentioned in it.\n"
  448. " If mem is specified, a torrent file is not\n"
  449. " written to the disk, but is just kept in "
  450. "memory.\n"
  451. " If false is specified, the action mentioned "
  452. "above\n"
  453. " is not taken."
  454. msgstr ""
  455. #: src/usage_text.h:269
  456. msgid ""
  457. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  458. " Multiple ports can be specified by using ',',\n"
  459. " for example: \"6881,6885\". You can also use "
  460. "'-'\n"
  461. " to specify a range: \"6881-6999\". ',' and '-' "
  462. "can\n"
  463. " be used together."
  464. msgstr ""
  465. #: src/usage_text.h:275
  466. msgid ""
  467. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  468. "sec.\n"
  469. " 0 means unrestricted.\n"
  470. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  471. " To limit the upload speed per torrent, use\n"
  472. " --max-upload-limit option."
  473. msgstr ""
  474. #: src/usage_text.h:281
  475. msgid ""
  476. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  477. " bytes/sec. 0 means unrestricted.\n"
  478. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  479. " To limit the overall upload speed, use\n"
  480. " --max-overall-upload-limit option."
  481. msgstr ""
  482. #: src/usage_text.h:287
  483. msgid ""
  484. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  485. " --seed-ratio option."
  486. msgstr ""
  487. #: src/usage_text.h:290
  488. msgid ""
  489. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  490. " until share ratio reaches RATIO.\n"
  491. " You are strongly encouraged to specify equals "
  492. "or\n"
  493. " more than 1.0 here. Specify 0.0 if you intend "
  494. "to\n"
  495. " do seeding regardless of share ratio.\n"
  496. " If --seed-time option is specified along with\n"
  497. " this option, seeding ends when at least one "
  498. "of\n"
  499. " the conditions is satisfied."
  500. msgstr ""
  501. #: src/usage_text.h:299
  502. msgid ""
  503. " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  504. "in\n"
  505. " BitTorrent is 20 byte length. If more than 20\n"
  506. " bytes are specified, only first 20 bytes are\n"
  507. " used. If less than 20 bytes are specified, "
  508. "random\n"
  509. " byte data are added to make its length 20 "
  510. "bytes."
  511. msgstr ""
  512. #: src/usage_text.h:305
  513. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  514. msgstr ""
  515. #: src/usage_text.h:307
  516. msgid " --enable-dht[=true|false] Enable IPv4 DHT functionality."
  517. msgstr ""
  518. #: src/usage_text.h:309
  519. msgid ""
  520. " --dht-listen-port=PORT... Set UDP listening port for both IPv4 and IPv6\n"
  521. " DHT. Multiple ports can be specified by using\n"
  522. " ',', for example: \"6881,6885\". You can also\n"
  523. " use '-' to specify a range: \"6881-6999\". "
  524. "','\n"
  525. " and '-' can be used together."
  526. msgstr ""
  527. #: src/usage_text.h:315
  528. #, fuzzy
  529. msgid ""
  530. " --dht-entry-point=HOST:PORT Set host and port as an entry point to IPv4 "
  531. "DHT\n"
  532. " network."
  533. msgstr ""
  534. " -C, --metalink-servers=AANTAL_SERVERS Het aantal servers om simultaan een\n"
  535. " connectie mee te maken.\n"
  536. " Standaard: 5"
  537. #: src/usage_text.h:318
  538. msgid ""
  539. " --dht-file-path=PATH Change the IPv4 DHT routing table file to PATH."
  540. msgstr ""
  541. #: src/usage_text.h:320
  542. msgid ""
  543. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  544. " If several encryption methods are provided by "
  545. "a\n"
  546. " peer, aria2 chooses the lowest one which "
  547. "satisfies\n"
  548. " the given level."
  549. msgstr ""
  550. #: src/usage_text.h:325
  551. msgid ""
  552. " --bt-require-crypto[=true|false] If true is given, aria2 doesn't accept "
  553. "and\n"
  554. " establish connection with legacy BitTorrent\n"
  555. " handshake. Thus aria2 always uses Obfuscation\n"
  556. " handshake."
  557. msgstr ""
  558. #: src/usage_text.h:330
  559. msgid ""
  560. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  561. " torrent is lower than SPEED, aria2 "
  562. "temporarily\n"
  563. " increases the number of peers to try for more\n"
  564. " download speed. Configuring this option with "
  565. "your\n"
  566. " preferred download speed can increase your\n"
  567. " download speed in some cases.\n"
  568. " You can append K or M(1K = 1024, 1M = 1024K)."
  569. msgstr ""
  570. #: src/usage_text.h:338
  571. #, fuzzy
  572. msgid ""
  573. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  574. "each\n"
  575. " BitTorrent download."
  576. msgstr ""
  577. " -C, --metalink-servers=AANTAL_SERVERS Het aantal servers om simultaan een\n"
  578. " connectie mee te maken.\n"
  579. " Standaard: 5"
  580. #: src/usage_text.h:341
  581. msgid ""
  582. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  583. " verifying piece hashes."
  584. msgstr ""
  585. #: src/usage_text.h:344
  586. #, fuzzy
  587. msgid ""
  588. " --bt-max-peers=NUM Specify the maximum number of peers per "
  589. "torrent.\n"
  590. " 0 means unlimited.\n"
  591. " See also --bt-request-peer-speed-limit option."
  592. msgstr ""
  593. " -C, --metalink-servers=AANTAL_SERVERS Het aantal servers om simultaan een\n"
  594. " connectie mee te maken.\n"
  595. " Standaard: 5"
  596. #: src/usage_text.h:348
  597. #, fuzzy
  598. msgid ""
  599. " -M, --metalink-file=METALINK_FILE The file path to the .meta4 and ."
  600. "metalink\n"
  601. " file. Reads input from stdin when '-' is\n"
  602. " specified."
  603. msgstr ""
  604. " -M, --metalink-file=METALINK_BESTAND Het pad naar het .metalink bestand."
  605. #: src/usage_text.h:352
  606. msgid ""
  607. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  608. " simultaneously. Some Metalinks regulate the\n"
  609. " number of servers to connect. aria2 strictly\n"
  610. " respects them. This means that if Metalink "
  611. "defines\n"
  612. " the maxconnections attribute lower than\n"
  613. " NUM_SERVERS, then aria2 uses the value of\n"
  614. " maxconnections attribute instead of "
  615. "NUM_SERVERS.\n"
  616. " See also -s and -j options."
  617. msgstr ""
  618. #: src/usage_text.h:361
  619. msgid " --metalink-version=VERSION The version of the file to download."
  620. msgstr " --metalink-version=VERSIE De versie van het te downloaden betand."
  621. #: src/usage_text.h:363
  622. msgid " --metalink-language=LANGUAGE The language of the file to download."
  623. msgstr " --metalink-language=TAAL De taal van het te downloaden bestand."
  624. #: src/usage_text.h:365
  625. msgid ""
  626. " --metalink-os=OS The operating system of the file to download."
  627. msgstr " --metalink-os=OS Het besturingssysteem van het te downloaden bestand."
  628. #: src/usage_text.h:367
  629. msgid ""
  630. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  631. " A comma-delimited list of locations is\n"
  632. " acceptable."
  633. msgstr ""
  634. #: src/usage_text.h:371
  635. msgid ""
  636. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  637. "'none'\n"
  638. " if you don't have any preferred protocol."
  639. msgstr ""
  640. #: src/usage_text.h:374
  641. msgid ""
  642. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  643. " whose suffix is .meta4 or .metalink, or "
  644. "content\n"
  645. " type of application/metalink4+xml or\n"
  646. " application/metalink+xml is downloaded, aria2\n"
  647. " parses it as a metalink file and downloads "
  648. "files\n"
  649. " mentioned in it.\n"
  650. " If mem is specified, a metalink file is not\n"
  651. " written to the disk, but is just kept in "
  652. "memory.\n"
  653. " If false is specified, the action mentioned "
  654. "above\n"
  655. " is not taken."
  656. msgstr ""
  657. #: src/usage_text.h:385
  658. msgid ""
  659. " --metalink-enable-unique-protocol[=true|false] If true is given and "
  660. "several\n"
  661. " protocols are available for a mirror in a "
  662. "metalink\n"
  663. " file, aria2 uses one of them.\n"
  664. " Use --metalink-preferred-protocol option to\n"
  665. " specify the preference of protocol."
  666. msgstr ""
  667. #: src/usage_text.h:391
  668. msgid " -v, --version Print the version number and exit."
  669. msgstr " -v, --version Toon het versie nummer en sluit."
  670. #: src/usage_text.h:393
  671. msgid ""
  672. " -h, --help[=TAG|KEYWORD] Print usage and exit.\n"
  673. " The help messages are classified with tags. A "
  674. "tag\n"
  675. " starts with \"#\". For example, type \"--"
  676. "help=#http\"\n"
  677. " to get the usage for the options tagged with\n"
  678. " \"#http\". If non-tag word is given, print the "
  679. "usage\n"
  680. " for the options whose name includes that word."
  681. msgstr ""
  682. #: src/usage_text.h:400
  683. msgid " --no-conf[=true|false] Disable loading aria2.conf file."
  684. msgstr ""
  685. #: src/usage_text.h:402
  686. msgid ""
  687. " --conf-path=PATH Change the configuration file path to PATH."
  688. msgstr ""
  689. #: src/usage_text.h:404
  690. msgid ""
  691. " --stop=SEC Stop application after SEC seconds has "
  692. "passed.\n"
  693. " If 0 is given, this feature is disabled."
  694. msgstr ""
  695. #: src/usage_text.h:407
  696. msgid ""
  697. " --header=HEADER Append HEADER to HTTP request header. You can "
  698. "use\n"
  699. " this option repeatedly to specify more than "
  700. "one\n"
  701. " header:\n"
  702. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  703. "9J1\"\n"
  704. " http://host/file"
  705. msgstr ""
  706. #: src/usage_text.h:413
  707. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  708. msgstr ""
  709. #: src/usage_text.h:415
  710. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  711. msgstr ""
  712. #: src/usage_text.h:417
  713. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  714. msgstr ""
  715. #: src/usage_text.h:419
  716. msgid ""
  717. " --summary-interval=SEC Set interval to output download progress "
  718. "summary.\n"
  719. " Setting 0 suppresses the output."
  720. msgstr ""
  721. #: src/usage_text.h:422
  722. msgid " --log-level=LEVEL Set log level to output."
  723. msgstr ""
  724. #: src/usage_text.h:424
  725. msgid ""
  726. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  727. "the\n"
  728. " remote HTTP/FTP server and if it is "
  729. "available,\n"
  730. " apply it to the local file."
  731. msgstr ""
  732. #: src/usage_text.h:428
  733. msgid ""
  734. " --connect-timeout=SEC Set the connect timeout in seconds to "
  735. "establish\n"
  736. " connection to HTTP/FTP/proxy server. After "
  737. "the\n"
  738. " connection is established, this option makes "
  739. "no\n"
  740. " effect and --timeout option is used instead."
  741. msgstr ""
  742. #: src/usage_text.h:433
  743. msgid ""
  744. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  745. "the\n"
  746. " remote HTTP/FTP servers NUM times without "
  747. "getting\n"
  748. " a single byte, then force the download to "
  749. "fail.\n"
  750. " Specify 0 to disable this option.\n"
  751. " This options is effective only when using\n"
  752. " HTTP/FTP servers."
  753. msgstr ""
  754. #: src/usage_text.h:440
  755. msgid ""
  756. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  757. " If 'inorder' is given, URI is tried in the "
  758. "order\n"
  759. " appeared in the URI list.\n"
  760. " If 'feedback' is given, aria2 uses download "
  761. "speed\n"
  762. " observed in the previous downloads and choose\n"
  763. " fastest server in the URI list. This also\n"
  764. " effectively skips dead mirrors. The observed\n"
  765. " download speed is a part of performance "
  766. "profile\n"
  767. " of servers mentioned in --server-stat-of and\n"
  768. " --server-stat-if options.\n"
  769. " If 'adaptive' is given, selects one of the "
  770. "best\n"
  771. " mirrors for the first and reserved "
  772. "connections.\n"
  773. " For supplementary ones, it returns mirrors "
  774. "which\n"
  775. " has not been tested yet, and if each of them "
  776. "has\n"
  777. " already been tested, returns mirrors which has "
  778. "to\n"
  779. " be tested again. Otherwise, it doesn't select\n"
  780. " anymore mirrors. Like 'feedback', it uses a\n"
  781. " performance profile of servers."
  782. msgstr ""
  783. #: src/usage_text.h:459
  784. msgid ""
  785. " --server-stat-of=FILE Specify the filename to which performance "
  786. "profile\n"
  787. " of the servers is saved. You can load saved "
  788. "data\n"
  789. " using --server-stat-if option."
  790. msgstr ""
  791. #: src/usage_text.h:463
  792. msgid ""
  793. " --server-stat-if=FILE Specify the filename to load performance "
  794. "profile\n"
  795. " of the servers. The loaded data will be used "
  796. "in\n"
  797. " some URI selector such as 'feedback'.\n"
  798. " See also --uri-selector option"
  799. msgstr ""
  800. #: src/usage_text.h:468
  801. msgid ""
  802. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  803. " performance profile of the servers since the "
  804. "last\n"
  805. " contact to them."
  806. msgstr ""
  807. #: src/usage_text.h:472
  808. msgid ""
  809. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  810. "seconds.\n"
  811. " If 0 is given, a control file is not saved "
  812. "during\n"
  813. " download. aria2 saves a control file when it "
  814. "stops\n"
  815. " regardless of the value."
  816. msgstr ""
  817. #: src/usage_text.h:477
  818. msgid ""
  819. " --certificate=FILE Use the client certificate in FILE.\n"
  820. " The certificate must be in PEM format.\n"
  821. " You may use --private-key option to specify "
  822. "the\n"
  823. " private key."
  824. msgstr ""
  825. #: src/usage_text.h:482
  826. msgid ""
  827. " --private-key=FILE Use the private key in FILE.\n"
  828. " The private key must be decrypted and in PEM\n"
  829. " format. See also --certificate option."
  830. msgstr ""
  831. #: src/usage_text.h:486
  832. msgid ""
  833. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  834. "verify\n"
  835. " the peers. The certificate file must be in "
  836. "PEM\n"
  837. " format and can contain multiple CA "
  838. "certificates.\n"
  839. " Use --check-certificate option to enable\n"
  840. " verification."
  841. msgstr ""
  842. #: src/usage_text.h:492
  843. msgid ""
  844. " --check-certificate[=true|false] Verify the peer using certificates "
  845. "specified\n"
  846. " in --ca-certificate option."
  847. msgstr ""
  848. #: src/usage_text.h:495
  849. msgid ""
  850. " --no-proxy=DOMAINS Specify comma separated hostnames, domains or\n"
  851. " network address with or without CIDR block "
  852. "where\n"
  853. " proxy should not be used."
  854. msgstr ""
  855. #: src/usage_text.h:499
  856. msgid ""
  857. " --use-head[=true|false] Use HEAD method for the first request to the "
  858. "HTTP\n"
  859. " server."
  860. msgstr ""
  861. #: src/usage_text.h:502
  862. msgid " --event-poll=POLL Specify the method for polling events."
  863. msgstr ""
  864. #: src/usage_text.h:504
  865. msgid ""
  866. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  867. "a\n"
  868. " BitTorrent tracker. Although this function is\n"
  869. " named 'external', it can accept any kind of "
  870. "IP\n"
  871. " addresses."
  872. msgstr ""
  873. #: src/usage_text.h:509
  874. msgid ""
  875. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  876. "it\n"
  877. " is requested by the server. If false is set, "
  878. "then\n"
  879. " authorization header is always sent to the "
  880. "server.\n"
  881. " There is an exception: if username and "
  882. "password\n"
  883. " are embedded in URI, authorization header is\n"
  884. " always sent to the server regardless of this\n"
  885. " option."
  886. msgstr ""
  887. #: src/usage_text.h:517
  888. msgid ""
  889. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  890. "can\n"
  891. " find the file index using the --show-files "
  892. "option.\n"
  893. " PATH is a relative path to the path specified "
  894. "in\n"
  895. " --dir option. You can use this option "
  896. "multiple\n"
  897. " times."
  898. msgstr ""
  899. #: src/usage_text.h:523
  900. msgid ""
  901. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  902. "the\n"
  903. " remote file is available and doesn't download\n"
  904. " data. This option has effect on HTTP/FTP "
  905. "download.\n"
  906. " BitTorrent downloads are canceled if true is\n"
  907. " specified."
  908. msgstr ""
  909. #: src/usage_text.h:529
  910. msgid ""
  911. " --bt-tracker-interval=SEC Set the interval in seconds between tracker\n"
  912. " requests. This completely overrides interval "
  913. "value\n"
  914. " and aria2 just uses this value and ignores "
  915. "the\n"
  916. " min interval and interval value in the "
  917. "response of\n"
  918. " tracker. If 0 is set, aria2 determines "
  919. "interval\n"
  920. " based on the response of tracker and the "
  921. "download\n"
  922. " progress."
  923. msgstr ""
  924. #: src/usage_text.h:537
  925. msgid ""
  926. " --on-download-complete=COMMAND Set the command to be executed after "
  927. "download\n"
  928. " completed.\n"
  929. " See --on-download-start option for the\n"
  930. " requirement of COMMAND.\n"
  931. " See also --on-download-stop option."
  932. msgstr ""
  933. #: src/usage_text.h:543
  934. msgid ""
  935. " --on-download-start=COMMAND Set the command to be executed after download\n"
  936. " got started. aria2 passes 3 arguments to "
  937. "COMMAND:\n"
  938. " GID, the nubmer of files and file path. See "
  939. "Event\n"
  940. " Hook in man page for more details."
  941. msgstr ""
  942. #: src/usage_text.h:548
  943. msgid ""
  944. " --on-download-pause=COMMAND Set the command to be executed after download\n"
  945. " was paused.\n"
  946. " See --on-download-start option for the\n"
  947. " requirement of COMMAND."
  948. msgstr ""
  949. #: src/usage_text.h:553
  950. msgid ""
  951. " --on-download-error=COMMAND Set the command to be executed after download\n"
  952. " aborted due to error.\n"
  953. " See --on-download-start option for the\n"
  954. " requirement of COMMAND.\n"
  955. " See also --on-download-stop option."
  956. msgstr ""
  957. #: src/usage_text.h:559
  958. msgid ""
  959. " --on-download-stop=COMMAND Set the command to be executed after download\n"
  960. " stopped. You can override the command to be\n"
  961. " executed for particular download result using\n"
  962. " --on-download-complete and --on-download-"
  963. "error. If\n"
  964. " they are specified, command specified in this\n"
  965. " option is not executed.\n"
  966. " See --on-download-start option for the\n"
  967. " requirement of COMMAND."
  968. msgstr ""
  969. #: src/usage_text.h:568
  970. msgid ""
  971. " --bt-stop-timeout=SEC Stop BitTorrent download if download speed is "
  972. "0 in\n"
  973. " consecutive SEC seconds. If 0 is given, this\n"
  974. " feature is disabled."
  975. msgstr ""
  976. #: src/usage_text.h:572
  977. msgid ""
  978. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] Try to download first and "
  979. "last\n"
  980. " pieces of each file first. This is useful for\n"
  981. " previewing files. The argument can contain 2\n"
  982. " keywords:head and tail. To include both "
  983. "keywords,\n"
  984. " they must be separated by comma. These "
  985. "keywords\n"
  986. " can take one parameter, SIZE. For example, if\n"
  987. " head=SIZE is specified, pieces in the range "
  988. "of\n"
  989. " first SIZE bytes of each file get higher "
  990. "priority.\n"
  991. " tail=SIZE means the range of last SIZE bytes "
  992. "of\n"
  993. " each file. SIZE can include K or M(1K = 1024, "
  994. "1M =\n"
  995. " 1024K). If SIZE is omitted, SIZE=1M is used."
  996. msgstr ""
  997. #: src/usage_text.h:584
  998. msgid ""
  999. " --interface=INTERFACE Bind sockets to given interface. You can "
  1000. "specify\n"
  1001. " interface name, IP address and hostname."
  1002. msgstr ""
  1003. #: src/usage_text.h:587
  1004. msgid " --disable-ipv6[=true|false] Disable IPv6."
  1005. msgstr ""
  1006. #: src/usage_text.h:589
  1007. msgid ""
  1008. " --bt-save-metadata[=true|false] Save metadata as .torrent file. This option "
  1009. "has\n"
  1010. " effect only when BitTorrent Magnet URI is "
  1011. "used.\n"
  1012. " The filename is hex encoded info hash with "
  1013. "suffix\n"
  1014. " .torrent. The directory to be saved is the "
  1015. "same\n"
  1016. " directory where download file is saved. If "
  1017. "the\n"
  1018. " same file already exists, metadata is not "
  1019. "saved.\n"
  1020. " See also --bt-metadata-only option."
  1021. msgstr ""
  1022. #: src/usage_text.h:597
  1023. msgid ""
  1024. " --http-no-cache[=true|false] Send Cache-Control: no-cache and Pragma: no-"
  1025. "cache\n"
  1026. " header to avoid cached content. If false is\n"
  1027. " given, these headers are not sent and you can "
  1028. "add\n"
  1029. " Cache-Control header with a directive you "
  1030. "like\n"
  1031. " using --header option."
  1032. msgstr ""
  1033. #: src/usage_text.h:603
  1034. msgid ""
  1035. " --bt-metadata-only[=true|false] Download metadata only. The file(s) "
  1036. "described\n"
  1037. " in metadata will not be downloaded. This "
  1038. "option\n"
  1039. " has effect only when BitTorrent Magnet URI is\n"
  1040. " used. See also --bt-save-metadata option."
  1041. msgstr ""
  1042. #: src/usage_text.h:608
  1043. msgid ""
  1044. " --human-readable[=true|false] Print sizes and speed in human readable "
  1045. "format\n"
  1046. " (e.g., 1.2Ki, 3.4Mi) in the console readout."
  1047. msgstr ""
  1048. #: src/usage_text.h:611
  1049. msgid " --bt-enable-lpd[=true|false] Enable Local Peer Discovery."
  1050. msgstr ""
  1051. #: src/usage_text.h:613
  1052. msgid ""
  1053. " --bt-lpd-interface=INTERFACE Use given interface for Local Peer Discovery. "
  1054. "If\n"
  1055. " this option is not specified, the default\n"
  1056. " interface is chosen. You can specify "
  1057. "interface\n"
  1058. " name and IP address."
  1059. msgstr ""
  1060. #: src/usage_text.h:618
  1061. msgid ""
  1062. " --reuse-uri[=true|false] Reuse already used URIs if no unused URIs are\n"
  1063. " left."
  1064. msgstr ""
  1065. #: src/usage_text.h:621
  1066. msgid " --all-proxy-user=USER Set user for --all-proxy option."
  1067. msgstr ""
  1068. #: src/usage_text.h:623
  1069. msgid " --all-proxy-passwd=PASSWD Set password for --all-proxy option."
  1070. msgstr ""
  1071. #: src/usage_text.h:625
  1072. msgid " --http-proxy-user=USER Set user for --http-proxy option."
  1073. msgstr ""
  1074. #: src/usage_text.h:627
  1075. msgid " --http-proxy-passwd=PASSWD Set password for --http-proxy option."
  1076. msgstr ""
  1077. #: src/usage_text.h:629
  1078. msgid " --https-proxy-user=USER Set user for --https-proxy option."
  1079. msgstr ""
  1080. #: src/usage_text.h:631
  1081. msgid " --https-proxy-passwd=PASSWD Set password for --https-proxy option."
  1082. msgstr ""
  1083. #: src/usage_text.h:633
  1084. msgid " --ftp-proxy-user=USER Set user for --ftp-proxy option."
  1085. msgstr ""
  1086. #: src/usage_text.h:635
  1087. msgid " --ftp-proxy-passwd=PASSWD Set password for --ftp-proxy option."
  1088. msgstr ""
  1089. #: src/usage_text.h:637
  1090. msgid ""
  1091. " --remove-control-file[=true|false] Remove control file before download. "
  1092. "Using\n"
  1093. " with --allow-overwrite=true, download always\n"
  1094. " starts from scratch. This will be useful for\n"
  1095. " users behind proxy server which disables "
  1096. "resume."
  1097. msgstr ""
  1098. #: src/usage_text.h:642
  1099. msgid ""
  1100. " --always-resume[=true|false] Always resume download. If true is given, "
  1101. "aria2\n"
  1102. " always tries to resume download and if resume "
  1103. "is\n"
  1104. " not possible, aborts download. If false is "
  1105. "given,\n"
  1106. " when all given URIs do not support resume or\n"
  1107. " aria2 encounters N URIs which does not "
  1108. "support\n"
  1109. " resume (N is the value specified using\n"
  1110. " --max-resume-failure-tries option), aria2\n"
  1111. " downloads file from scratch.\n"
  1112. " See --max-resume-failure-tries option."
  1113. msgstr ""
  1114. #: src/usage_text.h:652
  1115. msgid ""
  1116. " --max-resume-failure-tries=N When used with --always-resume=false, aria2\n"
  1117. " downloads file from scratch when aria2 detects "
  1118. "N\n"
  1119. " number of URIs that does not support resume. "
  1120. "If N\n"
  1121. " is 0, aria2 downloads file from scratch when "
  1122. "all\n"
  1123. " given URIs do not support resume.\n"
  1124. " See --always-resume option."
  1125. msgstr ""
  1126. #: src/usage_text.h:659
  1127. msgid " --bt-tracker-timeout=SEC Set timeout in seconds."
  1128. msgstr ""
  1129. #: src/usage_text.h:661
  1130. msgid ""
  1131. " --bt-tracker-connect-timeout=SEC Set the connect timeout in seconds to\n"
  1132. " establish connection to tracker. After the\n"
  1133. " connection is established, this option makes "
  1134. "no\n"
  1135. " effect and --bt-tracker-timeout option is "
  1136. "used\n"
  1137. " instead."
  1138. msgstr ""
  1139. #: src/usage_text.h:667
  1140. msgid " --dht-message-timeout=SEC Set timeout in seconds."
  1141. msgstr ""
  1142. #: src/usage_text.h:669
  1143. msgid ""
  1144. " --http-accept-gzip[=true|false] Send 'Accept: deflate, gzip' request "
  1145. "header\n"
  1146. " and inflate response if remote server "
  1147. "responds\n"
  1148. " with 'Content-Encoding: gzip' or\n"
  1149. " 'Content-Encoding: deflate'."
  1150. msgstr ""
  1151. #: src/usage_text.h:674
  1152. msgid ""
  1153. " --save-session=FILE Save error/unfinished downloads to FILE on "
  1154. "exit.\n"
  1155. " You can pass this output file to aria2c with -"
  1156. "i\n"
  1157. " option on restart. Please note that downloads\n"
  1158. " added by aria2.addTorrent and aria2."
  1159. "addMetalink\n"
  1160. " RPC method and whose metadata could not be "
  1161. "saved\n"
  1162. " as a file will not be saved. Downloads "
  1163. "removed\n"
  1164. " using aria2.remove and aria2.forceRemove will "
  1165. "not\n"
  1166. " be saved."
  1167. msgstr ""
  1168. #: src/usage_text.h:683
  1169. #, fuzzy
  1170. msgid ""
  1171. " -x, --max-connection-per-server=NUM The maximum number of connections to "
  1172. "one\n"
  1173. " server for each download."
  1174. msgstr ""
  1175. " -C, --metalink-servers=AANTAL_SERVERS Het aantal servers om simultaan een\n"
  1176. " connectie mee te maken.\n"
  1177. " Standaard: 5"
  1178. #: src/usage_text.h:686
  1179. msgid ""
  1180. " -k, --min-split-size=SIZE aria2 does not split less than 2*SIZE byte "
  1181. "range.\n"
  1182. " For example, let's consider downloading 20MiB\n"
  1183. " file. If SIZE is 10M, aria2 can split file "
  1184. "into 2\n"
  1185. " range [0-10MiB) and [10MiB-20MiB) and download "
  1186. "it\n"
  1187. " using 2 sources(if --split >= 2, of course).\n"
  1188. " If SIZE is 15M, since 2*15M > 20MiB, aria2 "
  1189. "does\n"
  1190. " not split file and download it using 1 "
  1191. "source.\n"
  1192. " You can append K or M(1K = 1024, 1M = 1024K)."
  1193. msgstr ""
  1194. #: src/usage_text.h:695
  1195. msgid ""
  1196. " --conditional-get[=true|false] Download file only when the local file is "
  1197. "older\n"
  1198. " than remote file. Currently, this function "
  1199. "has\n"
  1200. " many limitations. See man page for details."
  1201. msgstr ""
  1202. #: src/usage_text.h:699
  1203. msgid ""
  1204. " --on-bt-download-complete=COMMAND For BitTorrent, a command specified in\n"
  1205. " --on-download-complete is called after "
  1206. "download\n"
  1207. " completed and seeding is over. On the other "
  1208. "hand,\n"
  1209. " this option sets the command to be executed "
  1210. "after\n"
  1211. " download completed but before seeding.\n"
  1212. " See --on-download-start option for the\n"
  1213. " requirement of COMMAND."
  1214. msgstr ""
  1215. #: src/usage_text.h:707
  1216. msgid ""
  1217. " --enable-async-dns6[=true|false] Enable IPv6 name resolution in "
  1218. "asynchronous\n"
  1219. " DNS resolver. This option will be ignored "
  1220. "when\n"
  1221. " --async-dns=false."
  1222. msgstr ""
  1223. #: src/usage_text.h:711
  1224. msgid ""
  1225. " --enable-dht6[=true|false] Enable IPv6 DHT functionality.\n"
  1226. " Use --dht-listen-port option to specify port\n"
  1227. " number to listen on. See also --dht-listen-"
  1228. "addr6\n"
  1229. " option."
  1230. msgstr ""
  1231. #: src/usage_text.h:716
  1232. msgid ""
  1233. " --dht-listen-addr6=ADDR Specify address to bind socket for IPv6 DHT. \n"
  1234. " It should be a global unicast IPv6 address of "
  1235. "the\n"
  1236. " host."
  1237. msgstr ""
  1238. #: src/usage_text.h:720
  1239. #, fuzzy
  1240. msgid ""
  1241. " --dht-entry-point6=HOST:PORT Set host and port as an entry point to IPv6 "
  1242. "DHT\n"
  1243. " network."
  1244. msgstr ""
  1245. " -C, --metalink-servers=AANTAL_SERVERS Het aantal servers om simultaan een\n"
  1246. " connectie mee te maken.\n"
  1247. " Standaard: 5"
  1248. #: src/usage_text.h:723
  1249. msgid ""
  1250. " --dht-file-path6=PATH Change the IPv6 DHT routing table file to PATH."
  1251. msgstr ""
  1252. #: src/usage_text.h:725
  1253. msgid ""
  1254. " --bt-tracker=URI[,...] Comma separated list of additional BitTorrent\n"
  1255. " tracker's announce URI. These URIs are not\n"
  1256. " affected by --bt-exclude-tracker option "
  1257. "because\n"
  1258. " they are added after URIs in --bt-exclude-"
  1259. "tracker\n"
  1260. " option are removed."
  1261. msgstr ""
  1262. #: src/usage_text.h:731
  1263. msgid ""
  1264. " --bt-exclude-tracker=URI[,...] Comma separated list of BitTorrent "
  1265. "tracker's\n"
  1266. " announce URI to remove. You can use special "
  1267. "value\n"
  1268. " '*' which matches all URIs, thus removes all\n"
  1269. " announce URIs. When specifying '*' in shell\n"
  1270. " command-line, don't forget to escape or quote "
  1271. "it.\n"
  1272. " See also --bt-tracker option."
  1273. msgstr ""
  1274. #: src/usage_text.h:738
  1275. msgid ""
  1276. " --max-download-result=NUM Set maximum number of download result kept in\n"
  1277. " memory. The download results are completed/"
  1278. "error/\n"
  1279. " removed downloads. The download results are "
  1280. "stored\n"
  1281. " in FIFO queue and it can store at most NUM\n"
  1282. " download results. When queue is full and new\n"
  1283. " download result is created, oldest download "
  1284. "result\n"
  1285. " is removed from the front of the queue and new "
  1286. "one\n"
  1287. " is pushed to the back. Setting big number in "
  1288. "this\n"
  1289. " option may result high memory consumption "
  1290. "after\n"
  1291. " thousands of downloads. Specifying 0 means no\n"
  1292. " download result is kept."
  1293. msgstr ""
  1294. #: src/usage_text.h:750
  1295. msgid ""
  1296. " --async-dns-server=IPADDRESS[,...] Comma separated list of DNS server "
  1297. "address\n"
  1298. " used in asynchronous DNS resolver. Usually\n"
  1299. " asynchronous DNS resolver reads DNS server\n"
  1300. " addresses from /etc/resolv.conf. When this "
  1301. "option\n"
  1302. " is used, it uses DNS servers specified in "
  1303. "this\n"
  1304. " option instead of ones in /etc/resolv.conf. "
  1305. "You\n"
  1306. " can specify both IPv4 and IPv6 address. This\n"
  1307. " option is useful when the system does not "
  1308. "have\n"
  1309. " /etc/resolv.conf and user does not have the\n"
  1310. " permission to create it."
  1311. msgstr ""
  1312. #: src/usage_text.h:761
  1313. msgid ""
  1314. " --enable-rpc[=true|false] Enable JSON-RPC/XML-RPC server.\n"
  1315. " It is strongly recommended to set username "
  1316. "and\n"
  1317. " password using --rpc-user and --rpc-passwd\n"
  1318. " option. See also --rpc-listen-port option."
  1319. msgstr ""
  1320. #: src/usage_text.h:766
  1321. msgid ""
  1322. " --rpc-max-request-size=SIZE Set max size of JSON-RPC/XML-RPC request. If "
  1323. "aria2\n"
  1324. " detects the request is more than SIZE bytes, "
  1325. "it\n"
  1326. " drops connection."
  1327. msgstr ""
  1328. #: src/usage_text.h:770
  1329. msgid " --rpc-user=USER Set JSON-RPC/XML-RPC user."
  1330. msgstr ""
  1331. #: src/usage_text.h:772
  1332. msgid " --rpc-passwd=PASSWD Set JSON-RPC/XML-RPC password."
  1333. msgstr ""
  1334. #: src/usage_text.h:774
  1335. msgid ""
  1336. " --rpc-listen-all[=true|false] Listen incoming JSON-RPC/XML-RPC requests on "
  1337. "all\n"
  1338. " network interfaces. If false is given, listen "
  1339. "only\n"
  1340. " on local loopback interface."
  1341. msgstr ""
  1342. #: src/usage_text.h:778
  1343. #, fuzzy
  1344. msgid ""
  1345. " --rpc-listen-port=PORT Specify a port number for JSON-RPC/XML-RPC "
  1346. "server\n"
  1347. " to listen to."
  1348. msgstr ""
  1349. " -C, --metalink-servers=AANTAL_SERVERS Het aantal servers om simultaan een\n"
  1350. " connectie mee te maken.\n"
  1351. " Standaard: 5"
  1352. #: src/usage_text.h:781
  1353. msgid " --show-console-readout[=true|false] Show console readout."
  1354. msgstr ""
  1355. #: src/usage_text.h:783
  1356. msgid ""
  1357. " --metalink-base-uri=URI Specify base URI to resolve relative URI in\n"
  1358. " metalink:url and metalink:metaurl element in "
  1359. "a\n"
  1360. " metalink file stored in local disk. If URI "
  1361. "points\n"
  1362. " to a directory, URI must end with '/'."
  1363. msgstr ""
  1364. #: src/usage_text.h:788
  1365. msgid ""
  1366. " --stream-piece-selector=SELECTOR Specify piece selection algorithm\n"
  1367. " used in HTTP/FTP download. Piece means fixed\n"
  1368. " length segment which is downloaded in "
  1369. "parallel\n"
  1370. " in segmented download. If 'default' is given,\n"
  1371. " aria2 selects piece so that it reduces the\n"
  1372. " number of establishing connection. This is\n"
  1373. " reasonable default behaviour because\n"
  1374. " establishing connection is an expensive\n"
  1375. " operation.\n"
  1376. " If 'inorder' is given, aria2 selects piece "
  1377. "which\n"
  1378. " has minimum index. Index=0 means first of the\n"
  1379. " file. This will be useful to view movie while\n"
  1380. " downloading it. --enable-http-pipelining "
  1381. "option\n"
  1382. " may be useful to reduce reconnection "
  1383. "overhead.\n"
  1384. " Please note that aria2 honors\n"
  1385. " --min-split-size option, so it will be "
  1386. "necessary\n"
  1387. " to specify a reasonable value to\n"
  1388. " --min-split-size option.\n"
  1389. " If 'geom' is given, at the beginning aria2\n"
  1390. " selects piece which has minimum index like\n"
  1391. " 'inorder', but it exponentially increasingly\n"
  1392. " keeps space from previously selected piece. "
  1393. "This\n"
  1394. " will reduce the number of establishing "
  1395. "connection\n"
  1396. " and at the same time it will download the\n"
  1397. " beginning part of the file first. This will "
  1398. "be\n"
  1399. " useful to view movie while downloading it."
  1400. msgstr ""
  1401. #: src/usage_text.h:815
  1402. msgid ""
  1403. " --truncate-console-readout[=true|false] Truncate console readout to fit in\n"
  1404. " a single line."
  1405. msgstr ""
  1406. #: src/usage_text.h:818
  1407. msgid ""
  1408. " --pause[=true|false] Pause download after added. This option is\n"
  1409. " effective only when --enable-rpc=true is given."
  1410. msgstr ""
  1411. #: src/usage_text.h:821
  1412. msgid ""
  1413. " --rpc-allow-origin-all[=true|false] Add Access-Control-Allow-Origin header\n"
  1414. " field with value '*' to the RPC response."
  1415. msgstr ""
  1416. #: src/usage_text.h:824
  1417. msgid ""
  1418. " --download-result=OPT This option changes the way \"Download Results"
  1419. "\"\n"
  1420. " is formatted. If OPT is 'default', print GID,\n"
  1421. " status, average download speed and path/URI. "
  1422. "If\n"
  1423. " multiple files are involved, path/URI of "
  1424. "first\n"
  1425. " requested file is printed and remaining ones "
  1426. "are\n"
  1427. " omitted.\n"
  1428. " If OPT is 'full', print GID, status, average\n"
  1429. " download speed, percentage of progress and\n"
  1430. " path/URI. The percentage of progress and\n"
  1431. " path/URI are printed for each requested file "
  1432. "in\n"
  1433. " each row."
  1434. msgstr ""
  1435. #: src/usage_text.h:836
  1436. msgid ""
  1437. " --hash-check-only[=true|false] If true is given, after hash check using\n"
  1438. " --check-integrity option, abort download "
  1439. "whether\n"
  1440. " or not download is complete."
  1441. msgstr ""
  1442. #: src/usage_text.h:840
  1443. msgid ""
  1444. " --checksum=TYPE=DIGEST Set checksum. TYPE is hash type. The "
  1445. "supported\n"
  1446. " hash type is listed in \"Hash Algorithms\" in\n"
  1447. " \"aria2c -v\". DIGEST is hex digest.\n"
  1448. " For example, setting sha-1 digest looks like\n"
  1449. " this:\n"
  1450. " sha-1=0192ba11326fe2298c8cb4de616f4d4140213838\n"
  1451. " This option applies only to HTTP(S)/FTP\n"
  1452. " downloads."
  1453. msgstr ""
  1454. #: src/usage_text.h:849
  1455. msgid ""
  1456. " --piece-length=LENGTH Set a piece length for HTTP/FTP downloads. "
  1457. "This\n"
  1458. " is the boundary when aria2 splits a file. All\n"
  1459. " splits occur at multiple of this length. This\n"
  1460. " option will be ignored in BitTorrent "
  1461. "downloads.\n"
  1462. " It will be also ignored if Metalink file\n"
  1463. " contains piece hashes."
  1464. msgstr ""
  1465. #: src/usage_text.h:856
  1466. msgid ""
  1467. " --stop-with-process=PID Stop application when process PID is not "
  1468. "running.\n"
  1469. " This is useful if aria2 process is forked from "
  1470. "a\n"
  1471. " parent process. The parent process can fork "
  1472. "aria2\n"
  1473. " with its own pid and when parent process "
  1474. "exits\n"
  1475. " for some reason, aria2 can detect it and "
  1476. "shutdown\n"
  1477. " itself."
  1478. msgstr ""
  1479. #: src/usage_text.h:863
  1480. msgid ""
  1481. " --deferred-input[=true|false] If true is given, aria2 does not read all "
  1482. "URIs\n"
  1483. " and options from file specified by -i option "
  1484. "at\n"
  1485. " startup, but it reads one by one when it "
  1486. "needs\n"
  1487. " later. This may reduce memory usage if input\n"
  1488. " file contains a lot of URIs to download.\n"
  1489. " If false is given, aria2 reads all URIs and\n"
  1490. " options at startup."
  1491. msgstr ""
  1492. #: src/usage_text.h:871
  1493. msgid ""
  1494. " --bt-remove-unselected-file[=true|false] Removes the unselected files when\n"
  1495. " download is completed in BitTorrent. To\n"
  1496. " select files, use --select-file option. If\n"
  1497. " it is not used, all files are assumed to be\n"
  1498. " selected. Please use this option with care\n"
  1499. " because it will actually remove files from\n"
  1500. " your disk."
  1501. msgstr ""
  1502. #: src/version_usage.cc:57
  1503. msgid " version "
  1504. msgstr ""
  1505. #: src/version_usage.cc:61
  1506. #, fuzzy
  1507. msgid ""
  1508. "This program is free software; you can redistribute it and/or modify\n"
  1509. "it under the terms of the GNU General Public License as published by\n"
  1510. "the Free Software Foundation; either version 2 of the License, or\n"
  1511. "(at your option) any later version.\n"
  1512. "\n"
  1513. "This program is distributed in the hope that it will be useful,\n"
  1514. "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  1515. "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
  1516. "GNU General Public License for more details.\n"
  1517. msgstr ""
  1518. "This program is free software; you can redistribute it and/or modify\n"
  1519. "it under the terms of the GNU General Public License as published by\n"
  1520. "the Free Software Foundation; either version 2 of the License, or\n"
  1521. "(at your option) any later version.\n"
  1522. "\n"
  1523. "This program is distributed in the hope that it will be useful,\n"
  1524. "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  1525. "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
  1526. "GNU General Public License for more details.\n"
  1527. "\n"
  1528. "You should have received a copy of the GNU General Public License\n"
  1529. "along with this program; if not, write to the Free Software\n"
  1530. "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 "
  1531. "USA\n"
  1532. #: src/version_usage.cc:71
  1533. msgid "** Configuration **"
  1534. msgstr ""
  1535. #: src/version_usage.cc:72
  1536. msgid "Enabled Features"
  1537. msgstr ""
  1538. #: src/version_usage.cc:75
  1539. msgid "Hash Algorithms"
  1540. msgstr ""
  1541. #: src/version_usage.cc:79
  1542. #, c-format
  1543. msgid "Report bugs to %s"
  1544. msgstr "Rapporteer bugs aan %s"
  1545. #: src/version_usage.cc:80
  1546. msgid "Visit"
  1547. msgstr ""
  1548. #: src/version_usage.cc:87
  1549. #, fuzzy, c-format
  1550. msgid ""
  1551. "Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | METALINK_FILE]..."
  1552. msgstr "Gebruik: %s [opties] URL ...\n"
  1553. #: src/version_usage.cc:92
  1554. #, c-format
  1555. msgid "See 'aria2c -h'."
  1556. msgstr ""
  1557. #: src/version_usage.cc:99
  1558. #, c-format
  1559. msgid "Printing all options."
  1560. msgstr ""
  1561. #: src/version_usage.cc:101
  1562. #, c-format
  1563. msgid "Printing options tagged with '%s'."
  1564. msgstr ""
  1565. #: src/version_usage.cc:104
  1566. #, c-format
  1567. msgid "See 'aria2c -h#help' to know all available tags."
  1568. msgstr ""
  1569. #: src/version_usage.cc:107 src/version_usage.cc:121
  1570. #, c-format
  1571. msgid "Options:"
  1572. msgstr "Opties:"
  1573. #: src/version_usage.cc:118
  1574. #, c-format
  1575. msgid "Printing options whose name includes '%s'."
  1576. msgstr ""
  1577. #: src/version_usage.cc:129
  1578. #, c-format
  1579. msgid "No option matching with '%s'."
  1580. msgstr ""
  1581. #: src/version_usage.cc:137
  1582. #, c-format
  1583. msgid ""
  1584. " You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z option, "
  1585. "all\n"
  1586. " URIs must point to the same file or downloading will fail."
  1587. msgstr ""
  1588. #: src/version_usage.cc:140
  1589. #, c-format
  1590. msgid ""
  1591. " You can also specify arbitrary number of BitTorrent Magnet URIs, torrent/\n"
  1592. " metalink files stored in a local drive. Please note that they are always\n"
  1593. " treated as a separate download."
  1594. msgstr ""
  1595. #: src/version_usage.cc:144
  1596. #, c-format
  1597. msgid ""
  1598. " You can specify both torrent file with -T option and URIs. By doing this,\n"
  1599. " download a file from both torrent swarm and HTTP/FTP server at the same "
  1600. "time,\n"
  1601. " while the data from HTTP/FTP are uploaded to the torrent swarm. For single "
  1602. "file\n"
  1603. " torrents, URI can be a complete URI pointing to the resource or if URI "
  1604. "ends\n"
  1605. " with '/', 'name' in torrent file is added. For multi-file torrents, 'name' "
  1606. "and\n"
  1607. " 'path' in torrent are added to form a URI for each file."
  1608. msgstr ""
  1609. #: src/version_usage.cc:151
  1610. #, c-format
  1611. msgid ""
  1612. " Make sure that URI is quoted with single(') or double(\") quotation if it\n"
  1613. " contains \"&\" or any characters that have special meaning in shell."
  1614. msgstr ""
  1615. #: src/version_usage.cc:154
  1616. #, c-format
  1617. msgid ""
  1618. "About the number of connections\n"
  1619. " Since 1.10.0 release, aria2 uses 1 connection per host by default and has "
  1620. "20MiB\n"
  1621. " segment size restriction. So whatever value you specify using -s option, "
  1622. "it\n"
  1623. " uses 1 connection per host. To make it behave like 1.9.x, use\n"
  1624. " --max-connection-per-server=4 --min-split-size=1M.\n"
  1625. "\n"
  1626. msgstr ""
  1627. #: src/version_usage.cc:161
  1628. #, c-format
  1629. msgid "Refer to man page for more information."
  1630. msgstr ""
  1631. #: src/option_processing.cc:86
  1632. #, c-format
  1633. msgid "Caught Error while parsing environment variable '%s'"
  1634. msgstr ""
  1635. #: src/option_processing.cc:168
  1636. #, c-format
  1637. msgid "Did you mean:"
  1638. msgstr ""
  1639. #: src/option_processing.cc:235 src/option_processing.cc:244
  1640. #, c-format
  1641. msgid "Parse error in %s"
  1642. msgstr ""
  1643. #: src/option_processing.cc:239 src/option_processing.cc:280
  1644. #, c-format
  1645. msgid "Usage:"
  1646. msgstr ""
  1647. #: src/option_processing.cc:249
  1648. #, c-format
  1649. msgid "Configuration file %s is not found."
  1650. msgstr ""
  1651. #: src/OptionHandlerException.cc:43
  1652. #, c-format
  1653. msgid "We encountered a problem while processing the option '--%s'."
  1654. msgstr ""
  1655. #: src/UnknownOptionException.cc:41
  1656. #, c-format
  1657. msgid "Unknown option '%s'"
  1658. msgstr ""
  1659. #: src/BtSetup.cc:215
  1660. msgid "Errors occurred while binding port.\n"
  1661. msgstr ""
  1662. #: src/AbstractCommand.cc:443
  1663. #, c-format
  1664. msgid "CUID#%lld - Failed to resume download. Download from scratch."
  1665. msgstr ""
  1666. #: src/AdaptiveURISelector.cc:228
  1667. #, c-format
  1668. msgid ""
  1669. "Lowering lowest-speed-limit since known max speed is too near (new:%d was:%d "
  1670. "max:%d)"
  1671. msgstr ""
  1672. #: src/AdaptiveURISelector.cc:235
  1673. #, c-format
  1674. msgid ""
  1675. "Lowering lowest-speed-limit since we have no clue about available speed (now:"
  1676. "%d was:%d)"
  1677. msgstr ""
  1678. #: src/BtStopDownloadCommand.cc:64
  1679. #, c-format
  1680. msgid "GID#%lld Stop downloading torrent due to --bt-stop-timeout option."
  1681. msgstr ""
  1682. #: src/DHTConnectionImpl.cc:89
  1683. #, c-format
  1684. msgid "IPv%d DHT: listening to port %u"
  1685. msgstr ""
  1686. #: src/HttpListenCommand.cc:112
  1687. #, c-format
  1688. msgid "IPv%d RPC: listening to port %u"
  1689. msgstr ""
  1690. #: src/PeerListenCommand.cc:83
  1691. #, c-format
  1692. msgid "IPv%d BitTorrent: listening to port %u"
  1693. msgstr ""
  1694. #: src/RequestGroup.cc:377
  1695. msgid ""
  1696. "For BitTorrent Magnet URI, enabling DHT is strongly recommended. See --"
  1697. "enable-dht option."
  1698. msgstr ""
  1699. #: src/RequestGroup.cc:682
  1700. #, c-format
  1701. msgid "Removed control file for %s because it is requested by user."
  1702. msgstr ""
  1703. #: src/SingleFileAllocationIterator.cc:75
  1704. msgid ""
  1705. "Allocating disk space. Use --file-allocation=none to disable it. See --file-"
  1706. "allocation option in man page for more details."
  1707. msgstr ""
  1708. #: src/message.h:57
  1709. #, fuzzy, c-format
  1710. msgid "GID#%lld - Download has already completed: %s"
  1711. msgstr "#%d - Download is al voltooid: %s"
  1712. #: src/message.h:106
  1713. #, c-format
  1714. msgid "Unrecognized URI or unsupported protocol: %s"
  1715. msgstr "Onherkende URI of niet ondersteund protocol: %s"
  1716. #: src/message.h:107
  1717. #, c-format
  1718. msgid "Tracker returned warning message: %s"
  1719. msgstr "Tracker retourneerde waarschuwings bericht: %s"
  1720. #: src/message.h:108
  1721. #, c-format
  1722. msgid "The segment file %s exists."
  1723. msgstr "Het segmentsbestand %s bestaat."
  1724. #: src/message.h:109
  1725. #, c-format
  1726. msgid "The segment file %s does not exist."
  1727. msgstr "Het segmentsbestand %s bestaat niet."
  1728. #: src/message.h:110
  1729. #, c-format
  1730. msgid "Saving the segment file %s"
  1731. msgstr "Bezig met het opslaan van egmentsbestand %s"
  1732. #: src/message.h:111
  1733. msgid "The segment file was saved successfully."
  1734. msgstr "Het segmentsbestand is succesvol opgeslagen"
  1735. #: src/message.h:112
  1736. #, c-format
  1737. msgid "Loading the segment file %s."
  1738. msgstr "Bezig met het laden van segmentsbestand %s"
  1739. #: src/message.h:113
  1740. msgid "The segment file was loaded successfully."
  1741. msgstr "Segmentsbestand was succesvol geladen"
  1742. #: src/message.h:114
  1743. msgid "No URI to download. Download aborted."
  1744. msgstr "Geen URI om te downloaden. Download afgelast."
  1745. #: src/message.h:115
  1746. #, c-format
  1747. msgid ""
  1748. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1749. "canceled in order to prevent your file from being truncated to 0. If you are "
  1750. "sure to download the file all over again, then delete it or add --allow-"
  1751. "overwrite=true option and restart aria2."
  1752. msgstr ""
  1753. #: src/message.h:116
  1754. #, c-format
  1755. msgid "Allocating file %s, %s bytes"
  1756. msgstr "Alloceer file %s, %s bytes"
  1757. #: src/message.h:117
  1758. msgid "File not found"
  1759. msgstr "Bestand niet gevonden"
  1760. #: src/message.h:118
  1761. msgid "Not a directory"
  1762. msgstr "Niet een map"
  1763. #: src/message.h:119
  1764. #, c-format
  1765. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1766. msgstr "Onvoldoende checksums. checksumLength=%d, numChecksum=%d"
  1767. #: src/message.h:120
  1768. #, c-format
  1769. msgid "Writing file %s"
  1770. msgstr "Bezig met het schrijven naar bestand %s"
  1771. #: src/message.h:121
  1772. msgid "No peer list received."
  1773. msgstr "Geen peer lijst ontvangen."
  1774. #: src/message.h:122
  1775. #, c-format
  1776. msgid "Adding peer %s:%d"
  1777. msgstr "Toevoegen van peer %s:%d"
  1778. #: src/message.h:123
  1779. #, c-format
  1780. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1781. msgstr "Verwijderen gebruikt stuk index=%d, fillRate(%%)=%d<=%d"
  1782. #: src/message.h:124
  1783. msgid "Download of selected files was complete."
  1784. msgstr "Het downloaden van de geselecteerde bestanden is voltooid."
  1785. #: src/message.h:125
  1786. msgid "The download was complete."
  1787. msgstr "De download was compleet."
  1788. #: src/message.h:126
  1789. #, fuzzy, c-format
  1790. msgid "Removed %lu have entries."
  1791. msgstr "Verwijderde %d have entries."
  1792. #: src/message.h:127
  1793. #, c-format
  1794. msgid "Validating file %s"
  1795. msgstr "Valideren van bestand %s"
  1796. #: src/message.h:131
  1797. #, c-format
  1798. msgid "Metalink: Queueing %s for download."
  1799. msgstr "Metalink: Plaats %s voor downloaden in de wachtrij."
  1800. #: src/message.h:132
  1801. #, c-format
  1802. msgid "Download complete: %s"
  1803. msgstr "Download afgerond: %s"
  1804. #: src/message.h:133
  1805. msgid "Seeding is over."
  1806. msgstr ""
  1807. #: src/message.h:134
  1808. msgid "No chunk to verify."
  1809. msgstr "Geen stuk om te verifieren"
  1810. #: src/message.h:135
  1811. #, c-format
  1812. msgid "Good chunk checksum. hash=%s"
  1813. msgstr "Correcte stuk checksum. hash=%s"
  1814. #: src/message.h:136
  1815. #, c-format
  1816. msgid "Failed to load cookies from %s"
  1817. msgstr "Kon geen cookies laden van %s"
  1818. #: src/message.h:137
  1819. #, c-format
  1820. msgid ""
  1821. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1822. "support disabled."
  1823. msgstr ""
  1824. ".netrc bestand %s heeft niet de correcte permissies. Het zou 600 moeten "
  1825. "zijn. netrc ondersteuning uigeschakeld."
  1826. #: src/message.h:138
  1827. #, fuzzy
  1828. msgid "Logging started."
  1829. msgstr "Logging gestart."
  1830. #: src/message.h:139
  1831. msgid "Specify at least one URL."
  1832. msgstr "Specificeer minimaal één URL."
  1833. #: src/message.h:140
  1834. msgid "daemon failed."
  1835. msgstr ""
  1836. #: src/message.h:141
  1837. #, c-format
  1838. msgid "Verification finished successfully. file=%s"
  1839. msgstr ""
  1840. #: src/message.h:142
  1841. #, c-format
  1842. msgid "Checksum error detected. file=%s"
  1843. msgstr ""
  1844. #: src/message.h:143
  1845. #, c-format
  1846. msgid "Incomplete range specified. %s"
  1847. msgstr ""
  1848. #: src/message.h:144
  1849. #, c-format
  1850. msgid "Failed to convert string into value: %s"
  1851. msgstr ""
  1852. #: src/message.h:145
  1853. msgid "Resource not found"
  1854. msgstr ""
  1855. #: src/message.h:146
  1856. #, c-format
  1857. msgid "File already exists. Renamed to %s."
  1858. msgstr ""
  1859. #: src/message.h:147
  1860. msgid "Cannot parse metalink XML file. XML may be malformed."
  1861. msgstr ""
  1862. #: src/message.h:148
  1863. #, c-format
  1864. msgid "Too small payload size for %s, size=%lu."
  1865. msgstr ""
  1866. #: src/message.h:149
  1867. #, c-format
  1868. msgid ""
  1869. "Removed the defunct control file %s because the download file %s doesn't "
  1870. "exist."
  1871. msgstr ""
  1872. #: src/message.h:150
  1873. #, c-format
  1874. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1875. msgstr ""
  1876. #: src/message.h:151
  1877. #, c-format
  1878. msgid "Missing %s in torrent metainfo."
  1879. msgstr ""
  1880. #: src/message.h:152
  1881. msgid "Tracker returned null data."
  1882. msgstr ""
  1883. #: src/message.h:153
  1884. msgid "Windows socket library initialization failed"
  1885. msgstr ""
  1886. #: src/message.h:154
  1887. #, c-format
  1888. msgid "%ld second(s) has passed. Stopping application."
  1889. msgstr ""
  1890. #: src/message.h:155
  1891. #, c-format
  1892. msgid ""
  1893. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1894. msgstr ""
  1895. #: src/message.h:157
  1896. #, c-format
  1897. msgid "Saving signature as %s failed. Maybe file already exists."
  1898. msgstr ""
  1899. #: src/message.h:160
  1900. #, fuzzy, c-format
  1901. msgid "Failed to open ServerStat file %s for read."
  1902. msgstr "Kon bestand %s niet openen, oorzaak: %s"
  1903. #: src/message.h:161
  1904. #, fuzzy, c-format
  1905. msgid "ServerStat file %s loaded successfully."
  1906. msgstr "Segmentsbestand was succesvol geladen"
  1907. #: src/message.h:162
  1908. #, fuzzy, c-format
  1909. msgid "Failed to read ServerStat from %s."
  1910. msgstr "Kon geen data van de hardeschijf lezen."
  1911. #: src/message.h:165
  1912. #, fuzzy, c-format
  1913. msgid "Failed to open ServerStat file %s for write."
  1914. msgstr "Kon bestand %s niet openen, oorzaak: %s"
  1915. #: src/message.h:166
  1916. #, fuzzy, c-format
  1917. msgid "ServerStat file %s saved successfully."
  1918. msgstr "Het segmentsbestand is succesvol opgeslagen"
  1919. #: src/message.h:167
  1920. #, fuzzy, c-format
  1921. msgid "Failed to write ServerStat to %s."
  1922. msgstr "Kon geen data van de hardeschijf lezen."
  1923. #: src/message.h:170
  1924. #, fuzzy, c-format
  1925. msgid "Failed to establish connection, cause: %s"
  1926. msgstr "Kon socket niet openen, oorzaak: %s"
  1927. #: src/message.h:171
  1928. #, c-format
  1929. msgid "Network problem has occurred. cause:%s"
  1930. msgstr ""
  1931. #: src/message.h:173
  1932. #, fuzzy, c-format
  1933. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  1934. msgstr "Kon niet lezen uit bestand %s, reden: %s"
  1935. #: src/message.h:175
  1936. #, c-format
  1937. msgid ""
  1938. "Certificate verification failed. Cause: %s See --ca-certificate and --check-"
  1939. "certificate option."
  1940. msgstr ""
  1941. #: src/message.h:177
  1942. #, fuzzy
  1943. msgid "No certificate found."
  1944. msgstr "Geen header gevonden"
  1945. #: src/message.h:178
  1946. msgid "Hostname not match."
  1947. msgstr ""
  1948. #: src/message.h:179
  1949. msgid "No files to download."
  1950. msgstr ""
  1951. #: src/message.h:181
  1952. msgid ""
  1953. "You may encounter the certificate verification error with HTTPS server. See "
  1954. "--ca-certificate and --check-certificate option."
  1955. msgstr ""
  1956. #: src/message.h:183
  1957. #, fuzzy, c-format
  1958. msgid "Printing the contents of file '%s'..."
  1959. msgstr "Bezig met het laden van segmentsbestand %s"
  1960. #: src/message.h:184
  1961. msgid "This file is neither Torrent nor Metalink file. Skipping."
  1962. msgstr ""
  1963. #: src/message.h:189
  1964. #, c-format
  1965. msgid "Is '%s' a file?"
  1966. msgstr ""
  1967. #: src/message.h:190
  1968. #, fuzzy, c-format
  1969. msgid "Failed to find given interface %s, cause: %s"
  1970. msgstr "Kon bestand %s niet openen, oorzaak: %s"
  1971. #: src/message.h:192
  1972. #, c-format
  1973. msgid "Saved metadata as %s."
  1974. msgstr ""
  1975. #: src/message.h:193
  1976. #, c-format
  1977. msgid "Saving metadata as %s failed. Maybe file already exists."
  1978. msgstr ""
  1979. #: src/message.h:195
  1980. #, c-format
  1981. msgid "Detected directory traversal directive in %s"
  1982. msgstr ""
  1983. #: src/message.h:198
  1984. #, c-format
  1985. msgid "GID#%lld - Removing unselected file."
  1986. msgstr ""
  1987. #: src/message.h:199
  1988. #, c-format
  1989. msgid "File %s removed."
  1990. msgstr ""
  1991. #: src/message.h:200
  1992. #, c-format
  1993. msgid "File %s could not be removed."
  1994. msgstr ""
  1995. #: src/message.h:202
  1996. msgid "Timeout."
  1997. msgstr "Time-out."
  1998. #: src/message.h:203
  1999. msgid "Invalid chunk size."
  2000. msgstr "Ongeldige chunk grootte."
  2001. #: src/message.h:204
  2002. #, c-format
  2003. msgid "Too large chunk. size=%d"
  2004. msgstr "Te groot stuk. grootte=%d"
  2005. #: src/message.h:205
  2006. msgid "Invalid header."
  2007. msgstr "Ongeldige header."
  2008. #: src/message.h:206
  2009. msgid "Invalid response."
  2010. msgstr "Ongeldige respons."
  2011. #: src/message.h:207
  2012. msgid "No header found."
  2013. msgstr "Geen header gevonden"
  2014. #: src/message.h:208
  2015. msgid "No status header."
  2016. msgstr "Geen status header"
  2017. #: src/message.h:209
  2018. msgid "Proxy connection failed."
  2019. msgstr "Proxy connectie mislukt."
  2020. #: src/message.h:210
  2021. msgid "Connection failed."
  2022. msgstr "Verbinding mislukt"
  2023. #: src/message.h:211
  2024. #, c-format
  2025. msgid ""
  2026. "The requested filename and the previously registered one are not same. "
  2027. "Expected:%s Actual:%s"
  2028. msgstr ""
  2029. #: src/message.h:212
  2030. #, c-format
  2031. msgid "The response status is not successful. status=%d"
  2032. msgstr ""
  2033. #: src/message.h:214
  2034. #, c-format
  2035. msgid "Transfer encoding %s is not supported."
  2036. msgstr ""
  2037. #: src/message.h:215
  2038. #, c-format
  2039. msgid "SSL initialization failed: %s"
  2040. msgstr "SSL initialisatie mislukt: %s"
  2041. #: src/message.h:216
  2042. msgid "SSL I/O error"
  2043. msgstr "SSL I/O fout"
  2044. #: src/message.h:217
  2045. msgid "SSL protocol error"
  2046. msgstr "SSL protocol fout"
  2047. #: src/message.h:218
  2048. #, c-format
  2049. msgid "SSL unknown error %d"
  2050. msgstr "Onbekende SSL fout %d"
  2051. #: src/message.h:219
  2052. #, c-format
  2053. msgid "SSL initialization failed: OpenSSL connect error %d"
  2054. msgstr ""
  2055. #: src/message.h:221
  2056. msgid "Authorization failed."
  2057. msgstr "Autorisatie mislukt."
  2058. #: src/message.h:222
  2059. msgid "Got EOF from the server."
  2060. msgstr "Ontving EOF van de server."
  2061. #: src/message.h:223
  2062. msgid "Got EOF from peer."
  2063. msgstr ""
  2064. #: src/message.h:224
  2065. msgid "Malformed meta info."
  2066. msgstr "Verkeerd geformuleerde meta informatie."
  2067. #: src/message.h:226
  2068. #, c-format
  2069. msgid "Failed to open the file %s, cause: %s"
  2070. msgstr "Kon bestand %s niet openen, oorzaak: %s"
  2071. #: src/message.h:227
  2072. #, c-format
  2073. msgid "Failed to write into the file %s, cause: %s"
  2074. msgstr "Kon in bestand %s niet schrijven, oorzaak: %s"
  2075. #: src/message.h:228
  2076. #, c-format
  2077. msgid "Failed to read from the file %s, cause: %s"
  2078. msgstr "Kon niet lezen uit bestand %s, reden: %s"
  2079. #: src/message.h:229
  2080. msgid "Failed to read data from disk."
  2081. msgstr "Kon geen data van de hardeschijf lezen."
  2082. #: src/message.h:230
  2083. #, c-format
  2084. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  2085. msgstr ""
  2086. "Kon geen SHA1 checksum berekenen van het bestand %s of een deel hiervan, "
  2087. "reden: %s"
  2088. #: src/message.h:231
  2089. #, c-format
  2090. msgid "Failed to seek the file %s, cause: %s"
  2091. msgstr ""
  2092. #: src/message.h:233
  2093. #, c-format
  2094. msgid "%s is not a directory."
  2095. msgstr "%s is geen map."
  2096. #: src/message.h:234
  2097. #, c-format
  2098. msgid "Failed to make the directory %s, cause: %s"
  2099. msgstr ""
  2100. #: src/message.h:238
  2101. #, c-format
  2102. msgid "Failed to open a socket, cause: %s"
  2103. msgstr "Kon socket niet openen, oorzaak: %s"
  2104. #: src/message.h:239
  2105. #, c-format
  2106. msgid "Failed to set a socket option, cause: %s"
  2107. msgstr ""
  2108. #: src/message.h:240
  2109. #, c-format
  2110. msgid "Failed to set a socket as blocking, cause: %s"
  2111. msgstr ""
  2112. #: src/message.h:241
  2113. #, c-format
  2114. msgid "Failed to set a socket as non-blocking, cause: %s"
  2115. msgstr ""
  2116. #: src/message.h:242
  2117. #, c-format
  2118. msgid "Failed to bind a socket, cause: %s"
  2119. msgstr ""
  2120. #: src/message.h:243
  2121. #, c-format
  2122. msgid "Failed to listen to a socket, cause: %s"
  2123. msgstr "Kon niet luisteren op socket, oorzaak: %s"
  2124. #: src/message.h:244
  2125. #, c-format
  2126. msgid "Failed to accept a peer connection, cause: %s"
  2127. msgstr ""
  2128. #: src/message.h:245
  2129. #, c-format
  2130. msgid "Failed to get the name of socket, cause: %s"
  2131. msgstr ""
  2132. #: src/message.h:246
  2133. #, c-format
  2134. msgid "Failed to get the name of connected peer, cause: %s"
  2135. msgstr ""
  2136. #: src/message.h:247
  2137. #, c-format
  2138. msgid "Failed to resolve the hostname %s, cause: %s"
  2139. msgstr ""
  2140. #: src/message.h:248
  2141. #, c-format
  2142. msgid "Failed to connect to the host %s, cause: %s"
  2143. msgstr ""
  2144. #: src/message.h:249
  2145. #, c-format
  2146. msgid "Failed to check whether the socket is writable, cause: %s"
  2147. msgstr ""
  2148. #: src/message.h:250
  2149. #, c-format
  2150. msgid "Failed to check whether the socket is readable, cause: %s"
  2151. msgstr ""
  2152. #: src/message.h:251
  2153. #, c-format
  2154. msgid "Failed to send data, cause: %s"
  2155. msgstr ""
  2156. #: src/message.h:252
  2157. #, c-format
  2158. msgid "Failed to receive data, cause: %s"
  2159. msgstr ""
  2160. #: src/message.h:253
  2161. #, c-format
  2162. msgid "Failed to peek data, cause: %s"
  2163. msgstr ""
  2164. #: src/message.h:254
  2165. #, c-format
  2166. msgid "Unknown socket error %d (0x%x)"
  2167. msgstr ""
  2168. #: src/message.h:255
  2169. #, c-format
  2170. msgid "File %s exists, but %s does not exist."
  2171. msgstr ""
  2172. #: src/message.h:257
  2173. #, c-format
  2174. msgid "Invalid payload size for %s, size=%lu. It should be %lu."
  2175. msgstr ""
  2176. #: src/message.h:258
  2177. #, c-format
  2178. msgid "Invalid ID=%d for %s. It should be %d."
  2179. msgstr ""
  2180. #: src/message.h:260
  2181. msgid "Download aborted."
  2182. msgstr "Download afgebroken."
  2183. #: src/message.h:261
  2184. #, c-format
  2185. msgid "File %s is being downloaded by other command."
  2186. msgstr ""
  2187. #: src/message.h:262
  2188. msgid "Insufficient checksums."
  2189. msgstr ""
  2190. #: src/message.h:263
  2191. #, c-format
  2192. msgid "Tracker returned failure reason: %s"
  2193. msgstr ""
  2194. #: src/message.h:264
  2195. msgid "Flooding detected."
  2196. msgstr ""
  2197. #: src/message.h:266
  2198. #, c-format
  2199. msgid ""
  2200. "Drop connection because no request/piece messages were exchanged in a "
  2201. "certain period(%ld seconds)."
  2202. msgstr ""
  2203. #: src/message.h:268
  2204. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  2205. msgstr ""
  2206. #: src/message.h:269
  2207. #, c-format
  2208. msgid "No such file entry %s"
  2209. msgstr ""
  2210. #: src/message.h:270
  2211. #, c-format
  2212. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  2213. msgstr ""
  2214. #: src/message.h:271
  2215. msgid "No HttpRequestEntry found."
  2216. msgstr ""
  2217. #: src/message.h:272
  2218. #, c-format
  2219. msgid "Got %d status, but no location header provided."
  2220. msgstr ""
  2221. #: src/message.h:274
  2222. msgid "No file matched with your preference."
  2223. msgstr ""
  2224. #: src/message.h:275
  2225. msgid "Exception caught"
  2226. msgstr ""
  2227. #: src/message.h:276
  2228. #, c-format
  2229. msgid "Max payload length exceeded or invalid. length = %u"
  2230. msgstr ""
  2231. #: src/message.h:277
  2232. #, c-format
  2233. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  2234. msgstr ""
  2235. #, fuzzy
  2236. #~ msgid "%ld seconds to allocate %s byte(s)"
  2237. #~ msgstr "%d seconden om %s byte(s) te alloceren"
  2238. #~ msgid "Too large file size. size=%s"
  2239. #~ msgstr "Te groot bestand. grootte=%s"
  2240. #~ msgid "must be between %s and %s."
  2241. #~ msgstr "moet tussen %s en %s zitten."
  2242. #~ msgid "must be smaller than or equal to %s."
  2243. #~ msgstr "moet kleiner dan of gelijk aan %s zijn."
  2244. #~ msgid "must be greater than or equal to %s."
  2245. #~ msgstr "moet groter dan of gelijk aan %s zijn."
  2246. #~ msgid "must be a number."
  2247. #~ msgstr "moet een nummer zijn"
  2248. #~ msgid "must be smaller than or equal to %.1f."
  2249. #~ msgstr "moet kleiner of gelijk aan %.1f zijn."
  2250. #~ msgid "must be between %.1f and %.1f."
  2251. #~ msgstr "moet tussen %.1f en %.1f zitten."
  2252. #~ msgid "must be greater than or equal to %.1f."
  2253. #~ msgstr "moet groter of gelijk aan %.1f zijn."
  2254. #~ msgid "must be one of the following:"
  2255. #~ msgstr "moet een van de volgende zijn"
  2256. #~ msgid "CUID#%d - The download for one segment completed successfully."
  2257. #~ msgstr "CUID#%d - Het downloaden van een segment is voltooid."
  2258. #~ msgid "CUID#%d - No segment available."
  2259. #~ msgstr "CUID#%d - Geen segment beschikbaar."
  2260. #~ msgid "CUID#%d - Connecting to %s:%d"
  2261. #~ msgstr "CUID#%d - Verbinden met %s:%d"
  2262. #~ msgid ""
  2263. #~ "CUID#%d - The segment changed. We send the request again with new Range "
  2264. #~ "header."
  2265. #~ msgstr ""
  2266. #~ "CUID#%d - Het segment is verandert. We vragen het opnieuw met een nieuwe "
  2267. #~ "Range header."
  2268. #~ msgid "CUID#%d - Redirecting to %s"
  2269. #~ msgstr "CUID#%d - Doorverwijzing naar %s"
  2270. #~ msgid ""
  2271. #~ "CUID#%d - Requesting:\n"
  2272. #~ "%s"
  2273. #~ msgstr ""
  2274. #~ "CUID#%d - Verzoekt:\n"
  2275. #~ "%s"
  2276. #~ msgid ""
  2277. #~ "CUID#%d - Response received:\n"
  2278. #~ "%s"
  2279. #~ msgstr ""
  2280. #~ "CUID#%d - Antwoord ontvangen:\n"
  2281. #~ "%s"
  2282. #~ msgid "CUID#%d - Download aborted. URI=%s"
  2283. #~ msgstr "CUID#%d - Download afgebroken. URI=%s"
  2284. #~ msgid "CUID#%d - Restarting the download. URI=%s"
  2285. #~ msgstr "CUID#%d - Herstart de download. URI=%s"
  2286. #~ msgid "CUID#%d - Download aborted."
  2287. #~ msgstr "CUID#%d - Download afgebroken."
  2288. #~ msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  2289. #~ msgstr "CUID#%d - %d maal geprobeerd, zonder success. Download afgebroken."
  2290. #~ msgid "CUID#%d - we got new piece. index=%d"
  2291. #~ msgstr "CUID#%d - nieuw stuk ontvangen. index=%d"
  2292. #~ msgid "CUID#%d - we got wrong piece. index=%d"
  2293. #~ msgstr "CUID#%d - verkeerde stuk ontvangen. index=%d"
  2294. #~ msgid "CUID#%d - Download not complete: %s"
  2295. #~ msgstr "CUID#%d - Download niet voltooid: %s"
  2296. #~ msgid "CUID#%d - Good checksum: %s"
  2297. #~ msgstr "CUID#%d - Correcte checksum: %s"
  2298. #~ msgid "CUID#%d - Bad checksum: %s"
  2299. #~ msgstr "CUID#%d - Foutieve checksum: %s"
  2300. #~ msgid "CUID#%d - Resolving hostname %s"
  2301. #~ msgstr "CUID#%d - Opzoeken van hostname %s"
  2302. #~ msgid "CUID#%d - Name resolution complete: %s -> %s"
  2303. #~ msgstr "CUID#%d - Name resolution compleet: %s -> %s"
  2304. #~ msgid "CUID#%d - Name resolution for %s failed:%s"
  2305. #~ msgstr "CUID#%d - Name resolution for %s mislukt:%s"
  2306. #~ msgid "CUID#%d - DNS cache hit: %s -> %s"
  2307. #~ msgstr "CUID#%d - DNS cache gevonden: %s -> %s"
  2308. #~ msgid "CUID#%d - Abort requested."
  2309. #~ msgstr "CUID#%d - Aflasting gevraagd."
  2310. #~ msgid "CUID#%d - Connecting to the peer %s"
  2311. #~ msgstr "CUID#%d - Maak een connectie met peer %s"
  2312. #~ msgid ""
  2313. #~ "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  2314. #~ "blockIndex=%d"
  2315. #~ msgstr ""
  2316. #~ "CUID#%d - Stuk ontvangen. index=%d, begin=%d, length=%d, offset=%llu, "
  2317. #~ "blockIndex=%d"
  2318. #~ msgid "CUID#%d - Piece bitfield %s"
  2319. #~ msgstr "CUID#%d - Bitfield van stuk %s"
  2320. #~ msgid "CUID#%d - Exception caught while validating file integrity."
  2321. #~ msgstr ""
  2322. #~ "CUID#%d - Uitzondering opgetreden tijdens het controleren van de bestands "
  2323. #~ "integriteit."
  2324. #~ msgid "CUID#%d - Interested in the peer"
  2325. #~ msgstr "CUID#%d - Geïntereseerd in de peer"
  2326. #~ msgid "CUID#%d - Not interested in the peer"
  2327. #~ msgstr "CUID#%d - Niet geïntereseerd in de peer"
  2328. #, fuzzy
  2329. #~ msgid "CUID#%d - Fast extension enabled."
  2330. #~ msgstr "CUID#%d - Fast extension ingeschakeld."
  2331. #~ msgid "CUID#%d - Exception caught while allocating file space."
  2332. #~ msgstr ""
  2333. #~ "CUID#%d - Uitzondering ontvangen tijdens het alloceren van bestands "
  2334. #~ "ruimte."
  2335. #~ msgid "CUID#%d - Peer %s:%d banned."
  2336. #~ msgstr "CUID#%d - Peer %s:%d verbannen."
  2337. #~ msgid "CUID#%d - Error in accepting connection"
  2338. #~ msgstr "CUID#%d - Fout in het accepteren van de connectie"
  2339. #~ msgid "CUID#%d - Error occurred while processing tracker response."
  2340. #~ msgstr ""
  2341. #~ "CUID#%d - Er is een fout opgetreden bij het afhandelen van het antwoord "
  2342. #~ "van de tracker."
  2343. #~ msgid "CUID#%d - Cannot create tracker request."
  2344. #~ msgstr "CUID#%d - Kan tracker request niet maken."
  2345. #~ msgid "CUID#%d - Creating new tracker request command #%d"
  2346. #~ msgstr "CUID#%d - Nieuw tracker request gemaakt met opdracht #%d"
  2347. #~ msgid "CUID#%d - Unregistering cuid from segmentManager."
  2348. #~ msgstr "CUID#%d - cuid uit registratie van segmentManager gehaald."
  2349. #~ msgid " -p, --ftp-pasv Use passive mode in FTP."
  2350. #~ msgstr " -p, --ftp-pasv Gebruik passive mode bij FTP."
  2351. #, fuzzy
  2352. #~ msgid ""
  2353. #~ " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  2354. #~ " simultaneously."
  2355. #~ msgstr ""
  2356. #~ " -C, --metalink-servers=AANTAL_SERVERS Het aantal servers om simultaan "
  2357. #~ "een\n"
  2358. #~ " connectie mee te maken.\n"
  2359. #~ " Standaard: 5"
  2360. #~ msgid " %s [options] -M METALINK_FILE\n"
  2361. #~ msgstr " %s [opties] -M METALINK_BESTAND\n"