nn.po 51 KB

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