nl.po 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947
  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: 2008-12-29 23:12+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. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "X-Launchpad-Export-Date: 2008-03-15 07:56+0000\n"
  18. "X-Generator: Launchpad (build Unknown)\n"
  19. #: src/DownloadEngine.cc:820
  20. msgid ""
  21. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  22. msgstr ""
  23. #: src/DownloadEngine.cc:826
  24. msgid "Emergency shutdown sequence commencing..."
  25. msgstr ""
  26. #: src/MultiUrlRequestInfo.cc:96
  27. msgid "aria2 will resume download if the transfer is restarted."
  28. msgstr ""
  29. #: src/MultiUrlRequestInfo.cc:98
  30. msgid ""
  31. "If there are any errors, then see the log file. See '-l' option in help/man "
  32. "page for details."
  33. msgstr ""
  34. #: src/RequestGroupMan.cc:402
  35. msgid "Download Results:"
  36. msgstr ""
  37. #: src/RequestGroupMan.cc:443
  38. msgid "Status Legend:"
  39. msgstr ""
  40. #: src/OptionHandler.cc:38
  41. msgid " Default: "
  42. msgstr ""
  43. #: src/OptionHandler.cc:39
  44. msgid " Tags: "
  45. msgstr ""
  46. #: src/OptionHandler.cc:40
  47. msgid " Possible Values: "
  48. msgstr ""
  49. #: src/OptionHandlerImpl.h:99
  50. msgid "must be either 'true' or 'false'."
  51. msgstr ""
  52. #: src/OptionHandlerImpl.h:130 src/OptionHandlerImpl.h:177
  53. #, c-format
  54. msgid "must be between %s and %s."
  55. msgstr "moet tussen %s en %s zitten."
  56. #: src/OptionHandlerImpl.h:174
  57. #, c-format
  58. msgid "must be smaller than or equal to %s."
  59. msgstr "moet kleiner dan of gelijk aan %s zijn."
  60. #: src/OptionHandlerImpl.h:180
  61. #, c-format
  62. msgid "must be greater than or equal to %s."
  63. msgstr "moet groter dan of gelijk aan %s zijn."
  64. #: src/OptionHandlerImpl.h:183 src/OptionHandlerImpl.h:246
  65. msgid "must be a number."
  66. msgstr "moet een nummer zijn"
  67. #: src/OptionHandlerImpl.h:237
  68. #, c-format
  69. msgid "must be smaller than or equal to %.1f."
  70. msgstr "moet kleiner of gelijk aan %.1f zijn."
  71. #: src/OptionHandlerImpl.h:240
  72. #, c-format
  73. msgid "must be between %.1f and %.1f."
  74. msgstr "moet tussen %.1f en %.1f zitten."
  75. #: src/OptionHandlerImpl.h:243
  76. #, c-format
  77. msgid "must be greater than or equal to %.1f."
  78. msgstr "moet groter of gelijk aan %.1f zijn."
  79. #: src/OptionHandlerImpl.h:380
  80. msgid "must be one of the following:"
  81. msgstr "moet een van de volgende zijn"
  82. #: src/OptionHandlerImpl.h:427 src/OptionHandlerImpl.h:468
  83. msgid "unrecognized proxy format"
  84. msgstr ""
  85. #: src/usage_text.h:37
  86. msgid ""
  87. " -d, --dir=DIR The directory to store the downloaded file."
  88. msgstr " -d, --dir=MAP De map om de gedownloade bestanden in op te slaan."
  89. #: src/usage_text.h:39
  90. msgid " -o, --out=FILE The file name of the downloaded file."
  91. msgstr " -o, --out=FILE De bestandsnaam van het gedownloade bestand."
  92. #: src/usage_text.h:41
  93. msgid ""
  94. " -l, --log=LOG The file name of the log file. If '-' is\n"
  95. " specified, log is written to stdout."
  96. msgstr ""
  97. #: src/usage_text.h:44
  98. msgid " -D, --daemon Run as daemon."
  99. msgstr ""
  100. #: src/usage_text.h:46
  101. msgid ""
  102. " -s, --split=N Download a file using N connections. If more\n"
  103. " than N URLs are given, first N URLs are used "
  104. "and\n"
  105. " remaining URLs are used for backup. If less "
  106. "than\n"
  107. " N URLs are given, those URLs are used more "
  108. "than\n"
  109. " once so that N connections total are made\n"
  110. " simultaneously. Please see -j option too.\n"
  111. " Please note that in Metalink download, this\n"
  112. " option has no effect and use -C option instead."
  113. msgstr ""
  114. #: src/usage_text.h:55
  115. msgid ""
  116. " --retry-wait=SEC Set the seconds to wait to retry after an "
  117. "error\n"
  118. " has occured."
  119. msgstr ""
  120. #: src/usage_text.h:58
  121. msgid " -t, --timeout=SEC Set timeout in seconds."
  122. msgstr ""
  123. #: src/usage_text.h:60
  124. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  125. msgstr ""
  126. #: src/usage_text.h:62
  127. msgid ""
  128. " --http-proxy=PROXY Use this proxy server for HTTP.\n"
  129. " See also --all-proxy option.\n"
  130. " This affects all URLs."
  131. msgstr ""
  132. #: src/usage_text.h:66
  133. msgid ""
  134. " --https-proxy=PROXY Use this proxy server for HTTPS.\n"
  135. " See also --all-proxy option.\n"
  136. " This affects all URLs."
  137. msgstr ""
  138. #: src/usage_text.h:70
  139. msgid ""
  140. " --ftp-proxy=PROXY Use this proxy server for FTP.\n"
  141. " See also --all-proxy option.\n"
  142. " This affects all URLs."
  143. msgstr ""
  144. #: src/usage_text.h:74
  145. msgid ""
  146. " --all-proxy=PROXY Use this proxy server for all protocols.\n"
  147. " You can override this setting and specify a\n"
  148. " proxy server for a particular protocol using\n"
  149. " --http-proxy, --https-proxy and --ftp-proxy\n"
  150. " options.\n"
  151. " This affects all URLs."
  152. msgstr ""
  153. #: src/usage_text.h:81
  154. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  155. msgstr ""
  156. #: src/usage_text.h:83
  157. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  158. msgstr ""
  159. #: src/usage_text.h:85
  160. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  161. msgstr ""
  162. #: src/usage_text.h:87
  163. msgid ""
  164. " --http-auth-scheme=SCHEME Set HTTP authentication scheme. Currently, "
  165. "basic\n"
  166. " is the only supported scheme."
  167. msgstr ""
  168. #: src/usage_text.h:90
  169. msgid " --referer=REFERER Set Referer. This affects all URLs."
  170. msgstr ""
  171. #: src/usage_text.h:92
  172. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  173. msgstr ""
  174. #: src/usage_text.h:94
  175. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  176. msgstr ""
  177. #: src/usage_text.h:96
  178. msgid " --ftp-type=TYPE Set FTP transfer type."
  179. msgstr ""
  180. #: src/usage_text.h:98
  181. msgid ""
  182. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  183. "given,\n"
  184. " the active mode will be used."
  185. msgstr ""
  186. #: src/usage_text.h:101
  187. msgid ""
  188. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  189. "than\n"
  190. " or equal to this value(bytes per sec).\n"
  191. " 0 means aria2 does not have a lowest speed "
  192. "limit.\n"
  193. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  194. " This option does not affect BitTorrent "
  195. "downloads."
  196. msgstr ""
  197. #: src/usage_text.h:107
  198. msgid ""
  199. " --max-download-limit=SPEED Set max download speed in bytes per sec.\n"
  200. " 0 means unrestricted.\n"
  201. " You can append K or M(1K = 1024, 1M = 1024K)."
  202. msgstr ""
  203. #: src/usage_text.h:111
  204. msgid ""
  205. " --file-allocation=METHOD Specify file allocation method.\n"
  206. " 'none' doesn't pre-allocate file space. "
  207. "'prealloc'\n"
  208. " pre-allocates file space before download "
  209. "begins.\n"
  210. " This may take some time depending on the size "
  211. "of\n"
  212. " the file."
  213. msgstr ""
  214. #: src/usage_text.h:117
  215. msgid ""
  216. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  217. " size is smaller than SIZE.\n"
  218. " You can append K or M(1K = 1024, 1M = 1024K)."
  219. msgstr ""
  220. #: src/usage_text.h:121
  221. msgid ""
  222. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  223. "while\n"
  224. " allocating files.\n"
  225. " Turn off if you encounter any error"
  226. msgstr ""
  227. #: src/usage_text.h:125
  228. msgid ""
  229. " --allow-overwrite=true|false If false, aria2 doesn't download a file which\n"
  230. " already exists but the corresponding .aria2 "
  231. "file\n"
  232. " doesn't exist."
  233. msgstr ""
  234. #: src/usage_text.h:129
  235. msgid ""
  236. " --allow-piece-length-change=true|false If false is given, aria2 aborts "
  237. "download\n"
  238. " when a piece length is different from one in\n"
  239. " a control file. If true is given, you can "
  240. "proceed\n"
  241. " but some download progress will be lost."
  242. msgstr ""
  243. #: src/usage_text.h:134
  244. msgid ""
  245. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  246. "sequentially\n"
  247. " and download each URI in a separate session, "
  248. "like\n"
  249. " the usual command-line download utilities."
  250. msgstr ""
  251. #: src/usage_text.h:138
  252. msgid ""
  253. " --auto-file-renaming[=true|false] Rename file name if the same file "
  254. "already\n"
  255. " exists. This option works only in http(s)/ftp\n"
  256. " download.\n"
  257. " The new file name has a dot and a number"
  258. "(1..9999)\n"
  259. " appended."
  260. msgstr ""
  261. #: src/usage_text.h:144
  262. msgid ""
  263. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  264. " You can specify set of parts:\n"
  265. " http://{sv1,sv2,sv3}/foo.iso\n"
  266. " Also you can specify numeric sequences with "
  267. "step\n"
  268. " counter:\n"
  269. " http://host/image[000-100:2].img\n"
  270. " A step counter can be omitted.\n"
  271. " If all URIs do not point to the same file, "
  272. "such\n"
  273. " as the second example above, -Z option is\n"
  274. " required."
  275. msgstr ""
  276. #: src/usage_text.h:155
  277. msgid ""
  278. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  279. msgstr ""
  280. #: src/usage_text.h:157
  281. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  282. msgstr ""
  283. #: src/usage_text.h:159
  284. msgid ""
  285. " -V, --check-integrity[=true|false] Check file integrity by validating "
  286. "piece\n"
  287. " hashes. This option has effect only in "
  288. "BitTorrent\n"
  289. " and Metalink downloads with chunk checksums.\n"
  290. " Use this option to re-download a damaged "
  291. "portion\n"
  292. " of a file."
  293. msgstr ""
  294. #: src/usage_text.h:165
  295. msgid ""
  296. " --realtime-chunk-checksum=true|false Validate chunk of data by "
  297. "calculating\n"
  298. " checksum while downloading a file if chunk\n"
  299. " checksums are provided."
  300. msgstr ""
  301. #: src/usage_text.h:169
  302. msgid ""
  303. " -c, --continue Continue downloading a partially downloaded\n"
  304. " file. Use this option to resume a download\n"
  305. " started by a web browser or another program\n"
  306. " which downloads files sequentially from the\n"
  307. " beginning. Currently this option is only\n"
  308. " applicable to http(s)/ftp downloads."
  309. msgstr ""
  310. #: src/usage_text.h:176
  311. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  312. msgstr ""
  313. #: src/usage_text.h:178
  314. msgid " -n, --no-netrc Disables netrc support."
  315. msgstr " -n, --no-netrc Schakel netrc ondersteuning uit."
  316. #: src/usage_text.h:180
  317. msgid ""
  318. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  319. " multiple URIs for a single entity: separate\n"
  320. " URIs on a single line using the TAB "
  321. "character.\n"
  322. " Reads input from stdin when '-' is specified.\n"
  323. " The additional out and dir options can be\n"
  324. " specified after each line of URIs. This "
  325. "optional\n"
  326. " line must start with white space(s). See "
  327. "INPUT\n"
  328. " FILE section of man page for details."
  329. msgstr ""
  330. #: src/usage_text.h:189
  331. #, fuzzy
  332. msgid ""
  333. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  334. "for\n"
  335. " every static (HTTP/FTP) URL, torrent and "
  336. "metalink.\n"
  337. " See also -s and -C options."
  338. msgstr ""
  339. " -C, --metalink-servers=AANTAL_SERVERS Het aantal servers om simultaan een\n"
  340. " connectie mee te maken.\n"
  341. " Standaard: 5"
  342. #: src/usage_text.h:193
  343. msgid ""
  344. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  345. "format\n"
  346. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  347. msgstr ""
  348. #: src/usage_text.h:196
  349. msgid ""
  350. " -S, --show-files Print file listing of .torrent or .metalink "
  351. "file\n"
  352. " and exit. More detailed information will be "
  353. "listed\n"
  354. " in case of torrent file."
  355. msgstr ""
  356. #: src/usage_text.h:200
  357. msgid ""
  358. " --select-file=INDEX... Set file to download by specifying its index.\n"
  359. " You can find the file index using the\n"
  360. " --show-files option. Multiple indexes can be\n"
  361. " specified by using ',', for example: \"3,6\".\n"
  362. " You can also use '-' to specify a range: \"1-5"
  363. "\".\n"
  364. " ',' and '-' can be used together.\n"
  365. " When used with the -M option, index may vary\n"
  366. " depending on the query(see --metalink-* "
  367. "options)."
  368. msgstr ""
  369. #: src/usage_text.h:209
  370. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  371. msgstr ""
  372. #: src/usage_text.h:211
  373. msgid ""
  374. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  375. " whose suffix is .torrent or content type is\n"
  376. " application/x-bittorrent is downloaded, aria2\n"
  377. " parses it as a torrent file and downloads "
  378. "files\n"
  379. " mentioned in it.\n"
  380. " If mem is specified, a torrent file is not\n"
  381. " written to the disk, but is just kept in "
  382. "memory.\n"
  383. " If false is specified, the action mentioned "
  384. "above\n"
  385. " is not taken."
  386. msgstr ""
  387. #: src/usage_text.h:221
  388. msgid ""
  389. " --direct-file-mapping=true|false Directly read from and write to each file\n"
  390. " mentioned in .torrent file."
  391. msgstr ""
  392. #: src/usage_text.h:224
  393. msgid ""
  394. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  395. " Multiple ports can be specified by using ',',\n"
  396. " for example: \"6881,6885\". You can also use "
  397. "'-'\n"
  398. " to specify a range: \"6881-6999\". ',' and '-' "
  399. "can\n"
  400. " be used together."
  401. msgstr ""
  402. #: src/usage_text.h:230
  403. msgid ""
  404. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  405. "sec.\n"
  406. " 0 means unrestricted.\n"
  407. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  408. " To limit the upload speed per torrent, use\n"
  409. " --max-upload-limit option. If non-zero value "
  410. "is\n"
  411. " specified, --max-upload-limit option is "
  412. "ignored."
  413. msgstr ""
  414. #: src/usage_text.h:237
  415. msgid ""
  416. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  417. " bytes/sec. 0 means unrestricted.\n"
  418. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  419. " To limit the overall upload speed, use\n"
  420. " --max-overall-upload-limit option."
  421. msgstr ""
  422. #: src/usage_text.h:243
  423. msgid ""
  424. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  425. " --seed-ratio option."
  426. msgstr ""
  427. #: src/usage_text.h:246
  428. msgid ""
  429. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  430. " until share ratio reaches RATIO.\n"
  431. " You are strongly encouraged to specify equals "
  432. "or\n"
  433. " more than 1.0 here. Specify 0.0 if you intend "
  434. "to\n"
  435. " do seeding regardless of share ratio.\n"
  436. " If --seed-time option is specified along with\n"
  437. " this option, seeding ends when at least one "
  438. "of\n"
  439. " the conditions is satisfied."
  440. msgstr ""
  441. #: src/usage_text.h:255
  442. msgid ""
  443. " --peer-id-prefix=PEERI_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  444. "in\n"
  445. " BitTorrent is 20 byte length. If more than 20\n"
  446. " bytes are specified, only first 20\n"
  447. " bytes are used. If less than 20 bytes are\n"
  448. " specified, the random alphabet characters are\n"
  449. " added to make it's length 20 bytes."
  450. msgstr ""
  451. #: src/usage_text.h:262
  452. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  453. msgstr ""
  454. #: src/usage_text.h:264
  455. msgid " --enable-dht[=true|false] Enable DHT functionality."
  456. msgstr ""
  457. #: src/usage_text.h:266
  458. msgid ""
  459. " --dht-listen-port=PORT... Set UDP listening port for DHT.\n"
  460. " Multiple ports can be specified by using ',',\n"
  461. " for example: \"6881,6885\". You can also use "
  462. "'-'\n"
  463. " to specify a range: \"6881-6999\". ',' and '-' "
  464. "can\n"
  465. " be used together."
  466. msgstr ""
  467. #: src/usage_text.h:272
  468. msgid ""
  469. " --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"
  470. " network."
  471. msgstr ""
  472. #: src/usage_text.h:275
  473. msgid ""
  474. " --dht-file-path=PATH Change the DHT routing table file to PATH."
  475. msgstr ""
  476. #: src/usage_text.h:277
  477. msgid ""
  478. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  479. " If several encryption methods are provided by "
  480. "a\n"
  481. " peer, aria2 chooses the lowest one which "
  482. "satisfies\n"
  483. " the given level."
  484. msgstr ""
  485. #: src/usage_text.h:282
  486. msgid ""
  487. " --bt-require-crypto=true|false If true is given, aria2 doesn't accept and\n"
  488. " establish connection with legacy BitTorrent\n"
  489. " handshake. Thus aria2 always uses Obfuscation\n"
  490. " handshake."
  491. msgstr ""
  492. #: src/usage_text.h:287
  493. msgid ""
  494. " --bt-request-peer-speed-limit=SPEED In BitTorrent downloads, if the "
  495. "download\n"
  496. " speed is lower than SPEED, aria2 initiates "
  497. "and\n"
  498. " accepts connections ignoring max peer cap.\n"
  499. " You can append K or M(1K = 1024, 1M = 1024K)."
  500. msgstr ""
  501. #: src/usage_text.h:292
  502. #, fuzzy
  503. msgid ""
  504. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  505. "each\n"
  506. " BitTorrent download."
  507. msgstr ""
  508. " -C, --metalink-servers=AANTAL_SERVERS Het aantal servers om simultaan een\n"
  509. " connectie mee te maken.\n"
  510. " Standaard: 5"
  511. #: src/usage_text.h:295
  512. msgid ""
  513. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  514. " verifying piece hashes."
  515. msgstr ""
  516. #: src/usage_text.h:298
  517. msgid " -M, --metalink-file=METALINK_FILE The file path to the .metalink file."
  518. msgstr ""
  519. " -M, --metalink-file=METALINK_BESTAND Het pad naar het .metalink bestand."
  520. #: src/usage_text.h:300
  521. msgid ""
  522. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  523. " simultaneously. Some Metalinks regulate the\n"
  524. " number of servers to connect. aria2 strictly\n"
  525. " respects them. This means that if Metalink "
  526. "defines\n"
  527. " the maxconnections attribute lower than\n"
  528. " NUM_SERVERS, then aria2 uses the value of\n"
  529. " maxconnections attribute instead of "
  530. "NUM_SERVERS.\n"
  531. " See also -s and -j options."
  532. msgstr ""
  533. #: src/usage_text.h:309
  534. msgid " --metalink-version=VERSION The version of the file to download."
  535. msgstr " --metalink-version=VERSIE De versie van het te downloaden betand."
  536. #: src/usage_text.h:311
  537. msgid " --metalink-language=LANGUAGE The language of the file to download."
  538. msgstr " --metalink-language=TAAL De taal van het te downloaden bestand."
  539. #: src/usage_text.h:313
  540. msgid ""
  541. " --metalink-os=OS The operating system of the file to download."
  542. msgstr " --metalink-os=OS Het besturingssysteem van het te downloaden bestand."
  543. #: src/usage_text.h:315
  544. msgid ""
  545. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  546. " A comma-delimited list of locations is\n"
  547. " acceptable."
  548. msgstr ""
  549. #: src/usage_text.h:319
  550. msgid ""
  551. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  552. "'none'\n"
  553. " if you don't have any preferred protocol."
  554. msgstr ""
  555. #: src/usage_text.h:322
  556. msgid ""
  557. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  558. " whose suffix is .metaink or content type of\n"
  559. " application/metalink+xml is downloaded, aria2\n"
  560. " parses it as a metalink file and downloads "
  561. "files\n"
  562. " mentioned in it.\n"
  563. " If mem is specified, a metalink file is not\n"
  564. " written to the disk, but is just kept in "
  565. "memory.\n"
  566. " If false is specified, the action mentioned "
  567. "above\n"
  568. " is not taken."
  569. msgstr ""
  570. #: src/usage_text.h:332
  571. msgid ""
  572. " --metalink-enable-unique-protocol=true|false If true is given and several\n"
  573. " protocols are available for a mirror in a "
  574. "metalink\n"
  575. " file, aria2 uses one of them.\n"
  576. " Use --metalink-preferred-protocol option to\n"
  577. " specify the preference of protocol."
  578. msgstr ""
  579. #: src/usage_text.h:338
  580. msgid " -v, --version Print the version number and exit."
  581. msgstr " -v, --version Toon het versie nummer en sluit."
  582. #: src/usage_text.h:340
  583. msgid ""
  584. " -h, --help[=CATEGORY] Print usage and exit.\n"
  585. " The help messages are classified in several\n"
  586. " categories. For example, type \"--help=http\" "
  587. "for\n"
  588. " detailed explanation for the options related "
  589. "to\n"
  590. " http. If no matching category is found, "
  591. "search\n"
  592. " option name using a given word in middle "
  593. "match\n"
  594. " and print the result."
  595. msgstr ""
  596. #: src/usage_text.h:348
  597. msgid " --no-conf Disable loading aria2.conf file."
  598. msgstr ""
  599. #: src/usage_text.h:350
  600. msgid ""
  601. " --conf-path=PATH Change the configuration file path to PATH."
  602. msgstr ""
  603. #: src/usage_text.h:352
  604. msgid ""
  605. " --stop=SEC Stop application after SEC seconds has "
  606. "passed.\n"
  607. " If 0 is given, this feature is disabled."
  608. msgstr ""
  609. #: src/usage_text.h:355
  610. msgid ""
  611. " --header=HEADER Append HEADER to HTTP request header. You can "
  612. "use\n"
  613. " this option repeatedly to specify more than "
  614. "one\n"
  615. " header:\n"
  616. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  617. "9J1\"\n"
  618. " http://host/file"
  619. msgstr ""
  620. #: src/usage_text.h:361
  621. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  622. msgstr ""
  623. #: src/usage_text.h:363
  624. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  625. msgstr ""
  626. #: src/usage_text.h:365
  627. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  628. msgstr ""
  629. #: src/usage_text.h:367
  630. msgid ""
  631. " --summary-interval=SEC Set interval to output download progress "
  632. "summary.\n"
  633. " Setting 0 suppresses the output."
  634. msgstr ""
  635. #: src/usage_text.h:370
  636. msgid " --log-level=LEVEL Set log level to output."
  637. msgstr ""
  638. #: src/usage_text.h:372
  639. msgid ""
  640. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  641. "the\n"
  642. " remote HTTP/FTP server and if it is "
  643. "available,\n"
  644. " apply it to the local file."
  645. msgstr ""
  646. #: src/usage_text.h:376
  647. msgid ""
  648. " --connect-timeout=SEC Set the connect timeout in seconds to "
  649. "establish\n"
  650. " connection to HTTP/FTP/proxy server. After "
  651. "the\n"
  652. " connection is established, this option makes "
  653. "no\n"
  654. " effect and --timeout option is used instead."
  655. msgstr ""
  656. #: src/usage_text.h:381
  657. msgid ""
  658. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  659. "the\n"
  660. " remote HTTP/FTP servers NUM times without "
  661. "getting\n"
  662. " a single byte, then force the download to "
  663. "fail.\n"
  664. " Specify 0 to disable this option.\n"
  665. " This options is effective only when using\n"
  666. " HTTP/FTP servers."
  667. msgstr ""
  668. #: src/usage_text.h:388
  669. msgid ""
  670. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  671. " If 'inorder' is given, URI is tried in the "
  672. "order\n"
  673. " appeared in the URI list.\n"
  674. " If 'feedback' is given, aria2 uses download "
  675. "speed\n"
  676. " observed in the previous downloads and choose\n"
  677. " fastest server in the URI list. This also\n"
  678. " effectively skips dead mirrors. The observed\n"
  679. " download speed is a part of performance "
  680. "profile\n"
  681. " of servers mentioned in --server-stat-of and\n"
  682. " --server-stat-if options."
  683. msgstr ""
  684. #: src/usage_text.h:399
  685. msgid ""
  686. " --server-stat-of=FILE Specify the filename to which performance "
  687. "profile\n"
  688. " of the servers is saved. You can load saved "
  689. "data\n"
  690. " using --server-stat-if option."
  691. msgstr ""
  692. #: src/usage_text.h:403
  693. msgid ""
  694. " --server-stat-if=FILE Specify the filename to load performance "
  695. "profile\n"
  696. " of the servers. The loaded data will be used "
  697. "in\n"
  698. " some URI selector such as 'feedback'.\n"
  699. " See also --uri-selector option"
  700. msgstr ""
  701. #: src/usage_text.h:408
  702. msgid ""
  703. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  704. " performance profile of the servers since the "
  705. "last\n"
  706. " contact to them."
  707. msgstr ""
  708. #: src/usage_text.h:412
  709. msgid ""
  710. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  711. "seconds.\n"
  712. " If 0 is given, a control file is not saved "
  713. "during\n"
  714. " download. aria2 saves a control file when it "
  715. "stops\n"
  716. " regardless of the value."
  717. msgstr ""
  718. #: src/usage_text.h:417
  719. msgid ""
  720. " --certificate=FILE Use the client certificate in FILE.\n"
  721. " The certificate must be in PEM format.\n"
  722. " You may use --private-key option to specify "
  723. "the\n"
  724. " private key."
  725. msgstr ""
  726. #: src/usage_text.h:422
  727. msgid ""
  728. " --private-key=FILE Use the private key in FILE.\n"
  729. " The private key must be decrypted and in PEM\n"
  730. " format. See also --certificate option."
  731. msgstr ""
  732. #: src/usage_text.h:426
  733. msgid ""
  734. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  735. "verify\n"
  736. " the peers. The certificate file must be in "
  737. "PEM\n"
  738. " format and can contain multiple CA "
  739. "certificates.\n"
  740. " Use --check-certificate option to enable\n"
  741. " verification."
  742. msgstr ""
  743. #: src/usage_text.h:432
  744. msgid ""
  745. " --check-certificate[=true|false] Verify the peer using certificates "
  746. "specified\n"
  747. " in --ca-certificate option."
  748. msgstr ""
  749. #: src/usage_text.h:435
  750. msgid ""
  751. " --no-proxy=DOMAINS Specify comma separated hostnames or domains "
  752. "where\n"
  753. " proxy should not be used."
  754. msgstr ""
  755. #: src/usage_text.h:438
  756. msgid ""
  757. " --use-head[=true|false] Use HEAD method for the first request to the "
  758. "HTTP\n"
  759. " server."
  760. msgstr ""
  761. #: src/version_usage.cc:54
  762. msgid " version "
  763. msgstr ""
  764. #: src/version_usage.cc:71
  765. #, c-format
  766. msgid "Report bugs to %s"
  767. msgstr "Rapporteer bugs aan %s"
  768. #: src/version_usage.cc:76
  769. #, fuzzy, c-format
  770. msgid "Usage: %s [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]..."
  771. msgstr "Gebruik: %s [opties] URL ...\n"
  772. #: src/version_usage.cc:86
  773. #, c-format
  774. msgid "Printing options whose name includes '%s'."
  775. msgstr ""
  776. #: src/version_usage.cc:89 src/version_usage.cc:111
  777. msgid "Options:"
  778. msgstr "Opties:"
  779. #: src/version_usage.cc:94
  780. #, c-format
  781. msgid "No help category or option name matching with '%s'."
  782. msgstr ""
  783. #: src/version_usage.cc:100
  784. msgid "Printing all options."
  785. msgstr ""
  786. #: src/version_usage.cc:102
  787. #, c-format
  788. msgid "Printing options tagged with '%s'."
  789. msgstr ""
  790. #: src/version_usage.cc:106
  791. #, c-format
  792. msgid "See -h option to know other command-line options(%s)."
  793. msgstr ""
  794. #: src/version_usage.cc:121
  795. msgid ""
  796. " You can specify multiple URLs. Unless you specify -Z option, all URLs must\n"
  797. " point to the same file or downloading will fail."
  798. msgstr ""
  799. #: src/version_usage.cc:123
  800. msgid ""
  801. " You can also specify arbitrary number of torrent files and metalink files\n"
  802. " stored in a local drive. Please note that they are always treated as a\n"
  803. " separate download."
  804. msgstr ""
  805. #: src/version_usage.cc:128
  806. msgid ""
  807. " You can specify both torrent file with -T option and URLs. By doing this,\n"
  808. " download a file from both torrent swarm and http/ftp server at the same "
  809. "time,\n"
  810. " while the data from http/ftp are uploaded to the torrent swarm. Note that\n"
  811. " only single file torrent can be integrated with http/ftp."
  812. msgstr ""
  813. #: src/version_usage.cc:133
  814. msgid ""
  815. " Make sure that URL is quoted with single(') or double(\") quotation if it\n"
  816. " contains \"&\" or any characters that have special meaning in shell."
  817. msgstr ""
  818. #: src/version_usage.cc:137
  819. msgid "Refer to man page for more information."
  820. msgstr ""
  821. #: src/message.h:40
  822. #, c-format
  823. msgid "CUID#%d - The download for one segment completed successfully."
  824. msgstr "CUID#%d - Het downloaden van een segment is voltooid."
  825. #: src/message.h:41
  826. #, c-format
  827. msgid "CUID#%d - No segment available."
  828. msgstr "CUID#%d - Geen segment beschikbaar."
  829. #: src/message.h:42
  830. #, c-format
  831. msgid "CUID#%d - Connecting to %s:%d"
  832. msgstr "CUID#%d - Verbinden met %s:%d"
  833. #: src/message.h:43
  834. #, c-format
  835. msgid ""
  836. "CUID#%d - The segment changed. We send the request again with new Range "
  837. "header."
  838. msgstr ""
  839. "CUID#%d - Het segment is verandert. We vragen het opnieuw met een nieuwe "
  840. "Range header."
  841. #: src/message.h:44
  842. #, c-format
  843. msgid "CUID#%d - Redirecting to %s"
  844. msgstr "CUID#%d - Doorverwijzing naar %s"
  845. #: src/message.h:45
  846. #, c-format
  847. msgid ""
  848. "CUID#%d - Requesting:\n"
  849. "%s"
  850. msgstr ""
  851. "CUID#%d - Verzoekt:\n"
  852. "%s"
  853. #: src/message.h:46
  854. #, c-format
  855. msgid ""
  856. "CUID#%d - Response received:\n"
  857. "%s"
  858. msgstr ""
  859. "CUID#%d - Antwoord ontvangen:\n"
  860. "%s"
  861. #: src/message.h:47
  862. #, c-format
  863. msgid "CUID#%d - Download aborted. URI=%s"
  864. msgstr "CUID#%d - Download afgebroken. URI=%s"
  865. #: src/message.h:48
  866. #, c-format
  867. msgid "CUID#%d - Restarting the download. URI=%s"
  868. msgstr "CUID#%d - Herstart de download. URI=%s"
  869. #: src/message.h:49
  870. #, c-format
  871. msgid "CUID#%d - Download aborted."
  872. msgstr "CUID#%d - Download afgebroken."
  873. #: src/message.h:50
  874. #, c-format
  875. msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  876. msgstr "CUID#%d - %d maal geprobeerd, zonder success. Download afgebroken."
  877. #: src/message.h:51
  878. #, c-format
  879. msgid "CUID#%d - Unregistering cuid from segmentManager."
  880. msgstr "CUID#%d - cuid uit registratie van segmentManager gehaald."
  881. #: src/message.h:57
  882. #, c-format
  883. msgid "CUID#%d - we got new piece. index=%d"
  884. msgstr "CUID#%d - nieuw stuk ontvangen. index=%d"
  885. #: src/message.h:58
  886. #, c-format
  887. msgid "CUID#%d - we got wrong piece. index=%d"
  888. msgstr "CUID#%d - verkeerde stuk ontvangen. index=%d"
  889. #: src/message.h:59
  890. #, c-format
  891. msgid "CUID#%d - Download not complete: %s"
  892. msgstr "CUID#%d - Download niet voltooid: %s"
  893. #: src/message.h:60
  894. #, c-format
  895. msgid "#%d - Download has already completed: %s"
  896. msgstr "#%d - Download is al voltooid: %s"
  897. #: src/message.h:61
  898. #, c-format
  899. msgid "CUID#%d - Good checksum: %s"
  900. msgstr "CUID#%d - Correcte checksum: %s"
  901. #: src/message.h:62
  902. #, c-format
  903. msgid "CUID#%d - Bad checksum: %s"
  904. msgstr "CUID#%d - Foutieve checksum: %s"
  905. #: src/message.h:63
  906. #, c-format
  907. msgid "CUID#%d - Resolving hostname %s"
  908. msgstr "CUID#%d - Opzoeken van hostname %s"
  909. #: src/message.h:64
  910. #, c-format
  911. msgid "CUID#%d - Name resolution complete: %s -> %s"
  912. msgstr "CUID#%d - Name resolution compleet: %s -> %s"
  913. #: src/message.h:65
  914. #, c-format
  915. msgid "CUID#%d - Name resolution for %s failed:%s"
  916. msgstr "CUID#%d - Name resolution for %s mislukt:%s"
  917. #: src/message.h:66
  918. #, c-format
  919. msgid "CUID#%d - DNS cache hit: %s -> %s"
  920. msgstr "CUID#%d - DNS cache gevonden: %s -> %s"
  921. #: src/message.h:67
  922. #, c-format
  923. msgid "CUID#%d - Abort requested."
  924. msgstr "CUID#%d - Aflasting gevraagd."
  925. #: src/message.h:68
  926. #, c-format
  927. msgid "CUID#%d - Connecting to the peer %s"
  928. msgstr "CUID#%d - Maak een connectie met peer %s"
  929. #: src/message.h:69
  930. #, c-format
  931. msgid ""
  932. "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  933. "blockIndex=%d"
  934. msgstr ""
  935. "CUID#%d - Stuk ontvangen. index=%d, begin=%d, length=%d, offset=%llu, "
  936. "blockIndex=%d"
  937. #: src/message.h:70
  938. #, c-format
  939. msgid "CUID#%d - Piece bitfield %s"
  940. msgstr "CUID#%d - Bitfield van stuk %s"
  941. #: src/message.h:71
  942. #, c-format
  943. msgid ""
  944. "CUID#%d - Reject piece message in queue because the peer has been choked. "
  945. "index=%d, begin=%d, length=%d"
  946. msgstr ""
  947. #: src/message.h:72
  948. #, c-format
  949. msgid ""
  950. "CUID#%d - Reject piece message in queue because cancel message received. "
  951. "index=%d, begin=%d, length=%d"
  952. msgstr ""
  953. #: src/message.h:73
  954. #, c-format
  955. msgid "CUID#%d - Exception caught while validating file integrity."
  956. msgstr ""
  957. "CUID#%d - Uitzondering opgetreden tijdens het controleren van de bestands "
  958. "integriteit."
  959. #: src/message.h:74
  960. #, c-format
  961. msgid "CUID#%d - Interested in the peer"
  962. msgstr "CUID#%d - Geïntereseerd in de peer"
  963. #: src/message.h:75
  964. #, c-format
  965. msgid "CUID#%d - Not interested in the peer"
  966. msgstr "CUID#%d - Niet geïntereseerd in de peer"
  967. #: src/message.h:76
  968. #, c-format
  969. msgid "CUID#%d - Deleting request slot index=%d, blockIndex=%d"
  970. msgstr ""
  971. #: src/message.h:77
  972. #, c-format
  973. msgid ""
  974. "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  975. "got choked."
  976. msgstr ""
  977. #: src/message.h:78
  978. #, c-format
  979. msgid "CUID#%d - Deleting request slot blockIndex=%d because of time out"
  980. msgstr ""
  981. #: src/message.h:79
  982. #, c-format
  983. msgid ""
  984. "CUID#%d - Deleting request slot blockIndex=%d because the block has been "
  985. "acquired."
  986. msgstr ""
  987. #: src/message.h:80
  988. #, fuzzy, c-format
  989. msgid "CUID#%d - Fast extension enabled."
  990. msgstr "CUID#%d - Fast extension ingeschakeld."
  991. #: src/message.h:81
  992. #, c-format
  993. msgid "CUID#%d - Extended Messaging enabled."
  994. msgstr ""
  995. #: src/message.h:82
  996. #, c-format
  997. msgid "CUID#%d - Exception caught while allocating file space."
  998. msgstr ""
  999. "CUID#%d - Uitzondering ontvangen tijdens het alloceren van bestands ruimte."
  1000. #: src/message.h:83
  1001. #, c-format
  1002. msgid "CUID#%d - Content-Disposition detected. Use %s as filename"
  1003. msgstr ""
  1004. #: src/message.h:84
  1005. #, c-format
  1006. msgid "CUID#%d - Peer %s:%d banned."
  1007. msgstr "CUID#%d - Peer %s:%d verbannen."
  1008. #: src/message.h:85
  1009. #, c-format
  1010. msgid "CUID#%d - Using port %d for accepting new connections"
  1011. msgstr ""
  1012. #: src/message.h:86
  1013. #, c-format
  1014. msgid "CUID#%d - An error occurred while binding port=%d"
  1015. msgstr ""
  1016. #: src/message.h:87
  1017. #, c-format
  1018. msgid "CUID#%d - Incoming connection, adding new command CUID#%d"
  1019. msgstr ""
  1020. #: src/message.h:88
  1021. #, c-format
  1022. msgid "CUID#%d - Error in accepting connection"
  1023. msgstr "CUID#%d - Fout in het accepteren van de connectie"
  1024. #: src/message.h:89
  1025. #, c-format
  1026. msgid "CUID#%d - Error occurred while processing tracker response."
  1027. msgstr ""
  1028. "CUID#%d - Er is een fout opgetreden bij het afhandelen van het antwoord van "
  1029. "de tracker."
  1030. #: src/message.h:90
  1031. #, c-format
  1032. msgid "CUID#%d - Cannot create tracker request."
  1033. msgstr "CUID#%d - Kan tracker request niet maken."
  1034. #: src/message.h:91
  1035. #, c-format
  1036. msgid "CUID#%d - Creating new tracker request command #%d"
  1037. msgstr "CUID#%d - Nieuw tracker request gemaakt met opdracht #%d"
  1038. #: src/message.h:92
  1039. #, c-format
  1040. msgid "CUID#%d - The peer is DHT-enabled."
  1041. msgstr ""
  1042. #: src/message.h:94
  1043. #, c-format
  1044. msgid "Unrecognized URI or unsupported protocol: %s"
  1045. msgstr "Onherkende URI of niet ondersteund protocol: %s"
  1046. #: src/message.h:95
  1047. #, c-format
  1048. msgid "Tracker returned warning message: %s"
  1049. msgstr "Tracker retourneerde waarschuwings bericht: %s"
  1050. #: src/message.h:96
  1051. #, c-format
  1052. msgid "The segment file %s exists."
  1053. msgstr "Het segmentsbestand %s bestaat."
  1054. #: src/message.h:97
  1055. #, c-format
  1056. msgid "The segment file %s does not exist."
  1057. msgstr "Het segmentsbestand %s bestaat niet."
  1058. #: src/message.h:98
  1059. #, c-format
  1060. msgid "Saving the segment file %s"
  1061. msgstr "Bezig met het opslaan van egmentsbestand %s"
  1062. #: src/message.h:99
  1063. msgid "The segment file was saved successfully."
  1064. msgstr "Het segmentsbestand is succesvol opgeslagen"
  1065. #: src/message.h:100
  1066. #, c-format
  1067. msgid "Loading the segment file %s."
  1068. msgstr "Bezig met het laden van segmentsbestand %s"
  1069. #: src/message.h:101
  1070. msgid "The segment file was loaded successfully."
  1071. msgstr "Segmentsbestand was succesvol geladen"
  1072. #: src/message.h:102
  1073. msgid "No URI to download. Download aborted."
  1074. msgstr "Geen URI om te downloaden. Download afgelast."
  1075. #: src/message.h:103
  1076. #, c-format
  1077. msgid ""
  1078. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1079. "canceled in order to prevent your file from being truncated to 0. If you are "
  1080. "sure to download the file all over again, then delete it or add --allow-"
  1081. "overwrite=true option and restart aria2."
  1082. msgstr ""
  1083. #: src/message.h:104
  1084. #, c-format
  1085. msgid "Allocating file %s, %s bytes"
  1086. msgstr "Alloceer file %s, %s bytes"
  1087. #: src/message.h:105
  1088. msgid "File not found"
  1089. msgstr "Bestand niet gevonden"
  1090. #: src/message.h:106
  1091. msgid "Not a directory"
  1092. msgstr "Niet een map"
  1093. #: src/message.h:107
  1094. #, c-format
  1095. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1096. msgstr "Onvoldoende checksums. checksumLength=%d, numChecksum=%d"
  1097. #: src/message.h:108
  1098. #, c-format
  1099. msgid "Writing file %s"
  1100. msgstr "Bezig met het schrijven naar bestand %s"
  1101. #: src/message.h:109
  1102. msgid "No peer list received."
  1103. msgstr "Geen peer lijst ontvangen."
  1104. #: src/message.h:110
  1105. #, c-format
  1106. msgid "Adding peer %s:%d"
  1107. msgstr "Toevoegen van peer %s:%d"
  1108. #: src/message.h:111
  1109. #, c-format
  1110. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1111. msgstr "Verwijderen gebruikt stuk index=%d, fillRate(%%)=%d<=%d"
  1112. #: src/message.h:112
  1113. msgid "Download of selected files was complete."
  1114. msgstr "Het downloaden van de geselecteerde bestanden is voltooid."
  1115. #: src/message.h:113
  1116. msgid "The download was complete."
  1117. msgstr "De download was compleet."
  1118. #: src/message.h:114
  1119. #, c-format
  1120. msgid "Removed %d have entries."
  1121. msgstr "Verwijderde %d have entries."
  1122. #: src/message.h:115
  1123. #, c-format
  1124. msgid "Validating file %s"
  1125. msgstr "Valideren van bestand %s"
  1126. #: src/message.h:116
  1127. #, c-format
  1128. msgid "%d seconds to allocate %s byte(s)"
  1129. msgstr "%d seconden om %s byte(s) te alloceren"
  1130. #: src/message.h:117
  1131. #, c-format
  1132. msgid "Dispatching FileAllocationCommand for CUID#%d."
  1133. msgstr ""
  1134. #: src/message.h:118
  1135. #, c-format
  1136. msgid "Metalink: Queueing %s for download."
  1137. msgstr "Metalink: Plaats %s voor downloaden in de wachtrij."
  1138. #: src/message.h:119
  1139. #, c-format
  1140. msgid "Download complete: %s"
  1141. msgstr "Download afgerond: %s"
  1142. #: src/message.h:120
  1143. msgid "Seeding is over."
  1144. msgstr ""
  1145. #: src/message.h:121
  1146. #, c-format
  1147. msgid "CUID#%d cancels segment index=%d. CUID#%d handles it instead."
  1148. msgstr ""
  1149. #: src/message.h:122
  1150. msgid "No chunk to verify."
  1151. msgstr "Geen stuk om te verifieren"
  1152. #: src/message.h:123
  1153. #, c-format
  1154. msgid "Good chunk checksum. hash=%s"
  1155. msgstr "Correcte stuk checksum. hash=%s"
  1156. #: src/message.h:124
  1157. #, c-format
  1158. msgid "Failed to load cookies from %s"
  1159. msgstr "Kon geen cookies laden van %s"
  1160. #: src/message.h:125
  1161. #, c-format
  1162. msgid ""
  1163. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1164. "support disabled."
  1165. msgstr ""
  1166. ".netrc bestand %s heeft niet de correcte permissies. Het zou 600 moeten "
  1167. "zijn. netrc ondersteuning uigeschakeld."
  1168. #: src/message.h:126
  1169. #, fuzzy
  1170. msgid "Logging started."
  1171. msgstr "Logging gestart."
  1172. #: src/message.h:127
  1173. msgid "Specify at least one URL."
  1174. msgstr "Specificeer minimaal één URL."
  1175. #: src/message.h:128
  1176. msgid "daemon failed."
  1177. msgstr ""
  1178. #: src/message.h:129
  1179. #, c-format
  1180. msgid "Verification finished successfully. file=%s"
  1181. msgstr ""
  1182. #: src/message.h:130
  1183. #, c-format
  1184. msgid "Checksum error detected. file=%s"
  1185. msgstr ""
  1186. #: src/message.h:131
  1187. #, c-format
  1188. msgid "Incomplete range specified. %s"
  1189. msgstr ""
  1190. #: src/message.h:132
  1191. #, c-format
  1192. msgid "Failed to convert string into value: %s"
  1193. msgstr ""
  1194. #: src/message.h:133
  1195. msgid "Resource not found"
  1196. msgstr ""
  1197. #: src/message.h:134
  1198. #, c-format
  1199. msgid "File already exists. Renamed to %s."
  1200. msgstr ""
  1201. #: src/message.h:135
  1202. msgid "Cannot parse metalink XML file. XML may be malformed."
  1203. msgstr ""
  1204. #: src/message.h:136
  1205. #, c-format
  1206. msgid "Too small payload size for %s, size=%d."
  1207. msgstr ""
  1208. #: src/message.h:137
  1209. #, c-format
  1210. msgid ""
  1211. "Removed the defunct control file %s because the download file %s doesn't "
  1212. "exist."
  1213. msgstr ""
  1214. #: src/message.h:138
  1215. #, c-format
  1216. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1217. msgstr ""
  1218. #: src/message.h:139
  1219. #, c-format
  1220. msgid "Missing %s in torrent metainfo."
  1221. msgstr ""
  1222. #: src/message.h:140
  1223. msgid "Tracker returned null data."
  1224. msgstr ""
  1225. #: src/message.h:141
  1226. msgid "Windows socket library initialization failed"
  1227. msgstr ""
  1228. #: src/message.h:142
  1229. #, c-format
  1230. msgid "%d second(s) has passed. Stopping application."
  1231. msgstr ""
  1232. #: src/message.h:143
  1233. #, c-format
  1234. msgid ""
  1235. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1236. msgstr ""
  1237. #: src/message.h:145
  1238. #, c-format
  1239. msgid "Saving signature as %s failed. Maybe file already exists."
  1240. msgstr ""
  1241. #: src/message.h:148
  1242. #, fuzzy, c-format
  1243. msgid "Failed to open ServerStat file %s for read."
  1244. msgstr "Kon bestand %s niet openen, oorzaak: %s"
  1245. #: src/message.h:149
  1246. #, fuzzy, c-format
  1247. msgid "ServerStat file %s loaded successfully."
  1248. msgstr "Segmentsbestand was succesvol geladen"
  1249. #: src/message.h:150
  1250. #, fuzzy, c-format
  1251. msgid "Failed to read ServerStat from %s."
  1252. msgstr "Kon geen data van de hardeschijf lezen."
  1253. #: src/message.h:153
  1254. #, fuzzy, c-format
  1255. msgid "Failed to open ServerStat file %s for write."
  1256. msgstr "Kon bestand %s niet openen, oorzaak: %s"
  1257. #: src/message.h:154
  1258. #, fuzzy, c-format
  1259. msgid "ServerStat file %s saved successfully."
  1260. msgstr "Het segmentsbestand is succesvol opgeslagen"
  1261. #: src/message.h:155
  1262. #, fuzzy, c-format
  1263. msgid "Failed to write ServerStat to %s."
  1264. msgstr "Kon geen data van de hardeschijf lezen."
  1265. #: src/message.h:158
  1266. #, fuzzy, c-format
  1267. msgid "Failed to establish connection, cause: %s"
  1268. msgstr "Kon socket niet openen, oorzaak: %s"
  1269. #: src/message.h:159
  1270. #, c-format
  1271. msgid "Network problem has occurred. cause:%s"
  1272. msgstr ""
  1273. #: src/message.h:161
  1274. #, fuzzy, c-format
  1275. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  1276. msgstr "Kon niet lezen uit bestand %s, reden: %s"
  1277. #: src/message.h:163
  1278. #, c-format
  1279. msgid "Certificate verification failed. Cause: %s"
  1280. msgstr ""
  1281. #: src/message.h:164
  1282. #, fuzzy
  1283. msgid "No certificate found."
  1284. msgstr "Geen header gevonden"
  1285. #: src/message.h:165
  1286. msgid "Hostname not match."
  1287. msgstr ""
  1288. #: src/message.h:166
  1289. msgid "No files to download."
  1290. msgstr ""
  1291. #: src/message.h:168
  1292. msgid ""
  1293. "You may encounter the certificate verification error with HTTPS server. See "
  1294. "--ca-certificate and --check-certificate option."
  1295. msgstr ""
  1296. #: src/message.h:170
  1297. #, fuzzy, c-format
  1298. msgid "Printing the contents of file '%s'..."
  1299. msgstr "Bezig met het laden van segmentsbestand %s"
  1300. #: src/message.h:171
  1301. msgid "This file is neither Torrent nor Metalink file. Skipping."
  1302. msgstr ""
  1303. #: src/message.h:174
  1304. msgid "Timeout."
  1305. msgstr "Time-out."
  1306. #: src/message.h:175
  1307. msgid "Invalid chunk size."
  1308. msgstr "Ongeldige chunk grootte."
  1309. #: src/message.h:176
  1310. #, c-format
  1311. msgid "Too large chunk. size=%d"
  1312. msgstr "Te groot stuk. grootte=%d"
  1313. #: src/message.h:177
  1314. msgid "Invalid header."
  1315. msgstr "Ongeldige header."
  1316. #: src/message.h:178
  1317. msgid "Invalid response."
  1318. msgstr "Ongeldige respons."
  1319. #: src/message.h:179
  1320. msgid "No header found."
  1321. msgstr "Geen header gevonden"
  1322. #: src/message.h:180
  1323. msgid "No status header."
  1324. msgstr "Geen status header"
  1325. #: src/message.h:181
  1326. msgid "Proxy connection failed."
  1327. msgstr "Proxy connectie mislukt."
  1328. #: src/message.h:182
  1329. msgid "Connection failed."
  1330. msgstr "Verbinding mislukt"
  1331. #: src/message.h:183
  1332. #, c-format
  1333. msgid ""
  1334. "The requested filename and the previously registered one are not same. "
  1335. "Expected:%s Actual:%s"
  1336. msgstr ""
  1337. #: src/message.h:184
  1338. #, c-format
  1339. msgid "The response status is not successful. status=%d"
  1340. msgstr ""
  1341. #: src/message.h:185
  1342. #, c-format
  1343. msgid "Too large file size. size=%s"
  1344. msgstr "Te groot bestand. grootte=%s"
  1345. #: src/message.h:186
  1346. #, c-format
  1347. msgid "Transfer encoding %s is not supported."
  1348. msgstr ""
  1349. #: src/message.h:187
  1350. #, c-format
  1351. msgid "SSL initialization failed: %s"
  1352. msgstr "SSL initialisatie mislukt: %s"
  1353. #: src/message.h:188
  1354. msgid "SSL I/O error"
  1355. msgstr "SSL I/O fout"
  1356. #: src/message.h:189
  1357. msgid "SSL protocol error"
  1358. msgstr "SSL protocol fout"
  1359. #: src/message.h:190
  1360. #, c-format
  1361. msgid "SSL unknown error %d"
  1362. msgstr "Onbekende SSL fout %d"
  1363. #: src/message.h:191
  1364. #, c-format
  1365. msgid "SSL initialization failed: OpenSSL connect error %d"
  1366. msgstr ""
  1367. #: src/message.h:192
  1368. #, c-format
  1369. msgid "Size mismatch Expected:%s Actual:%s"
  1370. msgstr ""
  1371. #: src/message.h:193
  1372. msgid "Authorization failed."
  1373. msgstr "Autorisatie mislukt."
  1374. #: src/message.h:194
  1375. msgid "Got EOF from the server."
  1376. msgstr "Ontving EOF van de server."
  1377. #: src/message.h:195
  1378. msgid "Got EOF from peer."
  1379. msgstr ""
  1380. #: src/message.h:196
  1381. msgid "Malformed meta info."
  1382. msgstr "Verkeerd geformuleerde meta informatie."
  1383. #: src/message.h:198
  1384. #, c-format
  1385. msgid "Failed to open the file %s, cause: %s"
  1386. msgstr "Kon bestand %s niet openen, oorzaak: %s"
  1387. #: src/message.h:199
  1388. #, c-format
  1389. msgid "Failed to write into the file %s, cause: %s"
  1390. msgstr "Kon in bestand %s niet schrijven, oorzaak: %s"
  1391. #: src/message.h:200
  1392. #, c-format
  1393. msgid "Failed to read from the file %s, cause: %s"
  1394. msgstr "Kon niet lezen uit bestand %s, reden: %s"
  1395. #: src/message.h:201
  1396. msgid "Failed to read data from disk."
  1397. msgstr "Kon geen data van de hardeschijf lezen."
  1398. #: src/message.h:202
  1399. #, c-format
  1400. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  1401. msgstr ""
  1402. "Kon geen SHA1 checksum berekenen van het bestand %s of een deel hiervan, "
  1403. "reden: %s"
  1404. #: src/message.h:203
  1405. #, c-format
  1406. msgid "Failed to seek the file %s, cause: %s"
  1407. msgstr ""
  1408. #: src/message.h:204
  1409. #, c-format
  1410. msgid "The offset is out of range, offset=%s"
  1411. msgstr ""
  1412. #: src/message.h:205
  1413. #, c-format
  1414. msgid "%s is not a directory."
  1415. msgstr "%s is geen map."
  1416. #: src/message.h:206
  1417. #, c-format
  1418. msgid "Failed to make the directory %s, cause: %s"
  1419. msgstr ""
  1420. #: src/message.h:207
  1421. #, c-format
  1422. msgid "Failed to open the segment file %s, cause: %s"
  1423. msgstr ""
  1424. #: src/message.h:208
  1425. #, c-format
  1426. msgid "Failed to write into the segment file %s, cause: %s"
  1427. msgstr ""
  1428. #: src/message.h:209
  1429. #, c-format
  1430. msgid "Failed to read from the segment file %s, cause: %s"
  1431. msgstr ""
  1432. #: src/message.h:211
  1433. #, c-format
  1434. msgid "Failed to open a socket, cause: %s"
  1435. msgstr "Kon socket niet openen, oorzaak: %s"
  1436. #: src/message.h:212
  1437. #, c-format
  1438. msgid "Failed to set a socket option, cause: %s"
  1439. msgstr ""
  1440. #: src/message.h:213
  1441. #, c-format
  1442. msgid "Failed to set a socket as blocking, cause: %s"
  1443. msgstr ""
  1444. #: src/message.h:214
  1445. #, c-format
  1446. msgid "Failed to set a socket as non-blocking, cause: %s"
  1447. msgstr ""
  1448. #: src/message.h:215
  1449. #, c-format
  1450. msgid "Failed to bind a socket, cause: %s"
  1451. msgstr ""
  1452. #: src/message.h:216
  1453. #, c-format
  1454. msgid "Failed to listen to a socket, cause: %s"
  1455. msgstr "Kon niet luisteren op socket, oorzaak: %s"
  1456. #: src/message.h:217
  1457. #, c-format
  1458. msgid "Failed to accept a peer connection, cause: %s"
  1459. msgstr ""
  1460. #: src/message.h:218
  1461. #, c-format
  1462. msgid "Failed to get the name of socket, cause: %s"
  1463. msgstr ""
  1464. #: src/message.h:219
  1465. #, c-format
  1466. msgid "Failed to get the name of connected peer, cause: %s"
  1467. msgstr ""
  1468. #: src/message.h:220
  1469. #, c-format
  1470. msgid "Failed to resolve the hostname %s, cause: %s"
  1471. msgstr ""
  1472. #: src/message.h:221
  1473. #, c-format
  1474. msgid "Failed to connect to the host %s, cause: %s"
  1475. msgstr ""
  1476. #: src/message.h:222
  1477. #, c-format
  1478. msgid "Failed to check whether the socket is writable, cause: %s"
  1479. msgstr ""
  1480. #: src/message.h:223
  1481. #, c-format
  1482. msgid "Failed to check whether the socket is readable, cause: %s"
  1483. msgstr ""
  1484. #: src/message.h:224
  1485. #, c-format
  1486. msgid "Failed to send data, cause: %s"
  1487. msgstr ""
  1488. #: src/message.h:225
  1489. #, c-format
  1490. msgid "Failed to receive data, cause: %s"
  1491. msgstr ""
  1492. #: src/message.h:226
  1493. #, c-format
  1494. msgid "Failed to peek data, cause: %s"
  1495. msgstr ""
  1496. #: src/message.h:227
  1497. #, c-format
  1498. msgid "Unknown socket error %d (0x%x)"
  1499. msgstr ""
  1500. #: src/message.h:228
  1501. #, c-format
  1502. msgid "File %s exists, but %s does not exist."
  1503. msgstr ""
  1504. #: src/message.h:229
  1505. #, c-format
  1506. msgid "Invalid payload size for %s, size=%d. It should be %d."
  1507. msgstr ""
  1508. #: src/message.h:230
  1509. #, c-format
  1510. msgid "Invalid ID=%d for %s. It should be %d."
  1511. msgstr ""
  1512. #: src/message.h:231
  1513. #, c-format
  1514. msgid ""
  1515. "Chunk checksum validation failed. checksumIndex=%d, offset=%s, expectedHash=%"
  1516. "s, actualHash=%s"
  1517. msgstr ""
  1518. #: src/message.h:232
  1519. msgid "Download aborted."
  1520. msgstr "Download afgebroken."
  1521. #: src/message.h:233
  1522. #, c-format
  1523. msgid "File %s is being downloaded by other command."
  1524. msgstr ""
  1525. #: src/message.h:234
  1526. msgid "Insufficient checksums."
  1527. msgstr ""
  1528. #: src/message.h:235
  1529. #, c-format
  1530. msgid "Tracker returned failure reason: %s"
  1531. msgstr ""
  1532. #: src/message.h:236
  1533. msgid "Flooding detected."
  1534. msgstr ""
  1535. #: src/message.h:237
  1536. #, c-format
  1537. msgid ""
  1538. "Drop connection because no request/piece messages were exchanged in a "
  1539. "certain period(%d seconds)."
  1540. msgstr ""
  1541. #: src/message.h:238
  1542. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  1543. msgstr ""
  1544. #: src/message.h:239
  1545. #, c-format
  1546. msgid "No such file entry %s"
  1547. msgstr ""
  1548. #: src/message.h:240
  1549. #, c-format
  1550. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  1551. msgstr ""
  1552. #: src/message.h:241
  1553. msgid "No HttpRequestEntry found."
  1554. msgstr ""
  1555. #: src/message.h:242
  1556. #, c-format
  1557. msgid "Got %d status, but no location header provided."
  1558. msgstr ""
  1559. #: src/message.h:243
  1560. #, c-format
  1561. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  1562. msgstr ""
  1563. #: src/message.h:244
  1564. msgid "No file matched with your preference."
  1565. msgstr ""
  1566. #: src/message.h:245
  1567. msgid "Exception caught"
  1568. msgstr ""
  1569. #: src/message.h:246
  1570. #, c-format
  1571. msgid "Max payload length exceeded or invalid. length = %u"
  1572. msgstr ""
  1573. #: src/message.h:247
  1574. #, c-format
  1575. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  1576. msgstr ""
  1577. #: src/BtSetup.cc:160
  1578. msgid "Errors occurred while binding port.\n"
  1579. msgstr ""
  1580. #: src/Util.cc:724
  1581. msgid "Files:"
  1582. msgstr ""
  1583. #~ msgid " -p, --ftp-pasv Use passive mode in FTP."
  1584. #~ msgstr " -p, --ftp-pasv Gebruik passive mode bij FTP."
  1585. #, fuzzy
  1586. #~ msgid ""
  1587. #~ " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  1588. #~ " simultaneously."
  1589. #~ msgstr ""
  1590. #~ " -C, --metalink-servers=AANTAL_SERVERS Het aantal servers om simultaan "
  1591. #~ "een\n"
  1592. #~ " connectie mee te maken.\n"
  1593. #~ " Standaard: 5"
  1594. #~ msgid " %s [options] -M METALINK_FILE\n"
  1595. #~ msgstr " %s [opties] -M METALINK_BESTAND\n"
  1596. #~ msgid ""
  1597. #~ "This program is free software; you can redistribute it and/or modify\n"
  1598. #~ "it under the terms of the GNU General Public License as published by\n"
  1599. #~ "the Free Software Foundation; either version 2 of the License, or\n"
  1600. #~ "(at your option) any later version.\n"
  1601. #~ "\n"
  1602. #~ "This program is distributed in the hope that it will be useful,\n"
  1603. #~ "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  1604. #~ "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
  1605. #~ "GNU General Public License for more details.\n"
  1606. #~ "\n"
  1607. #~ "You should have received a copy of the GNU General Public License\n"
  1608. #~ "along with this program; if not, write to the Free Software\n"
  1609. #~ "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-"
  1610. #~ "1301 USA\n"
  1611. #~ msgstr ""
  1612. #~ "This program is free software; you can redistribute it and/or modify\n"
  1613. #~ "it under the terms of the GNU General Public License as published by\n"
  1614. #~ "the Free Software Foundation; either version 2 of the License, or\n"
  1615. #~ "(at your option) any later version.\n"
  1616. #~ "\n"
  1617. #~ "This program is distributed in the hope that it will be useful,\n"
  1618. #~ "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  1619. #~ "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
  1620. #~ "GNU General Public License for more details.\n"
  1621. #~ "\n"
  1622. #~ "You should have received a copy of the GNU General Public License\n"
  1623. #~ "along with this program; if not, write to the Free Software\n"
  1624. #~ "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 "
  1625. #~ "USA\n"