sv.po 51 KB

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