sr.po 81 KB

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