sr.po 54 KB

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