de.po 77 KB

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