de.po 71 KB

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