nn.po 48 KB

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