de.po 76 KB

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