nn.po 53 KB

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