ru.po 104 KB

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