nn.po 59 KB

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