nl.po 77 KB

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