nn.po 58 KB

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