nn.po 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172
  1. # Norwegian Nynorsk translation for aria2
  2. # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007
  3. # This file is distributed under the same license as the aria2 package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, 2007.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: aria2\n"
  9. "Report-Msgid-Bugs-To: http://aria2.sourceforge.net/\n"
  10. "POT-Creation-Date: 2010-04-26 23:00+0900\n"
  11. "PO-Revision-Date: 2009-03-17 21:14+0000\n"
  12. "Last-Translator: Tor Christian Tovslid <tctovsli@gmail.com>\n"
  13. "Language-Team: Norwegian Nynorsk <nn@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-04-01 11:32+0000\n"
  18. "X-Generator: Launchpad (build Unknown)\n"
  19. #: src/DownloadEngine.cc:222
  20. msgid ""
  21. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  22. msgstr "Avsluttingssekvens undervegs... Trykk Ctrl-C att for nødavslutning."
  23. #: src/DownloadEngine.cc:228
  24. msgid "Emergency shutdown sequence commencing..."
  25. msgstr "Nødavslutning undervegs..."
  26. #: src/MultiUrlRequestInfo.cc:103
  27. msgid "aria2 will resume download if the transfer is restarted."
  28. msgstr "aria2 vil fortsette nedlastinga dersom overføringa vert omstarta."
  29. #: src/MultiUrlRequestInfo.cc:105
  30. msgid ""
  31. "If there are any errors, then see the log file. See '-l' option in help/man "
  32. "page for details."
  33. msgstr ""
  34. "Dersom det er nokon feil, sjå loggfila. Sjå '-l' val i hjelp/manual for "
  35. "detaljar."
  36. #: src/RequestGroupMan.cc:633
  37. msgid "Download Results:"
  38. msgstr "Nedlastingsresultat:"
  39. #: src/RequestGroupMan.cc:693
  40. msgid "Status Legend:"
  41. msgstr "Statusforklaring:"
  42. #: src/OptionHandler.cc:38
  43. msgid " Default: "
  44. msgstr " Standard: "
  45. #: src/OptionHandler.cc:39
  46. msgid " Tags: "
  47. msgstr " Taggar: "
  48. #: src/OptionHandler.cc:40
  49. msgid " Possible Values: "
  50. msgstr ""
  51. #: src/OptionHandlerImpl.h:137
  52. msgid "must be either 'true' or 'false'."
  53. msgstr "må anten vere 'true' eller 'false'."
  54. #: src/OptionHandlerImpl.h:171 src/OptionHandlerImpl.h:220
  55. #, c-format
  56. msgid "must be between %s and %s."
  57. msgstr "må vere mellom %s og %s."
  58. #: src/OptionHandlerImpl.h:217
  59. #, c-format
  60. msgid "must be smaller than or equal to %s."
  61. msgstr "må vere mindre enn eller lik %s."
  62. #: src/OptionHandlerImpl.h:223
  63. #, c-format
  64. msgid "must be greater than or equal to %s."
  65. msgstr "må vere større enn eller lik %s."
  66. #: src/OptionHandlerImpl.h:226 src/OptionHandlerImpl.h:304
  67. msgid "must be a number."
  68. msgstr "må vere eit nummer."
  69. #: src/OptionHandlerImpl.h:295
  70. #, c-format
  71. msgid "must be smaller than or equal to %.1f."
  72. msgstr "må vere mindre enn eller lik %.1f."
  73. #: src/OptionHandlerImpl.h:298
  74. #, c-format
  75. msgid "must be between %.1f and %.1f."
  76. msgstr "må vere mellom %.1f og %.1f."
  77. #: src/OptionHandlerImpl.h:301
  78. #, c-format
  79. msgid "must be greater than or equal to %.1f."
  80. msgstr "må vere større eller lik %.1f."
  81. #: src/OptionHandlerImpl.h:479
  82. msgid "must be one of the following:"
  83. msgstr "må vere ein av følgande:"
  84. #: src/OptionHandlerImpl.h:529 src/OptionHandlerImpl.h:664
  85. msgid "unrecognized proxy format"
  86. msgstr "ugjenkjenneleg proxyformat"
  87. #: src/usage_text.h:37
  88. msgid ""
  89. " -d, --dir=DIR The directory to store the downloaded file."
  90. msgstr " -d, --dir=DIR Mappa du vil legge nedlastinga i."
  91. #: src/usage_text.h:39
  92. msgid ""
  93. " -o, --out=FILE The file name of the downloaded file. When -Z\n"
  94. " option is used, this option is ignored."
  95. msgstr ""
  96. #: src/usage_text.h:42
  97. msgid ""
  98. " -l, --log=LOG The file name of the log file. If '-' is\n"
  99. " specified, log is written to stdout."
  100. msgstr ""
  101. #: src/usage_text.h:45
  102. msgid ""
  103. " -D, --daemon Run as daemon. The current working directory "
  104. "will\n"
  105. " be changed to \"/\" and standard input, "
  106. "standard\n"
  107. " output and standard error will be redirected "
  108. "to\n"
  109. " \"/dev/null\"."
  110. msgstr ""
  111. #: src/usage_text.h:50
  112. msgid ""
  113. " -s, --split=N Download a file using N connections. If more\n"
  114. " than N URLs are given, first N URLs are used "
  115. "and\n"
  116. " remaining URLs are used for backup. If less "
  117. "than\n"
  118. " N URLs are given, those URLs are used more "
  119. "than\n"
  120. " once so that N connections total are made\n"
  121. " simultaneously. Please see -j option too.\n"
  122. " Please note that in Metalink download, this\n"
  123. " option has no effect and use -C option instead."
  124. msgstr ""
  125. #: src/usage_text.h:59
  126. msgid ""
  127. " --retry-wait=SEC Set the seconds to wait to retry after an "
  128. "error\n"
  129. " has occured."
  130. msgstr ""
  131. #: src/usage_text.h:62
  132. msgid " -t, --timeout=SEC Set timeout in seconds."
  133. msgstr ""
  134. #: src/usage_text.h:64
  135. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  136. msgstr ""
  137. #: src/usage_text.h:66
  138. msgid ""
  139. " --http-proxy=PROXY Use this proxy server for HTTP. To erase\n"
  140. " previously defined proxy, use \"\".\n"
  141. " See also --all-proxy option.\n"
  142. " This affects all URLs."
  143. msgstr ""
  144. #: src/usage_text.h:71
  145. msgid ""
  146. " --https-proxy=PROXY Use this proxy server for HTTPS. To erase\n"
  147. " previously defined proxy, use \"\".\n"
  148. " See also --all-proxy option.\n"
  149. " This affects all URLs."
  150. msgstr ""
  151. #: src/usage_text.h:76
  152. msgid ""
  153. " --ftp-proxy=PROXY Use this proxy server for FTP. To erase "
  154. "previously\n"
  155. " defined proxy, use \"\".\n"
  156. " See also --all-proxy option.\n"
  157. " This affects all URLs."
  158. msgstr ""
  159. #: src/usage_text.h:81
  160. msgid ""
  161. " --all-proxy=PROXY Use this proxy server for all protocols. To "
  162. "erase\n"
  163. " previously defined proxy, use \"\".\n"
  164. " You can override this setting and specify a\n"
  165. " proxy server for a particular protocol using\n"
  166. " --http-proxy, --https-proxy and --ftp-proxy\n"
  167. " options.\n"
  168. " This affects all URLs."
  169. msgstr ""
  170. #: src/usage_text.h:89
  171. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  172. msgstr ""
  173. #: src/usage_text.h:91
  174. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  175. msgstr ""
  176. #: src/usage_text.h:93
  177. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  178. msgstr ""
  179. #: src/usage_text.h:95
  180. msgid " --referer=REFERER Set Referer. This affects all URLs."
  181. msgstr ""
  182. #: src/usage_text.h:97
  183. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  184. msgstr ""
  185. #: src/usage_text.h:99
  186. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  187. msgstr ""
  188. #: src/usage_text.h:101
  189. msgid " --ftp-type=TYPE Set FTP transfer type."
  190. msgstr ""
  191. #: src/usage_text.h:103
  192. msgid ""
  193. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  194. "given,\n"
  195. " the active mode will be used."
  196. msgstr ""
  197. #: src/usage_text.h:106
  198. msgid ""
  199. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  200. "than\n"
  201. " or equal to this value(bytes per sec).\n"
  202. " 0 means aria2 does not have a lowest speed "
  203. "limit.\n"
  204. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  205. " This option does not affect BitTorrent "
  206. "downloads."
  207. msgstr ""
  208. #: src/usage_text.h:112
  209. msgid ""
  210. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  211. "sec.\n"
  212. " 0 means unrestricted.\n"
  213. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  214. " To limit the download speed per download, use\n"
  215. " --max-download-limit option."
  216. msgstr ""
  217. #: src/usage_text.h:118
  218. msgid ""
  219. " --max-download-limit=SPEED Set max download speed per each download in\n"
  220. " bytes/sec. 0 means unrestricted.\n"
  221. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  222. " To limit the overall download speed, use\n"
  223. " --max-overall-download-limit option."
  224. msgstr ""
  225. #: src/usage_text.h:124
  226. msgid ""
  227. " --file-allocation=METHOD Specify file allocation method.\n"
  228. " 'none' doesn't pre-allocate file space. "
  229. "'prealloc'\n"
  230. " pre-allocates file space before download "
  231. "begins.\n"
  232. " This may take some time depending on the size "
  233. "of\n"
  234. " the file.\n"
  235. " If you are using newer file systems such as "
  236. "ext4\n"
  237. " (with extents support), btrfs or xfs, 'falloc' "
  238. "is\n"
  239. " your best choice. It allocates large(few GiB)\n"
  240. " files almost instantly. Don't use 'falloc' "
  241. "with\n"
  242. " legacy file systems such as ext3 because it "
  243. "takes\n"
  244. " almost same time as 'prealloc' and it blocks "
  245. "aria2\n"
  246. " entirely until allocation finishes. 'falloc' "
  247. "may\n"
  248. " not be available if your system doesn't have\n"
  249. " posix_fallocate() function."
  250. msgstr ""
  251. #: src/usage_text.h:139
  252. msgid ""
  253. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  254. " size is smaller than SIZE.\n"
  255. " You can append K or M(1K = 1024, 1M = 1024K)."
  256. msgstr ""
  257. #: src/usage_text.h:143
  258. msgid ""
  259. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  260. "while\n"
  261. " allocating files.\n"
  262. " Turn off if you encounter any error"
  263. msgstr ""
  264. #: src/usage_text.h:147
  265. msgid ""
  266. " --allow-overwrite=true|false Restart download from scratch if the\n"
  267. " corresponding control file doesn't exist. "
  268. "See\n"
  269. " also --auto-file-renaming option."
  270. msgstr ""
  271. #: src/usage_text.h:151
  272. msgid ""
  273. " --allow-piece-length-change=true|false If false is given, aria2 aborts "
  274. "download\n"
  275. " when a piece length is different from one in\n"
  276. " a control file. If true is given, you can "
  277. "proceed\n"
  278. " but some download progress will be lost."
  279. msgstr ""
  280. #: src/usage_text.h:156
  281. msgid ""
  282. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  283. "sequentially\n"
  284. " and download each URI in a separate session, "
  285. "like\n"
  286. " the usual command-line download utilities."
  287. msgstr ""
  288. #: src/usage_text.h:160
  289. msgid ""
  290. " --auto-file-renaming[=true|false] Rename file name if the same file "
  291. "already\n"
  292. " exists. This option works only in http(s)/ftp\n"
  293. " download.\n"
  294. " The new file name has a dot and a number"
  295. "(1..9999)\n"
  296. " appended."
  297. msgstr ""
  298. #: src/usage_text.h:166
  299. msgid ""
  300. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  301. " You can specify set of parts:\n"
  302. " http://{sv1,sv2,sv3}/foo.iso\n"
  303. " Also you can specify numeric sequences with "
  304. "step\n"
  305. " counter:\n"
  306. " http://host/image[000-100:2].img\n"
  307. " A step counter can be omitted.\n"
  308. " If all URIs do not point to the same file, "
  309. "such\n"
  310. " as the second example above, -Z option is\n"
  311. " required."
  312. msgstr ""
  313. #: src/usage_text.h:177
  314. msgid ""
  315. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  316. msgstr ""
  317. #: src/usage_text.h:179
  318. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  319. msgstr ""
  320. #: src/usage_text.h:181
  321. msgid ""
  322. " -V, --check-integrity[=true|false] Check file integrity by validating "
  323. "piece\n"
  324. " hashes. This option has effect only in "
  325. "BitTorrent\n"
  326. " and Metalink downloads with chunk checksums.\n"
  327. " Use this option to re-download a damaged "
  328. "portion\n"
  329. " of a file. See also --bt-hash-check-seed "
  330. "option."
  331. msgstr ""
  332. #: src/usage_text.h:187
  333. msgid ""
  334. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  335. " --check-integrity option and file is "
  336. "complete,\n"
  337. " continue to seed file. If you want to check "
  338. "file\n"
  339. " and download it only when it is damaged or\n"
  340. " incomplete, set this option to false.\n"
  341. " This option has effect only on BitTorrent\n"
  342. " download."
  343. msgstr ""
  344. #: src/usage_text.h:195
  345. msgid ""
  346. " --realtime-chunk-checksum=true|false Validate chunk of data by "
  347. "calculating\n"
  348. " checksum while downloading a file if chunk\n"
  349. " checksums are provided."
  350. msgstr ""
  351. #: src/usage_text.h:199
  352. msgid ""
  353. " -c, --continue Continue downloading a partially downloaded\n"
  354. " file. Use this option to resume a download\n"
  355. " started by a web browser or another program\n"
  356. " which downloads files sequentially from the\n"
  357. " beginning. Currently this option is only\n"
  358. " applicable to http(s)/ftp downloads."
  359. msgstr ""
  360. #: src/usage_text.h:206
  361. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  362. msgstr ""
  363. #: src/usage_text.h:208
  364. msgid " -n, --no-netrc Disables netrc support."
  365. msgstr ""
  366. #: src/usage_text.h:210
  367. msgid ""
  368. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  369. " multiple URIs for a single entity: separate\n"
  370. " URIs on a single line using the TAB "
  371. "character.\n"
  372. " Reads input from stdin when '-' is specified.\n"
  373. " The additional out and dir options can be\n"
  374. " specified after each line of URIs. This "
  375. "optional\n"
  376. " line must start with white space(s). See "
  377. "INPUT\n"
  378. " FILE section of man page for details."
  379. msgstr ""
  380. #: src/usage_text.h:219
  381. msgid ""
  382. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  383. "for\n"
  384. " every static (HTTP/FTP) URL, torrent and "
  385. "metalink.\n"
  386. " See also -s and -C options."
  387. msgstr ""
  388. #: src/usage_text.h:223
  389. msgid ""
  390. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  391. "format\n"
  392. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  393. msgstr ""
  394. #: src/usage_text.h:226
  395. msgid ""
  396. " --save-cookies=FILE Save Cookies to FILE in Mozilla/Firefox(1.x/2."
  397. "x)/\n"
  398. " Netscape format. If FILE already exists, it "
  399. "is\n"
  400. " overwritten. Session Cookies are also saved "
  401. "and\n"
  402. " their expiry values are treated as 0."
  403. msgstr ""
  404. #: src/usage_text.h:231
  405. msgid ""
  406. " -S, --show-files Print file listing of .torrent or .metalink "
  407. "file\n"
  408. " and exit. More detailed information will be "
  409. "listed\n"
  410. " in case of torrent file."
  411. msgstr ""
  412. #: src/usage_text.h:235
  413. msgid ""
  414. " --select-file=INDEX... Set file to download by specifying its index.\n"
  415. " You can find the file index using the\n"
  416. " --show-files option. Multiple indexes can be\n"
  417. " specified by using ',', for example: \"3,6\".\n"
  418. " You can also use '-' to specify a range: \"1-5"
  419. "\".\n"
  420. " ',' and '-' can be used together.\n"
  421. " When used with the -M option, index may vary\n"
  422. " depending on the query(see --metalink-* "
  423. "options)."
  424. msgstr ""
  425. #: src/usage_text.h:244
  426. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  427. msgstr ""
  428. #: src/usage_text.h:246
  429. msgid ""
  430. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  431. " whose suffix is .torrent or content type is\n"
  432. " application/x-bittorrent is downloaded, aria2\n"
  433. " parses it as a torrent file and downloads "
  434. "files\n"
  435. " mentioned in it.\n"
  436. " If mem is specified, a torrent file is not\n"
  437. " written to the disk, but is just kept in "
  438. "memory.\n"
  439. " If false is specified, the action mentioned "
  440. "above\n"
  441. " is not taken."
  442. msgstr ""
  443. #: src/usage_text.h:256
  444. msgid ""
  445. " --direct-file-mapping=true|false Directly read from and write to each file\n"
  446. " mentioned in .torrent file."
  447. msgstr ""
  448. #: src/usage_text.h:259
  449. msgid ""
  450. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  451. " Multiple ports can be specified by using ',',\n"
  452. " for example: \"6881,6885\". You can also use "
  453. "'-'\n"
  454. " to specify a range: \"6881-6999\". ',' and '-' "
  455. "can\n"
  456. " be used together."
  457. msgstr ""
  458. #: src/usage_text.h:265
  459. msgid ""
  460. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  461. "sec.\n"
  462. " 0 means unrestricted.\n"
  463. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  464. " To limit the upload speed per torrent, use\n"
  465. " --max-upload-limit option."
  466. msgstr ""
  467. #: src/usage_text.h:271
  468. msgid ""
  469. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  470. " bytes/sec. 0 means unrestricted.\n"
  471. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  472. " To limit the overall upload speed, use\n"
  473. " --max-overall-upload-limit option."
  474. msgstr ""
  475. #: src/usage_text.h:277
  476. msgid ""
  477. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  478. " --seed-ratio option."
  479. msgstr ""
  480. #: src/usage_text.h:280
  481. msgid ""
  482. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  483. " until share ratio reaches RATIO.\n"
  484. " You are strongly encouraged to specify equals "
  485. "or\n"
  486. " more than 1.0 here. Specify 0.0 if you intend "
  487. "to\n"
  488. " do seeding regardless of share ratio.\n"
  489. " If --seed-time option is specified along with\n"
  490. " this option, seeding ends when at least one "
  491. "of\n"
  492. " the conditions is satisfied."
  493. msgstr ""
  494. #: src/usage_text.h:289
  495. msgid ""
  496. " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  497. "in\n"
  498. " BitTorrent is 20 byte length. If more than 20\n"
  499. " bytes are specified, only first 20 bytes are\n"
  500. " used. If less than 20 bytes are specified, "
  501. "random\n"
  502. " byte data are added to make its length 20 "
  503. "bytes."
  504. msgstr ""
  505. #: src/usage_text.h:295
  506. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  507. msgstr ""
  508. #: src/usage_text.h:297
  509. msgid " --enable-dht[=true|false] Enable DHT functionality."
  510. msgstr ""
  511. #: src/usage_text.h:299
  512. msgid ""
  513. " --dht-listen-port=PORT... Set UDP listening port for DHT.\n"
  514. " Multiple ports can be specified by using ',',\n"
  515. " for example: \"6881,6885\". You can also use "
  516. "'-'\n"
  517. " to specify a range: \"6881-6999\". ',' and '-' "
  518. "can\n"
  519. " be used together."
  520. msgstr ""
  521. #: src/usage_text.h:305
  522. msgid ""
  523. " --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"
  524. " network."
  525. msgstr ""
  526. #: src/usage_text.h:308
  527. msgid ""
  528. " --dht-file-path=PATH Change the DHT routing table file to PATH."
  529. msgstr ""
  530. #: src/usage_text.h:310
  531. msgid ""
  532. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  533. " If several encryption methods are provided by "
  534. "a\n"
  535. " peer, aria2 chooses the lowest one which "
  536. "satisfies\n"
  537. " the given level."
  538. msgstr ""
  539. #: src/usage_text.h:315
  540. msgid ""
  541. " --bt-require-crypto=true|false If true is given, aria2 doesn't accept and\n"
  542. " establish connection with legacy BitTorrent\n"
  543. " handshake. Thus aria2 always uses Obfuscation\n"
  544. " handshake."
  545. msgstr ""
  546. #: src/usage_text.h:320
  547. msgid ""
  548. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  549. " torrent is lower than SPEED, aria2 "
  550. "temporarily\n"
  551. " increases the number of peers to try for more\n"
  552. " download speed. Configuring this option with "
  553. "your\n"
  554. " preferred download speed can increase your\n"
  555. " download speed in some cases.\n"
  556. " You can append K or M(1K = 1024, 1M = 1024K)."
  557. msgstr ""
  558. #: src/usage_text.h:328
  559. msgid ""
  560. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  561. "each\n"
  562. " BitTorrent download."
  563. msgstr ""
  564. #: src/usage_text.h:331
  565. msgid ""
  566. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  567. " verifying piece hashes."
  568. msgstr ""
  569. #: src/usage_text.h:334
  570. msgid ""
  571. " --bt-max-peers=NUM Specify the maximum number of peers per "
  572. "torrent.\n"
  573. " 0 means unlimited.\n"
  574. " See also --bt-request-peer-speed-limit option."
  575. msgstr ""
  576. #: src/usage_text.h:338
  577. msgid ""
  578. " -M, --metalink-file=METALINK_FILE The file path to the .metalink file. "
  579. "Reads\n"
  580. " input from stdin when '-' is specified."
  581. msgstr ""
  582. #: src/usage_text.h:341
  583. msgid ""
  584. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  585. " simultaneously. Some Metalinks regulate the\n"
  586. " number of servers to connect. aria2 strictly\n"
  587. " respects them. This means that if Metalink "
  588. "defines\n"
  589. " the maxconnections attribute lower than\n"
  590. " NUM_SERVERS, then aria2 uses the value of\n"
  591. " maxconnections attribute instead of "
  592. "NUM_SERVERS.\n"
  593. " See also -s and -j options."
  594. msgstr ""
  595. #: src/usage_text.h:350
  596. msgid " --metalink-version=VERSION The version of the file to download."
  597. msgstr ""
  598. #: src/usage_text.h:352
  599. msgid " --metalink-language=LANGUAGE The language of the file to download."
  600. msgstr ""
  601. #: src/usage_text.h:354
  602. msgid ""
  603. " --metalink-os=OS The operating system of the file to download."
  604. msgstr ""
  605. #: src/usage_text.h:356
  606. msgid ""
  607. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  608. " A comma-delimited list of locations is\n"
  609. " acceptable."
  610. msgstr ""
  611. #: src/usage_text.h:360
  612. msgid ""
  613. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  614. "'none'\n"
  615. " if you don't have any preferred protocol."
  616. msgstr ""
  617. #: src/usage_text.h:363
  618. msgid ""
  619. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  620. " whose suffix is .metalink or content type of\n"
  621. " application/metalink+xml is downloaded, aria2\n"
  622. " parses it as a metalink file and downloads "
  623. "files\n"
  624. " mentioned in it.\n"
  625. " If mem is specified, a metalink file is not\n"
  626. " written to the disk, but is just kept in "
  627. "memory.\n"
  628. " If false is specified, the action mentioned "
  629. "above\n"
  630. " is not taken."
  631. msgstr ""
  632. #: src/usage_text.h:373
  633. msgid ""
  634. " --metalink-enable-unique-protocol=true|false If true is given and several\n"
  635. " protocols are available for a mirror in a "
  636. "metalink\n"
  637. " file, aria2 uses one of them.\n"
  638. " Use --metalink-preferred-protocol option to\n"
  639. " specify the preference of protocol."
  640. msgstr ""
  641. #: src/usage_text.h:379
  642. msgid " -v, --version Print the version number and exit."
  643. msgstr ""
  644. #: src/usage_text.h:381
  645. msgid ""
  646. " -h, --help[=TAG|KEYWORD] Print usage and exit.\n"
  647. " The help messages are classified with tags. A "
  648. "tag\n"
  649. " starts with \"#\". For example, type \"--"
  650. "help=#http\"\n"
  651. " to get the usage for the options tagged with\n"
  652. " \"#http\". If non-tag word is given, print the "
  653. "usage\n"
  654. " for the options whose name includes that word."
  655. msgstr ""
  656. #: src/usage_text.h:388
  657. msgid " --no-conf Disable loading aria2.conf file."
  658. msgstr ""
  659. #: src/usage_text.h:390
  660. msgid ""
  661. " --conf-path=PATH Change the configuration file path to PATH."
  662. msgstr ""
  663. #: src/usage_text.h:392
  664. msgid ""
  665. " --stop=SEC Stop application after SEC seconds has "
  666. "passed.\n"
  667. " If 0 is given, this feature is disabled."
  668. msgstr ""
  669. #: src/usage_text.h:395
  670. msgid ""
  671. " --header=HEADER Append HEADER to HTTP request header. You can "
  672. "use\n"
  673. " this option repeatedly to specify more than "
  674. "one\n"
  675. " header:\n"
  676. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  677. "9J1\"\n"
  678. " http://host/file"
  679. msgstr ""
  680. #: src/usage_text.h:401
  681. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  682. msgstr ""
  683. #: src/usage_text.h:403
  684. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  685. msgstr ""
  686. #: src/usage_text.h:405
  687. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  688. msgstr ""
  689. #: src/usage_text.h:407
  690. msgid ""
  691. " --summary-interval=SEC Set interval to output download progress "
  692. "summary.\n"
  693. " Setting 0 suppresses the output."
  694. msgstr ""
  695. #: src/usage_text.h:410
  696. msgid " --log-level=LEVEL Set log level to output."
  697. msgstr ""
  698. #: src/usage_text.h:412
  699. msgid ""
  700. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  701. "the\n"
  702. " remote HTTP/FTP server and if it is "
  703. "available,\n"
  704. " apply it to the local file."
  705. msgstr ""
  706. #: src/usage_text.h:416
  707. msgid ""
  708. " --connect-timeout=SEC Set the connect timeout in seconds to "
  709. "establish\n"
  710. " connection to HTTP/FTP/proxy server. After "
  711. "the\n"
  712. " connection is established, this option makes "
  713. "no\n"
  714. " effect and --timeout option is used instead."
  715. msgstr ""
  716. #: src/usage_text.h:421
  717. msgid ""
  718. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  719. "the\n"
  720. " remote HTTP/FTP servers NUM times without "
  721. "getting\n"
  722. " a single byte, then force the download to "
  723. "fail.\n"
  724. " Specify 0 to disable this option.\n"
  725. " This options is effective only when using\n"
  726. " HTTP/FTP servers."
  727. msgstr ""
  728. #: src/usage_text.h:428
  729. msgid ""
  730. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  731. " If 'inorder' is given, URI is tried in the "
  732. "order\n"
  733. " appeared in the URI list.\n"
  734. " If 'feedback' is given, aria2 uses download "
  735. "speed\n"
  736. " observed in the previous downloads and choose\n"
  737. " fastest server in the URI list. This also\n"
  738. " effectively skips dead mirrors. The observed\n"
  739. " download speed is a part of performance "
  740. "profile\n"
  741. " of servers mentioned in --server-stat-of and\n"
  742. " --server-stat-if options.\n"
  743. " If 'adaptive' is given, selects one of the "
  744. "best\n"
  745. " mirrors for the first and reserved "
  746. "connections.\n"
  747. " For supplementary ones, it returns mirrors "
  748. "which\n"
  749. " has not been tested yet, and if each of them "
  750. "has\n"
  751. " already been tested, returns mirrors which has "
  752. "to\n"
  753. " be tested again. Otherwise, it doesn't select\n"
  754. " anymore mirrors. Like 'feedback', it uses a\n"
  755. " performance profile of servers."
  756. msgstr ""
  757. #: src/usage_text.h:447
  758. msgid ""
  759. " --server-stat-of=FILE Specify the filename to which performance "
  760. "profile\n"
  761. " of the servers is saved. You can load saved "
  762. "data\n"
  763. " using --server-stat-if option."
  764. msgstr ""
  765. #: src/usage_text.h:451
  766. msgid ""
  767. " --server-stat-if=FILE Specify the filename to load performance "
  768. "profile\n"
  769. " of the servers. The loaded data will be used "
  770. "in\n"
  771. " some URI selector such as 'feedback'.\n"
  772. " See also --uri-selector option"
  773. msgstr ""
  774. #: src/usage_text.h:456
  775. msgid ""
  776. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  777. " performance profile of the servers since the "
  778. "last\n"
  779. " contact to them."
  780. msgstr ""
  781. #: src/usage_text.h:460
  782. msgid ""
  783. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  784. "seconds.\n"
  785. " If 0 is given, a control file is not saved "
  786. "during\n"
  787. " download. aria2 saves a control file when it "
  788. "stops\n"
  789. " regardless of the value."
  790. msgstr ""
  791. #: src/usage_text.h:465
  792. msgid ""
  793. " --certificate=FILE Use the client certificate in FILE.\n"
  794. " The certificate must be in PEM format.\n"
  795. " You may use --private-key option to specify "
  796. "the\n"
  797. " private key."
  798. msgstr ""
  799. #: src/usage_text.h:470
  800. msgid ""
  801. " --private-key=FILE Use the private key in FILE.\n"
  802. " The private key must be decrypted and in PEM\n"
  803. " format. See also --certificate option."
  804. msgstr ""
  805. #: src/usage_text.h:474
  806. msgid ""
  807. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  808. "verify\n"
  809. " the peers. The certificate file must be in "
  810. "PEM\n"
  811. " format and can contain multiple CA "
  812. "certificates.\n"
  813. " Use --check-certificate option to enable\n"
  814. " verification."
  815. msgstr ""
  816. #: src/usage_text.h:480
  817. msgid ""
  818. " --check-certificate[=true|false] Verify the peer using certificates "
  819. "specified\n"
  820. " in --ca-certificate option."
  821. msgstr ""
  822. #: src/usage_text.h:483
  823. msgid ""
  824. " --no-proxy=DOMAINS Specify comma separated hostnames, domains or\n"
  825. " network address with or without CIDR block "
  826. "where\n"
  827. " proxy should not be used."
  828. msgstr ""
  829. #: src/usage_text.h:487
  830. msgid ""
  831. " --use-head[=true|false] Use HEAD method for the first request to the "
  832. "HTTP\n"
  833. " server."
  834. msgstr ""
  835. #: src/usage_text.h:490
  836. msgid " --event-poll=POLL Specify the method for polling events."
  837. msgstr ""
  838. #: src/usage_text.h:492
  839. msgid ""
  840. " --xml-rpc-listen-port=PORT Specify a port number for XML-RPC server to "
  841. "listen\n"
  842. " to."
  843. msgstr ""
  844. #: src/usage_text.h:495
  845. msgid ""
  846. " --enable-xml-rpc[=true|false] Enable XML-RPC server.\n"
  847. " It is strongly recommended to set username "
  848. "and\n"
  849. " password using --xml-rpc-user and --xml-rpc-"
  850. "passwd\n"
  851. " option. See also --xml-rpc-listen-port option."
  852. msgstr ""
  853. #: src/usage_text.h:500
  854. msgid ""
  855. " --xml-rpc-max-request-size=SIZE Set max size of XML-RPC request. If aria2\n"
  856. " detects the request is more than SIZE bytes, "
  857. "it\n"
  858. " drops connection."
  859. msgstr ""
  860. #: src/usage_text.h:504
  861. msgid " --xml-rpc-user=USER Set XML-RPC user."
  862. msgstr ""
  863. #: src/usage_text.h:506
  864. msgid " --xml-rpc-passwd=PASSWD Set XML-RPC password."
  865. msgstr ""
  866. #: src/usage_text.h:508
  867. msgid ""
  868. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  869. "a\n"
  870. " BitTorrent tracker. Although this function is\n"
  871. " named 'external', it can accept any kind of "
  872. "IP\n"
  873. " addresses."
  874. msgstr ""
  875. #: src/usage_text.h:513
  876. msgid ""
  877. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  878. "it\n"
  879. " is requested by the server. If false is set, "
  880. "then\n"
  881. " authorization header is always sent to the "
  882. "server.\n"
  883. " There is an exception: if username and "
  884. "password\n"
  885. " are embedded in URI, authorization header is\n"
  886. " always sent to the server regardless of this\n"
  887. " option."
  888. msgstr ""
  889. #: src/usage_text.h:521
  890. msgid ""
  891. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  892. "can\n"
  893. " find the file index using the --show-files "
  894. "option.\n"
  895. " PATH is a relative path to the path specified "
  896. "in\n"
  897. " --dir option. You can use this option "
  898. "multiple\n"
  899. " times."
  900. msgstr ""
  901. #: src/usage_text.h:527
  902. msgid ""
  903. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  904. "the\n"
  905. " remote file is available and doesn't download\n"
  906. " data. This option has effect on HTTP/FTP "
  907. "download.\n"
  908. " BitTorrent downloads are canceled if true is\n"
  909. " specified."
  910. msgstr ""
  911. #: src/usage_text.h:533
  912. msgid ""
  913. " --bt-tracker-interval=SEC Set the interval in seconds between tracker\n"
  914. " requests. This completely overrides interval "
  915. "value\n"
  916. " and aria2 just uses this value and ignores "
  917. "the\n"
  918. " min interval and interval value in the "
  919. "response of\n"
  920. " tracker. If 0 is set, aria2 determines "
  921. "interval\n"
  922. " based on the response of tracker and the "
  923. "download\n"
  924. " progress."
  925. msgstr ""
  926. #: src/usage_text.h:541
  927. msgid ""
  928. " --on-download-complete=COMMAND Set the command to be executed when "
  929. "download\n"
  930. " completes.\n"
  931. " See --on-download-start option for the\n"
  932. " requirement of COMMAND.\n"
  933. " See also --on-download-stop option."
  934. msgstr ""
  935. #: src/usage_text.h:547
  936. msgid ""
  937. " --on-download-start=COMMAND Set the command to be executed when download\n"
  938. " starts up. COMMAND must take just one argument "
  939. "and\n"
  940. " GID is passed to COMMAND as a first argument."
  941. msgstr ""
  942. #: src/usage_text.h:551
  943. msgid ""
  944. " --on-download-pause=COMMAND Set the command to be executed when download\n"
  945. " is paused.\n"
  946. " See --on-download-start option for the\n"
  947. " requirement of COMMAND."
  948. msgstr ""
  949. #: src/usage_text.h:556
  950. msgid ""
  951. " --on-download-error=COMMAND Set the command to be executed when download\n"
  952. " aborts due to error.\n"
  953. " See --on-download-start option for the\n"
  954. " requirement of COMMAND.\n"
  955. " See also --on-download-stop option."
  956. msgstr ""
  957. #: src/usage_text.h:562
  958. msgid ""
  959. " --on-download-stop=COMMAND Set the command to be executed when download\n"
  960. " stops. You can override the command to be "
  961. "executed\n"
  962. " for particular download result using\n"
  963. " --on-download-complete and --on-download-"
  964. "error. If\n"
  965. " they are specified, command specified in this\n"
  966. " option is not executed.\n"
  967. " See --on-download-start option for the\n"
  968. " requirement of COMMAND."
  969. msgstr ""
  970. #: src/usage_text.h:571
  971. msgid ""
  972. " --bt-stop-timeout=SEC Stop BitTorrent download if download speed is "
  973. "0 in\n"
  974. " consecutive SEC seconds. If 0 is given, this\n"
  975. " feature is disabled."
  976. msgstr ""
  977. #: src/usage_text.h:575
  978. msgid ""
  979. " --xml-rpc-listen-all[=true|false] Listen incoming XML-RPC requests on all\n"
  980. " network interfaces. If false is given, listen "
  981. "only\n"
  982. " on local loopback interface."
  983. msgstr ""
  984. #: src/usage_text.h:579
  985. msgid ""
  986. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] Try to download first and "
  987. "last\n"
  988. " pieces of each file first. This is useful for\n"
  989. " previewing files. The argument can contain 2\n"
  990. " keywords:head and tail. To include both "
  991. "keywords,\n"
  992. " they must be separated by comma. These "
  993. "keywords\n"
  994. " can take one parameter, SIZE. For example, if\n"
  995. " head=SIZE is specified, pieces in the range "
  996. "of\n"
  997. " first SIZE bytes of each file get higher "
  998. "priority.\n"
  999. " tail=SIZE means the range of last SIZE bytes "
  1000. "of\n"
  1001. " each file. SIZE can include K or M(1K = 1024, "
  1002. "1M =\n"
  1003. " 1024K). If SIZE is omitted, SIZE=1M is used."
  1004. msgstr ""
  1005. #: src/usage_text.h:591
  1006. msgid ""
  1007. " --interface=INTERFACE Bind sockets to given interface. You can "
  1008. "specify\n"
  1009. " interface name, IP address and hostname."
  1010. msgstr ""
  1011. #: src/usage_text.h:594
  1012. msgid " --disable-ipv6[=true|false] Disable IPv6."
  1013. msgstr ""
  1014. #: src/usage_text.h:596
  1015. msgid ""
  1016. " --bt-save-metadata[=true|false] Save metadata as .torrent file. This option "
  1017. "has\n"
  1018. " effect only when BitTorrent Magnet URI is "
  1019. "used.\n"
  1020. " The filename is hex encoded info hash with "
  1021. "suffix\n"
  1022. " .torrent. The directory to be saved is the "
  1023. "same\n"
  1024. " directory where download file is saved. If "
  1025. "the\n"
  1026. " same file already exists, metadata is not "
  1027. "saved.\n"
  1028. " See also --bt-metadata-only option."
  1029. msgstr ""
  1030. #: src/usage_text.h:604
  1031. msgid ""
  1032. " --http-no-cache[=true|false] Send Cache-Control: no-cache and Pragma: no-"
  1033. "cache\n"
  1034. " header to avoid cached content. If false is\n"
  1035. " given, these headers are not sent and you can "
  1036. "add\n"
  1037. " Cache-Control header with a directive you "
  1038. "like\n"
  1039. " using --header option."
  1040. msgstr ""
  1041. #: src/usage_text.h:610
  1042. msgid ""
  1043. " --bt-metadata-only[=true|false] Download metadata only. The file(s) "
  1044. "described\n"
  1045. " in metadata will not be downloaded. This "
  1046. "option\n"
  1047. " has effect only when BitTorrent Magnet URI is\n"
  1048. " used. See also --bt-save-metadata option."
  1049. msgstr ""
  1050. #: src/usage_text.h:615
  1051. msgid ""
  1052. " --human-readable[=true|false] Print sizes and speed in human readable "
  1053. "format\n"
  1054. " (e.g., 1.2Ki, 3.4Mi) in the console readout."
  1055. msgstr ""
  1056. #: src/usage_text.h:618
  1057. msgid " --bt-enable-lpd[=true|false] Enable Local Peer Discovery."
  1058. msgstr ""
  1059. #: src/usage_text.h:620
  1060. msgid ""
  1061. " --bt-lpd-interface=INTERFACE Use given interface for Local Peer Discovery. "
  1062. "If\n"
  1063. " this option is not specified, the default\n"
  1064. " interface is chosen. You can specify "
  1065. "interface\n"
  1066. " name and IP address."
  1067. msgstr ""
  1068. #: src/usage_text.h:625
  1069. msgid ""
  1070. " --reuse-uri[=true|false] Reuse already used URIs if no unused URIs are\n"
  1071. " left."
  1072. msgstr ""
  1073. #: src/usage_text.h:628
  1074. msgid " --all-proxy-user=USER Set user for --all-proxy option."
  1075. msgstr ""
  1076. #: src/usage_text.h:630
  1077. msgid " --all-proxy-passwd=PASSWD Set password for --all-proxy option."
  1078. msgstr ""
  1079. #: src/usage_text.h:632
  1080. msgid " --http-proxy-user=USER Set user for --http-proxy option."
  1081. msgstr ""
  1082. #: src/usage_text.h:634
  1083. msgid " --http-proxy-passwd=PASSWD Set password for --http-proxy option."
  1084. msgstr ""
  1085. #: src/usage_text.h:636
  1086. msgid " --https-proxy-user=USER Set user for --https-proxy option."
  1087. msgstr ""
  1088. #: src/usage_text.h:638
  1089. msgid " --https-proxy-passwd=PASSWD Set password for --https-proxy option."
  1090. msgstr ""
  1091. #: src/usage_text.h:640
  1092. msgid " --ftp-proxy-user=USER Set user for --ftp-proxy option."
  1093. msgstr ""
  1094. #: src/usage_text.h:642
  1095. msgid " --ftp-proxy-passwd=PASSWD Set password for --ftp-proxy option."
  1096. msgstr ""
  1097. #: src/usage_text.h:644
  1098. msgid ""
  1099. " --remove-control-file[=true|false] Remove control file before download. "
  1100. "Using\n"
  1101. " with --allow-overwrite=true, download always\n"
  1102. " starts from scratch. This will be useful for\n"
  1103. " users behind proxy server which disables "
  1104. "resume."
  1105. msgstr ""
  1106. #: src/usage_text.h:649
  1107. msgid ""
  1108. " --always-resume[=true|false] Always resume download. If true is given, "
  1109. "aria2\n"
  1110. " always tries to resume download and if resume "
  1111. "is\n"
  1112. " not possible, aborts download. If false is "
  1113. "given,\n"
  1114. " when all given URIs do not support resume or\n"
  1115. " aria2 encounters N URIs which does not "
  1116. "support\n"
  1117. " resume (N is the value specified using\n"
  1118. " --max-resume-failure-tries option), aria2\n"
  1119. " downloads file from scratch.\n"
  1120. " See --max-resume-failure-tries option."
  1121. msgstr ""
  1122. #: src/usage_text.h:659
  1123. msgid ""
  1124. " --max-resume-failure-tries=N When used with --always-resume=false, aria2\n"
  1125. " downloads file from scratch when aria2 detects "
  1126. "N\n"
  1127. " number of URIs that does not support resume. "
  1128. "If N\n"
  1129. " is 0, aria2 downloads file from scratch when "
  1130. "all\n"
  1131. " given URIs do not support resume.\n"
  1132. " See --always-resume option."
  1133. msgstr ""
  1134. #: src/usage_text.h:666
  1135. msgid " --bt-tracker-timeout=SEC Set timeout in seconds."
  1136. msgstr ""
  1137. #: src/usage_text.h:668
  1138. msgid ""
  1139. " --bt-tracker-connect-timeout=SEC Set the connect timeout in seconds to\n"
  1140. " establish connection to tracker. After the\n"
  1141. " connection is established, this option makes "
  1142. "no\n"
  1143. " effect and --bt-tracker-timeout option is "
  1144. "used\n"
  1145. " instead."
  1146. msgstr ""
  1147. #: src/usage_text.h:674
  1148. msgid " --dht-message-timeout=SEC Set timeout in seconds."
  1149. msgstr ""
  1150. #: src/usage_text.h:676
  1151. msgid ""
  1152. " --http-accept-gzip[=true|false] Send 'Accept: deflate, gzip' request "
  1153. "header\n"
  1154. " and inflate response if remote server "
  1155. "responds\n"
  1156. " with 'Content-Encoding: gzip' or\n"
  1157. " 'Content-Encoding: deflate'."
  1158. msgstr ""
  1159. #: src/usage_text.h:681
  1160. msgid ""
  1161. " --save-session=FILE Save error/unfinished downloads to FILE on "
  1162. "exit.\n"
  1163. " You can pass this output file to aria2c with -"
  1164. "i\n"
  1165. " option on restart. Please note that downloads\n"
  1166. " added by aria2.addTorrent and aria2."
  1167. "addMetalink\n"
  1168. " XML-RPC method are not saved."
  1169. msgstr ""
  1170. #: src/version_usage.cc:57
  1171. msgid " version "
  1172. msgstr ""
  1173. #: src/version_usage.cc:80
  1174. #, c-format
  1175. msgid "Report bugs to %s"
  1176. msgstr ""
  1177. #: src/version_usage.cc:85
  1178. msgid ""
  1179. "Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | METALINK_FILE]..."
  1180. msgstr ""
  1181. #: src/version_usage.cc:92
  1182. msgid "Printing all options."
  1183. msgstr ""
  1184. #: src/version_usage.cc:94
  1185. #, c-format
  1186. msgid "Printing options tagged with '%s'."
  1187. msgstr ""
  1188. #: src/version_usage.cc:98
  1189. #, c-format
  1190. msgid "See -h option to know other command-line options(%s)."
  1191. msgstr ""
  1192. #: src/version_usage.cc:103 src/version_usage.cc:115
  1193. msgid "Options:"
  1194. msgstr ""
  1195. #: src/version_usage.cc:112
  1196. #, c-format
  1197. msgid "Printing options whose name includes '%s'."
  1198. msgstr ""
  1199. #: src/version_usage.cc:120
  1200. #, c-format
  1201. msgid "No option matching with '%s'."
  1202. msgstr ""
  1203. #: src/version_usage.cc:128
  1204. msgid ""
  1205. " You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z option, "
  1206. "all\n"
  1207. " URIs must point to the same file or downloading will fail."
  1208. msgstr ""
  1209. #: src/version_usage.cc:130
  1210. msgid ""
  1211. " You can also specify arbitrary number of BitTorrent Magnet URIs, torrent/\n"
  1212. " metalink files stored in a local drive. Please note that they are always\n"
  1213. " treated as a separate download."
  1214. msgstr ""
  1215. #: src/version_usage.cc:135
  1216. msgid ""
  1217. " You can specify both torrent file with -T option and URIs. By doing this,\n"
  1218. " download a file from both torrent swarm and HTTP/FTP server at the same "
  1219. "time,\n"
  1220. " while the data from HTTP/FTP are uploaded to the torrent swarm. For single "
  1221. "file\n"
  1222. " torrents, URI can be a complete URI pointing to the resource or if URI "
  1223. "ends\n"
  1224. " with '/', 'name' in torrent file is added. For multi-file torrents, 'name' "
  1225. "and\n"
  1226. " 'path' in torrent are added to form a URI for each file."
  1227. msgstr ""
  1228. #: src/version_usage.cc:142
  1229. msgid ""
  1230. " Make sure that URI is quoted with single(') or double(\") quotation if it\n"
  1231. " contains \"&\" or any characters that have special meaning in shell."
  1232. msgstr ""
  1233. #: src/version_usage.cc:146
  1234. msgid "Refer to man page for more information."
  1235. msgstr ""
  1236. #: src/message.h:57
  1237. #, fuzzy, c-format
  1238. msgid "GID#%s - Download has already completed: %s"
  1239. msgstr "#%d - Nedlasting har allereie blitt ferdig: %s"
  1240. #: src/message.h:102
  1241. #, c-format
  1242. msgid "Unrecognized URI or unsupported protocol: %s"
  1243. msgstr ""
  1244. #: src/message.h:103
  1245. #, c-format
  1246. msgid "Tracker returned warning message: %s"
  1247. msgstr ""
  1248. #: src/message.h:104
  1249. #, c-format
  1250. msgid "The segment file %s exists."
  1251. msgstr ""
  1252. #: src/message.h:105
  1253. #, c-format
  1254. msgid "The segment file %s does not exist."
  1255. msgstr ""
  1256. #: src/message.h:106
  1257. #, c-format
  1258. msgid "Saving the segment file %s"
  1259. msgstr ""
  1260. #: src/message.h:107
  1261. msgid "The segment file was saved successfully."
  1262. msgstr ""
  1263. #: src/message.h:108
  1264. #, c-format
  1265. msgid "Loading the segment file %s."
  1266. msgstr ""
  1267. #: src/message.h:109
  1268. msgid "The segment file was loaded successfully."
  1269. msgstr ""
  1270. #: src/message.h:110
  1271. msgid "No URI to download. Download aborted."
  1272. msgstr ""
  1273. #: src/message.h:111
  1274. #, c-format
  1275. msgid ""
  1276. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1277. "canceled in order to prevent your file from being truncated to 0. If you are "
  1278. "sure to download the file all over again, then delete it or add --allow-"
  1279. "overwrite=true option and restart aria2."
  1280. msgstr ""
  1281. #: src/message.h:112
  1282. #, c-format
  1283. msgid "Allocating file %s, %s bytes"
  1284. msgstr ""
  1285. #: src/message.h:113
  1286. msgid "File not found"
  1287. msgstr ""
  1288. #: src/message.h:114
  1289. msgid "Not a directory"
  1290. msgstr ""
  1291. #: src/message.h:115
  1292. #, c-format
  1293. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1294. msgstr ""
  1295. #: src/message.h:116
  1296. #, c-format
  1297. msgid "Writing file %s"
  1298. msgstr ""
  1299. #: src/message.h:117
  1300. msgid "No peer list received."
  1301. msgstr ""
  1302. #: src/message.h:118
  1303. #, c-format
  1304. msgid "Adding peer %s:%d"
  1305. msgstr ""
  1306. #: src/message.h:119
  1307. #, c-format
  1308. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1309. msgstr ""
  1310. #: src/message.h:120
  1311. msgid "Download of selected files was complete."
  1312. msgstr ""
  1313. #: src/message.h:121
  1314. msgid "The download was complete."
  1315. msgstr ""
  1316. #: src/message.h:122
  1317. #, c-format
  1318. msgid "Removed %d have entries."
  1319. msgstr ""
  1320. #: src/message.h:123
  1321. #, c-format
  1322. msgid "Validating file %s"
  1323. msgstr ""
  1324. #: src/message.h:124
  1325. #, c-format
  1326. msgid "%d seconds to allocate %s byte(s)"
  1327. msgstr ""
  1328. #: src/message.h:127
  1329. #, c-format
  1330. msgid "Metalink: Queueing %s for download."
  1331. msgstr ""
  1332. #: src/message.h:128
  1333. #, c-format
  1334. msgid "Download complete: %s"
  1335. msgstr ""
  1336. #: src/message.h:129
  1337. msgid "Seeding is over."
  1338. msgstr ""
  1339. #: src/message.h:130
  1340. msgid "No chunk to verify."
  1341. msgstr ""
  1342. #: src/message.h:131
  1343. #, c-format
  1344. msgid "Good chunk checksum. hash=%s"
  1345. msgstr ""
  1346. #: src/message.h:132
  1347. #, c-format
  1348. msgid "Failed to load cookies from %s"
  1349. msgstr ""
  1350. #: src/message.h:133
  1351. #, c-format
  1352. msgid ""
  1353. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1354. "support disabled."
  1355. msgstr ""
  1356. #: src/message.h:134
  1357. msgid "Logging started."
  1358. msgstr ""
  1359. #: src/message.h:135
  1360. msgid "Specify at least one URL."
  1361. msgstr ""
  1362. #: src/message.h:136
  1363. msgid "daemon failed."
  1364. msgstr ""
  1365. #: src/message.h:137
  1366. #, c-format
  1367. msgid "Verification finished successfully. file=%s"
  1368. msgstr ""
  1369. #: src/message.h:138
  1370. #, c-format
  1371. msgid "Checksum error detected. file=%s"
  1372. msgstr ""
  1373. #: src/message.h:139
  1374. #, c-format
  1375. msgid "Incomplete range specified. %s"
  1376. msgstr ""
  1377. #: src/message.h:140
  1378. #, c-format
  1379. msgid "Failed to convert string into value: %s"
  1380. msgstr ""
  1381. #: src/message.h:141
  1382. msgid "Resource not found"
  1383. msgstr ""
  1384. #: src/message.h:142
  1385. #, c-format
  1386. msgid "File already exists. Renamed to %s."
  1387. msgstr ""
  1388. #: src/message.h:143
  1389. msgid "Cannot parse metalink XML file. XML may be malformed."
  1390. msgstr ""
  1391. #: src/message.h:144
  1392. #, c-format
  1393. msgid "Too small payload size for %s, size=%d."
  1394. msgstr ""
  1395. #: src/message.h:145
  1396. #, c-format
  1397. msgid ""
  1398. "Removed the defunct control file %s because the download file %s doesn't "
  1399. "exist."
  1400. msgstr ""
  1401. #: src/message.h:146
  1402. #, c-format
  1403. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1404. msgstr ""
  1405. #: src/message.h:147
  1406. #, c-format
  1407. msgid "Missing %s in torrent metainfo."
  1408. msgstr ""
  1409. #: src/message.h:148
  1410. msgid "Tracker returned null data."
  1411. msgstr ""
  1412. #: src/message.h:149
  1413. msgid "Windows socket library initialization failed"
  1414. msgstr ""
  1415. #: src/message.h:150
  1416. #, c-format
  1417. msgid "%d second(s) has passed. Stopping application."
  1418. msgstr ""
  1419. #: src/message.h:151
  1420. #, c-format
  1421. msgid ""
  1422. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1423. msgstr ""
  1424. #: src/message.h:153
  1425. #, c-format
  1426. msgid "Saving signature as %s failed. Maybe file already exists."
  1427. msgstr ""
  1428. #: src/message.h:156
  1429. #, c-format
  1430. msgid "Failed to open ServerStat file %s for read."
  1431. msgstr ""
  1432. #: src/message.h:157
  1433. #, c-format
  1434. msgid "ServerStat file %s loaded successfully."
  1435. msgstr ""
  1436. #: src/message.h:158
  1437. #, c-format
  1438. msgid "Failed to read ServerStat from %s."
  1439. msgstr ""
  1440. #: src/message.h:161
  1441. #, c-format
  1442. msgid "Failed to open ServerStat file %s for write."
  1443. msgstr ""
  1444. #: src/message.h:162
  1445. #, c-format
  1446. msgid "ServerStat file %s saved successfully."
  1447. msgstr ""
  1448. #: src/message.h:163
  1449. #, c-format
  1450. msgid "Failed to write ServerStat to %s."
  1451. msgstr ""
  1452. #: src/message.h:166
  1453. #, c-format
  1454. msgid "Failed to establish connection, cause: %s"
  1455. msgstr ""
  1456. #: src/message.h:167
  1457. #, c-format
  1458. msgid "Network problem has occurred. cause:%s"
  1459. msgstr ""
  1460. #: src/message.h:169
  1461. #, c-format
  1462. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  1463. msgstr ""
  1464. #: src/message.h:171
  1465. #, c-format
  1466. msgid "Certificate verification failed. Cause: %s"
  1467. msgstr ""
  1468. #: src/message.h:172
  1469. msgid "No certificate found."
  1470. msgstr ""
  1471. #: src/message.h:173
  1472. msgid "Hostname not match."
  1473. msgstr ""
  1474. #: src/message.h:174
  1475. msgid "No files to download."
  1476. msgstr ""
  1477. #: src/message.h:176
  1478. msgid ""
  1479. "You may encounter the certificate verification error with HTTPS server. See "
  1480. "--ca-certificate and --check-certificate option."
  1481. msgstr ""
  1482. #: src/message.h:178
  1483. #, c-format
  1484. msgid "Printing the contents of file '%s'..."
  1485. msgstr ""
  1486. #: src/message.h:179
  1487. msgid "This file is neither Torrent nor Metalink file. Skipping."
  1488. msgstr ""
  1489. #: src/message.h:184
  1490. #, c-format
  1491. msgid "Is '%s' a file?"
  1492. msgstr ""
  1493. #: src/message.h:185
  1494. #, c-format
  1495. msgid "Failed to find given interface %s, cause: %s"
  1496. msgstr ""
  1497. #: src/message.h:187
  1498. #, c-format
  1499. msgid "Saved metadata as %s."
  1500. msgstr ""
  1501. #: src/message.h:188
  1502. #, c-format
  1503. msgid "Saving metadata as %s failed. Maybe file already exists."
  1504. msgstr ""
  1505. #: src/message.h:190
  1506. #, c-format
  1507. msgid "Detected directory traversal directive in %s"
  1508. msgstr ""
  1509. #: src/message.h:192
  1510. msgid "Timeout."
  1511. msgstr ""
  1512. #: src/message.h:193
  1513. msgid "Invalid chunk size."
  1514. msgstr ""
  1515. #: src/message.h:194
  1516. #, c-format
  1517. msgid "Too large chunk. size=%d"
  1518. msgstr ""
  1519. #: src/message.h:195
  1520. msgid "Invalid header."
  1521. msgstr ""
  1522. #: src/message.h:196
  1523. msgid "Invalid response."
  1524. msgstr ""
  1525. #: src/message.h:197
  1526. msgid "No header found."
  1527. msgstr ""
  1528. #: src/message.h:198
  1529. msgid "No status header."
  1530. msgstr ""
  1531. #: src/message.h:199
  1532. msgid "Proxy connection failed."
  1533. msgstr ""
  1534. #: src/message.h:200
  1535. msgid "Connection failed."
  1536. msgstr ""
  1537. #: src/message.h:201
  1538. #, c-format
  1539. msgid ""
  1540. "The requested filename and the previously registered one are not same. "
  1541. "Expected:%s Actual:%s"
  1542. msgstr ""
  1543. #: src/message.h:202
  1544. #, c-format
  1545. msgid "The response status is not successful. status=%d"
  1546. msgstr ""
  1547. #: src/message.h:203
  1548. #, c-format
  1549. msgid "Too large file size. size=%s"
  1550. msgstr ""
  1551. #: src/message.h:204
  1552. #, c-format
  1553. msgid "Transfer encoding %s is not supported."
  1554. msgstr ""
  1555. #: src/message.h:205
  1556. #, c-format
  1557. msgid "SSL initialization failed: %s"
  1558. msgstr ""
  1559. #: src/message.h:206
  1560. msgid "SSL I/O error"
  1561. msgstr ""
  1562. #: src/message.h:207
  1563. msgid "SSL protocol error"
  1564. msgstr ""
  1565. #: src/message.h:208
  1566. #, c-format
  1567. msgid "SSL unknown error %d"
  1568. msgstr ""
  1569. #: src/message.h:209
  1570. #, c-format
  1571. msgid "SSL initialization failed: OpenSSL connect error %d"
  1572. msgstr ""
  1573. #: src/message.h:210
  1574. #, c-format
  1575. msgid "Size mismatch Expected:%s Actual:%s"
  1576. msgstr ""
  1577. #: src/message.h:211
  1578. msgid "Authorization failed."
  1579. msgstr ""
  1580. #: src/message.h:212
  1581. msgid "Got EOF from the server."
  1582. msgstr ""
  1583. #: src/message.h:213
  1584. msgid "Got EOF from peer."
  1585. msgstr ""
  1586. #: src/message.h:214
  1587. msgid "Malformed meta info."
  1588. msgstr ""
  1589. #: src/message.h:216
  1590. #, c-format
  1591. msgid "Failed to open the file %s, cause: %s"
  1592. msgstr ""
  1593. #: src/message.h:217
  1594. #, c-format
  1595. msgid "Failed to write into the file %s, cause: %s"
  1596. msgstr ""
  1597. #: src/message.h:218
  1598. #, c-format
  1599. msgid "Failed to read from the file %s, cause: %s"
  1600. msgstr ""
  1601. #: src/message.h:219
  1602. msgid "Failed to read data from disk."
  1603. msgstr ""
  1604. #: src/message.h:220
  1605. #, c-format
  1606. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  1607. msgstr ""
  1608. #: src/message.h:221
  1609. #, c-format
  1610. msgid "Failed to seek the file %s, cause: %s"
  1611. msgstr ""
  1612. #: src/message.h:222
  1613. #, c-format
  1614. msgid "The offset is out of range, offset=%s"
  1615. msgstr ""
  1616. #: src/message.h:223
  1617. #, c-format
  1618. msgid "%s is not a directory."
  1619. msgstr ""
  1620. #: src/message.h:224
  1621. #, c-format
  1622. msgid "Failed to make the directory %s, cause: %s"
  1623. msgstr ""
  1624. #: src/message.h:225
  1625. #, c-format
  1626. msgid "Failed to open the segment file %s, cause: %s"
  1627. msgstr ""
  1628. #: src/message.h:226
  1629. #, c-format
  1630. msgid "Failed to write into the segment file %s, cause: %s"
  1631. msgstr ""
  1632. #: src/message.h:227
  1633. #, c-format
  1634. msgid "Failed to read from the segment file %s, cause: %s"
  1635. msgstr ""
  1636. #: src/message.h:229
  1637. #, c-format
  1638. msgid "Failed to open a socket, cause: %s"
  1639. msgstr ""
  1640. #: src/message.h:230
  1641. #, c-format
  1642. msgid "Failed to set a socket option, cause: %s"
  1643. msgstr ""
  1644. #: src/message.h:231
  1645. #, c-format
  1646. msgid "Failed to set a socket as blocking, cause: %s"
  1647. msgstr ""
  1648. #: src/message.h:232
  1649. #, c-format
  1650. msgid "Failed to set a socket as non-blocking, cause: %s"
  1651. msgstr ""
  1652. #: src/message.h:233
  1653. #, c-format
  1654. msgid "Failed to bind a socket, cause: %s"
  1655. msgstr ""
  1656. #: src/message.h:234
  1657. #, c-format
  1658. msgid "Failed to listen to a socket, cause: %s"
  1659. msgstr ""
  1660. #: src/message.h:235
  1661. #, c-format
  1662. msgid "Failed to accept a peer connection, cause: %s"
  1663. msgstr ""
  1664. #: src/message.h:236
  1665. #, c-format
  1666. msgid "Failed to get the name of socket, cause: %s"
  1667. msgstr ""
  1668. #: src/message.h:237
  1669. #, c-format
  1670. msgid "Failed to get the name of connected peer, cause: %s"
  1671. msgstr ""
  1672. #: src/message.h:238
  1673. #, c-format
  1674. msgid "Failed to resolve the hostname %s, cause: %s"
  1675. msgstr ""
  1676. #: src/message.h:239
  1677. #, c-format
  1678. msgid "Failed to connect to the host %s, cause: %s"
  1679. msgstr ""
  1680. #: src/message.h:240
  1681. #, c-format
  1682. msgid "Failed to check whether the socket is writable, cause: %s"
  1683. msgstr ""
  1684. #: src/message.h:241
  1685. #, c-format
  1686. msgid "Failed to check whether the socket is readable, cause: %s"
  1687. msgstr ""
  1688. #: src/message.h:242
  1689. #, c-format
  1690. msgid "Failed to send data, cause: %s"
  1691. msgstr ""
  1692. #: src/message.h:243
  1693. #, c-format
  1694. msgid "Failed to receive data, cause: %s"
  1695. msgstr ""
  1696. #: src/message.h:244
  1697. #, c-format
  1698. msgid "Failed to peek data, cause: %s"
  1699. msgstr ""
  1700. #: src/message.h:245
  1701. #, c-format
  1702. msgid "Unknown socket error %d (0x%x)"
  1703. msgstr ""
  1704. #: src/message.h:246
  1705. #, c-format
  1706. msgid "File %s exists, but %s does not exist."
  1707. msgstr ""
  1708. #: src/message.h:247
  1709. #, c-format
  1710. msgid "Invalid payload size for %s, size=%d. It should be %d."
  1711. msgstr ""
  1712. #: src/message.h:248
  1713. #, c-format
  1714. msgid "Invalid ID=%d for %s. It should be %d."
  1715. msgstr ""
  1716. #: src/message.h:249
  1717. #, c-format
  1718. msgid ""
  1719. "Chunk checksum validation failed. checksumIndex=%d, offset=%s, expectedHash=%"
  1720. "s, actualHash=%s"
  1721. msgstr ""
  1722. #: src/message.h:250
  1723. msgid "Download aborted."
  1724. msgstr ""
  1725. #: src/message.h:251
  1726. #, c-format
  1727. msgid "File %s is being downloaded by other command."
  1728. msgstr ""
  1729. #: src/message.h:252
  1730. msgid "Insufficient checksums."
  1731. msgstr ""
  1732. #: src/message.h:253
  1733. #, c-format
  1734. msgid "Tracker returned failure reason: %s"
  1735. msgstr ""
  1736. #: src/message.h:254
  1737. msgid "Flooding detected."
  1738. msgstr ""
  1739. #: src/message.h:255
  1740. #, c-format
  1741. msgid ""
  1742. "Drop connection because no request/piece messages were exchanged in a "
  1743. "certain period(%d seconds)."
  1744. msgstr ""
  1745. #: src/message.h:256
  1746. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  1747. msgstr ""
  1748. #: src/message.h:257
  1749. #, c-format
  1750. msgid "No such file entry %s"
  1751. msgstr ""
  1752. #: src/message.h:258
  1753. #, c-format
  1754. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  1755. msgstr ""
  1756. #: src/message.h:259
  1757. msgid "No HttpRequestEntry found."
  1758. msgstr ""
  1759. #: src/message.h:260
  1760. #, c-format
  1761. msgid "Got %d status, but no location header provided."
  1762. msgstr ""
  1763. #: src/message.h:261
  1764. #, c-format
  1765. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  1766. msgstr ""
  1767. #: src/message.h:262
  1768. msgid "No file matched with your preference."
  1769. msgstr ""
  1770. #: src/message.h:263
  1771. msgid "Exception caught"
  1772. msgstr ""
  1773. #: src/message.h:264
  1774. #, c-format
  1775. msgid "Max payload length exceeded or invalid. length = %u"
  1776. msgstr ""
  1777. #: src/message.h:265
  1778. #, c-format
  1779. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  1780. msgstr ""
  1781. #: src/BtSetup.cc:171
  1782. msgid "Errors occurred while binding port.\n"
  1783. msgstr ""
  1784. #~ msgid "CUID#%d - The download for one segment completed successfully."
  1785. #~ msgstr "CUID#%d - Nedlastinga av eit segment er vellykka fullført."
  1786. #~ msgid "CUID#%d - No segment available."
  1787. #~ msgstr "CUID#%d - Ingen segment tilgjengeleg"
  1788. #~ msgid "CUID#%d - Connecting to %s:%d"
  1789. #~ msgstr "CUID#%d - Koplar til %s:%d"
  1790. #~ msgid ""
  1791. #~ "CUID#%d - The segment changed. We send the request again with new Range "
  1792. #~ "header."
  1793. #~ msgstr ""
  1794. #~ "CUID#%d - Segmentet vart endra. Vi sender førespurnaden på ny med nytt "
  1795. #~ "meldingshovud om \"Range\"."
  1796. #~ msgid "CUID#%d - Redirecting to %s"
  1797. #~ msgstr "CUID#%d - Vidaresender til %s"
  1798. #~ msgid ""
  1799. #~ "CUID#%d - Requesting:\n"
  1800. #~ "%s"
  1801. #~ msgstr ""
  1802. #~ "CUID#%d - Ber om:\n"
  1803. #~ "%s"
  1804. #~ msgid ""
  1805. #~ "CUID#%d - Response received:\n"
  1806. #~ "%s"
  1807. #~ msgstr ""
  1808. #~ "CUID#%d - Respons motteke:\n"
  1809. #~ "%s"
  1810. #~ msgid "CUID#%d - Download aborted. URI=%s"
  1811. #~ msgstr "CUID#%d - Nedlasting avbroten. URI=%s"
  1812. #~ msgid "CUID#%d - Restarting the download. URI=%s"
  1813. #~ msgstr "CUID#%d - Startar nedlasting på nytt. URI=%s"
  1814. #~ msgid "CUID#%d - Download aborted."
  1815. #~ msgstr "CUID#%d - Nedlasting avbroten."
  1816. #~ msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  1817. #~ msgstr "CUID#%d - %d forsøk, men ikkje vellykka. Nedlasting avbroten."
  1818. #~ msgid "CUID#%d - we got new piece. index=%d"
  1819. #~ msgstr "CUID#%d - me fekk ny del. index=%d"
  1820. #~ msgid "CUID#%d - we got wrong piece. index=%d"
  1821. #~ msgstr "CUID#%d - me fekk feil del. index=%d"
  1822. #~ msgid "CUID#%d - Download not complete: %s"
  1823. #~ msgstr "CUID#%d - Nedlasting ikkje ferdig: %s"
  1824. #~ msgid "CUID#%d - Good checksum: %s"
  1825. #~ msgstr "CUID#%d - God sjekksum: %s"
  1826. #~ msgid "CUID#%d - Bad checksum: %s"
  1827. #~ msgstr "CUID#%d - Dårleg sjekksum: %s"
  1828. #~ msgid "CUID#%d - Resolving hostname %s"
  1829. #~ msgstr "CUID#%d - Løysar vertsnamn %s"
  1830. #~ msgid "CUID#%d - Name resolution complete: %s -> %s"
  1831. #~ msgstr "CUID#%d - Namnløysing ferdig: %s -> %s"
  1832. #~ msgid "CUID#%d - Unregistering cuid from segmentManager."
  1833. #~ msgstr "CUID#%d - Avregistrerar cuid frå segmentManager."