de.po 80 KB

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