de.po 81 KB

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