sr.po 50 KB

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