sr.po 59 KB

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