de.po 78 KB

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