de.po 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637
  1. # translation of de.po to deutsch
  2. # This file is distributed under the same license as the PACKAGE package.
  3. # Copyright (C) YEAR Tatsuhiro Tsujikawa.
  4. # Hermann J. Beckers <hj.beckers@onlinehome.de>, 2006.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: de\n"
  9. "Report-Msgid-Bugs-To: http://aria2.sourceforge.net/\n"
  10. "POT-Creation-Date: 2011-01-10 17:04+0900\n"
  11. "PO-Revision-Date: 2010-04-14 23:11+0900\n"
  12. "Last-Translator: Ulrich Zeller <Unknown>\n"
  13. "Language-Team: deutsch <de@li.org>\n"
  14. "Language: \n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=utf-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "X-Launchpad-Export-Date: 2010-04-14 13:00+0000\n"
  19. "X-Generator: Launchpad (build Unknown)\n"
  20. #: src/DownloadEngine.cc:220
  21. msgid ""
  22. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  23. msgstr ""
  24. "Abbruch wurde eingeleitet... Strg-C drücken für sofortige Unterbrechung."
  25. #: src/DownloadEngine.cc:227
  26. msgid "Emergency shutdown sequence commencing..."
  27. msgstr "Sofortiger Abbruch wurde eingeleitet..."
  28. #: src/MultiUrlRequestInfo.cc:109
  29. msgid "aria2 will resume download if the transfer is restarted."
  30. msgstr ""
  31. "aria2 wird den Download wiederaufnehmen, wenn die Übertragung neugestartet "
  32. "wird."
  33. #: src/MultiUrlRequestInfo.cc:111
  34. msgid ""
  35. "If there are any errors, then see the log file. See '-l' option in help/man "
  36. "page for details."
  37. msgstr ""
  38. "Sollten Fehler aufgetreten sein, bitte die Mitschnitt-Datei beachten. Für "
  39. "Details hierzu siehe die Option \"-l\" in den Hilfe- und man-Seiten."
  40. #: src/RequestGroupMan.cc:608
  41. msgid "Download Results:"
  42. msgstr "Download-Ergebnisse:"
  43. #: src/RequestGroupMan.cc:649
  44. msgid "Status Legend:"
  45. msgstr "Statuserläuterung:"
  46. #: src/OptionHandler.cc:38
  47. msgid " Default: "
  48. msgstr " Voreinstellung: "
  49. #: src/OptionHandler.cc:39
  50. msgid " Tags: "
  51. msgstr " Schlagwörter: "
  52. #: src/OptionHandler.cc:40
  53. msgid " Possible Values: "
  54. msgstr " Mögliche Werte: "
  55. #: src/usage_text.h:37
  56. msgid ""
  57. " -d, --dir=DIR The directory to store the downloaded file."
  58. msgstr ""
  59. " -d, --dir=DIR Verzeichnis zum Speichern der abgerufenen "
  60. "Datei."
  61. #: src/usage_text.h:39
  62. msgid ""
  63. " -o, --out=FILE The file name of the downloaded file. When -Z\n"
  64. " option is used, this option is ignored."
  65. msgstr ""
  66. " -o, --out=DATEI Der Dateiname der herunterzuladenen Datei. Falls die -Z\n"
  67. " Option verwendet wird, wird diese Option "
  68. "ignoriert."
  69. #: src/usage_text.h:42
  70. msgid ""
  71. " -l, --log=LOG The file name of the log file. If '-' is\n"
  72. " specified, log is written to stdout."
  73. msgstr ""
  74. " -l, --log=LOG Dateipfad für die Log-Speicherung. Wenn '-' "
  75. "angegeben wird,\n"
  76. " wird das Log auf die Standardausgabe "
  77. "geschrieben."
  78. #: src/usage_text.h:45
  79. #, fuzzy
  80. msgid ""
  81. " -D, --daemon[=true|false] Run as daemon. The current working directory "
  82. "will\n"
  83. " be changed to \"/\" and standard input, "
  84. "standard\n"
  85. " output and standard error will be redirected "
  86. "to\n"
  87. " \"/dev/null\"."
  88. msgstr ""
  89. " -D, --daemon Starte als Daemon. Das aktuelle Arbeitsverzeichnis wird zu \"/"
  90. "\"\n"
  91. " geändert. Standardeingabe, Standardausgabe "
  92. "und\n"
  93. " Standardfehler (stderr) wird nach \"/dev/null"
  94. "\"\n"
  95. " umgeleitet."
  96. #: src/usage_text.h:50
  97. #, fuzzy
  98. msgid ""
  99. " -s, --split=N Download a file using N connections. If more\n"
  100. " than N URLs are given, first N URLs are used "
  101. "and\n"
  102. " remaining URLs are used for backup. If less "
  103. "than\n"
  104. " N URLs are given, those URLs are used more "
  105. "than\n"
  106. " once so that N connections total are made\n"
  107. " simultaneously. The number of connections to "
  108. "the\n"
  109. " same host is restricted by\n"
  110. " --max-connection-per-server option. Please see "
  111. "-j\n"
  112. " and --min-split-size option too.\n"
  113. " Please note that in Metalink download, this\n"
  114. " option has no effect and use -C option instead."
  115. msgstr ""
  116. " -s, --split=N Datei mit N Verbindungen herunterladen. Wenn mehr als N URLs\n"
  117. " angegeben werden, werden die ersten N URLs\n"
  118. " verwendet, weitere werden als Backup genutzt.\n"
  119. " Wenn weniger als N URLs angegeben sind, "
  120. "werden\n"
  121. " diese URLs mehrmals verwendet um insgesamt N\n"
  122. " Verbindungen zu erreichen. Siehe auch Option -"
  123. "j.\n"
  124. " Diese Einstellung betrifft Metalink-Downloads\n"
  125. " nicht, nutzen sie statt dessen -C."
  126. #: src/usage_text.h:62
  127. msgid ""
  128. " --retry-wait=SEC Set the seconds to wait to retry after an "
  129. "error\n"
  130. " has occured."
  131. msgstr ""
  132. " --retry-wait=SEC Festlegen der Sekundenanzahl SEC, die im "
  133. "Fehler-\n"
  134. " fall vor einem erneuten Versuch gewartet wird."
  135. #: src/usage_text.h:65
  136. msgid " -t, --timeout=SEC Set timeout in seconds."
  137. msgstr " -t, --timeout=SEC Zeitüberschreitung festlegen (in Sekunden)."
  138. #: src/usage_text.h:67
  139. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  140. msgstr ""
  141. " -m, --max-tries=N Festlegen der maximalen Anzahl an Versuchen.\n"
  142. " Keine Begrenzung mit 0."
  143. #: src/usage_text.h:69
  144. msgid ""
  145. " --http-proxy=PROXY Use this proxy server for HTTP. To erase\n"
  146. " previously defined proxy, use \"\".\n"
  147. " See also --all-proxy option.\n"
  148. " This affects all URLs."
  149. msgstr ""
  150. " --http-proxy=PROXY Diesen Proxy-Server für HTTP verwenden. Geben\n"
  151. " Sie \"\" an, um einen vorher definierten Proxy "
  152. "zu\n"
  153. " löschen.\n"
  154. " Siehe auch Option --all-proxy.\n"
  155. " Dies betrifft alle URLs."
  156. #: src/usage_text.h:74
  157. msgid ""
  158. " --https-proxy=PROXY Use this proxy server for HTTPS. To erase\n"
  159. " previously defined proxy, use \"\".\n"
  160. " See also --all-proxy option.\n"
  161. " This affects all URLs."
  162. msgstr ""
  163. #: src/usage_text.h:79
  164. msgid ""
  165. " --ftp-proxy=PROXY Use this proxy server for FTP. To erase "
  166. "previously\n"
  167. " defined proxy, use \"\".\n"
  168. " See also --all-proxy option.\n"
  169. " This affects all URLs."
  170. msgstr ""
  171. #: src/usage_text.h:84
  172. msgid ""
  173. " --all-proxy=PROXY Use this proxy server for all protocols. To "
  174. "erase\n"
  175. " previously defined proxy, use \"\".\n"
  176. " You can override this setting and specify a\n"
  177. " proxy server for a particular protocol using\n"
  178. " --http-proxy, --https-proxy and --ftp-proxy\n"
  179. " options.\n"
  180. " This affects all URLs."
  181. msgstr ""
  182. #: src/usage_text.h:92
  183. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  184. msgstr ""
  185. " --http-user=USER HTTP-Anwendername angeben. Dies betrifft alle "
  186. "URLs."
  187. #: src/usage_text.h:94
  188. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  189. msgstr ""
  190. " --http-passwd=PASSWD HTTP-Passwort setzen. Dies betrifft alle URLs."
  191. #: src/usage_text.h:96
  192. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  193. msgstr " --proxy-method=METHOD Methode für Proxy-Anfragen setzen."
  194. #: src/usage_text.h:98
  195. msgid " --referer=REFERER Set Referer. This affects all URLs."
  196. msgstr " --referer=REFERER Referer setzen. Dies betrifft alle URLs."
  197. #: src/usage_text.h:100
  198. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  199. msgstr ""
  200. " --ftp-user=BENUTZER Festlegen des FTP-Benutzernamens. Wird für\n"
  201. " alle URLs verwendet."
  202. #: src/usage_text.h:102
  203. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  204. msgstr ""
  205. " --ftp-passwd=PASSWORT Festlegen des FTP-Paßworts. Wird für\n"
  206. " alle URLs verwendet."
  207. #: src/usage_text.h:104
  208. msgid " --ftp-type=TYPE Set FTP transfer type."
  209. msgstr " --ftp-type=TYP Festlegen des FTP-Übertragungstyps."
  210. #: src/usage_text.h:106
  211. msgid ""
  212. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  213. "given,\n"
  214. " the active mode will be used."
  215. msgstr ""
  216. " -p, --ftp-pasv[=true|false] Passiven Modus für FTP nutzen. Wenn der Wert "
  217. "false ist\n"
  218. " wird aktives FTP verwendet."
  219. #: src/usage_text.h:109
  220. msgid ""
  221. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  222. "than\n"
  223. " or equal to this value(bytes per sec).\n"
  224. " 0 means aria2 does not have a lowest speed "
  225. "limit.\n"
  226. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  227. " This option does not affect BitTorrent "
  228. "downloads."
  229. msgstr ""
  230. " --lowest-speed-limit=GESCHWINDIGKEIT Wenn die Geschwindigkeit kleiner oder "
  231. "gleich diesem\n"
  232. " Wert (Bytes pro s) ist, beende die "
  233. "Verbindung.\n"
  234. " 0 bedeutet, aria2 hat keine "
  235. "Mindestgeschwindigkeit.\n"
  236. " Sie können K oder M (1K = 1024, 1M = 1024K) "
  237. "anhängen.\n"
  238. " Diese Option hat keine Auswirkungen auf "
  239. "BitTorrent Downloads."
  240. #: src/usage_text.h:115
  241. msgid ""
  242. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  243. "sec.\n"
  244. " 0 means unrestricted.\n"
  245. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  246. " To limit the download speed per download, use\n"
  247. " --max-download-limit option."
  248. msgstr ""
  249. " --max-overall-download-limit=GESCHWINDIGKEIT Setze die maximale "
  250. "Gesamtdownloadgeschwindigkeit in Bytes/s.\n"
  251. " 0 bedeutet unbegrenzt.\n"
  252. " Sie können K oder M (1K = 1024, 1M = 1024K) "
  253. "anhängen.\n"
  254. " Verwenden Sie --max-download-limit , um die "
  255. "Downloadgeschwindigkeit\n"
  256. " pro einzelnem Download zu begrenzen."
  257. #: src/usage_text.h:121
  258. msgid ""
  259. " --max-download-limit=SPEED Set max download speed per each download in\n"
  260. " bytes/sec. 0 means unrestricted.\n"
  261. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  262. " To limit the overall download speed, use\n"
  263. " --max-overall-download-limit option."
  264. msgstr ""
  265. #: src/usage_text.h:127
  266. msgid ""
  267. " --file-allocation=METHOD Specify file allocation method.\n"
  268. " 'none' doesn't pre-allocate file space. "
  269. "'prealloc'\n"
  270. " pre-allocates file space before download "
  271. "begins.\n"
  272. " This may take some time depending on the size "
  273. "of\n"
  274. " the file.\n"
  275. " If you are using newer file systems such as "
  276. "ext4\n"
  277. " (with extents support), btrfs or xfs, 'falloc' "
  278. "is\n"
  279. " your best choice. It allocates large(few GiB)\n"
  280. " files almost instantly. Don't use 'falloc' "
  281. "with\n"
  282. " legacy file systems such as ext3 because it "
  283. "takes\n"
  284. " almost same time as 'prealloc' and it blocks "
  285. "aria2\n"
  286. " entirely until allocation finishes. 'falloc' "
  287. "may\n"
  288. " not be available if your system doesn't have\n"
  289. " posix_fallocate() function."
  290. msgstr ""
  291. #: src/usage_text.h:142
  292. msgid ""
  293. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  294. " size is smaller than SIZE.\n"
  295. " You can append K or M(1K = 1024, 1M = 1024K)."
  296. msgstr ""
  297. " --no-file-allocation-limit=SIZE Es wird keine Platzvorbelegung für Dateien\n"
  298. " vorgenommen, die kleiner als SIZE sind. Man\n"
  299. " kann K oder M an den Wert anhängen (1K = "
  300. "1024,\n"
  301. " 1M = 1024K)."
  302. #: src/usage_text.h:146
  303. msgid ""
  304. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  305. "while\n"
  306. " allocating files.\n"
  307. " Turn off if you encounter any error"
  308. msgstr ""
  309. " --enable-direct-io[=true|false] Verwendet directI/O, was die CPU-Last\n"
  310. " während der Vorbelegung von "
  311. "Dateispeicherplatz\n"
  312. " verringert. Abschaltbar, falls dabei Fehler\n"
  313. " auftreten."
  314. #: src/usage_text.h:150
  315. #, fuzzy
  316. msgid ""
  317. " --allow-overwrite[=true|false] Restart download from scratch if the\n"
  318. " corresponding control file doesn't exist. "
  319. "See\n"
  320. " also --auto-file-renaming option."
  321. msgstr ""
  322. " --enable-direct-io[=true|false] Verwendet directI/O, was die CPU-Last\n"
  323. " während der Vorbelegung von "
  324. "Dateispeicherplatz\n"
  325. " verringert. Abschaltbar, falls dabei Fehler\n"
  326. " auftreten."
  327. #: src/usage_text.h:154
  328. #, fuzzy
  329. msgid ""
  330. " --allow-piece-length-change[=true|false] If false is given, aria2 aborts\n"
  331. " download when a piece length is different "
  332. "from\n"
  333. " one in a control file. If true is given, you "
  334. "can\n"
  335. " proceed but some download progress will be "
  336. "lost."
  337. msgstr ""
  338. " --allow-piece-length-change=true|false Wenn \"false\" angegeben wird, "
  339. "bricht\n"
  340. " Aria2 den Download ab, wenn eine "
  341. "Abschnittslänge\n"
  342. " des Downloads sich von der in der Steuerdatei\n"
  343. " unterscheidet. Bei \"true\" wird "
  344. "fortgefahren,\n"
  345. " mit Einbußen am bisherigen Downloadfortschritt."
  346. #: src/usage_text.h:159
  347. msgid ""
  348. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  349. "sequentially\n"
  350. " and download each URI in a separate session, "
  351. "like\n"
  352. " the usual command-line download utilities."
  353. msgstr ""
  354. #: src/usage_text.h:163
  355. msgid ""
  356. " --auto-file-renaming[=true|false] Rename file name if the same file "
  357. "already\n"
  358. " exists. This option works only in http(s)/ftp\n"
  359. " download.\n"
  360. " The new file name has a dot and a number"
  361. "(1..9999)\n"
  362. " appended."
  363. msgstr ""
  364. #: src/usage_text.h:169
  365. msgid ""
  366. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  367. " You can specify set of parts:\n"
  368. " http://{sv1,sv2,sv3}/foo.iso\n"
  369. " Also you can specify numeric sequences with "
  370. "step\n"
  371. " counter:\n"
  372. " http://host/image[000-100:2].img\n"
  373. " A step counter can be omitted.\n"
  374. " If all URIs do not point to the same file, "
  375. "such\n"
  376. " as the second example above, -Z option is\n"
  377. " required."
  378. msgstr ""
  379. #: src/usage_text.h:180
  380. msgid ""
  381. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  382. msgstr ""
  383. " --enable-http-keep-alive[=true|false] Dauerhafte HTTP/1.1-Verbindung "
  384. "halten."
  385. #: src/usage_text.h:182
  386. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  387. msgstr " --enable-http-pipelining[=true|false] Aktiviere HTTP/1.1 Pipelining."
  388. #: src/usage_text.h:184
  389. msgid ""
  390. " -V, --check-integrity[=true|false] Check file integrity by validating "
  391. "piece\n"
  392. " hashes. This option has effect only in "
  393. "BitTorrent\n"
  394. " and Metalink downloads with chunk checksums.\n"
  395. " Use this option to re-download a damaged "
  396. "portion\n"
  397. " of a file. See also --bt-hash-check-seed "
  398. "option."
  399. msgstr ""
  400. #: src/usage_text.h:190
  401. msgid ""
  402. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  403. " --check-integrity option and file is "
  404. "complete,\n"
  405. " continue to seed file. If you want to check "
  406. "file\n"
  407. " and download it only when it is damaged or\n"
  408. " incomplete, set this option to false.\n"
  409. " This option has effect only on BitTorrent\n"
  410. " download."
  411. msgstr ""
  412. #: src/usage_text.h:198
  413. #, fuzzy
  414. msgid ""
  415. " --realtime-chunk-checksum[=true|false] Validate chunk of data by "
  416. "calculating\n"
  417. " checksum while downloading a file if chunk\n"
  418. " checksums are provided."
  419. msgstr ""
  420. " --enable-direct-io[=true|false] Verwendet directI/O, was die CPU-Last\n"
  421. " während der Vorbelegung von "
  422. "Dateispeicherplatz\n"
  423. " verringert. Abschaltbar, falls dabei Fehler\n"
  424. " auftreten."
  425. #: src/usage_text.h:202
  426. #, fuzzy
  427. msgid ""
  428. " -c, --continue[=true|false] Continue downloading a partially downloaded\n"
  429. " file. Use this option to resume a download\n"
  430. " started by a web browser or another program\n"
  431. " which downloads files sequentially from the\n"
  432. " beginning. Currently this option is only\n"
  433. " applicable to http(s)/ftp downloads."
  434. msgstr ""
  435. " -c, --continue Den Download einer teilweise heruntergeladenen Datei "
  436. "fort-\n"
  437. " setzen. Unvollständige Downloads, die von\n"
  438. " Programmen begonnen wurden, die Dateien "
  439. "linear\n"
  440. " von Anfang nach Ende herunterladen (z. B. "
  441. "Web-\n"
  442. " Browser), können mit dieser Option "
  443. "fortgeführt\n"
  444. " werden.\n"
  445. " Im Moment ist diese Option nur für HTTP(S) "
  446. "und\n"
  447. " FTP verfügbar."
  448. #: src/usage_text.h:209
  449. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  450. msgstr " -U, --user-agent=USER_AGENT Setze User Agent für http(s) Downloads."
  451. #: src/usage_text.h:211
  452. #, fuzzy
  453. msgid " -n, --no-netrc[=true|false] Disables netrc support."
  454. msgstr " -n, --no-netrc Deaktiviert netrc Unterstützung."
  455. #: src/usage_text.h:213
  456. #, fuzzy
  457. msgid ""
  458. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  459. " multiple URIs for a single entity: separate\n"
  460. " URIs on a single line using the TAB "
  461. "character.\n"
  462. " Reads input from stdin when '-' is specified.\n"
  463. " Additionally, options can be specified after "
  464. "each\n"
  465. " line of URI. This optional line must start "
  466. "with\n"
  467. " one or more white spaces and have one option "
  468. "per\n"
  469. " single line. See INPUT FILE section of man "
  470. "page\n"
  471. " for details."
  472. msgstr ""
  473. " --follow-torrent=true|false|mem Für Angabe von \"true\" oder \"mem\" wird "
  474. "nach\n"
  475. " dem Download einer .torrent-Datei oder einer "
  476. "Da-\n"
  477. " tei, deren Inhaltstyp \"application/x-"
  478. "bittorrent\"\n"
  479. " ist, diese Datei als Torrent-Steuerdatei "
  480. "durch-\n"
  481. " sucht und alle gefundenen Download-Positionen\n"
  482. " heruntergeladen.\n"
  483. " Für \"mem\" wird die .torrent-Datei nicht auf\n"
  484. " der Festplatte gespeichert, sondern nur im \n"
  485. " Speicher gehalten.\n"
  486. " Bei \"false\" wird die .torrent-Datei nicht\n"
  487. " durchsucht."
  488. #: src/usage_text.h:223
  489. msgid ""
  490. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  491. "for\n"
  492. " every static (HTTP/FTP) URL, torrent and "
  493. "metalink.\n"
  494. " See also -s and -C options."
  495. msgstr ""
  496. #: src/usage_text.h:227
  497. msgid ""
  498. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  499. "format\n"
  500. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  501. msgstr ""
  502. " --load-cookies=Datei Lade Cookies aus einer Datei im Firefox3 "
  503. "Format\n"
  504. " und Mozilla/Firefox(1.x/2.x)/Netscape Format."
  505. #: src/usage_text.h:230
  506. msgid ""
  507. " --save-cookies=FILE Save Cookies to FILE in Mozilla/Firefox(1.x/2."
  508. "x)/\n"
  509. " Netscape format. If FILE already exists, it "
  510. "is\n"
  511. " overwritten. Session Cookies are also saved "
  512. "and\n"
  513. " their expiry values are treated as 0."
  514. msgstr ""
  515. #: src/usage_text.h:235
  516. #, fuzzy
  517. msgid ""
  518. " -S, --show-files[=true|false] Print file listing of .torrent or .metalink "
  519. "file\n"
  520. " and exit. More detailed information will be "
  521. "listed\n"
  522. " in case of torrent file."
  523. msgstr ""
  524. " -S, --show-files Listenanzeige aller Download-Positionen\n"
  525. " in einer .torrent- oder .metalink-Datei. Für\n"
  526. " .torrent werden genauere Informationen "
  527. "angezeigt."
  528. #: src/usage_text.h:239
  529. msgid ""
  530. " --select-file=INDEX... Set file to download by specifying its index.\n"
  531. " You can find the file index using the\n"
  532. " --show-files option. Multiple indexes can be\n"
  533. " specified by using ',', for example: \"3,6\".\n"
  534. " You can also use '-' to specify a range: "
  535. "\"1-5\".\n"
  536. " ',' and '-' can be used together.\n"
  537. " When used with the -M option, index may vary\n"
  538. " depending on the query(see --metalink-* "
  539. "options)."
  540. msgstr ""
  541. #: src/usage_text.h:248
  542. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  543. msgstr " -T, --torrent-file=TORRENT_FILE Datenpfad zur torrent-Datei."
  544. #: src/usage_text.h:250
  545. msgid ""
  546. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  547. " whose suffix is .torrent or content type is\n"
  548. " application/x-bittorrent is downloaded, aria2\n"
  549. " parses it as a torrent file and downloads "
  550. "files\n"
  551. " mentioned in it.\n"
  552. " If mem is specified, a torrent file is not\n"
  553. " written to the disk, but is just kept in "
  554. "memory.\n"
  555. " If false is specified, the action mentioned "
  556. "above\n"
  557. " is not taken."
  558. msgstr ""
  559. " --follow-torrent=true|false|mem Für Angabe von \"true\" oder \"mem\" wird "
  560. "nach\n"
  561. " dem Download einer .torrent-Datei oder einer "
  562. "Da-\n"
  563. " tei, deren Inhaltstyp \"application/x-"
  564. "bittorrent\"\n"
  565. " ist, diese Datei als Torrent-Steuerdatei "
  566. "durch-\n"
  567. " sucht und alle gefundenen Download-Positionen\n"
  568. " heruntergeladen.\n"
  569. " Für \"mem\" wird die .torrent-Datei nicht auf\n"
  570. " der Festplatte gespeichert, sondern nur im \n"
  571. " Speicher gehalten.\n"
  572. " Bei \"false\" wird die .torrent-Datei nicht\n"
  573. " durchsucht."
  574. #: src/usage_text.h:260
  575. msgid ""
  576. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  577. " Multiple ports can be specified by using ',',\n"
  578. " for example: \"6881,6885\". You can also use "
  579. "'-'\n"
  580. " to specify a range: \"6881-6999\". ',' and '-' "
  581. "can\n"
  582. " be used together."
  583. msgstr ""
  584. " --listen-port=PORT Setzen des TCP-Ports für BitTorrent-"
  585. "Downloads.\n"
  586. " Mehrere Ports können mit Kommatrennung "
  587. "angegeben\n"
  588. " werden (Bsp: \"6881,6885\"). Mit \"-\" kann "
  589. "ein\n"
  590. " Port-Bereich angegeben werden (Bsp: "
  591. "\"6881-6999\").\n"
  592. " \",\" und \"-\" können gemeinsam benutzt "
  593. "werden."
  594. #: src/usage_text.h:266
  595. msgid ""
  596. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  597. "sec.\n"
  598. " 0 means unrestricted.\n"
  599. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  600. " To limit the upload speed per torrent, use\n"
  601. " --max-upload-limit option."
  602. msgstr ""
  603. #: src/usage_text.h:272
  604. msgid ""
  605. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  606. " bytes/sec. 0 means unrestricted.\n"
  607. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  608. " To limit the overall upload speed, use\n"
  609. " --max-overall-upload-limit option."
  610. msgstr ""
  611. #: src/usage_text.h:278
  612. msgid ""
  613. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  614. " --seed-ratio option."
  615. msgstr ""
  616. " --seed-time=MINUTES Legt die Verteilzeit in Minuten fest. Siehe "
  617. "auch\n"
  618. " die Option \"--seed-ratio\"."
  619. #: src/usage_text.h:281
  620. msgid ""
  621. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  622. " until share ratio reaches RATIO.\n"
  623. " You are strongly encouraged to specify equals "
  624. "or\n"
  625. " more than 1.0 here. Specify 0.0 if you intend "
  626. "to\n"
  627. " do seeding regardless of share ratio.\n"
  628. " If --seed-time option is specified along with\n"
  629. " this option, seeding ends when at least one "
  630. "of\n"
  631. " the conditions is satisfied."
  632. msgstr ""
  633. #: src/usage_text.h:290
  634. msgid ""
  635. " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  636. "in\n"
  637. " BitTorrent is 20 byte length. If more than 20\n"
  638. " bytes are specified, only first 20 bytes are\n"
  639. " used. If less than 20 bytes are specified, "
  640. "random\n"
  641. " byte data are added to make its length 20 "
  642. "bytes."
  643. msgstr ""
  644. #: src/usage_text.h:296
  645. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  646. msgstr ""
  647. #: src/usage_text.h:298
  648. #, fuzzy
  649. msgid " --enable-dht[=true|false] Enable IPv4 DHT functionality."
  650. msgstr ""
  651. " --enable-dht[=true|false] Nutzung von DHT (VHT, Verteilte Hash-Tabelle)\n"
  652. " einschalten."
  653. #: src/usage_text.h:300
  654. #, fuzzy
  655. msgid ""
  656. " --dht-listen-port=PORT... Set UDP listening port for both IPv4 and IPv6\n"
  657. " DHT. Multiple ports can be specified by using\n"
  658. " ',', for example: \"6881,6885\". You can also\n"
  659. " use '-' to specify a range: \"6881-6999\". "
  660. "','\n"
  661. " and '-' can be used together."
  662. msgstr ""
  663. " --dht-listen-port=PORT Bestimmt den UDP-Lauschport für DHT.\n"
  664. " Mehrere Ports können mit Kommatrennung "
  665. "angegeben\n"
  666. " werden (Bsp: \"6881,6885\"). Mit \"-\" kann "
  667. "ein\n"
  668. " Port-Bereich angegeben werden (Bsp: "
  669. "\"6881-6999\").\n"
  670. " \",\" und \"-\" können gemeinsam benutzt "
  671. "werden."
  672. #: src/usage_text.h:306
  673. #, fuzzy
  674. msgid ""
  675. " --dht-entry-point=HOST:PORT Set host and port as an entry point to IPv4 "
  676. "DHT\n"
  677. " network."
  678. msgstr ""
  679. " --dht-entry-point=HOST:PORT Festlegung von Wirt und Port, über den das "
  680. "DHT-\n"
  681. " Netzwerk betreten wird."
  682. #: src/usage_text.h:309
  683. #, fuzzy
  684. msgid ""
  685. " --dht-file-path=PATH Change the IPv4 DHT routing table file to PATH."
  686. msgstr ""
  687. " --conf-path=VERZEICHNIS Ändern des Verzeichnisses für die "
  688. "Konfigurations-\n"
  689. " datei auf VERZEICHNIS."
  690. #: src/usage_text.h:311
  691. msgid ""
  692. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  693. " If several encryption methods are provided by "
  694. "a\n"
  695. " peer, aria2 chooses the lowest one which "
  696. "satisfies\n"
  697. " the given level."
  698. msgstr ""
  699. #: src/usage_text.h:316
  700. #, fuzzy
  701. msgid ""
  702. " --bt-require-crypto[=true|false] If true is given, aria2 doesn't accept "
  703. "and\n"
  704. " establish connection with legacy BitTorrent\n"
  705. " handshake. Thus aria2 always uses Obfuscation\n"
  706. " handshake."
  707. msgstr ""
  708. " --bt-require-crypto=true|false Falls \"true\" wird Aria2 keine "
  709. "Verbindungen\n"
  710. " mit herkömmlichem BitTorrent-Handshake auf-\n"
  711. " bauen oder akzeptieren. Damit wird stets der\n"
  712. " Verschleierungs-Handshake (\"Obfuscation\") "
  713. "ver-\n"
  714. " wendet."
  715. #: src/usage_text.h:321
  716. msgid ""
  717. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  718. " torrent is lower than SPEED, aria2 "
  719. "temporarily\n"
  720. " increases the number of peers to try for more\n"
  721. " download speed. Configuring this option with "
  722. "your\n"
  723. " preferred download speed can increase your\n"
  724. " download speed in some cases.\n"
  725. " You can append K or M(1K = 1024, 1M = 1024K)."
  726. msgstr ""
  727. #: src/usage_text.h:329
  728. msgid ""
  729. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  730. "each\n"
  731. " BitTorrent download."
  732. msgstr ""
  733. #: src/usage_text.h:332
  734. msgid ""
  735. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  736. " verifying piece hashes."
  737. msgstr ""
  738. #: src/usage_text.h:335
  739. msgid ""
  740. " --bt-max-peers=NUM Specify the maximum number of peers per "
  741. "torrent.\n"
  742. " 0 means unlimited.\n"
  743. " See also --bt-request-peer-speed-limit option."
  744. msgstr ""
  745. #: src/usage_text.h:339
  746. msgid ""
  747. " -M, --metalink-file=METALINK_FILE The file path to the .metalink file. "
  748. "Reads\n"
  749. " input from stdin when '-' is specified."
  750. msgstr ""
  751. " -M, --metalink-file=METALINK_DATEI Der Dateipfad zur .metalink Datei. "
  752. "Liest\n"
  753. " von stdin, wenn '-' angegeben wird."
  754. #: src/usage_text.h:342
  755. msgid ""
  756. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  757. " simultaneously. Some Metalinks regulate the\n"
  758. " number of servers to connect. aria2 strictly\n"
  759. " respects them. This means that if Metalink "
  760. "defines\n"
  761. " the maxconnections attribute lower than\n"
  762. " NUM_SERVERS, then aria2 uses the value of\n"
  763. " maxconnections attribute instead of "
  764. "NUM_SERVERS.\n"
  765. " See also -s and -j options."
  766. msgstr ""
  767. #: src/usage_text.h:351
  768. msgid " --metalink-version=VERSION The version of the file to download."
  769. msgstr " --metalink-version=VERSION Die Version der Datei zum herunterladen."
  770. #: src/usage_text.h:353
  771. msgid " --metalink-language=LANGUAGE The language of the file to download."
  772. msgstr " --metalink-language=LANGUAGE Die Sprache der Datei zum herunterladen."
  773. #: src/usage_text.h:355
  774. msgid ""
  775. " --metalink-os=OS The operating system of the file to download."
  776. msgstr ""
  777. " --metalink-os=OS Das Betriebssystem der Datei zum herunterladen."
  778. #: src/usage_text.h:357
  779. msgid ""
  780. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  781. " A comma-delimited list of locations is\n"
  782. " acceptable."
  783. msgstr ""
  784. #: src/usage_text.h:361
  785. msgid ""
  786. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  787. "'none'\n"
  788. " if you don't have any preferred protocol."
  789. msgstr ""
  790. #: src/usage_text.h:364
  791. msgid ""
  792. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  793. " whose suffix is .metalink or content type of\n"
  794. " application/metalink+xml is downloaded, aria2\n"
  795. " parses it as a metalink file and downloads "
  796. "files\n"
  797. " mentioned in it.\n"
  798. " If mem is specified, a metalink file is not\n"
  799. " written to the disk, but is just kept in "
  800. "memory.\n"
  801. " If false is specified, the action mentioned "
  802. "above\n"
  803. " is not taken."
  804. msgstr ""
  805. #: src/usage_text.h:374
  806. #, fuzzy
  807. msgid ""
  808. " --metalink-enable-unique-protocol[=true|false] If true is given and "
  809. "several\n"
  810. " protocols are available for a mirror in a "
  811. "metalink\n"
  812. " file, aria2 uses one of them.\n"
  813. " Use --metalink-preferred-protocol option to\n"
  814. " specify the preference of protocol."
  815. msgstr ""
  816. " --metalink-enable-unique-protocol=true|false Wenn dies \"true\" ist und "
  817. "für\n"
  818. " einen Spiegelserver in der Metalink-"
  819. "Steuerdatei\n"
  820. " mehrere Protokolle verfügbar sind, wird Aria2\n"
  821. " genau eines davon verwenden.\n"
  822. " Siehe Option \"--metalink-preferred-protocol"
  823. "\"\n"
  824. " zur Festlegung des bevorzugten Protokolls."
  825. #: src/usage_text.h:380
  826. msgid " -v, --version Print the version number and exit."
  827. msgstr " -v, --version Versionsnummer ausgeben und beenden."
  828. #: src/usage_text.h:382
  829. msgid ""
  830. " -h, --help[=TAG|KEYWORD] Print usage and exit.\n"
  831. " The help messages are classified with tags. A "
  832. "tag\n"
  833. " starts with \"#\". For example, type \"--"
  834. "help=#http\"\n"
  835. " to get the usage for the options tagged with\n"
  836. " \"#http\". If non-tag word is given, print the "
  837. "usage\n"
  838. " for the options whose name includes that word."
  839. msgstr ""
  840. #: src/usage_text.h:389
  841. #, fuzzy
  842. msgid " --no-conf[=true|false] Disable loading aria2.conf file."
  843. msgstr " --no-conf Laden der aria2.conf-Datei unterbinden."
  844. #: src/usage_text.h:391
  845. msgid ""
  846. " --conf-path=PATH Change the configuration file path to PATH."
  847. msgstr ""
  848. " --conf-path=VERZEICHNIS Ändern des Verzeichnisses für die "
  849. "Konfigurations-\n"
  850. " datei auf VERZEICHNIS."
  851. #: src/usage_text.h:393
  852. msgid ""
  853. " --stop=SEC Stop application after SEC seconds has "
  854. "passed.\n"
  855. " If 0 is given, this feature is disabled."
  856. msgstr ""
  857. " --stop=SEC Anwendung nach Ablauf von SEC Sekunden "
  858. "anhalten.\n"
  859. " Bei 0 ist diese Funktion ausgeschaltet."
  860. #: src/usage_text.h:396
  861. msgid ""
  862. " --header=HEADER Append HEADER to HTTP request header. You can "
  863. "use\n"
  864. " this option repeatedly to specify more than "
  865. "one\n"
  866. " header:\n"
  867. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  868. "9J1\"\n"
  869. " http://host/file"
  870. msgstr ""
  871. #: src/usage_text.h:402
  872. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  873. msgstr ""
  874. " -q, --quiet[=true|false] aria2 lautlos schalten (keine "
  875. "Konsolenausgaben)."
  876. #: src/usage_text.h:404
  877. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  878. msgstr " --async-dns[=true|false] Asynchrone DNS ermöglichen."
  879. #: src/usage_text.h:406
  880. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  881. msgstr ""
  882. " --ftp-reuse-connection[=true|false] Wiederverwenden bereits aufgebauter\n"
  883. " FTP-Verbindungen."
  884. #: src/usage_text.h:408
  885. msgid ""
  886. " --summary-interval=SEC Set interval to output download progress "
  887. "summary.\n"
  888. " Setting 0 suppresses the output."
  889. msgstr ""
  890. " --summary-interval=SEC Festlegen des Intervalls, in dem die Ausgabe "
  891. "des\n"
  892. " Download-Fortschritts aufgefrischt wird.\n"
  893. " Mit 0 wird die Ausgabe unterbunden."
  894. #: src/usage_text.h:411
  895. msgid " --log-level=LEVEL Set log level to output."
  896. msgstr " --log-level=LEVEL Auszugebende Mitschnittfülle festlegen."
  897. #: src/usage_text.h:413
  898. msgid ""
  899. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  900. "the\n"
  901. " remote HTTP/FTP server and if it is "
  902. "available,\n"
  903. " apply it to the local file."
  904. msgstr ""
  905. #: src/usage_text.h:417
  906. msgid ""
  907. " --connect-timeout=SEC Set the connect timeout in seconds to "
  908. "establish\n"
  909. " connection to HTTP/FTP/proxy server. After "
  910. "the\n"
  911. " connection is established, this option makes "
  912. "no\n"
  913. " effect and --timeout option is used instead."
  914. msgstr ""
  915. #: src/usage_text.h:422
  916. msgid ""
  917. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  918. "the\n"
  919. " remote HTTP/FTP servers NUM times without "
  920. "getting\n"
  921. " a single byte, then force the download to "
  922. "fail.\n"
  923. " Specify 0 to disable this option.\n"
  924. " This options is effective only when using\n"
  925. " HTTP/FTP servers."
  926. msgstr ""
  927. #: src/usage_text.h:429
  928. msgid ""
  929. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  930. " If 'inorder' is given, URI is tried in the "
  931. "order\n"
  932. " appeared in the URI list.\n"
  933. " If 'feedback' is given, aria2 uses download "
  934. "speed\n"
  935. " observed in the previous downloads and choose\n"
  936. " fastest server in the URI list. This also\n"
  937. " effectively skips dead mirrors. The observed\n"
  938. " download speed is a part of performance "
  939. "profile\n"
  940. " of servers mentioned in --server-stat-of and\n"
  941. " --server-stat-if options.\n"
  942. " If 'adaptive' is given, selects one of the "
  943. "best\n"
  944. " mirrors for the first and reserved "
  945. "connections.\n"
  946. " For supplementary ones, it returns mirrors "
  947. "which\n"
  948. " has not been tested yet, and if each of them "
  949. "has\n"
  950. " already been tested, returns mirrors which has "
  951. "to\n"
  952. " be tested again. Otherwise, it doesn't select\n"
  953. " anymore mirrors. Like 'feedback', it uses a\n"
  954. " performance profile of servers."
  955. msgstr ""
  956. #: src/usage_text.h:448
  957. msgid ""
  958. " --server-stat-of=FILE Specify the filename to which performance "
  959. "profile\n"
  960. " of the servers is saved. You can load saved "
  961. "data\n"
  962. " using --server-stat-if option."
  963. msgstr ""
  964. #: src/usage_text.h:452
  965. msgid ""
  966. " --server-stat-if=FILE Specify the filename to load performance "
  967. "profile\n"
  968. " of the servers. The loaded data will be used "
  969. "in\n"
  970. " some URI selector such as 'feedback'.\n"
  971. " See also --uri-selector option"
  972. msgstr ""
  973. #: src/usage_text.h:457
  974. msgid ""
  975. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  976. " performance profile of the servers since the "
  977. "last\n"
  978. " contact to them."
  979. msgstr ""
  980. #: src/usage_text.h:461
  981. msgid ""
  982. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  983. "seconds.\n"
  984. " If 0 is given, a control file is not saved "
  985. "during\n"
  986. " download. aria2 saves a control file when it "
  987. "stops\n"
  988. " regardless of the value."
  989. msgstr ""
  990. #: src/usage_text.h:466
  991. msgid ""
  992. " --certificate=FILE Use the client certificate in FILE.\n"
  993. " The certificate must be in PEM format.\n"
  994. " You may use --private-key option to specify "
  995. "the\n"
  996. " private key."
  997. msgstr ""
  998. #: src/usage_text.h:471
  999. msgid ""
  1000. " --private-key=FILE Use the private key in FILE.\n"
  1001. " The private key must be decrypted and in PEM\n"
  1002. " format. See also --certificate option."
  1003. msgstr ""
  1004. #: src/usage_text.h:475
  1005. msgid ""
  1006. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  1007. "verify\n"
  1008. " the peers. The certificate file must be in "
  1009. "PEM\n"
  1010. " format and can contain multiple CA "
  1011. "certificates.\n"
  1012. " Use --check-certificate option to enable\n"
  1013. " verification."
  1014. msgstr ""
  1015. #: src/usage_text.h:481
  1016. msgid ""
  1017. " --check-certificate[=true|false] Verify the peer using certificates "
  1018. "specified\n"
  1019. " in --ca-certificate option."
  1020. msgstr ""
  1021. #: src/usage_text.h:484
  1022. msgid ""
  1023. " --no-proxy=DOMAINS Specify comma separated hostnames, domains or\n"
  1024. " network address with or without CIDR block "
  1025. "where\n"
  1026. " proxy should not be used."
  1027. msgstr ""
  1028. #: src/usage_text.h:488
  1029. msgid ""
  1030. " --use-head[=true|false] Use HEAD method for the first request to the "
  1031. "HTTP\n"
  1032. " server."
  1033. msgstr ""
  1034. #: src/usage_text.h:491
  1035. msgid " --event-poll=POLL Specify the method for polling events."
  1036. msgstr ""
  1037. #: src/usage_text.h:493
  1038. msgid ""
  1039. " --xml-rpc-listen-port=PORT Specify a port number for XML-RPC server to "
  1040. "listen\n"
  1041. " to."
  1042. msgstr ""
  1043. #: src/usage_text.h:496
  1044. msgid ""
  1045. " --enable-xml-rpc[=true|false] Enable XML-RPC server.\n"
  1046. " It is strongly recommended to set username "
  1047. "and\n"
  1048. " password using --xml-rpc-user and --xml-rpc-"
  1049. "passwd\n"
  1050. " option. See also --xml-rpc-listen-port option."
  1051. msgstr ""
  1052. #: src/usage_text.h:501
  1053. msgid ""
  1054. " --xml-rpc-max-request-size=SIZE Set max size of XML-RPC request. If aria2\n"
  1055. " detects the request is more than SIZE bytes, "
  1056. "it\n"
  1057. " drops connection."
  1058. msgstr ""
  1059. #: src/usage_text.h:505
  1060. msgid " --xml-rpc-user=USER Set XML-RPC user."
  1061. msgstr ""
  1062. #: src/usage_text.h:507
  1063. msgid " --xml-rpc-passwd=PASSWD Set XML-RPC password."
  1064. msgstr ""
  1065. #: src/usage_text.h:509
  1066. msgid ""
  1067. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  1068. "a\n"
  1069. " BitTorrent tracker. Although this function is\n"
  1070. " named 'external', it can accept any kind of "
  1071. "IP\n"
  1072. " addresses."
  1073. msgstr ""
  1074. #: src/usage_text.h:514
  1075. msgid ""
  1076. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  1077. "it\n"
  1078. " is requested by the server. If false is set, "
  1079. "then\n"
  1080. " authorization header is always sent to the "
  1081. "server.\n"
  1082. " There is an exception: if username and "
  1083. "password\n"
  1084. " are embedded in URI, authorization header is\n"
  1085. " always sent to the server regardless of this\n"
  1086. " option."
  1087. msgstr ""
  1088. #: src/usage_text.h:522
  1089. msgid ""
  1090. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  1091. "can\n"
  1092. " find the file index using the --show-files "
  1093. "option.\n"
  1094. " PATH is a relative path to the path specified "
  1095. "in\n"
  1096. " --dir option. You can use this option "
  1097. "multiple\n"
  1098. " times."
  1099. msgstr ""
  1100. #: src/usage_text.h:528
  1101. msgid ""
  1102. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  1103. "the\n"
  1104. " remote file is available and doesn't download\n"
  1105. " data. This option has effect on HTTP/FTP "
  1106. "download.\n"
  1107. " BitTorrent downloads are canceled if true is\n"
  1108. " specified."
  1109. msgstr ""
  1110. #: src/usage_text.h:534
  1111. msgid ""
  1112. " --bt-tracker-interval=SEC Set the interval in seconds between tracker\n"
  1113. " requests. This completely overrides interval "
  1114. "value\n"
  1115. " and aria2 just uses this value and ignores "
  1116. "the\n"
  1117. " min interval and interval value in the "
  1118. "response of\n"
  1119. " tracker. If 0 is set, aria2 determines "
  1120. "interval\n"
  1121. " based on the response of tracker and the "
  1122. "download\n"
  1123. " progress."
  1124. msgstr ""
  1125. #: src/usage_text.h:542
  1126. #, fuzzy
  1127. msgid ""
  1128. " --on-download-complete=COMMAND Set the command to be executed after "
  1129. "download\n"
  1130. " completed.\n"
  1131. " See --on-download-start option for the\n"
  1132. " requirement of COMMAND.\n"
  1133. " See also --on-download-stop option."
  1134. msgstr ""
  1135. " --max-overall-download-limit=GESCHWINDIGKEIT Setze die maximale "
  1136. "Gesamtdownloadgeschwindigkeit in Bytes/s.\n"
  1137. " 0 bedeutet unbegrenzt.\n"
  1138. " Sie können K oder M (1K = 1024, 1M = 1024K) "
  1139. "anhängen.\n"
  1140. " Verwenden Sie --max-download-limit , um die "
  1141. "Downloadgeschwindigkeit\n"
  1142. " pro einzelnem Download zu begrenzen."
  1143. #: src/usage_text.h:548
  1144. msgid ""
  1145. " --on-download-start=COMMAND Set the command to be executed after download\n"
  1146. " got started. aria2 passes 3 arguments to "
  1147. "COMMAND:\n"
  1148. " GID, the nubmer of files and file path. See "
  1149. "Event\n"
  1150. " Hook in man page for more details."
  1151. msgstr ""
  1152. #: src/usage_text.h:553
  1153. msgid ""
  1154. " --on-download-pause=COMMAND Set the command to be executed after download\n"
  1155. " was paused.\n"
  1156. " See --on-download-start option for the\n"
  1157. " requirement of COMMAND."
  1158. msgstr ""
  1159. #: src/usage_text.h:558
  1160. #, fuzzy
  1161. msgid ""
  1162. " --on-download-error=COMMAND Set the command to be executed after download\n"
  1163. " aborted due to error.\n"
  1164. " See --on-download-start option for the\n"
  1165. " requirement of COMMAND.\n"
  1166. " See also --on-download-stop option."
  1167. msgstr ""
  1168. " --max-overall-download-limit=GESCHWINDIGKEIT Setze die maximale "
  1169. "Gesamtdownloadgeschwindigkeit in Bytes/s.\n"
  1170. " 0 bedeutet unbegrenzt.\n"
  1171. " Sie können K oder M (1K = 1024, 1M = 1024K) "
  1172. "anhängen.\n"
  1173. " Verwenden Sie --max-download-limit , um die "
  1174. "Downloadgeschwindigkeit\n"
  1175. " pro einzelnem Download zu begrenzen."
  1176. #: src/usage_text.h:564
  1177. #, fuzzy
  1178. msgid ""
  1179. " --on-download-stop=COMMAND Set the command to be executed after download\n"
  1180. " stopped. You can override the command to be\n"
  1181. " executed for particular download result using\n"
  1182. " --on-download-complete and --on-download-"
  1183. "error. If\n"
  1184. " they are specified, command specified in this\n"
  1185. " option is not executed.\n"
  1186. " See --on-download-start option for the\n"
  1187. " requirement of COMMAND."
  1188. msgstr ""
  1189. " --follow-torrent=true|false|mem Für Angabe von \"true\" oder \"mem\" wird "
  1190. "nach\n"
  1191. " dem Download einer .torrent-Datei oder einer "
  1192. "Da-\n"
  1193. " tei, deren Inhaltstyp \"application/x-"
  1194. "bittorrent\"\n"
  1195. " ist, diese Datei als Torrent-Steuerdatei "
  1196. "durch-\n"
  1197. " sucht und alle gefundenen Download-Positionen\n"
  1198. " heruntergeladen.\n"
  1199. " Für \"mem\" wird die .torrent-Datei nicht auf\n"
  1200. " der Festplatte gespeichert, sondern nur im \n"
  1201. " Speicher gehalten.\n"
  1202. " Bei \"false\" wird die .torrent-Datei nicht\n"
  1203. " durchsucht."
  1204. #: src/usage_text.h:573
  1205. msgid ""
  1206. " --bt-stop-timeout=SEC Stop BitTorrent download if download speed is "
  1207. "0 in\n"
  1208. " consecutive SEC seconds. If 0 is given, this\n"
  1209. " feature is disabled."
  1210. msgstr ""
  1211. #: src/usage_text.h:577
  1212. msgid ""
  1213. " --xml-rpc-listen-all[=true|false] Listen incoming XML-RPC requests on all\n"
  1214. " network interfaces. If false is given, listen "
  1215. "only\n"
  1216. " on local loopback interface."
  1217. msgstr ""
  1218. #: src/usage_text.h:581
  1219. msgid ""
  1220. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] Try to download first and "
  1221. "last\n"
  1222. " pieces of each file first. This is useful for\n"
  1223. " previewing files. The argument can contain 2\n"
  1224. " keywords:head and tail. To include both "
  1225. "keywords,\n"
  1226. " they must be separated by comma. These "
  1227. "keywords\n"
  1228. " can take one parameter, SIZE. For example, if\n"
  1229. " head=SIZE is specified, pieces in the range "
  1230. "of\n"
  1231. " first SIZE bytes of each file get higher "
  1232. "priority.\n"
  1233. " tail=SIZE means the range of last SIZE bytes "
  1234. "of\n"
  1235. " each file. SIZE can include K or M(1K = 1024, "
  1236. "1M =\n"
  1237. " 1024K). If SIZE is omitted, SIZE=1M is used."
  1238. msgstr ""
  1239. #: src/usage_text.h:593
  1240. msgid ""
  1241. " --interface=INTERFACE Bind sockets to given interface. You can "
  1242. "specify\n"
  1243. " interface name, IP address and hostname."
  1244. msgstr ""
  1245. #: src/usage_text.h:596
  1246. msgid " --disable-ipv6[=true|false] Disable IPv6."
  1247. msgstr ""
  1248. #: src/usage_text.h:598
  1249. msgid ""
  1250. " --bt-save-metadata[=true|false] Save metadata as .torrent file. This option "
  1251. "has\n"
  1252. " effect only when BitTorrent Magnet URI is "
  1253. "used.\n"
  1254. " The filename is hex encoded info hash with "
  1255. "suffix\n"
  1256. " .torrent. The directory to be saved is the "
  1257. "same\n"
  1258. " directory where download file is saved. If "
  1259. "the\n"
  1260. " same file already exists, metadata is not "
  1261. "saved.\n"
  1262. " See also --bt-metadata-only option."
  1263. msgstr ""
  1264. #: src/usage_text.h:606
  1265. msgid ""
  1266. " --http-no-cache[=true|false] Send Cache-Control: no-cache and Pragma: no-"
  1267. "cache\n"
  1268. " header to avoid cached content. If false is\n"
  1269. " given, these headers are not sent and you can "
  1270. "add\n"
  1271. " Cache-Control header with a directive you "
  1272. "like\n"
  1273. " using --header option."
  1274. msgstr ""
  1275. #: src/usage_text.h:612
  1276. msgid ""
  1277. " --bt-metadata-only[=true|false] Download metadata only. The file(s) "
  1278. "described\n"
  1279. " in metadata will not be downloaded. This "
  1280. "option\n"
  1281. " has effect only when BitTorrent Magnet URI is\n"
  1282. " used. See also --bt-save-metadata option."
  1283. msgstr ""
  1284. #: src/usage_text.h:617
  1285. msgid ""
  1286. " --human-readable[=true|false] Print sizes and speed in human readable "
  1287. "format\n"
  1288. " (e.g., 1.2Ki, 3.4Mi) in the console readout."
  1289. msgstr ""
  1290. #: src/usage_text.h:620
  1291. msgid " --bt-enable-lpd[=true|false] Enable Local Peer Discovery."
  1292. msgstr ""
  1293. #: src/usage_text.h:622
  1294. msgid ""
  1295. " --bt-lpd-interface=INTERFACE Use given interface for Local Peer Discovery. "
  1296. "If\n"
  1297. " this option is not specified, the default\n"
  1298. " interface is chosen. You can specify "
  1299. "interface\n"
  1300. " name and IP address."
  1301. msgstr ""
  1302. #: src/usage_text.h:627
  1303. msgid ""
  1304. " --reuse-uri[=true|false] Reuse already used URIs if no unused URIs are\n"
  1305. " left."
  1306. msgstr ""
  1307. #: src/usage_text.h:630
  1308. msgid " --all-proxy-user=USER Set user for --all-proxy option."
  1309. msgstr ""
  1310. " --all-proxy-user=BENUTZER Lege Benutzernamen für die --all-proxy Option\n"
  1311. " fest."
  1312. #: src/usage_text.h:632
  1313. msgid " --all-proxy-passwd=PASSWD Set password for --all-proxy option."
  1314. msgstr ""
  1315. " --all-proxy-passwd=PASSWORT Lege Passwort für die --all-proxy Option fest."
  1316. #: src/usage_text.h:634
  1317. msgid " --http-proxy-user=USER Set user for --http-proxy option."
  1318. msgstr ""
  1319. " --http-proxy-user=BENUTZER Lege Benutzernamen für die --http-proxy "
  1320. "Option\n"
  1321. " fest."
  1322. #: src/usage_text.h:636
  1323. msgid " --http-proxy-passwd=PASSWD Set password for --http-proxy option."
  1324. msgstr ""
  1325. " --http-proxy-passwd=PASSWORT Lege Passwort für die --http-proxy Option fest."
  1326. #: src/usage_text.h:638
  1327. msgid " --https-proxy-user=USER Set user for --https-proxy option."
  1328. msgstr ""
  1329. " --https-proxy-user=BENUTZER Lege Benutzernamen für die --https-proxy "
  1330. "Option\n"
  1331. " fest."
  1332. #: src/usage_text.h:640
  1333. msgid " --https-proxy-passwd=PASSWD Set password for --https-proxy option."
  1334. msgstr ""
  1335. " --https-proxy-passwd=PASSWORT Legt das Passwort für die --https-proxy\n"
  1336. " Option fest."
  1337. #: src/usage_text.h:642
  1338. msgid " --ftp-proxy-user=USER Set user for --ftp-proxy option."
  1339. msgstr ""
  1340. " --ftp-proxy-user=BENUTZER Legt den Benutzernamen für die --ftp-proxy\n"
  1341. " Option fest."
  1342. #: src/usage_text.h:644
  1343. msgid " --ftp-proxy-passwd=PASSWD Set password for --ftp-proxy option."
  1344. msgstr ""
  1345. " --ftp-proxy-passwd=PASSWORT Legt das Passwort für die --ftp-proxy\n"
  1346. " Option fest."
  1347. #: src/usage_text.h:646
  1348. msgid ""
  1349. " --remove-control-file[=true|false] Remove control file before download. "
  1350. "Using\n"
  1351. " with --allow-overwrite=true, download always\n"
  1352. " starts from scratch. This will be useful for\n"
  1353. " users behind proxy server which disables "
  1354. "resume."
  1355. msgstr ""
  1356. #: src/usage_text.h:651
  1357. msgid ""
  1358. " --always-resume[=true|false] Always resume download. If true is given, "
  1359. "aria2\n"
  1360. " always tries to resume download and if resume "
  1361. "is\n"
  1362. " not possible, aborts download. If false is "
  1363. "given,\n"
  1364. " when all given URIs do not support resume or\n"
  1365. " aria2 encounters N URIs which does not "
  1366. "support\n"
  1367. " resume (N is the value specified using\n"
  1368. " --max-resume-failure-tries option), aria2\n"
  1369. " downloads file from scratch.\n"
  1370. " See --max-resume-failure-tries option."
  1371. msgstr ""
  1372. #: src/usage_text.h:661
  1373. msgid ""
  1374. " --max-resume-failure-tries=N When used with --always-resume=false, aria2\n"
  1375. " downloads file from scratch when aria2 detects "
  1376. "N\n"
  1377. " number of URIs that does not support resume. "
  1378. "If N\n"
  1379. " is 0, aria2 downloads file from scratch when "
  1380. "all\n"
  1381. " given URIs do not support resume.\n"
  1382. " See --always-resume option."
  1383. msgstr ""
  1384. #: src/usage_text.h:668
  1385. msgid " --bt-tracker-timeout=SEC Set timeout in seconds."
  1386. msgstr ""
  1387. #: src/usage_text.h:670
  1388. msgid ""
  1389. " --bt-tracker-connect-timeout=SEC Set the connect timeout in seconds to\n"
  1390. " establish connection to tracker. After the\n"
  1391. " connection is established, this option makes "
  1392. "no\n"
  1393. " effect and --bt-tracker-timeout option is "
  1394. "used\n"
  1395. " instead."
  1396. msgstr ""
  1397. #: src/usage_text.h:676
  1398. msgid " --dht-message-timeout=SEC Set timeout in seconds."
  1399. msgstr ""
  1400. #: src/usage_text.h:678
  1401. msgid ""
  1402. " --http-accept-gzip[=true|false] Send 'Accept: deflate, gzip' request "
  1403. "header\n"
  1404. " and inflate response if remote server "
  1405. "responds\n"
  1406. " with 'Content-Encoding: gzip' or\n"
  1407. " 'Content-Encoding: deflate'."
  1408. msgstr ""
  1409. #: src/usage_text.h:683
  1410. msgid ""
  1411. " --save-session=FILE Save error/unfinished downloads to FILE on "
  1412. "exit.\n"
  1413. " You can pass this output file to aria2c with -"
  1414. "i\n"
  1415. " option on restart. Please note that downloads\n"
  1416. " added by aria2.addTorrent and aria2."
  1417. "addMetalink\n"
  1418. " XML-RPC method are not saved."
  1419. msgstr ""
  1420. #: src/usage_text.h:689
  1421. msgid ""
  1422. " -x, --max-connection-per-server=NUM The maximum number of connections to "
  1423. "one\n"
  1424. " server for each download."
  1425. msgstr ""
  1426. #: src/usage_text.h:692
  1427. msgid ""
  1428. " -k, --min-split-size=SIZE aria2 does not split less than 2*SIZE byte "
  1429. "range.\n"
  1430. " For example, let's consider downloading 20MiB\n"
  1431. " file. If SIZE is 10M, aria2 can split file "
  1432. "into 2\n"
  1433. " range [0-10MiB) and [10MiB-20MiB) and download "
  1434. "it\n"
  1435. " using 2 sources(if --split >= 2, of course).\n"
  1436. " If SIZE is 15M, since 2*15M > 20MiB, aria2 "
  1437. "does\n"
  1438. " not split file and download it using 1 "
  1439. "source.\n"
  1440. " You can append K or M(1K = 1024, 1M = 1024K)."
  1441. msgstr ""
  1442. #: src/usage_text.h:701
  1443. #, fuzzy
  1444. msgid ""
  1445. " --conditional-get[=true|false] Download file only when the local file is "
  1446. "older\n"
  1447. " than remote file. Currently, this function "
  1448. "has\n"
  1449. " many limitations. See man page for details."
  1450. msgstr ""
  1451. " --enable-direct-io[=true|false] Verwendet directI/O, was die CPU-Last\n"
  1452. " während der Vorbelegung von "
  1453. "Dateispeicherplatz\n"
  1454. " verringert. Abschaltbar, falls dabei Fehler\n"
  1455. " auftreten."
  1456. #: src/usage_text.h:705
  1457. msgid ""
  1458. " --on-bt-download-complete=COMMAND For BitTorrent, a command specified in\n"
  1459. " --on-download-complete is called after "
  1460. "download\n"
  1461. " completed and seeding is over. On the other "
  1462. "hand,\n"
  1463. " this option sets the command to be executed "
  1464. "after\n"
  1465. " download completed but before seeding.\n"
  1466. " See --on-download-start option for the\n"
  1467. " requirement of COMMAND."
  1468. msgstr ""
  1469. #: src/usage_text.h:713
  1470. #, fuzzy
  1471. msgid ""
  1472. " --enable-async-dns6[=true|false] Enable IPv6 name resolution in "
  1473. "asynchronous\n"
  1474. " DNS resolver. This option will be ignored "
  1475. "when\n"
  1476. " --async-dns=false."
  1477. msgstr ""
  1478. " --enable-direct-io[=true|false] Verwendet directI/O, was die CPU-Last\n"
  1479. " während der Vorbelegung von "
  1480. "Dateispeicherplatz\n"
  1481. " verringert. Abschaltbar, falls dabei Fehler\n"
  1482. " auftreten."
  1483. #: src/usage_text.h:717
  1484. #, fuzzy
  1485. msgid ""
  1486. " --enable-dht6[=true|false] Enable IPv6 DHT functionality.\n"
  1487. " Use --dht-listen-port option to specify port\n"
  1488. " number to listen on. See also --dht-listen-"
  1489. "addr6\n"
  1490. " option."
  1491. msgstr ""
  1492. " --bt-require-crypto=true|false Falls \"true\" wird Aria2 keine "
  1493. "Verbindungen\n"
  1494. " mit herkömmlichem BitTorrent-Handshake auf-\n"
  1495. " bauen oder akzeptieren. Damit wird stets der\n"
  1496. " Verschleierungs-Handshake (\"Obfuscation\") "
  1497. "ver-\n"
  1498. " wendet."
  1499. #: src/usage_text.h:722
  1500. msgid ""
  1501. " --dht-listen-addr6=ADDR Specify address to bind socket for IPv6 DHT. \n"
  1502. " It should be a global unicast IPv6 address of "
  1503. "the\n"
  1504. " host."
  1505. msgstr ""
  1506. #: src/usage_text.h:726
  1507. #, fuzzy
  1508. msgid ""
  1509. " --dht-entry-point6=HOST:PORT Set host and port as an entry point to IPv6 "
  1510. "DHT\n"
  1511. " network."
  1512. msgstr ""
  1513. " --dht-entry-point=HOST:PORT Festlegung von Wirt und Port, über den das "
  1514. "DHT-\n"
  1515. " Netzwerk betreten wird."
  1516. #: src/usage_text.h:729
  1517. #, fuzzy
  1518. msgid ""
  1519. " --dht-file-path6=PATH Change the IPv6 DHT routing table file to PATH."
  1520. msgstr ""
  1521. " --conf-path=VERZEICHNIS Ändern des Verzeichnisses für die "
  1522. "Konfigurations-\n"
  1523. " datei auf VERZEICHNIS."
  1524. #: src/usage_text.h:731
  1525. msgid ""
  1526. " --bt-tracker=URI[,...] Comma separated list of additional BitTorrent\n"
  1527. " tracker's announce URI. These URIs are not\n"
  1528. " affected by --bt-exclude-tracker option "
  1529. "because\n"
  1530. " they are added after URIs in --bt-exclude-"
  1531. "tracker\n"
  1532. " option are removed."
  1533. msgstr ""
  1534. #: src/usage_text.h:737
  1535. msgid ""
  1536. " --bt-exclude-tracker=URI[,...] Comma separated list of BitTorrent "
  1537. "tracker's\n"
  1538. " announce URI to remove. You can use special "
  1539. "value\n"
  1540. " '*' which matches all URIs, thus removes all\n"
  1541. " announce URIs. When specifying '*' in shell\n"
  1542. " command-line, don't forget to escape or quote "
  1543. "it.\n"
  1544. " See also --bt-tracker option."
  1545. msgstr ""
  1546. #: src/usage_text.h:744
  1547. msgid ""
  1548. " --max-download-result=NUM Set maximum number of download result kept in\n"
  1549. " memory. The download results are completed/"
  1550. "error/\n"
  1551. " removed downloads. The download results are "
  1552. "stored\n"
  1553. " in FIFO queue and it can store at most NUM\n"
  1554. " download results. When queue is full and new\n"
  1555. " download result is created, oldest download "
  1556. "result\n"
  1557. " is removed from the front of the queue and new "
  1558. "one\n"
  1559. " is pushed to the back. Setting big number in "
  1560. "this\n"
  1561. " option may result high memory consumption "
  1562. "after\n"
  1563. " thousands of downloads. Specifying 0 means no\n"
  1564. " download result is kept."
  1565. msgstr ""
  1566. #: src/version_usage.cc:57
  1567. msgid " version "
  1568. msgstr " Version "
  1569. #: src/version_usage.cc:80
  1570. #, c-format
  1571. msgid "Report bugs to %s"
  1572. msgstr "Fehler an %s melden"
  1573. #: src/version_usage.cc:85
  1574. msgid ""
  1575. "Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | METALINK_FILE]..."
  1576. msgstr ""
  1577. "Aufruf: aria2c [OPTIONEN] [URI | MAGNET | TORRENT_DATEI | METALINK_DATEI]..."
  1578. #: src/version_usage.cc:92
  1579. msgid "Printing all options."
  1580. msgstr "Ausgabe aller Optionen."
  1581. #: src/version_usage.cc:94
  1582. #, c-format
  1583. msgid "Printing options tagged with '%s'."
  1584. msgstr "Ausgabe von Optionen, die zum Stichwort '%s' passen."
  1585. #: src/version_usage.cc:98
  1586. #, c-format
  1587. msgid "See -h option to know other command-line options(%s)."
  1588. msgstr "Siehe Option -h für weitere Kommandozeilen-Optionen (%s)."
  1589. #: src/version_usage.cc:103 src/version_usage.cc:115
  1590. msgid "Options:"
  1591. msgstr "Optionen:"
  1592. #: src/version_usage.cc:112
  1593. #, c-format
  1594. msgid "Printing options whose name includes '%s'."
  1595. msgstr "Zeige Optionen deren Namen \"%s\" beinhalten"
  1596. #: src/version_usage.cc:121
  1597. #, c-format
  1598. msgid "No option matching with '%s'."
  1599. msgstr "Keine Option mit '%s'."
  1600. #: src/version_usage.cc:129
  1601. msgid ""
  1602. " You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z option, "
  1603. "all\n"
  1604. " URIs must point to the same file or downloading will fail."
  1605. msgstr ""
  1606. #: src/version_usage.cc:131
  1607. msgid ""
  1608. " You can also specify arbitrary number of BitTorrent Magnet URIs, torrent/\n"
  1609. " metalink files stored in a local drive. Please note that they are always\n"
  1610. " treated as a separate download."
  1611. msgstr ""
  1612. #: src/version_usage.cc:136
  1613. msgid ""
  1614. " You can specify both torrent file with -T option and URIs. By doing this,\n"
  1615. " download a file from both torrent swarm and HTTP/FTP server at the same "
  1616. "time,\n"
  1617. " while the data from HTTP/FTP are uploaded to the torrent swarm. For single "
  1618. "file\n"
  1619. " torrents, URI can be a complete URI pointing to the resource or if URI "
  1620. "ends\n"
  1621. " with '/', 'name' in torrent file is added. For multi-file torrents, 'name' "
  1622. "and\n"
  1623. " 'path' in torrent are added to form a URI for each file."
  1624. msgstr ""
  1625. #: src/version_usage.cc:143
  1626. msgid ""
  1627. " Make sure that URI is quoted with single(') or double(\") quotation if it\n"
  1628. " contains \"&\" or any characters that have special meaning in shell."
  1629. msgstr ""
  1630. #: src/version_usage.cc:153
  1631. msgid "Refer to man page for more information."
  1632. msgstr "Für mehr Informationen, sehen Sie bitte in der man page nach."
  1633. #: src/message.h:57
  1634. #, c-format
  1635. msgid "GID#%s - Download has already completed: %s"
  1636. msgstr ""
  1637. #: src/message.h:106
  1638. #, c-format
  1639. msgid "Unrecognized URI or unsupported protocol: %s"
  1640. msgstr "URL nicht erkannt oder nicht unterstütztes Protokoll: %s"
  1641. #: src/message.h:107
  1642. #, c-format
  1643. msgid "Tracker returned warning message: %s"
  1644. msgstr "Vom Tracker übergebene Warn-Nachricht: %s"
  1645. #: src/message.h:108
  1646. #, c-format
  1647. msgid "The segment file %s exists."
  1648. msgstr "Die Segmentdatei %s ist bereits vorhanden."
  1649. #: src/message.h:109
  1650. #, c-format
  1651. msgid "The segment file %s does not exist."
  1652. msgstr "Die Segmentdatei %s ist nicht vorhanden."
  1653. #: src/message.h:110
  1654. #, c-format
  1655. msgid "Saving the segment file %s"
  1656. msgstr "Speichern der Segmentdatei %s"
  1657. #: src/message.h:111
  1658. msgid "The segment file was saved successfully."
  1659. msgstr "Die Segmentdatei wurde fehlerfrei gespeichert."
  1660. #: src/message.h:112
  1661. #, c-format
  1662. msgid "Loading the segment file %s."
  1663. msgstr "Laden der Segmentdatei %s."
  1664. #: src/message.h:113
  1665. msgid "The segment file was loaded successfully."
  1666. msgstr "Die Segmentdatei wurde fehlerfrei geladen."
  1667. #: src/message.h:114
  1668. msgid "No URI to download. Download aborted."
  1669. msgstr "Keine URI zum Herunterladen angegeben. Download abgebrochen."
  1670. #: src/message.h:115
  1671. #, c-format
  1672. msgid ""
  1673. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1674. "canceled in order to prevent your file from being truncated to 0. If you are "
  1675. "sure to download the file all over again, then delete it or add --allow-"
  1676. "overwrite=true option and restart aria2."
  1677. msgstr ""
  1678. "Die Datei %s existiert bereits, nicht jedoch eine Kontrolldatei (*.aria2). "
  1679. "Der Download wurde abgebrochen, um die Datei vor dem Überschreiben zu "
  1680. "schützen. Wenn Sie die Datei komplett neu herunterladen möchten, löschen Sie "
  1681. "sie oder benutzen Sie die --allow-overwrite=true Option und starten Sie "
  1682. "aria2 erneut."
  1683. #: src/message.h:116
  1684. #, c-format
  1685. msgid "Allocating file %s, %s bytes"
  1686. msgstr "Reserviere Datei %s, %s bytes"
  1687. #: src/message.h:117
  1688. msgid "File not found"
  1689. msgstr "Datei nicht gefunden"
  1690. #: src/message.h:118
  1691. msgid "Not a directory"
  1692. msgstr "Ist kein Verzeichnis"
  1693. #: src/message.h:119
  1694. #, c-format
  1695. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1696. msgstr "Ungültige Prüfsumme. checksumLength=%d, numChecksum=%d"
  1697. #: src/message.h:120
  1698. #, c-format
  1699. msgid "Writing file %s"
  1700. msgstr "Schreibe Datei %s"
  1701. #: src/message.h:121
  1702. msgid "No peer list received."
  1703. msgstr "Keine Peer-Liste erhalten."
  1704. #: src/message.h:122
  1705. #, c-format
  1706. msgid "Adding peer %s:%d"
  1707. msgstr "Füge Peer %s:%d hinzu"
  1708. #: src/message.h:123
  1709. #, c-format
  1710. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1711. msgstr "Lösche Teil index=%d, fillRate(%%)=%d<=%d"
  1712. #: src/message.h:124
  1713. msgid "Download of selected files was complete."
  1714. msgstr "Download der ausgewählten Dateien abgeschlossen"
  1715. #: src/message.h:125
  1716. msgid "The download was complete."
  1717. msgstr "Der Download wurde fertiggestellt."
  1718. #: src/message.h:126
  1719. #, fuzzy, c-format
  1720. msgid "Removed %lu have entries."
  1721. msgstr "Entfernte %d Einträge."
  1722. #: src/message.h:127
  1723. #, c-format
  1724. msgid "Validating file %s"
  1725. msgstr "Prüfe Datei %s"
  1726. #: src/message.h:128
  1727. #, fuzzy, c-format
  1728. msgid "%ld seconds to allocate %s byte(s)"
  1729. msgstr "%d Sekunden, um %s Byte(s) zu reservieren"
  1730. #: src/message.h:131
  1731. #, c-format
  1732. msgid "Metalink: Queueing %s for download."
  1733. msgstr "Metalink: Füge %s zur Downloadwarteschlange hinzu."
  1734. #: src/message.h:132
  1735. #, c-format
  1736. msgid "Download complete: %s"
  1737. msgstr "Download fertig: %s"
  1738. #: src/message.h:133
  1739. msgid "Seeding is over."
  1740. msgstr "Verteilen beendet."
  1741. #: src/message.h:134
  1742. msgid "No chunk to verify."
  1743. msgstr "Kein Chunk zum überprüfen."
  1744. #: src/message.h:135
  1745. #, c-format
  1746. msgid "Good chunk checksum. hash=%s"
  1747. msgstr "Prüfsumme ok. hash=%s"
  1748. #: src/message.h:136
  1749. #, c-format
  1750. msgid "Failed to load cookies from %s"
  1751. msgstr "Konnte Cookies von %s nicht laden"
  1752. #: src/message.h:137
  1753. #, c-format
  1754. msgid ""
  1755. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1756. "support disabled."
  1757. msgstr ""
  1758. ".netrc Datei %s hat ungültige Zugriffsrechte. Sollte 600 sein. netrc Support "
  1759. "abgeschaltet."
  1760. #: src/message.h:138
  1761. msgid "Logging started."
  1762. msgstr "Loggen gestartet."
  1763. #: src/message.h:139
  1764. msgid "Specify at least one URL."
  1765. msgstr "Geben Sie zumindest eine URL an."
  1766. #: src/message.h:140
  1767. msgid "daemon failed."
  1768. msgstr "Daemon-Start nicht erfolgreich"
  1769. #: src/message.h:141
  1770. #, c-format
  1771. msgid "Verification finished successfully. file=%s"
  1772. msgstr "Verifizierung erfolgreich abgeschlossen. file=%s"
  1773. #: src/message.h:142
  1774. #, c-format
  1775. msgid "Checksum error detected. file=%s"
  1776. msgstr "Prüfsummen-Fehler entdeckt. file=%s"
  1777. #: src/message.h:143
  1778. #, c-format
  1779. msgid "Incomplete range specified. %s"
  1780. msgstr "Unvollständiger Bereich angegeben. %s"
  1781. #: src/message.h:144
  1782. #, c-format
  1783. msgid "Failed to convert string into value: %s"
  1784. msgstr "Fehler beim Versuch Zeichenkette in Wert zu konvertieren: %s"
  1785. #: src/message.h:145
  1786. msgid "Resource not found"
  1787. msgstr "Ressource nicht gefunden"
  1788. #: src/message.h:146
  1789. #, c-format
  1790. msgid "File already exists. Renamed to %s."
  1791. msgstr "Datei existiert bereits. Umbenannt zu %s."
  1792. #: src/message.h:147
  1793. msgid "Cannot parse metalink XML file. XML may be malformed."
  1794. msgstr ""
  1795. "Konnte Metalink-XML-Datei nicht verarbeiten. Syntax könnte falsch sein."
  1796. #: src/message.h:148
  1797. #, fuzzy, c-format
  1798. msgid "Too small payload size for %s, size=%lu."
  1799. msgstr "Zu geringe Nutzgröße für %s, Größe=%d."
  1800. #: src/message.h:149
  1801. #, c-format
  1802. msgid ""
  1803. "Removed the defunct control file %s because the download file %s doesn't "
  1804. "exist."
  1805. msgstr ""
  1806. "Die veraltete Steuerdatei %s wurde entfernt, da die Download-Datei %s nicht "
  1807. "existiert."
  1808. #: src/message.h:150
  1809. #, c-format
  1810. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1811. msgstr "Das Verteilverhältnis betrug %.1f, hoch-/heruntergeladen=%sB/%sB"
  1812. #: src/message.h:151
  1813. #, c-format
  1814. msgid "Missing %s in torrent metainfo."
  1815. msgstr "Fehlendes %s in der Torrent-Metainfo."
  1816. #: src/message.h:152
  1817. msgid "Tracker returned null data."
  1818. msgstr "Der Tracker gab keine Daten zurück."
  1819. #: src/message.h:153
  1820. msgid "Windows socket library initialization failed"
  1821. msgstr "Initialisierung der Windows-Socket-Bibliothek schlug fehl."
  1822. #: src/message.h:154
  1823. #, fuzzy, c-format
  1824. msgid "%ld second(s) has passed. Stopping application."
  1825. msgstr "%d Sekunden sind verstrichen. Anwendung wird gestoppt."
  1826. #: src/message.h:155
  1827. #, c-format
  1828. msgid ""
  1829. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1830. msgstr ""
  1831. "Signatur unter %s gespeichert. Zu beachten: Aria2 überprüft Signaturen nicht."
  1832. #: src/message.h:157
  1833. #, c-format
  1834. msgid "Saving signature as %s failed. Maybe file already exists."
  1835. msgstr ""
  1836. "Speichern der Signatur unter %s fehlgeschlagen. Möglicherweise existiert\n"
  1837. "die Datei bereits."
  1838. #: src/message.h:160
  1839. #, c-format
  1840. msgid "Failed to open ServerStat file %s for read."
  1841. msgstr "Öffnen der ServerStat-Datei %s gescheitert."
  1842. #: src/message.h:161
  1843. #, c-format
  1844. msgid "ServerStat file %s loaded successfully."
  1845. msgstr "ServerStat-Datei %s erfolgreich geladen."
  1846. #: src/message.h:162
  1847. #, c-format
  1848. msgid "Failed to read ServerStat from %s."
  1849. msgstr "Lesen der ServerStat-Datei von %s gescheitert."
  1850. #: src/message.h:165
  1851. #, c-format
  1852. msgid "Failed to open ServerStat file %s for write."
  1853. msgstr "Öffnen der ServerStat-Datei %s zum Schreiben gescheitert."
  1854. #: src/message.h:166
  1855. #, c-format
  1856. msgid "ServerStat file %s saved successfully."
  1857. msgstr "ServerStat-Datei %s erfolgreich gespeichert."
  1858. #: src/message.h:167
  1859. #, c-format
  1860. msgid "Failed to write ServerStat to %s."
  1861. msgstr "Schreiben von ServerStat nach %s fehlgeschlagen."
  1862. #: src/message.h:170
  1863. #, c-format
  1864. msgid "Failed to establish connection, cause: %s"
  1865. msgstr "Verbindungsherstellung fehlgeschlagen, Grund: %s"
  1866. #: src/message.h:171
  1867. #, c-format
  1868. msgid "Network problem has occurred. cause:%s"
  1869. msgstr "Netzwerkproblem aufgetreten: Ursache: %s"
  1870. #: src/message.h:173
  1871. #, c-format
  1872. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  1873. msgstr "Konnte vertraute CA-Zertifikate nicht von %s laden. Ursache: %s"
  1874. #: src/message.h:175
  1875. #, fuzzy, c-format
  1876. msgid ""
  1877. "Certificate verification failed. Cause: %s See --ca-certificate and --check-"
  1878. "certificate option."
  1879. msgstr ""
  1880. "Sie erhalten möglicherweise einen Zertifikatprüfungsfehler des HTTPS-"
  1881. "Servers. Siehe --ca-certificate und --check-certificate."
  1882. #: src/message.h:177
  1883. msgid "No certificate found."
  1884. msgstr "Kein Zertifikat gefunden."
  1885. #: src/message.h:178
  1886. msgid "Hostname not match."
  1887. msgstr ""
  1888. #: src/message.h:179
  1889. msgid "No files to download."
  1890. msgstr "Keine Dateien zum herunterladen."
  1891. #: src/message.h:181
  1892. msgid ""
  1893. "You may encounter the certificate verification error with HTTPS server. See "
  1894. "--ca-certificate and --check-certificate option."
  1895. msgstr ""
  1896. "Sie erhalten möglicherweise einen Zertifikatprüfungsfehler des HTTPS-"
  1897. "Servers. Siehe --ca-certificate und --check-certificate."
  1898. #: src/message.h:183
  1899. #, c-format
  1900. msgid "Printing the contents of file '%s'..."
  1901. msgstr "Ausgabe des Dateiinhalts von '%s'..."
  1902. #: src/message.h:184
  1903. msgid "This file is neither Torrent nor Metalink file. Skipping."
  1904. msgstr ""
  1905. "Diese Datei ist weder eine Torrent- noch eine Metalink-Datei. Überspringe."
  1906. #: src/message.h:189
  1907. #, c-format
  1908. msgid "Is '%s' a file?"
  1909. msgstr "Ist '%s' eine Datei?"
  1910. #: src/message.h:190
  1911. #, c-format
  1912. msgid "Failed to find given interface %s, cause: %s"
  1913. msgstr "Angegebene Schnittstelle %s konnte nicht gefunden werden. Ursache: %s"
  1914. #: src/message.h:192
  1915. #, c-format
  1916. msgid "Saved metadata as %s."
  1917. msgstr "Metadaten als %s gespeichert."
  1918. #: src/message.h:193
  1919. #, c-format
  1920. msgid "Saving metadata as %s failed. Maybe file already exists."
  1921. msgstr ""
  1922. "Speichern der Metadaten als %s misslungen. Möglicherweise existiert die "
  1923. "Datei bereits."
  1924. #: src/message.h:195
  1925. #, c-format
  1926. msgid "Detected directory traversal directive in %s"
  1927. msgstr ""
  1928. #: src/message.h:199
  1929. msgid "Timeout."
  1930. msgstr "Zeitüberschreitung."
  1931. #: src/message.h:200
  1932. msgid "Invalid chunk size."
  1933. msgstr "Ungültige Teilgröße."
  1934. #: src/message.h:201
  1935. #, c-format
  1936. msgid "Too large chunk. size=%d"
  1937. msgstr "Teilstück zu groß. Größe=%d"
  1938. #: src/message.h:202
  1939. msgid "Invalid header."
  1940. msgstr "Ungültige Header-Information."
  1941. #: src/message.h:203
  1942. msgid "Invalid response."
  1943. msgstr "Ungültige Antwort."
  1944. #: src/message.h:204
  1945. msgid "No header found."
  1946. msgstr "Keine Header-Information gefunden."
  1947. #: src/message.h:205
  1948. msgid "No status header."
  1949. msgstr "Keine Status-Information."
  1950. #: src/message.h:206
  1951. msgid "Proxy connection failed."
  1952. msgstr "Proxy-Verbindung fehlgeschlagen."
  1953. #: src/message.h:207
  1954. msgid "Connection failed."
  1955. msgstr "Verbindung fehlgeschlagen."
  1956. #: src/message.h:208
  1957. #, c-format
  1958. msgid ""
  1959. "The requested filename and the previously registered one are not same. "
  1960. "Expected:%s Actual:%s"
  1961. msgstr ""
  1962. "Der angeforderte Dateiname und der vorher registrierte stimmen nicht "
  1963. "überein. Erwartet:%s Tatsächlich:%s"
  1964. #: src/message.h:209
  1965. #, c-format
  1966. msgid "The response status is not successful. status=%d"
  1967. msgstr "Antwortstatus ist nicht in Ordnung. Status=%d"
  1968. #: src/message.h:210
  1969. #, c-format
  1970. msgid "Too large file size. size=%s"
  1971. msgstr "Dateigröße zu groß. Größe=%s"
  1972. #: src/message.h:211
  1973. #, c-format
  1974. msgid "Transfer encoding %s is not supported."
  1975. msgstr "Übertragungskodierung %s wird nicht unterstützt."
  1976. #: src/message.h:212
  1977. #, c-format
  1978. msgid "SSL initialization failed: %s"
  1979. msgstr "SSL-Initialisierung fehlgeschlagen: %s"
  1980. #: src/message.h:213
  1981. msgid "SSL I/O error"
  1982. msgstr "SSL I/O störung"
  1983. #: src/message.h:214
  1984. msgid "SSL protocol error"
  1985. msgstr "SSL Protokollfehler."
  1986. #: src/message.h:215
  1987. #, c-format
  1988. msgid "SSL unknown error %d"
  1989. msgstr "Unbekannter SSL Fehler %d"
  1990. #: src/message.h:216
  1991. #, c-format
  1992. msgid "SSL initialization failed: OpenSSL connect error %d"
  1993. msgstr "SSL-Initialisierung schlug fehl: OpenSSL-Verbindungsfehler %d"
  1994. #: src/message.h:217
  1995. #, c-format
  1996. msgid "Size mismatch Expected:%s Actual:%s"
  1997. msgstr "Größenunterschied. Erwartet:%s Tatsächlich:%s"
  1998. #: src/message.h:218
  1999. msgid "Authorization failed."
  2000. msgstr "Die Anmeldung ist fehlgeschlagen."
  2001. #: src/message.h:219
  2002. msgid "Got EOF from the server."
  2003. msgstr "Erhielt EOF vom Server."
  2004. #: src/message.h:220
  2005. msgid "Got EOF from peer."
  2006. msgstr "Erhielt EOF von Gegenstelle."
  2007. #: src/message.h:221
  2008. msgid "Malformed meta info."
  2009. msgstr "Fehlerhafte Meta-Information."
  2010. #: src/message.h:223
  2011. #, c-format
  2012. msgid "Failed to open the file %s, cause: %s"
  2013. msgstr "Konnte Datei %s nicht öffnen, Ursache: %s"
  2014. #: src/message.h:224
  2015. #, c-format
  2016. msgid "Failed to write into the file %s, cause: %s"
  2017. msgstr "Konnte nicht in Datei %s schreiben, Ursache: %s"
  2018. #: src/message.h:225
  2019. #, c-format
  2020. msgid "Failed to read from the file %s, cause: %s"
  2021. msgstr "Konnte nicht von Datei %s lesen, Ursache: %s"
  2022. #: src/message.h:226
  2023. msgid "Failed to read data from disk."
  2024. msgstr "Der Versuch Daten von der Festplatte zu lesen ist fehlgeschlagen."
  2025. #: src/message.h:227
  2026. #, c-format
  2027. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  2028. msgstr ""
  2029. "Konnte SHA1-Digest (eines Teils) der Datei %s nicht berechnen, Ursache: %s"
  2030. #: src/message.h:228
  2031. #, c-format
  2032. msgid "Failed to seek the file %s, cause: %s"
  2033. msgstr "Konnte nicht in Datei %s positionieren, Ursache: %s"
  2034. #: src/message.h:229
  2035. #, c-format
  2036. msgid "The offset is out of range, offset=%s"
  2037. msgstr ""
  2038. #: src/message.h:230
  2039. #, c-format
  2040. msgid "%s is not a directory."
  2041. msgstr "%s ist kein Verzeichnis."
  2042. #: src/message.h:231
  2043. #, c-format
  2044. msgid "Failed to make the directory %s, cause: %s"
  2045. msgstr "Konnte Verzeichnis %s nicht erstellen, Ursache: %s"
  2046. #: src/message.h:235
  2047. #, c-format
  2048. msgid "Failed to open a socket, cause: %s"
  2049. msgstr "Konnte Socket nicht öffnen, Ursache: %s"
  2050. #: src/message.h:236
  2051. #, c-format
  2052. msgid "Failed to set a socket option, cause: %s"
  2053. msgstr "Konnte eine Socket-Option nicht setzen, Ursache: %s"
  2054. #: src/message.h:237
  2055. #, c-format
  2056. msgid "Failed to set a socket as blocking, cause: %s"
  2057. msgstr "Socket kann nicht auf blockierend geändert werden, Ursache: %s"
  2058. #: src/message.h:238
  2059. #, c-format
  2060. msgid "Failed to set a socket as non-blocking, cause: %s"
  2061. msgstr "Socket kann nicht auf nicht-blockierend geändert werden, Ursache: %s"
  2062. #: src/message.h:239
  2063. #, c-format
  2064. msgid "Failed to bind a socket, cause: %s"
  2065. msgstr "Konnte Socket nicht binden, Ursache: %s"
  2066. #: src/message.h:240
  2067. #, c-format
  2068. msgid "Failed to listen to a socket, cause: %s"
  2069. msgstr "Konnte nicht auf Socket lauschen, Ursache: %s"
  2070. #: src/message.h:241
  2071. #, c-format
  2072. msgid "Failed to accept a peer connection, cause: %s"
  2073. msgstr "Konnte Peer-Verbindung nicht akzeptieren, Ursache: %s"
  2074. #: src/message.h:242
  2075. #, c-format
  2076. msgid "Failed to get the name of socket, cause: %s"
  2077. msgstr "Konnte Socketnamen nicht ermitteln, Ursache: %s"
  2078. #: src/message.h:243
  2079. #, c-format
  2080. msgid "Failed to get the name of connected peer, cause: %s"
  2081. msgstr "Konnte Namen der verbundenen Gegenstelle nicht ermitteln, Ursache: %s"
  2082. #: src/message.h:244
  2083. #, c-format
  2084. msgid "Failed to resolve the hostname %s, cause: %s"
  2085. msgstr "Konnte Rechnername %s nicht auflösen, Ursache: %s"
  2086. #: src/message.h:245
  2087. #, c-format
  2088. msgid "Failed to connect to the host %s, cause: %s"
  2089. msgstr "Konnte nicht zum Rechner %s verbinden, Ursache: %s"
  2090. #: src/message.h:246
  2091. #, c-format
  2092. msgid "Failed to check whether the socket is writable, cause: %s"
  2093. msgstr "Konnte nicht testen, ob der Socket beschreibbar ist, Ursache: %s"
  2094. #: src/message.h:247
  2095. #, c-format
  2096. msgid "Failed to check whether the socket is readable, cause: %s"
  2097. msgstr "Konnte nicht testen, ob der Socket lesbar ist, Ursache: %s"
  2098. #: src/message.h:248
  2099. #, c-format
  2100. msgid "Failed to send data, cause: %s"
  2101. msgstr "Konnte Daten nicht senden, Ursache: %s"
  2102. #: src/message.h:249
  2103. #, c-format
  2104. msgid "Failed to receive data, cause: %s"
  2105. msgstr "Konnte Daten nicht erhalten, Ursache: %s"
  2106. #: src/message.h:250
  2107. #, c-format
  2108. msgid "Failed to peek data, cause: %s"
  2109. msgstr "Datenermittelung fehlgeschlagen, Ursache: %s"
  2110. #: src/message.h:251
  2111. #, c-format
  2112. msgid "Unknown socket error %d (0x%x)"
  2113. msgstr "Unbekannter Socket Fehler %d (0x%x)"
  2114. #: src/message.h:252
  2115. #, c-format
  2116. msgid "File %s exists, but %s does not exist."
  2117. msgstr "Die Datei %s existiert, %s jedoch nicht."
  2118. #: src/message.h:254
  2119. #, fuzzy, c-format
  2120. msgid "Invalid payload size for %s, size=%lu. It should be %lu."
  2121. msgstr "Ungültige Payload Grösse %s, size=%d. Sollte %d sein."
  2122. #: src/message.h:255
  2123. #, c-format
  2124. msgid "Invalid ID=%d for %s. It should be %d."
  2125. msgstr "Ungültige ID=%d für %s. Sollte %d sein."
  2126. #: src/message.h:256
  2127. #, fuzzy, c-format
  2128. msgid ""
  2129. "Chunk checksum validation failed. checksumIndex=%lu, offset=%s, expectedHash="
  2130. "%s, actualHash=%s"
  2131. msgstr ""
  2132. "Chunk Prüfusummenvalidierung nicht bestanden. checksumIndex=%d, offset=%s, "
  2133. "expectedHash=%s, actualHash=%s"
  2134. #: src/message.h:257
  2135. msgid "Download aborted."
  2136. msgstr "Download abgebrochen."
  2137. #: src/message.h:258
  2138. #, c-format
  2139. msgid "File %s is being downloaded by other command."
  2140. msgstr "Datei %s wird von einem anderen Befehl heruntergeladen."
  2141. #: src/message.h:259
  2142. msgid "Insufficient checksums."
  2143. msgstr "Ungenügende Prüfsummen."
  2144. #: src/message.h:260
  2145. #, c-format
  2146. msgid "Tracker returned failure reason: %s"
  2147. msgstr "Der Tracker gab als Grund des Fehlschlags an: %s"
  2148. #: src/message.h:261
  2149. msgid "Flooding detected."
  2150. msgstr "Flooding entdeckt."
  2151. #: src/message.h:263
  2152. #, fuzzy, c-format
  2153. msgid ""
  2154. "Drop connection because no request/piece messages were exchanged in a "
  2155. "certain period(%ld seconds)."
  2156. msgstr ""
  2157. "Verbindung abgebrochen da während einer gewissen Zeit (%d Sekunden) keine "
  2158. "Anfragen/Teile übetragen wurden."
  2159. #: src/message.h:265
  2160. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  2161. msgstr ""
  2162. "Der infoHash in der torrent Datei stimmt nicht mit dem in der .aria2 Datei "
  2163. "überein."
  2164. #: src/message.h:266
  2165. #, c-format
  2166. msgid "No such file entry %s"
  2167. msgstr "Kein passender Dateieintrag %s"
  2168. #: src/message.h:267
  2169. #, c-format
  2170. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  2171. msgstr "Zu langsame Download Geschwindigkeit: %d <= %d(B/s), host:%s"
  2172. #: src/message.h:268
  2173. msgid "No HttpRequestEntry found."
  2174. msgstr "Es wurde kein HttpRequestEntry gefunden."
  2175. #: src/message.h:269
  2176. #, c-format
  2177. msgid "Got %d status, but no location header provided."
  2178. msgstr "Erhielt %d Status, aber kein Location Header angegeben.."
  2179. #: src/message.h:270
  2180. #, c-format
  2181. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  2182. msgstr "Ungültiger Bereichs Header. Request: %s-%s/%s, Response: %s-%s/%s"
  2183. #: src/message.h:271
  2184. msgid "No file matched with your preference."
  2185. msgstr "Keine Datei passt auf ihre Einstellungen."
  2186. #: src/message.h:272
  2187. msgid "Exception caught"
  2188. msgstr "Ausnahme aufgetreten"
  2189. #: src/message.h:273
  2190. #, c-format
  2191. msgid "Max payload length exceeded or invalid. length = %u"
  2192. msgstr "Maximale Nutzdatenlänge überschritten oder ungültig. Länge = %u"
  2193. #: src/message.h:274
  2194. #, c-format
  2195. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  2196. msgstr "Ungültige Dateigrösse. Download abgebrochen %s: local %s, remote %s"
  2197. #: src/BtSetup.cc:212
  2198. msgid "Errors occurred while binding port.\n"
  2199. msgstr "Fehler beim Binden an Port aufgetreten.\n"
  2200. #~ msgid "must be either 'true' or 'false'."
  2201. #~ msgstr "muss entweder \"true\" (wahr) oder \"false\" (falsch) sein"
  2202. #~ msgid "must be between %s and %s."
  2203. #~ msgstr "muss zwischen %s und %s sein"
  2204. #~ msgid "must be smaller than or equal to %s."
  2205. #~ msgstr "muss kleiner oder gleich %s sein"
  2206. #~ msgid "must be greater than or equal to %s."
  2207. #~ msgstr "muss größer oder gleich %s sein"
  2208. #~ msgid "must be a number."
  2209. #~ msgstr "muss eine Zahl sein"
  2210. #~ msgid "must be smaller than or equal to %.1f."
  2211. #~ msgstr "muss kleiner oder gleich %.1f sein."
  2212. #~ msgid "must be between %.1f and %.1f."
  2213. #~ msgstr "muss zwischen %.1f und %.1f sein."
  2214. #~ msgid "must be greater than or equal to %.1f."
  2215. #~ msgstr "muss größer oder gleich %.1f sein."
  2216. #~ msgid "must be one of the following:"
  2217. #~ msgstr "muss eines der folgenden sein:"
  2218. #, fuzzy
  2219. #~ msgid "Unrecognized format"
  2220. #~ msgstr "unbekanntes Proxy-Format"
  2221. #~ msgid "unrecognized proxy format"
  2222. #~ msgstr "unbekanntes Proxy-Format"
  2223. #~ msgid "Failed to open the segment file %s, cause: %s"
  2224. #~ msgstr "Konnte Segmentdatei %s nicht öffnen, Ursache %s"
  2225. #~ msgid "Failed to write into the segment file %s, cause: %s"
  2226. #~ msgstr "Konnte nicht in Segmentdatei %s schreiben, Ursache: %s"
  2227. #~ msgid "Failed to read from the segment file %s, cause: %s"
  2228. #~ msgstr "Konnte nicht aus Segmentdatei %s lesen, Ursache: %s"
  2229. #~ msgid "Certificate verification failed. Cause: %s"
  2230. #~ msgstr "Zertifikatprüfung fehlgeschlagen. Ursache: %s"
  2231. #~ msgid ""
  2232. #~ "CUID#%d - Response received:\n"
  2233. #~ "%s"
  2234. #~ msgstr ""
  2235. #~ "CUID#%d - Erhaltene Antwort:\n"
  2236. #~ "%s"
  2237. #~ msgid ""
  2238. #~ "CUID#%d - The segment changed. We send the request again with new Range "
  2239. #~ "header."
  2240. #~ msgstr ""
  2241. #~ "CUID#%d - Segment wurde verändert. Anforderung wird mit neuem Bereichs-"
  2242. #~ "Header erneut gesendet."
  2243. #~ msgid "CUID#%d - Redirecting to %s"
  2244. #~ msgstr "CUID#%d - Weiterleitung zu %s"
  2245. #~ msgid "CUID#%d - Connecting to %s:%d"
  2246. #~ msgstr "CUID#%d - Verbinde mit %s:%d"
  2247. #~ msgid "CUID#%d - No segment available."
  2248. #~ msgstr "CUID#%d - Kein Segment verfügbar."
  2249. #~ msgid "CUID#%d - Unregistering cuid from segmentManager."
  2250. #~ msgstr "CUID#%d - cuid beim segmentManager deregistriert."
  2251. #~ msgid "CUID#%d - we got new piece. index=%d"
  2252. #~ msgstr "CUID#%d - Neues Teilstück erhalten. Index=%d"
  2253. #~ msgid "CUID#%d - we got wrong piece. index=%d"
  2254. #~ msgstr "CUID#%d - falsches Teilstück erhalten. Index=%d"
  2255. #~ msgid "#%d - Download has already completed: %s"
  2256. #~ msgstr "#%d - Wurde bereits beendet: %s"
  2257. #~ msgid "CUID#%d - Good checksum: %s"
  2258. #~ msgstr "CUID#%d - Prüfsumme ok: %s"
  2259. #~ msgid "CUID#%d - Bad checksum: %s"
  2260. #~ msgstr "CUID#%d - Ungültige Prüfsumme: %s"
  2261. #~ msgid "CUID#%d - Resolving hostname %s"
  2262. #~ msgstr "CUID#%d - Löse Hostnamen auf %s"
  2263. #~ msgid "CUID#%d - Abort requested."
  2264. #~ msgstr "CUID#%d - Abbruch angefordert."
  2265. #~ msgid ""
  2266. #~ "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  2267. #~ "blockIndex=%d"
  2268. #~ msgstr ""
  2269. #~ "CUID#%d - Stück empfangen. index=%d, begin=%d, length=%d, offset=%llu, "
  2270. #~ "blockIndex=%d"
  2271. #~ msgid ""
  2272. #~ "CUID#%d - Reject piece message in queue because the peer has been choked. "
  2273. #~ "index=%d, begin=%d, length=%d"
  2274. #~ msgstr ""
  2275. #~ "CUID#%d - Reject piece message in queue because the peer has been choked. "
  2276. #~ "index=%d, begin=%d, length=%d"
  2277. #~ msgid "Dispatching FileAllocationCommand for CUID#%d."
  2278. #~ msgstr "Dispatching FileAllocationCommand for CUID#%d."
  2279. #~ msgid " -o, --out=FILE The file name of the downloaded file."
  2280. #~ msgstr " -o, --out=FILE Dateiname für die abgerufene Datei."
  2281. #~ msgid " -D, --daemon Run as daemon."
  2282. #~ msgstr " -D, --daemon Start als Daemon-Prozeß."
  2283. #~ msgid ""
  2284. #~ " -M, --metalink-file=METALINK_FILE The file path to the .metalink file."
  2285. #~ msgstr " -M, --metalink-file=METALINK_FILE Datenpfad zur metalink-Datei."