sr.po 64 KB

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