ru.po 158 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651
  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: 2011-03-18 23:58+0900\n"
  14. "PO-Revision-Date: 2011-03-17 07:56+0000\n"
  15. "Last-Translator: Ivan Knyazev <Unknown>\n"
  16. "Language-Team: <ru@li.org>\n"
  17. "Language: ru\n"
  18. "MIME-Version: 1.0\n"
  19. "Content-Type: text/plain; charset=UTF-8\n"
  20. "Content-Transfer-Encoding: 8bit\n"
  21. "X-Launchpad-Export-Date: 2011-03-18 14:56+0000\n"
  22. "X-Generator: Launchpad (build 12617)\n"
  23. #: src/DownloadEngine.cc:233
  24. msgid ""
  25. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  26. msgstr ""
  27. "Завершается выполнение программы... Нажмите Ctrl-C для экстренного "
  28. "завершения."
  29. #: src/DownloadEngine.cc:240
  30. msgid "Emergency shutdown sequence commencing..."
  31. msgstr "Экстренное завершение..."
  32. #: src/MultiUrlRequestInfo.cc:157
  33. msgid "aria2 will resume download if the transfer is restarted."
  34. msgstr "aria2 продолжит загрузку, если передача будет перезапущена."
  35. #: src/MultiUrlRequestInfo.cc:159
  36. msgid ""
  37. "If there are any errors, then see the log file. See '-l' option in help/man "
  38. "page for details."
  39. msgstr ""
  40. "Если возникли какие-либо ошибки, проверьте log-файл. Для более подробной "
  41. "информации смотрите описание опции '-l'."
  42. #: src/RequestGroupMan.cc:600
  43. msgid "Download Results:"
  44. msgstr "Результат загрузки:"
  45. #: src/RequestGroupMan.cc:634
  46. msgid "Status Legend:"
  47. msgstr "Использованные обозначения:"
  48. #: src/OptionHandler.cc:38
  49. msgid " Default: "
  50. msgstr " По умолчанию: "
  51. #: src/OptionHandler.cc:39
  52. msgid " Tags: "
  53. msgstr " Метки: "
  54. #: src/OptionHandler.cc:40
  55. msgid " Possible Values: "
  56. msgstr " Возможные значения: "
  57. #: src/usage_text.h:37
  58. msgid ""
  59. " -d, --dir=DIR The directory to store the downloaded file."
  60. msgstr " -d, --dir=DIR Каталог для сохранения скачанных файлов."
  61. #: src/usage_text.h:39
  62. msgid ""
  63. " -o, --out=FILE The file name of the downloaded file. When -Z\n"
  64. " option is used, this option is ignored."
  65. msgstr ""
  66. " -o, --out=FILE Сохранить загруженный файл под указанным именем.\n"
  67. " Если используется ключ -Z, то данный ключ "
  68. "игнорируется."
  69. #: src/usage_text.h:42
  70. msgid ""
  71. " -l, --log=LOG The file name of the log file. If '-' is\n"
  72. " specified, log is written to stdout."
  73. msgstr ""
  74. " -l, --log=LOG Имя файла для логов. Если указано \"-\",\n"
  75. " логи будут выведены в stdout."
  76. #: src/usage_text.h:45
  77. msgid ""
  78. " -D, --daemon[=true|false] Run as daemon. The current working directory "
  79. "will\n"
  80. " be changed to \"/\" and standard input, "
  81. "standard\n"
  82. " output and standard error will be redirected "
  83. "to\n"
  84. " \"/dev/null\"."
  85. msgstr ""
  86. " -D, --daemon[=true|false] Запуск в качестве демона. Текущая директория "
  87. "будет\n"
  88. " изменена на \"/\", а стандартный ввод, стандартный "
  89. "вывод\n"
  90. " и вывод ошибок будут перенаправлены в \"/dev/null"
  91. "\"."
  92. #: src/usage_text.h:50
  93. msgid ""
  94. " -s, --split=N Download a file using N connections. If more\n"
  95. " than N URLs are given, first N URLs are used "
  96. "and\n"
  97. " remaining URLs are used for backup. If less "
  98. "than\n"
  99. " N URLs are given, those URLs are used more "
  100. "than\n"
  101. " once so that N connections total are made\n"
  102. " simultaneously. The number of connections to "
  103. "the\n"
  104. " same host is restricted by\n"
  105. " --max-connection-per-server option. Please see "
  106. "-j\n"
  107. " and --min-split-size option too.\n"
  108. " Please note that in Metalink download, this\n"
  109. " option has no effect and use -C option instead."
  110. msgstr ""
  111. #: src/usage_text.h:62
  112. #, fuzzy
  113. msgid ""
  114. " --retry-wait=SEC Set the seconds to wait between retries. \n"
  115. " With SEC > 0, aria2 will retry download when "
  116. "the\n"
  117. " HTTP server returns 503 response."
  118. msgstr ""
  119. " --retry-wait=SEC Устанавливает интервал ожидания ввода (в секундах)\n"
  120. " после произошедшей ошибки."
  121. #: src/usage_text.h:66
  122. msgid " -t, --timeout=SEC Set timeout in seconds."
  123. msgstr " -t, --timeout=SEC Устанавливает timeout в секундах."
  124. #: src/usage_text.h:68
  125. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  126. msgstr ""
  127. " -m, --max-tries=N Устанавливает количество попыток, '0' означает "
  128. "'неограниченно'."
  129. #: src/usage_text.h:70
  130. msgid ""
  131. " --http-proxy=PROXY Use this proxy server for HTTP. To erase\n"
  132. " previously defined proxy, use \"\".\n"
  133. " See also --all-proxy option.\n"
  134. " This affects all URLs."
  135. msgstr ""
  136. " --http-proxy=PROXY Использовать указанный прокси-сервер \n"
  137. " для HTTP. Ранее указанный адрес можно \n"
  138. " стереть, указав \"\". \n"
  139. " Также см. параметр --all-proxy. \n"
  140. " Влияет на все URL."
  141. #: src/usage_text.h:75
  142. msgid ""
  143. " --https-proxy=PROXY Use this proxy server for HTTPS. To erase\n"
  144. " previously defined proxy, use \"\".\n"
  145. " See also --all-proxy option.\n"
  146. " This affects all URLs."
  147. msgstr ""
  148. " -https-proxy=PROXY Использовать указанный прокси-сервер \n"
  149. " для HTTPS. Ранее указанный адрес можно \n"
  150. " стереть, указав \"\". \n"
  151. " Также см. параметр --all-proxy. \n"
  152. " Влияет на все URL."
  153. #: src/usage_text.h:80
  154. msgid ""
  155. " --ftp-proxy=PROXY Use this proxy server for FTP. To erase "
  156. "previously\n"
  157. " defined proxy, use \"\".\n"
  158. " See also --all-proxy option.\n"
  159. " This affects all URLs."
  160. msgstr ""
  161. " --ftp-proxy=PROXY Использовать указанный прокси-сервер \n"
  162. " для FTP. Ранее указанный адрес можно \n"
  163. " стереть, указав \"\". \n"
  164. " Также см. параметр --all-proxy. \n"
  165. " Влияет на все URL."
  166. #: src/usage_text.h:85
  167. msgid ""
  168. " --all-proxy=PROXY Use this proxy server for all protocols. To "
  169. "erase\n"
  170. " previously defined proxy, use \"\".\n"
  171. " You can override this setting and specify a\n"
  172. " proxy server for a particular protocol using\n"
  173. " --http-proxy, --https-proxy and --ftp-proxy\n"
  174. " options.\n"
  175. " This affects all URLs."
  176. msgstr ""
  177. " --all-proxy=PROXY Использовать указанный прокси-сервер \n"
  178. " для всех протоколов. Ранее указанный \n"
  179. " адрес можно стереть, указав \"\". \n"
  180. " Параметры --http-proxy, --https-proxy \n"
  181. " и --ftp-proxy, указывающие прокси-\n"
  182. " серверы для отдельных протоколов, \n"
  183. " имеют более высокий приоритет. \n"
  184. " Влияет на все URL."
  185. #: src/usage_text.h:93
  186. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  187. msgstr " --http-user=USER Указать пользователя для HTTP. Влияет на все URL."
  188. #: src/usage_text.h:95
  189. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  190. msgstr " --http-passwd=PASSWD Указать пароль для HTTP. Влияет на все URL."
  191. #: src/usage_text.h:97
  192. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  193. msgstr ""
  194. " --proxy-method=METHOD Задать метод для использования в прокси-запросах."
  195. #: src/usage_text.h:99
  196. msgid " --referer=REFERER Set Referer. This affects all URLs."
  197. msgstr " --referer=REFERER Указать реферер. Влияет на все URL."
  198. #: src/usage_text.h:101
  199. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  200. msgstr " --ftp-user=USER Указать имя пользователя для FTP. Влияет на все URL."
  201. #: src/usage_text.h:103
  202. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  203. msgstr " --ftp-passwd=PASSWD Указать пароль для FTP. Влияет на все URL."
  204. #: src/usage_text.h:105
  205. msgid " --ftp-type=TYPE Set FTP transfer type."
  206. msgstr " --ftp-type=TYPE Указать тип передачи для FTP."
  207. #: src/usage_text.h:107
  208. msgid ""
  209. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  210. "given,\n"
  211. " the active mode will be used."
  212. msgstr ""
  213. " -p, --ftp-pasv[=true|false] Использовать пассивный режим FTP. Если указано "
  214. "false,\n"
  215. "то будет использован активный режим."
  216. #: src/usage_text.h:110
  217. msgid ""
  218. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  219. "than\n"
  220. " or equal to this value(bytes per sec).\n"
  221. " 0 means aria2 does not have a lowest speed "
  222. "limit.\n"
  223. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  224. " This option does not affect BitTorrent "
  225. "downloads."
  226. msgstr ""
  227. " --lowest-speed-limit=SPEED Закрывает подключение, если скорость загрузки "
  228. "меньше\n"
  229. " или равна или равна этому значению (байт в "
  230. "секунду).\n"
  231. " 0 означает, что aria2 не имеет нижнего "
  232. "ограничения скорости.\n"
  233. " Вы можете добавить K или M(1K = 1024, 1M = "
  234. "1024K).\n"
  235. " Этот параметр не влияет на BitTorrent загрузки."
  236. #: src/usage_text.h:116
  237. msgid ""
  238. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  239. "sec.\n"
  240. " 0 means unrestricted.\n"
  241. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  242. " To limit the download speed per download, use\n"
  243. " --max-download-limit option."
  244. msgstr ""
  245. " --max-overall-download-limit=SPEED Установить максимальную общую скорость "
  246. "загрузки в байтах/сек.\n"
  247. " 0 значит не ограничена.\n"
  248. " Вы можете добавить K или M(1K = 1024, 1M = "
  249. "1024K).\n"
  250. " Чтобы ограничить скорость загрузки для узла, "
  251. "используйте\n"
  252. " параметр --max-download-limit."
  253. #: src/usage_text.h:122
  254. msgid ""
  255. " --max-download-limit=SPEED Set max download speed per each download in\n"
  256. " bytes/sec. 0 means unrestricted.\n"
  257. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  258. " To limit the overall download speed, use\n"
  259. " --max-overall-download-limit option."
  260. msgstr ""
  261. " --max-download-limit=SPEED Установить максимальную скорость каждого узла "
  262. "загрузки в\n"
  263. " байтах/сек. 0 означает неограниченно.\n"
  264. " Вы можете добавить K или M(1K = 1024, 1M = "
  265. "1024K).\n"
  266. " Чтоб ограничить общую скорость загрузки, "
  267. "используйте\n"
  268. " параметр --max-overall-download-limit."
  269. #: src/usage_text.h:128
  270. msgid ""
  271. " --file-allocation=METHOD Specify file allocation method.\n"
  272. " 'none' doesn't pre-allocate file space. "
  273. "'prealloc'\n"
  274. " pre-allocates file space before download "
  275. "begins.\n"
  276. " This may take some time depending on the size "
  277. "of\n"
  278. " the file.\n"
  279. " If you are using newer file systems such as "
  280. "ext4\n"
  281. " (with extents support), btrfs or xfs, 'falloc' "
  282. "is\n"
  283. " your best choice. It allocates large(few GiB)\n"
  284. " files almost instantly. Don't use 'falloc' "
  285. "with\n"
  286. " legacy file systems such as ext3 because it "
  287. "takes\n"
  288. " almost same time as 'prealloc' and it blocks "
  289. "aria2\n"
  290. " entirely until allocation finishes. 'falloc' "
  291. "may\n"
  292. " not be available if your system doesn't have\n"
  293. " posix_fallocate() function."
  294. msgstr ""
  295. " --file-allocation=METHOD Указать метод размещения файла.\n"
  296. " 'none' не происходит предварительное "
  297. "резервирование места для файла. 'prealloc' -\n"
  298. " предварительное резервирование места для файла "
  299. "перед началом загрузки.\n"
  300. " Это может продолжаться некоторое время, в "
  301. "зависимости от размера\n"
  302. " файла.\n"
  303. " Если Вы используете новые файловые системы, "
  304. "наподобие ext4\n"
  305. " (с поддержкой диапазонов), btrfs или xfs, "
  306. "тогда лучше\n"
  307. " выбрать 'falloc' . Так как они резервируют "
  308. "место под большие (на несколько Гигабайт)\n"
  309. " файлы почти мгновенно. Не используйте 'falloc' "
  310. "вместе с\n"
  311. " наследными файловыми системами, такими как "
  312. "ext3 потому, что это будет продолжаться\n"
  313. " почти столько же времени, как и 'prealloc', а "
  314. "также полностью заблокирует aria2,\n"
  315. " пока не окончится резервирование места. "
  316. "'falloc' может\n"
  317. " не быть доступным, если Ваша система не "
  318. "содержит\n"
  319. " функциюї posix_fallocate()."
  320. #: src/usage_text.h:143
  321. msgid ""
  322. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  323. " size is smaller than SIZE.\n"
  324. " You can append K or M(1K = 1024, 1M = 1024K)."
  325. msgstr ""
  326. " --no-file-allocation-limit=SIZE Не резервируется место для файлов,\n"
  327. " размер которых меньше SIZE.\n"
  328. " Вы можете добавить K или M(1K = 1024, 1M = "
  329. "1024K)."
  330. #: src/usage_text.h:147
  331. msgid ""
  332. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  333. "while\n"
  334. " allocating files.\n"
  335. " Turn off if you encounter any error"
  336. msgstr ""
  337. " --enable-direct-io[=true|false] Разрешить прямое I/O (чтение/запись), "
  338. "которое уменьшает использование cpu (процессора) во\n"
  339. " время резервирования места для файла.\n"
  340. " Выключите, если произошла какая-либо ошибка"
  341. #: src/usage_text.h:151
  342. msgid ""
  343. " --allow-overwrite[=true|false] Restart download from scratch if the\n"
  344. " corresponding control file doesn't exist. "
  345. "See\n"
  346. " also --auto-file-renaming option."
  347. msgstr ""
  348. #: src/usage_text.h:155
  349. msgid ""
  350. " --allow-piece-length-change[=true|false] If false is given, aria2 aborts\n"
  351. " download when a piece length is different "
  352. "from\n"
  353. " one in a control file. If true is given, you "
  354. "can\n"
  355. " proceed but some download progress will be "
  356. "lost."
  357. msgstr ""
  358. #: src/usage_text.h:160
  359. msgid ""
  360. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  361. "sequentially\n"
  362. " and download each URI in a separate session, "
  363. "like\n"
  364. " the usual command-line download utilities."
  365. msgstr ""
  366. " -Z, --force-sequential[=true|false] Получить URI в последовательности\n"
  367. " командной строки и загрузить каждое URI в "
  368. "отдельной сессии, как в\n"
  369. " обычных утилитах загрузки командной строки."
  370. #: src/usage_text.h:164
  371. msgid ""
  372. " --auto-file-renaming[=true|false] Rename file name if the same file "
  373. "already\n"
  374. " exists. This option works only in http(s)/ftp\n"
  375. " download.\n"
  376. " The new file name has a dot and a number"
  377. "(1..9999)\n"
  378. " appended."
  379. msgstr ""
  380. " --auto-file-renaming[=true|false] Переименовывает файл, если такой уже\n"
  381. " существует. Этот параметр работает только для "
  382. "загрузок по\n"
  383. " http(s)/ftp.\n"
  384. " К имени файла будет добавлена точка и число от "
  385. "1 до 9999."
  386. #: src/usage_text.h:170
  387. msgid ""
  388. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  389. " You can specify set of parts:\n"
  390. " http://{sv1,sv2,sv3}/foo.iso\n"
  391. " Also you can specify numeric sequences with "
  392. "step\n"
  393. " counter:\n"
  394. " http://host/image[000-100:2].img\n"
  395. " A step counter can be omitted.\n"
  396. " If all URIs do not point to the same file, "
  397. "such\n"
  398. " as the second example above, -Z option is\n"
  399. " required."
  400. msgstr ""
  401. " -P, --parameterized-uri[=true|false] Разрешить поддержку параметризованных "
  402. "URI.\n"
  403. " Вы можете указать группу частей:\n"
  404. " http://{sv1,sv2,sv3}/foo.iso\n"
  405. " Также Вы можете указать числовую "
  406. "последовательность с шагом\n"
  407. " счетчика:\n"
  408. " http://host/image[000-100:2].img\n"
  409. " Шагом счетчика можно пренебречь.\n"
  410. " Если все URI не указывают на такой же файл,\n"
  411. " как во втором приведенном выше примере, то "
  412. "необходим\n"
  413. " параметр -Z."
  414. #: src/usage_text.h:181
  415. msgid ""
  416. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  417. msgstr ""
  418. " --enable-http-keep-alive[=true|false] Разрешить HTTP/1.1 надёжное "
  419. "соединение."
  420. #: src/usage_text.h:183
  421. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  422. msgstr ""
  423. " --enable-http-pipelining[=true|false] Разрешить конвейерную обработку "
  424. "HTTP/1.1."
  425. #: src/usage_text.h:185
  426. msgid ""
  427. " -V, --check-integrity[=true|false] Check file integrity by validating "
  428. "piece\n"
  429. " hashes. This option has effect only in "
  430. "BitTorrent\n"
  431. " and Metalink downloads with chunk checksums.\n"
  432. " Use this option to re-download a damaged "
  433. "portion\n"
  434. " of a file. See also --bt-hash-check-seed "
  435. "option."
  436. msgstr ""
  437. " -V, --check-integrity[=true|false] Проверить целостность файла путём "
  438. "подтверждения хеша\n"
  439. " блока. Этот параметр влияет лишь на "
  440. "BitTorrent\n"
  441. " и Metalink загрузки с контрольной суммой "
  442. "блоков.\n"
  443. " Используйте этот параметр, чтобы перезагрузить "
  444. "поврежденную часть\n"
  445. " файла. Смотрите также параметр --bt-hash-check-"
  446. "seed."
  447. #: src/usage_text.h:191
  448. msgid ""
  449. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  450. " --check-integrity option and file is "
  451. "complete,\n"
  452. " continue to seed file. If you want to check "
  453. "file\n"
  454. " and download it only when it is damaged or\n"
  455. " incomplete, set this option to false.\n"
  456. " This option has effect only on BitTorrent\n"
  457. " download."
  458. msgstr ""
  459. " --bt-hash-check-seed[=true|false] Если задано true (да), то после проверки "
  460. "хеша с использованием\n"
  461. " параметра --check-integrity , когда файл "
  462. "целостен,\n"
  463. " продолжается сидирование файла. Если Вы "
  464. "желаете проверить файл\n"
  465. " и загрузить его только ежели он поврежден или\n"
  466. " неполный, то установите в этом параметре false "
  467. "(нет).\n"
  468. " Этот параметр влияет лишь на BitTorrent\n"
  469. " загрузки."
  470. #: src/usage_text.h:199
  471. msgid ""
  472. " --realtime-chunk-checksum[=true|false] Validate chunk of data by "
  473. "calculating\n"
  474. " checksum while downloading a file if chunk\n"
  475. " checksums are provided."
  476. msgstr ""
  477. #: src/usage_text.h:203
  478. msgid ""
  479. " -c, --continue[=true|false] Continue downloading a partially downloaded\n"
  480. " file. Use this option to resume a download\n"
  481. " started by a web browser or another program\n"
  482. " which downloads files sequentially from the\n"
  483. " beginning. Currently this option is only\n"
  484. " applicable to http(s)/ftp downloads."
  485. msgstr ""
  486. #: src/usage_text.h:210
  487. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  488. msgstr ""
  489. " -U, --user-agent=USER_AGENT Указать агент пользователя для http(s) загрузок."
  490. #: src/usage_text.h:212
  491. msgid " -n, --no-netrc[=true|false] Disables netrc support."
  492. msgstr ""
  493. #: src/usage_text.h:214
  494. #, fuzzy
  495. msgid ""
  496. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  497. " multiple URIs for a single entity: separate\n"
  498. " URIs on a single line using the TAB "
  499. "character.\n"
  500. " Reads input from stdin when '-' is specified.\n"
  501. " Additionally, options can be specified after "
  502. "each\n"
  503. " line of URI. This optional line must start "
  504. "with\n"
  505. " one or more white spaces and have one option "
  506. "per\n"
  507. " single line. See INPUT FILE section of man "
  508. "page\n"
  509. " for details."
  510. msgstr ""
  511. " -i, --input-file=FILE Загрузить URI, найденные в FILE. Вы можете указать\n"
  512. " несколько URI для одного объекта: отделяйте\n"
  513. " URI на одной строке, используя символ TAB.\n"
  514. " Читается ввод из stdin (стандартного потока "
  515. "ввода) когда указано '-'.\n"
  516. " Дополнительные параметры out и dir можно\n"
  517. " указывать после каждой строки с URI. Эта "
  518. "необязательная\n"
  519. " строка должна начинаться с пустого места - "
  520. "пробела(ов). Смотрите секцию INPUT\n"
  521. " FILE страницы man (руководства пользователя) "
  522. "для детальных пояснений."
  523. #: src/usage_text.h:224
  524. msgid ""
  525. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  526. "for\n"
  527. " every static (HTTP/FTP) URL, torrent and "
  528. "metalink.\n"
  529. " See also -s and -C options."
  530. msgstr ""
  531. " -j, --max-concurrent-downloads=N Установить максимальное количество "
  532. "параллельных загрузок для\n"
  533. " каждого статического (HTTP/FTP) URL, torrent и "
  534. "metalink.\n"
  535. " Смотрите также параметры -s и -C."
  536. #: src/usage_text.h:228
  537. msgid ""
  538. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  539. "format\n"
  540. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  541. msgstr ""
  542. " --load-cookies=FILE Загружать куки-файлы из FILE, используя формат "
  543. "Firefox3\n"
  544. " и Mozilla/Firefox(1.x/2.x)/Netscape."
  545. #: src/usage_text.h:231
  546. msgid ""
  547. " --save-cookies=FILE Save Cookies to FILE in Mozilla/Firefox(1.x/2."
  548. "x)/\n"
  549. " Netscape format. If FILE already exists, it "
  550. "is\n"
  551. " overwritten. Session Cookies are also saved "
  552. "and\n"
  553. " their expiry values are treated as 0."
  554. msgstr ""
  555. " --save-cookies=FILE Сохранить кукис в FILE в Mozilla/Firefox(1.x/2.x)/\n"
  556. " Netscape формате. Если FILE уже существует, он "
  557. "будет\n"
  558. " перезаписан. Сессия кукис также сохранится и\n"
  559. " значение ее окончания будет трактоваться как 0."
  560. #: src/usage_text.h:236
  561. #, fuzzy
  562. msgid ""
  563. " -S, --show-files[=true|false] Print file listing of .torrent, .meta4 and\n"
  564. " .metalink file and exit. More detailed\n"
  565. " information will be listed in case of torrent\n"
  566. " file."
  567. msgstr ""
  568. " -S, --show-files[=true|false] Показать список файлов из .torrent или ."
  569. "metalink \n"
  570. " и "
  571. "выйти. В случае файла torrent будет показана\n"
  572. " более "
  573. "детальная информация."
  574. #: src/usage_text.h:241
  575. msgid ""
  576. " --select-file=INDEX... Set file to download by specifying its index.\n"
  577. " You can find the file index using the\n"
  578. " --show-files option. Multiple indexes can be\n"
  579. " specified by using ',', for example: \"3,6\".\n"
  580. " You can also use '-' to specify a range: "
  581. "\"1-5\".\n"
  582. " ',' and '-' can be used together.\n"
  583. " When used with the -M option, index may vary\n"
  584. " depending on the query(see --metalink-* "
  585. "options)."
  586. msgstr ""
  587. " --select-file=INDEX... Указать файл для загрузки по заданному индексу.\n"
  588. " Вы можете найти индекс файла, используя "
  589. "параметр\n"
  590. " --show-files. Составной индекс можно\n"
  591. " указать, используя ',', например: \"3,6\".\n"
  592. " Вы можете также использовать '-', чтобы "
  593. "указать диапазон: \"1-5\".\n"
  594. " ',' и '-' могут быть использованы вместе.\n"
  595. " Когда используется с параметром -M, индекс "
  596. "может сильно\n"
  597. " зависеть от запроса (смотрите параметры --"
  598. "metalink-*)."
  599. #: src/usage_text.h:250
  600. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  601. msgstr " -T, --torrent-file=TORRENT_FILE Путь к .torrent-файлу."
  602. #: src/usage_text.h:252
  603. msgid ""
  604. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  605. " whose suffix is .torrent or content type is\n"
  606. " application/x-bittorrent is downloaded, aria2\n"
  607. " parses it as a torrent file and downloads "
  608. "files\n"
  609. " mentioned in it.\n"
  610. " If mem is specified, a torrent file is not\n"
  611. " written to the disk, but is just kept in "
  612. "memory.\n"
  613. " If false is specified, the action mentioned "
  614. "above\n"
  615. " is not taken."
  616. msgstr ""
  617. " --follow-torrent=true|false|mem Если указать true или mem, тогда "
  618. "загруженный файл,\n"
  619. " суффикс которого - .torrent или тип -\n"
  620. " application/x-bittorrent, aria2\n"
  621. " анализирует как torrent-файл и загружает "
  622. "файлы\n"
  623. " упомянутые в нем.\n"
  624. " Если указано mem, тогда torrent-файл не\n"
  625. " записывается на диск, а содержится в памяти.\n"
  626. " Если указано false, действия, упомянутые выше\n"
  627. " не совершаются."
  628. #: src/usage_text.h:262
  629. msgid ""
  630. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  631. " Multiple ports can be specified by using ',',\n"
  632. " for example: \"6881,6885\". You can also use "
  633. "'-'\n"
  634. " to specify a range: \"6881-6999\". ',' and '-' "
  635. "can\n"
  636. " be used together."
  637. msgstr ""
  638. " --listen-port=PORT... Назначить номер порта TCP для BitTorrent загрузок.\n"
  639. " Несколько портов можно указать используя ',',\n"
  640. " например: \"6881,6885\". Вы также можете "
  641. "использовать '-',\n"
  642. " чтоб указать диапазон: \"6881-6999\". ',' и "
  643. "'-' могут\n"
  644. " быть использованы вместе."
  645. #: src/usage_text.h:268
  646. msgid ""
  647. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  648. "sec.\n"
  649. " 0 means unrestricted.\n"
  650. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  651. " To limit the upload speed per torrent, use\n"
  652. " --max-upload-limit option."
  653. msgstr ""
  654. " --max-overall-upload-limit=SPEED Установить максимальную общую скорость "
  655. "раздачи в байтах/сек.\n"
  656. " 0 значит не ограничена.\n"
  657. " Вы можете добавить K или M(1K = 1024, 1M = "
  658. "1024K).\n"
  659. " Чтобы ограничить скорость раздачи для узла "
  660. "торента, используйте\n"
  661. " параметр --max-upload-limit."
  662. #: src/usage_text.h:274
  663. msgid ""
  664. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  665. " bytes/sec. 0 means unrestricted.\n"
  666. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  667. " To limit the overall upload speed, use\n"
  668. " --max-overall-upload-limit option."
  669. msgstr ""
  670. #: src/usage_text.h:280
  671. msgid ""
  672. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  673. " --seed-ratio option."
  674. msgstr ""
  675. " --seed-time=MINUTES Задать время сидирования (раздачи) в минутах. Смотрите "
  676. "также\n"
  677. " параметр --seed-ratio."
  678. #: src/usage_text.h:283
  679. msgid ""
  680. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  681. " until share ratio reaches RATIO.\n"
  682. " You are strongly encouraged to specify equals "
  683. "or\n"
  684. " more than 1.0 here. Specify 0.0 if you intend "
  685. "to\n"
  686. " do seeding regardless of share ratio.\n"
  687. " If --seed-time option is specified along with\n"
  688. " this option, seeding ends when at least one "
  689. "of\n"
  690. " the conditions is satisfied."
  691. msgstr ""
  692. " --seed-ratio=RATIO Указать рейтинг раздачи. Сидировать завершенные "
  693. "торенты,\n"
  694. " пока рейтинг раздачи не станет больше RATIO.\n"
  695. " Очень рекомендуется указать тут равный или\n"
  696. " больший 1.0. Укажите 0.0, если Вы собираетесь\n"
  697. " сидировать невзирая на рейтинг раздачи.\n"
  698. " Если указан параметр --seed-time вместе с \n"
  699. " этим параметром, сидирование закончится тогда, "
  700. "когда хотя бы одно\n"
  701. " условие будет удовлетворено."
  702. #: src/usage_text.h:292
  703. msgid ""
  704. " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  705. "in\n"
  706. " BitTorrent is 20 byte length. If more than 20\n"
  707. " bytes are specified, only first 20 bytes are\n"
  708. " used. If less than 20 bytes are specified, "
  709. "random\n"
  710. " byte data are added to make its length 20 "
  711. "bytes."
  712. msgstr ""
  713. " --peer-id-prefix=PEER_ID_PREFIX Задать префикс для ID узла. ID узла в "
  714. "BitTorrent\n"
  715. " имеет размер 20 байт. Если более 20 байт будет "
  716. "указано,\n"
  717. " только первые 20 будут использоваться, если "
  718. "будет указано\n"
  719. " меньше 20, то они будут дополнены случайными "
  720. "данными до 20 байт."
  721. #: src/usage_text.h:298
  722. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  723. msgstr ""
  724. " --enable-peer-exchange[=true|false] Разрешить расширение прямого обмена."
  725. #: src/usage_text.h:300
  726. msgid " --enable-dht[=true|false] Enable IPv4 DHT functionality."
  727. msgstr " --enable-dht[=true|false] Использовать IPv4 DHT."
  728. #: src/usage_text.h:302
  729. msgid ""
  730. " --dht-listen-port=PORT... Set UDP listening port for both IPv4 and IPv6\n"
  731. " DHT. Multiple ports can be specified by using\n"
  732. " ',', for example: \"6881,6885\". You can also\n"
  733. " use '-' to specify a range: \"6881-6999\". "
  734. "','\n"
  735. " and '-' can be used together."
  736. msgstr ""
  737. " --dht-listen-port=PORT... Установить UDP порт для соединений DHT (как IPv4, "
  738. "так и IPv6).\n"
  739. " Можно указать несколько портов через запятую, "
  740. "например: \"6881,6885\".\n"
  741. " Также можно указать диапазон портов: "
  742. "\"6881-6885\".\n"
  743. " \".\" и \"-\" можно использовать одновременно."
  744. #: src/usage_text.h:308
  745. msgid ""
  746. " --dht-entry-point=HOST:PORT Set host and port as an entry point to IPv4 "
  747. "DHT\n"
  748. " network."
  749. msgstr ""
  750. " --dht-entry-point=HOST:PORT Установить адрес и порт для входа в сеть DHT."
  751. #: src/usage_text.h:311
  752. msgid ""
  753. " --dht-file-path=PATH Change the IPv4 DHT routing table file to PATH."
  754. msgstr ""
  755. " --dht-file-path=PATH Изменить файл таблицы маршрутов для IPv4 DHT на PATH."
  756. #: src/usage_text.h:313
  757. msgid ""
  758. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  759. " If several encryption methods are provided by "
  760. "a\n"
  761. " peer, aria2 chooses the lowest one which "
  762. "satisfies\n"
  763. " the given level."
  764. msgstr ""
  765. " --bt-min-crypto-level=plain|arc4 Установить минимальный уровень метода "
  766. "шифрования.\n"
  767. " Если узел поддерживает несколько методов "
  768. "шифрования,\n"
  769. " aria2 выбирает наименьший, который "
  770. "удовлетворяет\n"
  771. " заданный уровень."
  772. #: src/usage_text.h:318
  773. msgid ""
  774. " --bt-require-crypto[=true|false] If true is given, aria2 doesn't accept "
  775. "and\n"
  776. " establish connection with legacy BitTorrent\n"
  777. " handshake. Thus aria2 always uses Obfuscation\n"
  778. " handshake."
  779. msgstr ""
  780. #: src/usage_text.h:323
  781. msgid ""
  782. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  783. " torrent is lower than SPEED, aria2 "
  784. "temporarily\n"
  785. " increases the number of peers to try for more\n"
  786. " download speed. Configuring this option with "
  787. "your\n"
  788. " preferred download speed can increase your\n"
  789. " download speed in some cases.\n"
  790. " You can append K or M(1K = 1024, 1M = 1024K)."
  791. msgstr ""
  792. " --bt-request-peer-speed-limit=SPEED Если вся скорость загрузки каждого\n"
  793. " торента ниже чем SPEED, aria2 временно\n"
  794. " увеличивает количество узлов, чтобы "
  795. "попробовать увеличить\n"
  796. " скорость загрузки. Настройка этого параметра с "
  797. "выбранной\n"
  798. " Вами скоростью загрузки может, в некоторых "
  799. "случаях,\n"
  800. " увеличить Вашу скорость загрузки.\n"
  801. " Вы можете добавить K или M(1K = 1024, 1M = "
  802. "1024K)."
  803. #: src/usage_text.h:331
  804. msgid ""
  805. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  806. "each\n"
  807. " BitTorrent download."
  808. msgstr ""
  809. " --bt-max-open-files=NUM Указать максимальное количество файлов для открытия "
  810. "в каждой\n"
  811. " BitTorrent загрузке."
  812. #: src/usage_text.h:334
  813. msgid ""
  814. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  815. " verifying piece hashes."
  816. msgstr ""
  817. " --bt-seed-unverified[=true|false] Сидер первоначально загружает файлы\n"
  818. " без проверки хеша блока."
  819. #: src/usage_text.h:337
  820. msgid ""
  821. " --bt-max-peers=NUM Specify the maximum number of peers per "
  822. "torrent.\n"
  823. " 0 means unlimited.\n"
  824. " See also --bt-request-peer-speed-limit option."
  825. msgstr ""
  826. " --bt-max-peers=NUM Указать максимальное количество узлов каждого торента.\n"
  827. " 0 означает неограниченно.\n"
  828. " Смотрите также параметр --bt-request-peer-"
  829. "speed-limit."
  830. #: src/usage_text.h:341
  831. #, fuzzy
  832. msgid ""
  833. " -M, --metalink-file=METALINK_FILE The file path to the .meta4 and ."
  834. "metalink\n"
  835. " file. Reads input from stdin when '-' is\n"
  836. " specified."
  837. msgstr ""
  838. " -M, --metalink-file=METALINK_FILE Путь к файлу .metalink. Читает\n"
  839. " ввод из stdin, если в качестве имени файла "
  840. "указано '-'."
  841. #: src/usage_text.h:345
  842. msgid ""
  843. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  844. " simultaneously. Some Metalinks regulate the\n"
  845. " number of servers to connect. aria2 strictly\n"
  846. " respects them. This means that if Metalink "
  847. "defines\n"
  848. " the maxconnections attribute lower than\n"
  849. " NUM_SERVERS, then aria2 uses the value of\n"
  850. " maxconnections attribute instead of "
  851. "NUM_SERVERS.\n"
  852. " See also -s and -j options."
  853. msgstr ""
  854. " -C, --metalink-servers=NUM_SERVERS Количество серверов для\n"
  855. " одновременного подключения. Некоторые Metalink "
  856. "регулируют\n"
  857. " количество серверов для соединения. aria2 "
  858. "точно\n"
  859. " придерживается их. Это значит, что если "
  860. "Metalink определяет\n"
  861. " атрибут maxconnections ниже чем\n"
  862. " NUM_SERVERS, тогда aria2 использует значение\n"
  863. " атрибута maxconnections вместо NUM_SERVERS.\n"
  864. " Смотрите также параметры -s и -j."
  865. #: src/usage_text.h:354
  866. msgid " --metalink-version=VERSION The version of the file to download."
  867. msgstr " --metalink-version=VERSION Версия файла для скачивания."
  868. #: src/usage_text.h:356
  869. msgid " --metalink-language=LANGUAGE The language of the file to download."
  870. msgstr " --metalink-language=LANGUAGE Язык файла для скачивания."
  871. #: src/usage_text.h:358
  872. msgid ""
  873. " --metalink-os=OS The operating system of the file to download."
  874. msgstr " --metalink-os=OS Целевая операционная система файла."
  875. #: src/usage_text.h:360
  876. msgid ""
  877. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  878. " A comma-delimited list of locations is\n"
  879. " acceptable."
  880. msgstr ""
  881. " --metalink-location=LOCATION[,...] Местонахождение предпочитаемого "
  882. "сервера.\n"
  883. " Перечень с запятыми разделителями есть\n"
  884. " приемлемым."
  885. #: src/usage_text.h:364
  886. msgid ""
  887. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  888. "'none'\n"
  889. " if you don't have any preferred protocol."
  890. msgstr ""
  891. " --metalink-preferred-protocol=PROTO Указать предпочитаемый протокол. "
  892. "Укажите 'none',\n"
  893. " если у Вас нет желаемого протокола."
  894. #: src/usage_text.h:367
  895. #, fuzzy
  896. msgid ""
  897. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  898. " whose suffix is .meta4 or .metalink, or "
  899. "content\n"
  900. " type of application/metalink4+xml or\n"
  901. " application/metalink+xml is downloaded, aria2\n"
  902. " parses it as a metalink file and downloads "
  903. "files\n"
  904. " mentioned in it.\n"
  905. " If mem is specified, a metalink file is not\n"
  906. " written to the disk, but is just kept in "
  907. "memory.\n"
  908. " If false is specified, the action mentioned "
  909. "above\n"
  910. " is not taken."
  911. msgstr ""
  912. " --follow-metalink=true|false|mem Если указано 'true' или 'mem' , когда "
  913. "загруженный файл\n"
  914. " имеет расширение .metalink или mime-тип \n"
  915. " application/metalink+xml, aria2 считает \n"
  916. " его файлом metalink и загружает описанные\n"
  917. " в нем файлы.\n"
  918. " Если указано 'mem', то metalink-файл не "
  919. "сохраняется \n"
  920. " на диск, а просто хранится в памяти.\n"
  921. " Если указано 'false' то вышеприведенная "
  922. "операция \n"
  923. " не производится."
  924. #: src/usage_text.h:378
  925. msgid ""
  926. " --metalink-enable-unique-protocol[=true|false] If true is given and "
  927. "several\n"
  928. " protocols are available for a mirror in a "
  929. "metalink\n"
  930. " file, aria2 uses one of them.\n"
  931. " Use --metalink-preferred-protocol option to\n"
  932. " specify the preference of protocol."
  933. msgstr ""
  934. #: src/usage_text.h:384
  935. msgid " -v, --version Print the version number and exit."
  936. msgstr " -v, --version Вывести номер версии и выйти."
  937. #: src/usage_text.h:386
  938. msgid ""
  939. " -h, --help[=TAG|KEYWORD] Print usage and exit.\n"
  940. " The help messages are classified with tags. A "
  941. "tag\n"
  942. " starts with \"#\". For example, type \"--"
  943. "help=#http\"\n"
  944. " to get the usage for the options tagged with\n"
  945. " \"#http\". If non-tag word is given, print the "
  946. "usage\n"
  947. " for the options whose name includes that word."
  948. msgstr ""
  949. " -h, --help[=TAG|KEYWORD] Вывести справку по использованию и выйти.\n"
  950. " Справочное сообщение определяется метками "
  951. "(TAG).\n"
  952. " Метки начинаются с \"#\". Например, \"--"
  953. "help=#http\"\n"
  954. " выведет справку по опциям, помеченным меткой "
  955. "\"#http\". \n"
  956. " Если задать слово, не являющееся меткой, то "
  957. "будет \n"
  958. " выведена справка по опциям, содержащим это "
  959. "слово."
  960. #: src/usage_text.h:393
  961. msgid " --no-conf[=true|false] Disable loading aria2.conf file."
  962. msgstr ""
  963. #: src/usage_text.h:395
  964. msgid ""
  965. " --conf-path=PATH Change the configuration file path to PATH."
  966. msgstr " --conf-path=PATH Сменить путь к файлу конфигурации на PATH."
  967. #: src/usage_text.h:397
  968. msgid ""
  969. " --stop=SEC Stop application after SEC seconds has "
  970. "passed.\n"
  971. " If 0 is given, this feature is disabled."
  972. msgstr ""
  973. " --stop=SEC Остановить программу после того как пройдет SEC секунд.\n"
  974. " Если указан 0, эта возможность будет не "
  975. "доступна."
  976. #: src/usage_text.h:400
  977. msgid ""
  978. " --header=HEADER Append HEADER to HTTP request header. You can "
  979. "use\n"
  980. " this option repeatedly to specify more than "
  981. "one\n"
  982. " header:\n"
  983. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  984. "9J1\"\n"
  985. " http://host/file"
  986. msgstr ""
  987. " --header=HEADER Добавляет HEADER к загаловку HTTP запроса. Вы можете "
  988. "использовать\n"
  989. " этот параметр повторно, чтоб указать более "
  990. "одного\n"
  991. " заголовка:\n"
  992. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  993. "9J1\"\n"
  994. " http://host/file"
  995. #: src/usage_text.h:406
  996. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  997. msgstr ""
  998. " -q, --quiet[=true|false] Сделать aria2 молчаливым (без консольного вывода)."
  999. #: src/usage_text.h:408
  1000. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  1001. msgstr " --async-dns[=true|false] Разрешить асинхронный DNS."
  1002. #: src/usage_text.h:410
  1003. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  1004. msgstr ""
  1005. " --ftp-reuse-connection[=true|false] Повторно использовать FTP соединение."
  1006. #: src/usage_text.h:412
  1007. msgid ""
  1008. " --summary-interval=SEC Set interval to output download progress "
  1009. "summary.\n"
  1010. " Setting 0 suppresses the output."
  1011. msgstr ""
  1012. " --summary-interval=SEC Указать интервал времени до вывода сообщения про "
  1013. "прогресс загрузки.\n"
  1014. " Использование 0 запрещает вывод."
  1015. #: src/usage_text.h:415
  1016. msgid " --log-level=LEVEL Set log level to output."
  1017. msgstr " --log-level=LEVEL Указать уровень вывода лога."
  1018. #: src/usage_text.h:417
  1019. msgid ""
  1020. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  1021. "the\n"
  1022. " remote HTTP/FTP server and if it is "
  1023. "available,\n"
  1024. " apply it to the local file."
  1025. msgstr ""
  1026. " -R, --remote-time[=true|false] Ищет метку времени файла на\n"
  1027. " удаленном HTTP/FTP сервере и, если это "
  1028. "доступно,\n"
  1029. " применяет ее к локальному файлу."
  1030. #: src/usage_text.h:421
  1031. msgid ""
  1032. " --connect-timeout=SEC Set the connect timeout in seconds to "
  1033. "establish\n"
  1034. " connection to HTTP/FTP/proxy server. After "
  1035. "the\n"
  1036. " connection is established, this option makes "
  1037. "no\n"
  1038. " effect and --timeout option is used instead."
  1039. msgstr ""
  1040. " --connect-timeout=SEC Указать перерыв в соединении для установки\n"
  1041. " подключения к HTTP/FTP/прокси сервера. После\n"
  1042. " установки подключения этот параметр не имеет "
  1043. "значения,\n"
  1044. " и вместо него используется параметр --timeout."
  1045. #: src/usage_text.h:426
  1046. msgid ""
  1047. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  1048. "the\n"
  1049. " remote HTTP/FTP servers NUM times without "
  1050. "getting\n"
  1051. " a single byte, then force the download to "
  1052. "fail.\n"
  1053. " Specify 0 to disable this option.\n"
  1054. " This options is effective only when using\n"
  1055. " HTTP/FTP servers."
  1056. msgstr ""
  1057. " --max-file-not-found=NUM Если aria2 получает статус `file not found' (файл "
  1058. "не найден) с\n"
  1059. " удаленных HTTP/FTP серверов NUM раз без "
  1060. "получения\n"
  1061. " хотя бы одного байта, тогда принудительно "
  1062. "начинается отказ от загрузки.\n"
  1063. " Укажите 0, чтоб запретить этот параметр.\n"
  1064. " Этот параметр действенен только тогда, когда "
  1065. "используются\n"
  1066. " HTTP/FTP сервера."
  1067. #: src/usage_text.h:433
  1068. msgid ""
  1069. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  1070. " If 'inorder' is given, URI is tried in the "
  1071. "order\n"
  1072. " appeared in the URI list.\n"
  1073. " If 'feedback' is given, aria2 uses download "
  1074. "speed\n"
  1075. " observed in the previous downloads and choose\n"
  1076. " fastest server in the URI list. This also\n"
  1077. " effectively skips dead mirrors. The observed\n"
  1078. " download speed is a part of performance "
  1079. "profile\n"
  1080. " of servers mentioned in --server-stat-of and\n"
  1081. " --server-stat-if options.\n"
  1082. " If 'adaptive' is given, selects one of the "
  1083. "best\n"
  1084. " mirrors for the first and reserved "
  1085. "connections.\n"
  1086. " For supplementary ones, it returns mirrors "
  1087. "which\n"
  1088. " has not been tested yet, and if each of them "
  1089. "has\n"
  1090. " already been tested, returns mirrors which has "
  1091. "to\n"
  1092. " be tested again. Otherwise, it doesn't select\n"
  1093. " anymore mirrors. Like 'feedback', it uses a\n"
  1094. " performance profile of servers."
  1095. msgstr ""
  1096. " --uri-selector=SELECTOR Указать алгоритм выбора URI.\n"
  1097. " Если задано 'inorder', то URI проверяются в "
  1098. "порядке\n"
  1099. " представления в списке URI.\n"
  1100. " Если задано 'feedback', aria2 использует "
  1101. "скорость загрузки,\n"
  1102. " которая наблюдалась в предыдущих загрузках, и "
  1103. "выбирает\n"
  1104. " самый быстрый сервер в перечне URI. Это также\n"
  1105. " эффективно исключает мертвые зеркала. "
  1106. "Наблюдаемая\n"
  1107. " скорость загрузки является частью настроек "
  1108. "профиля\n"
  1109. " сервера, упомянутых в параметрах --server-stat-"
  1110. "of \n"
  1111. " и --server-stat-if.\n"
  1112. " Если задано 'adaptive', выбирается одно из "
  1113. "лучших\n"
  1114. " зеркал для первого и резервного соединений.\n"
  1115. " Дополнительно, возвращаются зеркала, которые\n"
  1116. " пока не были проверены, и, если каждое из них\n"
  1117. " уже проверено, возвращаются зеркала, которые "
  1118. "должны\n"
  1119. " быть проверены снова. Иначе зеркала больше\n"
  1120. " не выбираются. Подобно 'feedback', "
  1121. "используются\n"
  1122. " настройки профиля сервера."
  1123. #: src/usage_text.h:452
  1124. msgid ""
  1125. " --server-stat-of=FILE Specify the filename to which performance "
  1126. "profile\n"
  1127. " of the servers is saved. You can load saved "
  1128. "data\n"
  1129. " using --server-stat-if option."
  1130. msgstr ""
  1131. " --server-stat-of=FILE Задаёт имя файла в который сохраняется профиль\n"
  1132. " настроек сервера. Вы можете загрузить "
  1133. "сохраненные данные,\n"
  1134. " используя параметр --server-stat-if."
  1135. #: src/usage_text.h:456
  1136. msgid ""
  1137. " --server-stat-if=FILE Specify the filename to load performance "
  1138. "profile\n"
  1139. " of the servers. The loaded data will be used "
  1140. "in\n"
  1141. " some URI selector such as 'feedback'.\n"
  1142. " See also --uri-selector option"
  1143. msgstr ""
  1144. " --server-stat-if=FILE Указать имя файла для загрузки профиля настроек\n"
  1145. " сервера. Загруженные данные будут использованы "
  1146. "в\n"
  1147. " некоторых URI селекторах, таких как "
  1148. "'feedback'.\n"
  1149. " Смотрите также параметр --uri-selector"
  1150. #: src/usage_text.h:461
  1151. msgid ""
  1152. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  1153. " performance profile of the servers since the "
  1154. "last\n"
  1155. " contact to them."
  1156. msgstr ""
  1157. " --server-stat-timeout=SEC Указывает паузу в секундах, для того, чтоб "
  1158. "сделать недействительным\n"
  1159. " профиль настроек сервера, с тех пор, как "
  1160. "состоялся последний\n"
  1161. " контакт с ним."
  1162. #: src/usage_text.h:465
  1163. msgid ""
  1164. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  1165. "seconds.\n"
  1166. " If 0 is given, a control file is not saved "
  1167. "during\n"
  1168. " download. aria2 saves a control file when it "
  1169. "stops\n"
  1170. " regardless of the value."
  1171. msgstr ""
  1172. " --auto-save-interval=SEC Сохранять контрольный файл (*.aria2) каждые SEC "
  1173. "секунд.\n"
  1174. " Если указано 0, тогда контрольный файл не "
  1175. "сохраняется на протяжении\n"
  1176. " загрузки. aria2 сохраняет контрольный файл "
  1177. "тогда, когда останавливается,\n"
  1178. " не смотря на значение."
  1179. #: src/usage_text.h:470
  1180. msgid ""
  1181. " --certificate=FILE Use the client certificate in FILE.\n"
  1182. " The certificate must be in PEM format.\n"
  1183. " You may use --private-key option to specify "
  1184. "the\n"
  1185. " private key."
  1186. msgstr ""
  1187. " --certificate=FILE Использовать клиентский сертификат в FILE.\n"
  1188. " Сертификат должен быть в PEM формате.\n"
  1189. " Вы можете использовать параметр --private-key, "
  1190. "чтоб указать\n"
  1191. " закрытый ключ."
  1192. #: src/usage_text.h:475
  1193. msgid ""
  1194. " --private-key=FILE Use the private key in FILE.\n"
  1195. " The private key must be decrypted and in PEM\n"
  1196. " format. See also --certificate option."
  1197. msgstr ""
  1198. " --private-key=FILE Использовать закрытый ключ в FILE.\n"
  1199. " Закрытый ключ должен быть дешифрованным и в "
  1200. "PEM\n"
  1201. " формате. Смотрите также параметр --certificate."
  1202. #: src/usage_text.h:479
  1203. msgid ""
  1204. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  1205. "verify\n"
  1206. " the peers. The certificate file must be in "
  1207. "PEM\n"
  1208. " format and can contain multiple CA "
  1209. "certificates.\n"
  1210. " Use --check-certificate option to enable\n"
  1211. " verification."
  1212. msgstr ""
  1213. " --ca-certificate=FILE Использовать сертификат авторизации в FILE для "
  1214. "проверки\n"
  1215. " узлов. Сертификат должен быть в PEM\n"
  1216. " формате и содержать многоразовые CA "
  1217. "сертификаты.\n"
  1218. " Используйте параметр --check-certificate, чтоб "
  1219. "разрешить\n"
  1220. " проверку."
  1221. #: src/usage_text.h:485
  1222. msgid ""
  1223. " --check-certificate[=true|false] Verify the peer using certificates "
  1224. "specified\n"
  1225. " in --ca-certificate option."
  1226. msgstr ""
  1227. " --check-certificate[=true|false] Проверить каждый из используемых "
  1228. "сертификатов, которые указаны\n"
  1229. " в параметре --ca-certificate."
  1230. #: src/usage_text.h:488
  1231. msgid ""
  1232. " --no-proxy=DOMAINS Specify comma separated hostnames, domains or\n"
  1233. " network address with or without CIDR block "
  1234. "where\n"
  1235. " proxy should not be used."
  1236. msgstr ""
  1237. #: src/usage_text.h:492
  1238. msgid ""
  1239. " --use-head[=true|false] Use HEAD method for the first request to the "
  1240. "HTTP\n"
  1241. " server."
  1242. msgstr ""
  1243. " --use-head[=true|false] Использовать метод HEAD для первого запроса к HTTP\n"
  1244. " серверу."
  1245. #: src/usage_text.h:495
  1246. msgid " --event-poll=POLL Specify the method for polling events."
  1247. msgstr " --event-poll=POLL Указать метод опроса событий."
  1248. #: src/usage_text.h:497
  1249. msgid ""
  1250. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  1251. "a\n"
  1252. " BitTorrent tracker. Although this function is\n"
  1253. " named 'external', it can accept any kind of "
  1254. "IP\n"
  1255. " addresses."
  1256. msgstr ""
  1257. " --bt-external-ip=IPADDRESS Указать внешний IP для отчета для\n"
  1258. " BitTorrent трекера. Не смотря на то, что эта "
  1259. "функция\n"
  1260. " названа 'external' ('внешней'), она может "
  1261. "принимать любой IP\n"
  1262. " адрес."
  1263. #: src/usage_text.h:502
  1264. msgid ""
  1265. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  1266. "it\n"
  1267. " is requested by the server. If false is set, "
  1268. "then\n"
  1269. " authorization header is always sent to the "
  1270. "server.\n"
  1271. " There is an exception: if username and "
  1272. "password\n"
  1273. " are embedded in URI, authorization header is\n"
  1274. " always sent to the server regardless of this\n"
  1275. " option."
  1276. msgstr ""
  1277. " --http-auth-challenge[=true|false] Отправлять заголовок HTTP авторизации "
  1278. "только тогда, когда он\n"
  1279. " запрошен с сервера. Если установлен false "
  1280. "(\"нет\"), тогда\n"
  1281. " заголовок авторизации всегда отправляется на "
  1282. "сервер.\n"
  1283. " Существует исключение: если имя пользователя и "
  1284. "пароль\n"
  1285. " являются встроенными в URI, то заголовок "
  1286. "авторизации\n"
  1287. " всегда отправляется на сервер, независимо от "
  1288. "этого\n"
  1289. " параметра."
  1290. #: src/usage_text.h:510
  1291. msgid ""
  1292. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  1293. "can\n"
  1294. " find the file index using the --show-files "
  1295. "option.\n"
  1296. " PATH is a relative path to the path specified "
  1297. "in\n"
  1298. " --dir option. You can use this option "
  1299. "multiple\n"
  1300. " times."
  1301. msgstr ""
  1302. " -O, --index-out=INDEX=PATH Указать путь к файлу с индексом index=INDEX. Вы "
  1303. "можете\n"
  1304. " найти индекс файла используя параметр --show-"
  1305. "files.\n"
  1306. " PATH является относительным путем к тому, "
  1307. "который указано в\n"
  1308. " параметре --dir. Вы можете использовать этот "
  1309. "параметр много\n"
  1310. " раз."
  1311. #: src/usage_text.h:516
  1312. msgid ""
  1313. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  1314. "the\n"
  1315. " remote file is available and doesn't download\n"
  1316. " data. This option has effect on HTTP/FTP "
  1317. "download.\n"
  1318. " BitTorrent downloads are canceled if true is\n"
  1319. " specified."
  1320. msgstr ""
  1321. " --dry-run[=true|false] Если задано true (да), aria2 только проверяет, "
  1322. "является ли\n"
  1323. " дистанционный файл доступным и не загружает\n"
  1324. " данные. Этот параметр влияет на HTTP/FTP "
  1325. "загрузку.\n"
  1326. " BitTorrent загрузки отменяются, если true\n"
  1327. " задано."
  1328. #: src/usage_text.h:522
  1329. msgid ""
  1330. " --bt-tracker-interval=SEC Set the interval in seconds between tracker\n"
  1331. " requests. This completely overrides interval "
  1332. "value\n"
  1333. " and aria2 just uses this value and ignores "
  1334. "the\n"
  1335. " min interval and interval value in the "
  1336. "response of\n"
  1337. " tracker. If 0 is set, aria2 determines "
  1338. "interval\n"
  1339. " based on the response of tracker and the "
  1340. "download\n"
  1341. " progress."
  1342. msgstr ""
  1343. " --bt-tracker-interval=SEC Указать интервал в секундах между запросами\n"
  1344. " трекера. Это полностью отбрасывает значение "
  1345. "интервала\n"
  1346. " и aria2 использует только это значение и "
  1347. "игнорирует\n"
  1348. " минимальный интервал и значение интервала в "
  1349. "ответе\n"
  1350. " трекера. Если указан 0, aria2 определяет "
  1351. "интервал\n"
  1352. " основываясь на ответе трекера и прогрессе\n"
  1353. " загрузки."
  1354. #: src/usage_text.h:530
  1355. msgid ""
  1356. " --on-download-complete=COMMAND Set the command to be executed after "
  1357. "download\n"
  1358. " completed.\n"
  1359. " See --on-download-start option for the\n"
  1360. " requirement of COMMAND.\n"
  1361. " See also --on-download-stop option."
  1362. msgstr ""
  1363. #: src/usage_text.h:536
  1364. msgid ""
  1365. " --on-download-start=COMMAND Set the command to be executed after download\n"
  1366. " got started. aria2 passes 3 arguments to "
  1367. "COMMAND:\n"
  1368. " GID, the nubmer of files and file path. See "
  1369. "Event\n"
  1370. " Hook in man page for more details."
  1371. msgstr ""
  1372. #: src/usage_text.h:541
  1373. msgid ""
  1374. " --on-download-pause=COMMAND Set the command to be executed after download\n"
  1375. " was paused.\n"
  1376. " See --on-download-start option for the\n"
  1377. " requirement of COMMAND."
  1378. msgstr ""
  1379. #: src/usage_text.h:546
  1380. msgid ""
  1381. " --on-download-error=COMMAND Set the command to be executed after download\n"
  1382. " aborted due to error.\n"
  1383. " See --on-download-start option for the\n"
  1384. " requirement of COMMAND.\n"
  1385. " See also --on-download-stop option."
  1386. msgstr ""
  1387. #: src/usage_text.h:552
  1388. msgid ""
  1389. " --on-download-stop=COMMAND Set the command to be executed after download\n"
  1390. " stopped. You can override the command to be\n"
  1391. " executed for particular download result using\n"
  1392. " --on-download-complete and --on-download-"
  1393. "error. If\n"
  1394. " they are specified, command specified in this\n"
  1395. " option is not executed.\n"
  1396. " See --on-download-start option for the\n"
  1397. " requirement of COMMAND."
  1398. msgstr ""
  1399. #: src/usage_text.h:561
  1400. msgid ""
  1401. " --bt-stop-timeout=SEC Stop BitTorrent download if download speed is "
  1402. "0 in\n"
  1403. " consecutive SEC seconds. If 0 is given, this\n"
  1404. " feature is disabled."
  1405. msgstr ""
  1406. " --bt-stop-timeout=SEC Остановить закачку BitTorrent'а, если скорость "
  1407. "загрузки равна 0\n"
  1408. " на протяжении SEC секунд. Если задать 0, то "
  1409. "эта возможность \n"
  1410. " не будет использоваться."
  1411. #: src/usage_text.h:565
  1412. msgid ""
  1413. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] Try to download first and "
  1414. "last\n"
  1415. " pieces of each file first. This is useful for\n"
  1416. " previewing files. The argument can contain 2\n"
  1417. " keywords:head and tail. To include both "
  1418. "keywords,\n"
  1419. " they must be separated by comma. These "
  1420. "keywords\n"
  1421. " can take one parameter, SIZE. For example, if\n"
  1422. " head=SIZE is specified, pieces in the range "
  1423. "of\n"
  1424. " first SIZE bytes of each file get higher "
  1425. "priority.\n"
  1426. " tail=SIZE means the range of last SIZE bytes "
  1427. "of\n"
  1428. " each file. SIZE can include K or M(1K = 1024, "
  1429. "1M =\n"
  1430. " 1024K). If SIZE is omitted, SIZE=1M is used."
  1431. msgstr ""
  1432. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] Пытаться загрузить сначала\n"
  1433. " первую и последнюю части каждого файла.\n"
  1434. " Это бывает полезным для предварительного\n"
  1435. " просмотра файлов. Аргумент может содержать\n"
  1436. " 2 ключевых слова: head и tail. Для включения\n"
  1437. " обоих ключей, необходимо разделить их "
  1438. "запятой.\n"
  1439. " Ключевые слова принимают один параметр: SIZE.\n"
  1440. " К примеру, если указано head=SIZE, части в "
  1441. "пределах\n"
  1442. " первых SIZE байт каждого файла получат "
  1443. "повышенный\n"
  1444. " приоритет. tail=SIZE обозначает диапазон из\n"
  1445. " последних SIZE байт каждого файла. SIZE может\n"
  1446. " включать букву K или M для обозначения "
  1447. "размера\n"
  1448. " в килобайтах или мегабайтах, соответственно\n"
  1449. " (1K = 1024, 1M = 1024K). Если SIZE пропущено, "
  1450. "то\n"
  1451. " будет использовано по умолчанию значение: "
  1452. "SIZE=1M."
  1453. #: src/usage_text.h:577
  1454. msgid ""
  1455. " --interface=INTERFACE Bind sockets to given interface. You can "
  1456. "specify\n"
  1457. " interface name, IP address and hostname."
  1458. msgstr ""
  1459. " --interface=INTERFACE Привязать сокеты к данному интерфейсу. Вы "
  1460. "можете указать\n"
  1461. " имя интерфейса, IP-адрес и имя хоста."
  1462. #: src/usage_text.h:580
  1463. msgid " --disable-ipv6[=true|false] Disable IPv6."
  1464. msgstr " --disable-ipv6[=true|false] Отключить IPv6."
  1465. #: src/usage_text.h:582
  1466. msgid ""
  1467. " --bt-save-metadata[=true|false] Save metadata as .torrent file. This option "
  1468. "has\n"
  1469. " effect only when BitTorrent Magnet URI is "
  1470. "used.\n"
  1471. " The filename is hex encoded info hash with "
  1472. "suffix\n"
  1473. " .torrent. The directory to be saved is the "
  1474. "same\n"
  1475. " directory where download file is saved. If "
  1476. "the\n"
  1477. " same file already exists, metadata is not "
  1478. "saved.\n"
  1479. " See also --bt-metadata-only option."
  1480. msgstr ""
  1481. #: src/usage_text.h:590
  1482. msgid ""
  1483. " --http-no-cache[=true|false] Send Cache-Control: no-cache and Pragma: no-"
  1484. "cache\n"
  1485. " header to avoid cached content. If false is\n"
  1486. " given, these headers are not sent and you can "
  1487. "add\n"
  1488. " Cache-Control header with a directive you "
  1489. "like\n"
  1490. " using --header option."
  1491. msgstr ""
  1492. #: src/usage_text.h:596
  1493. msgid ""
  1494. " --bt-metadata-only[=true|false] Download metadata only. The file(s) "
  1495. "described\n"
  1496. " in metadata will not be downloaded. This "
  1497. "option\n"
  1498. " has effect only when BitTorrent Magnet URI is\n"
  1499. " used. See also --bt-save-metadata option."
  1500. msgstr ""
  1501. #: src/usage_text.h:601
  1502. msgid ""
  1503. " --human-readable[=true|false] Print sizes and speed in human readable "
  1504. "format\n"
  1505. " (e.g., 1.2Ki, 3.4Mi) in the console readout."
  1506. msgstr ""
  1507. #: src/usage_text.h:604
  1508. msgid " --bt-enable-lpd[=true|false] Enable Local Peer Discovery."
  1509. msgstr " --bt-enable-lpd[=true|false] Разрешить поиск локальных пиров."
  1510. #: src/usage_text.h:606
  1511. msgid ""
  1512. " --bt-lpd-interface=INTERFACE Use given interface for Local Peer Discovery. "
  1513. "If\n"
  1514. " this option is not specified, the default\n"
  1515. " interface is chosen. You can specify "
  1516. "interface\n"
  1517. " name and IP address."
  1518. msgstr ""
  1519. " --bt-lpd-interface=INTERFACE Использовать для поиска локальных пиров "
  1520. "указанный интерфейс.\n"
  1521. " Если этот параметр не указан, используется "
  1522. "интерфейс по умолчанию.\n"
  1523. " Можно указать имя интерфейса и IP-адрес."
  1524. #: src/usage_text.h:611
  1525. msgid ""
  1526. " --reuse-uri[=true|false] Reuse already used URIs if no unused URIs are\n"
  1527. " left."
  1528. msgstr ""
  1529. #: src/usage_text.h:614
  1530. msgid " --all-proxy-user=USER Set user for --all-proxy option."
  1531. msgstr ""
  1532. " --all-proxy-user=USER Указать имя пользователя для параметра --all-proxy."
  1533. #: src/usage_text.h:616
  1534. msgid " --all-proxy-passwd=PASSWD Set password for --all-proxy option."
  1535. msgstr " --all-proxy-passwd=PASSWD Указать пароль для параметра --all-proxy."
  1536. #: src/usage_text.h:618
  1537. msgid " --http-proxy-user=USER Set user for --http-proxy option."
  1538. msgstr ""
  1539. " --http-proxy-user=USER Указать имя пользователя для параметра --http-proxy."
  1540. #: src/usage_text.h:620
  1541. msgid " --http-proxy-passwd=PASSWD Set password for --http-proxy option."
  1542. msgstr " --http-proxy-passwd=PASSWD Указать пароль для параметра --http-proxy."
  1543. #: src/usage_text.h:622
  1544. msgid " --https-proxy-user=USER Set user for --https-proxy option."
  1545. msgstr ""
  1546. " --https-proxy-user=USER Указать имя пользователя для параметра --https-"
  1547. "proxy."
  1548. #: src/usage_text.h:624
  1549. msgid " --https-proxy-passwd=PASSWD Set password for --https-proxy option."
  1550. msgstr ""
  1551. " --https-proxy-passwd=PASSWD Указать пароль для параметра --https-proxy."
  1552. #: src/usage_text.h:626
  1553. msgid " --ftp-proxy-user=USER Set user for --ftp-proxy option."
  1554. msgstr ""
  1555. " --ftp-proxy-user=USER Указать имя пользователя для параметра --ftp-proxy."
  1556. #: src/usage_text.h:628
  1557. msgid " --ftp-proxy-passwd=PASSWD Set password for --ftp-proxy option."
  1558. msgstr " --ftp-proxy-passwd=PASSWD Указать пароль для параметра --ftp-proxy."
  1559. #: src/usage_text.h:630
  1560. msgid ""
  1561. " --remove-control-file[=true|false] Remove control file before download. "
  1562. "Using\n"
  1563. " with --allow-overwrite=true, download always\n"
  1564. " starts from scratch. This will be useful for\n"
  1565. " users behind proxy server which disables "
  1566. "resume."
  1567. msgstr ""
  1568. " --remove-control-file[=true|false] Удалить контрольный файл перед "
  1569. "загрузкой.\n"
  1570. " При использовании с --allow-overwrite=true "
  1571. "файл всегда\n"
  1572. " загружается заново. Это может понадобиться "
  1573. "пользователям\n"
  1574. " за прокси-сервером, не поддерживающим докачку."
  1575. #: src/usage_text.h:635
  1576. msgid ""
  1577. " --always-resume[=true|false] Always resume download. If true is given, "
  1578. "aria2\n"
  1579. " always tries to resume download and if resume "
  1580. "is\n"
  1581. " not possible, aborts download. If false is "
  1582. "given,\n"
  1583. " when all given URIs do not support resume or\n"
  1584. " aria2 encounters N URIs which does not "
  1585. "support\n"
  1586. " resume (N is the value specified using\n"
  1587. " --max-resume-failure-tries option), aria2\n"
  1588. " downloads file from scratch.\n"
  1589. " See --max-resume-failure-tries option."
  1590. msgstr ""
  1591. #: src/usage_text.h:645
  1592. msgid ""
  1593. " --max-resume-failure-tries=N When used with --always-resume=false, aria2\n"
  1594. " downloads file from scratch when aria2 detects "
  1595. "N\n"
  1596. " number of URIs that does not support resume. "
  1597. "If N\n"
  1598. " is 0, aria2 downloads file from scratch when "
  1599. "all\n"
  1600. " given URIs do not support resume.\n"
  1601. " See --always-resume option."
  1602. msgstr ""
  1603. #: src/usage_text.h:652
  1604. msgid " --bt-tracker-timeout=SEC Set timeout in seconds."
  1605. msgstr " --bt-tracker-timeout=SEC Указать ожидание в секундах."
  1606. #: src/usage_text.h:654
  1607. msgid ""
  1608. " --bt-tracker-connect-timeout=SEC Set the connect timeout in seconds to\n"
  1609. " establish connection to tracker. After the\n"
  1610. " connection is established, this option makes "
  1611. "no\n"
  1612. " effect and --bt-tracker-timeout option is "
  1613. "used\n"
  1614. " instead."
  1615. msgstr ""
  1616. #: src/usage_text.h:660
  1617. msgid " --dht-message-timeout=SEC Set timeout in seconds."
  1618. msgstr " --dht-message-timeout=SEC Указать ожидание в секундах.."
  1619. #: src/usage_text.h:662
  1620. msgid ""
  1621. " --http-accept-gzip[=true|false] Send 'Accept: deflate, gzip' request "
  1622. "header\n"
  1623. " and inflate response if remote server "
  1624. "responds\n"
  1625. " with 'Content-Encoding: gzip' or\n"
  1626. " 'Content-Encoding: deflate'."
  1627. msgstr ""
  1628. #: src/usage_text.h:667
  1629. #, fuzzy
  1630. msgid ""
  1631. " --save-session=FILE Save error/unfinished downloads to FILE on "
  1632. "exit.\n"
  1633. " You can pass this output file to aria2c with -"
  1634. "i\n"
  1635. " option on restart. Please note that downloads\n"
  1636. " added by aria2.addTorrent and aria2."
  1637. "addMetalink\n"
  1638. " RPC method are not saved."
  1639. msgstr ""
  1640. " --ca-certificate=FILE Использовать сертификат авторизации в FILE для "
  1641. "проверки\n"
  1642. " узлов. Сертификат должен быть в PEM\n"
  1643. " формате и содержать многоразовые CA "
  1644. "сертификаты.\n"
  1645. " Используйте параметр --check-certificate, чтоб "
  1646. "разрешить\n"
  1647. " проверку."
  1648. #: src/usage_text.h:673
  1649. msgid ""
  1650. " -x, --max-connection-per-server=NUM The maximum number of connections to "
  1651. "one\n"
  1652. " server for each download."
  1653. msgstr ""
  1654. #: src/usage_text.h:676
  1655. msgid ""
  1656. " -k, --min-split-size=SIZE aria2 does not split less than 2*SIZE byte "
  1657. "range.\n"
  1658. " For example, let's consider downloading 20MiB\n"
  1659. " file. If SIZE is 10M, aria2 can split file "
  1660. "into 2\n"
  1661. " range [0-10MiB) and [10MiB-20MiB) and download "
  1662. "it\n"
  1663. " using 2 sources(if --split >= 2, of course).\n"
  1664. " If SIZE is 15M, since 2*15M > 20MiB, aria2 "
  1665. "does\n"
  1666. " not split file and download it using 1 "
  1667. "source.\n"
  1668. " You can append K or M(1K = 1024, 1M = 1024K)."
  1669. msgstr ""
  1670. #: src/usage_text.h:685
  1671. msgid ""
  1672. " --conditional-get[=true|false] Download file only when the local file is "
  1673. "older\n"
  1674. " than remote file. Currently, this function "
  1675. "has\n"
  1676. " many limitations. See man page for details."
  1677. msgstr ""
  1678. #: src/usage_text.h:689
  1679. msgid ""
  1680. " --on-bt-download-complete=COMMAND For BitTorrent, a command specified in\n"
  1681. " --on-download-complete is called after "
  1682. "download\n"
  1683. " completed and seeding is over. On the other "
  1684. "hand,\n"
  1685. " this option sets the command to be executed "
  1686. "after\n"
  1687. " download completed but before seeding.\n"
  1688. " See --on-download-start option for the\n"
  1689. " requirement of COMMAND."
  1690. msgstr ""
  1691. #: src/usage_text.h:697
  1692. msgid ""
  1693. " --enable-async-dns6[=true|false] Enable IPv6 name resolution in "
  1694. "asynchronous\n"
  1695. " DNS resolver. This option will be ignored "
  1696. "when\n"
  1697. " --async-dns=false."
  1698. msgstr ""
  1699. #: src/usage_text.h:701
  1700. msgid ""
  1701. " --enable-dht6[=true|false] Enable IPv6 DHT functionality.\n"
  1702. " Use --dht-listen-port option to specify port\n"
  1703. " number to listen on. See also --dht-listen-"
  1704. "addr6\n"
  1705. " option."
  1706. msgstr ""
  1707. #: src/usage_text.h:706
  1708. msgid ""
  1709. " --dht-listen-addr6=ADDR Specify address to bind socket for IPv6 DHT. \n"
  1710. " It should be a global unicast IPv6 address of "
  1711. "the\n"
  1712. " host."
  1713. msgstr ""
  1714. #: src/usage_text.h:710
  1715. msgid ""
  1716. " --dht-entry-point6=HOST:PORT Set host and port as an entry point to IPv6 "
  1717. "DHT\n"
  1718. " network."
  1719. msgstr ""
  1720. #: src/usage_text.h:713
  1721. msgid ""
  1722. " --dht-file-path6=PATH Change the IPv6 DHT routing table file to PATH."
  1723. msgstr ""
  1724. #: src/usage_text.h:715
  1725. msgid ""
  1726. " --bt-tracker=URI[,...] Comma separated list of additional BitTorrent\n"
  1727. " tracker's announce URI. These URIs are not\n"
  1728. " affected by --bt-exclude-tracker option "
  1729. "because\n"
  1730. " they are added after URIs in --bt-exclude-"
  1731. "tracker\n"
  1732. " option are removed."
  1733. msgstr ""
  1734. #: src/usage_text.h:721
  1735. msgid ""
  1736. " --bt-exclude-tracker=URI[,...] Comma separated list of BitTorrent "
  1737. "tracker's\n"
  1738. " announce URI to remove. You can use special "
  1739. "value\n"
  1740. " '*' which matches all URIs, thus removes all\n"
  1741. " announce URIs. When specifying '*' in shell\n"
  1742. " command-line, don't forget to escape or quote "
  1743. "it.\n"
  1744. " See also --bt-tracker option."
  1745. msgstr ""
  1746. #: src/usage_text.h:728
  1747. msgid ""
  1748. " --max-download-result=NUM Set maximum number of download result kept in\n"
  1749. " memory. The download results are completed/"
  1750. "error/\n"
  1751. " removed downloads. The download results are "
  1752. "stored\n"
  1753. " in FIFO queue and it can store at most NUM\n"
  1754. " download results. When queue is full and new\n"
  1755. " download result is created, oldest download "
  1756. "result\n"
  1757. " is removed from the front of the queue and new "
  1758. "one\n"
  1759. " is pushed to the back. Setting big number in "
  1760. "this\n"
  1761. " option may result high memory consumption "
  1762. "after\n"
  1763. " thousands of downloads. Specifying 0 means no\n"
  1764. " download result is kept."
  1765. msgstr ""
  1766. #: src/usage_text.h:740
  1767. msgid ""
  1768. " --async-dns-server=IPADDRESS[,...] Comma separated list of DNS server "
  1769. "address\n"
  1770. " used in asynchronous DNS resolver. Usually\n"
  1771. " asynchronous DNS resolver reads DNS server\n"
  1772. " addresses from /etc/resolv.conf. When this "
  1773. "option\n"
  1774. " is used, it uses DNS servers specified in "
  1775. "this\n"
  1776. " option instead of ones in /etc/resolv.conf. "
  1777. "You\n"
  1778. " can specify both IPv4 and IPv6 address. This\n"
  1779. " option is useful when the system does not "
  1780. "have\n"
  1781. " /etc/resolv.conf and user does not have the\n"
  1782. " permission to create it."
  1783. msgstr ""
  1784. #: src/usage_text.h:751
  1785. #, fuzzy
  1786. msgid ""
  1787. " --enable-rpc[=true|false] Enable JSON-RPC/XML-RPC server.\n"
  1788. " It is strongly recommended to set username "
  1789. "and\n"
  1790. " password using --rpc-user and --rpc-passwd\n"
  1791. " option. See also --rpc-listen-port option."
  1792. msgstr ""
  1793. " --enable-xml-rpc[=true|false] Разоешить XML-RPC сервер.\n"
  1794. " Настоятельно рекомендуется указать имя "
  1795. "пользователя и\n"
  1796. " пароль, используя параметры using --xml-rpc-"
  1797. "user и\n"
  1798. " --xml-rpc-passwd. Смотрите также параметр --"
  1799. "xml-rpc-listen-port."
  1800. #: src/usage_text.h:756
  1801. #, fuzzy
  1802. msgid ""
  1803. " --rpc-max-request-size=SIZE Set max size of JSON-RPC/XML-RPC request. If "
  1804. "aria2\n"
  1805. " detects the request is more than SIZE bytes, "
  1806. "it\n"
  1807. " drops connection."
  1808. msgstr ""
  1809. " --xml-rpc-max-request-size=SIZE Установить максимальный размер XML-RPC "
  1810. "запроса. Если aria2\n"
  1811. " выявит запрос с розмером большим, чем SIZE "
  1812. "байт, тогда\n"
  1813. " соединение будет отменено."
  1814. #: src/usage_text.h:760
  1815. #, fuzzy
  1816. msgid " --rpc-user=USER Set JSON-RPC/XML-RPC user."
  1817. msgstr " --xml-rpc-user=USER Указать XML-RPC пользователя."
  1818. #: src/usage_text.h:762
  1819. #, fuzzy
  1820. msgid " --rpc-passwd=PASSWD Set JSON-RPC/XML-RPC password."
  1821. msgstr " --xml-rpc-passwd=PASSWD Указать XML-RPC пароль."
  1822. #: src/usage_text.h:764
  1823. #, fuzzy
  1824. msgid ""
  1825. " --rpc-listen-all[=true|false] Listen incoming JSON-RPC/XML-RPC requests on "
  1826. "all\n"
  1827. " network interfaces. If false is given, listen "
  1828. "only\n"
  1829. " on local loopback interface."
  1830. msgstr ""
  1831. " --xml-rpc-listen-all[=true|false] Ожидать входящие XML-RPC запросы на всех\n"
  1832. " сетевых интерфейсах. Если указано false, "
  1833. "слушать только на\n"
  1834. " локальном петлевом интерфейсе (loopback)."
  1835. #: src/usage_text.h:768
  1836. #, fuzzy
  1837. msgid ""
  1838. " --rpc-listen-port=PORT Specify a port number for JSON-RPC/XML-RPC "
  1839. "server\n"
  1840. " to listen to."
  1841. msgstr ""
  1842. " --xml-rpc-listen-port=PORT Указать номер порта для прослушивания XML-RPC\n"
  1843. " сервером."
  1844. #: src/usage_text.h:771
  1845. #, fuzzy
  1846. msgid " --enable-xml-rpc[=true|false] Deprecated. Use --enable-rpc instead."
  1847. msgstr " --bt-enable-lpd[=true|false] Разрешить поиск локальных пиров."
  1848. #: src/usage_text.h:773
  1849. msgid ""
  1850. " --xml-rpc-max-request-size=SIZE Deprecated. Use --rpc-max-request-size\n"
  1851. " instead."
  1852. msgstr ""
  1853. #: src/usage_text.h:776
  1854. #, fuzzy
  1855. msgid " --xml-rpc-user=USER Deprecated. Use --rpc-user instead."
  1856. msgstr " --xml-rpc-user=USER Указать XML-RPC пользователя."
  1857. #: src/usage_text.h:778
  1858. #, fuzzy
  1859. msgid " --xml-rpc-passwd=PASSWD Deprecated. Use --rpc-passwd instead."
  1860. msgstr " --xml-rpc-passwd=PASSWD Указать XML-RPC пароль."
  1861. #: src/usage_text.h:780
  1862. msgid ""
  1863. " --xml-rpc-listen-all[=true|false] Deprecated. Use --rpc-listen-all instead."
  1864. msgstr ""
  1865. #: src/usage_text.h:782
  1866. msgid ""
  1867. " --xml-rpc-listen-port=PORT Deprecated. Use --rpc-listen-port instead."
  1868. msgstr ""
  1869. #: src/version_usage.cc:57
  1870. msgid " version "
  1871. msgstr " версия "
  1872. #: src/version_usage.cc:80
  1873. #, c-format
  1874. msgid "Report bugs to %s"
  1875. msgstr "Сообщения об ошибках направляйте на адрес %s"
  1876. #: src/version_usage.cc:85
  1877. msgid ""
  1878. "Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | METALINK_FILE]..."
  1879. msgstr ""
  1880. "Использование: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | "
  1881. "METALINK_FILE]..."
  1882. #: src/version_usage.cc:92
  1883. msgid "Printing all options."
  1884. msgstr "Вывод всех опций"
  1885. #: src/version_usage.cc:94
  1886. #, c-format
  1887. msgid "Printing options tagged with '%s'."
  1888. msgstr "Вывод опций с меткой '%s'."
  1889. #: src/version_usage.cc:98
  1890. #, c-format
  1891. msgid "See -h option to know other command-line options(%s)."
  1892. msgstr "Для других опций командной строки(%s) посмотрите опцию '-h'."
  1893. #: src/version_usage.cc:103 src/version_usage.cc:115
  1894. msgid "Options:"
  1895. msgstr "Параметры:"
  1896. #: src/version_usage.cc:112
  1897. #, c-format
  1898. msgid "Printing options whose name includes '%s'."
  1899. msgstr "Вывод опций, имя которых содержит '%s'."
  1900. #: src/version_usage.cc:121
  1901. #, c-format
  1902. msgid "No option matching with '%s'."
  1903. msgstr "Нет подходящей опции к '%s'."
  1904. #: src/version_usage.cc:129
  1905. msgid ""
  1906. " You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z option, "
  1907. "all\n"
  1908. " URIs must point to the same file or downloading will fail."
  1909. msgstr ""
  1910. " Вы можете указать несколько URI для HTTP(S)/FTP. Если опция -Z не "
  1911. "обозначена, все\n"
  1912. " URI должны указывать на один и тот же файл, в ином случае загрузка "
  1913. "завершится неудачей."
  1914. #: src/version_usage.cc:131
  1915. msgid ""
  1916. " You can also specify arbitrary number of BitTorrent Magnet URIs, torrent/\n"
  1917. " metalink files stored in a local drive. Please note that they are always\n"
  1918. " treated as a separate download."
  1919. msgstr ""
  1920. " Также вы можете указать произвольное количество BitTorrent Magnet URI, "
  1921. "файлов torrent/metalink, хранящихся на диске. Учитывайте, что они всегда "
  1922. "рассматриваются как отдельные загрузки."
  1923. #: src/version_usage.cc:136
  1924. msgid ""
  1925. " You can specify both torrent file with -T option and URIs. By doing this,\n"
  1926. " download a file from both torrent swarm and HTTP/FTP server at the same "
  1927. "time,\n"
  1928. " while the data from HTTP/FTP are uploaded to the torrent swarm. For single "
  1929. "file\n"
  1930. " torrents, URI can be a complete URI pointing to the resource or if URI "
  1931. "ends\n"
  1932. " with '/', 'name' in torrent file is added. For multi-file torrents, 'name' "
  1933. "and\n"
  1934. " 'path' in torrent are added to form a URI for each file."
  1935. msgstr ""
  1936. #: src/version_usage.cc:143
  1937. msgid ""
  1938. " Make sure that URI is quoted with single(') or double(\") quotation if it\n"
  1939. " contains \"&\" or any characters that have special meaning in shell."
  1940. msgstr ""
  1941. " Убедитесь, что URI заключён в одиночные (') либо двойные (\") кавычки, если "
  1942. "он\n"
  1943. " содержит \"&\" или любое другой символ считающийся специальным в "
  1944. "интерпретаторе команд."
  1945. #: src/version_usage.cc:153
  1946. msgid "Refer to man page for more information."
  1947. msgstr "Обратитесь к странице man для более подробной информации"
  1948. #: src/message.h:57
  1949. #, c-format
  1950. msgid "GID#%s - Download has already completed: %s"
  1951. msgstr "GID#%s - Загрузка уже завершена: %s"
  1952. #: src/message.h:106
  1953. #, c-format
  1954. msgid "Unrecognized URI or unsupported protocol: %s"
  1955. msgstr "Нераспознанный URI или неподдерживаемый протокол: %s"
  1956. #: src/message.h:107
  1957. #, c-format
  1958. msgid "Tracker returned warning message: %s"
  1959. msgstr "Трекер вернул предупреждение: %s"
  1960. #: src/message.h:108
  1961. #, c-format
  1962. msgid "The segment file %s exists."
  1963. msgstr "Сегмент файла %s существует."
  1964. #: src/message.h:109
  1965. #, c-format
  1966. msgid "The segment file %s does not exist."
  1967. msgstr "Сегмент файла %s не существует."
  1968. #: src/message.h:110
  1969. #, c-format
  1970. msgid "Saving the segment file %s"
  1971. msgstr "Сохранение сегмента файла %s"
  1972. #: src/message.h:111
  1973. msgid "The segment file was saved successfully."
  1974. msgstr "Сегмент файла успешно сохранен."
  1975. #: src/message.h:112
  1976. #, c-format
  1977. msgid "Loading the segment file %s."
  1978. msgstr "Загрузка сегмента файл %sа"
  1979. #: src/message.h:113
  1980. msgid "The segment file was loaded successfully."
  1981. msgstr "Сегмент файла успешно загружен."
  1982. #: src/message.h:114
  1983. msgid "No URI to download. Download aborted."
  1984. msgstr "URI для загрузки не найден. Загрузка прервана."
  1985. #: src/message.h:115
  1986. #, c-format
  1987. msgid ""
  1988. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1989. "canceled in order to prevent your file from being truncated to 0. If you are "
  1990. "sure to download the file all over again, then delete it or add --allow-"
  1991. "overwrite=true option and restart aria2."
  1992. msgstr ""
  1993. "Файл %s существует, но управляющий файл (*.aria2) отсутствует. Загрузка "
  1994. "отменена чтобы не обнулить существующий файл. Если вы хотите перезаписать "
  1995. "файл, то удалите его или добавьте опцию --allow-overwrite=true и "
  1996. "перезапустите aria2."
  1997. #: src/message.h:116
  1998. #, c-format
  1999. msgid "Allocating file %s, %s bytes"
  2000. msgstr "Для файла %s резервируем %s байт"
  2001. #: src/message.h:117
  2002. msgid "File not found"
  2003. msgstr "Файл не найден"
  2004. #: src/message.h:118
  2005. msgid "Not a directory"
  2006. msgstr "Это не каталог."
  2007. #: src/message.h:119
  2008. #, c-format
  2009. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  2010. msgstr "Несовпадение контрольных сумм. checksumLength=%d, numChecksum=%d"
  2011. #: src/message.h:120
  2012. #, c-format
  2013. msgid "Writing file %s"
  2014. msgstr "Пишется файл %s"
  2015. #: src/message.h:121
  2016. msgid "No peer list received."
  2017. msgstr "Список узлов отсутствует."
  2018. #: src/message.h:122
  2019. #, c-format
  2020. msgid "Adding peer %s:%d"
  2021. msgstr "Добавляется узел %s:%d"
  2022. #: src/message.h:123
  2023. #, c-format
  2024. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  2025. msgstr "Удаляется используемая часть index=%d, fillRate(%%)=%d<=%d"
  2026. #: src/message.h:124
  2027. msgid "Download of selected files was complete."
  2028. msgstr "Закачка выбранных фалов завершена."
  2029. #: src/message.h:125
  2030. msgid "The download was complete."
  2031. msgstr "Закачка завершена."
  2032. #: src/message.h:126
  2033. #, c-format
  2034. msgid "Removed %lu have entries."
  2035. msgstr ""
  2036. #: src/message.h:127
  2037. #, c-format
  2038. msgid "Validating file %s"
  2039. msgstr "Проверяется файл %s"
  2040. #: src/message.h:128
  2041. #, c-format
  2042. msgid "%ld seconds to allocate %s byte(s)"
  2043. msgstr ""
  2044. #: src/message.h:131
  2045. #, c-format
  2046. msgid "Metalink: Queueing %s for download."
  2047. msgstr "Metalink: Постановка в очередь %s."
  2048. #: src/message.h:132
  2049. #, c-format
  2050. msgid "Download complete: %s"
  2051. msgstr "Закачка завершена: %s"
  2052. #: src/message.h:133
  2053. msgid "Seeding is over."
  2054. msgstr "Рздача закончена."
  2055. #: src/message.h:134
  2056. msgid "No chunk to verify."
  2057. msgstr "Нет частей для проверки."
  2058. #: src/message.h:135
  2059. #, c-format
  2060. msgid "Good chunk checksum. hash=%s"
  2061. msgstr "Верная контрольная сумма. hash=%s"
  2062. #: src/message.h:136
  2063. #, c-format
  2064. msgid "Failed to load cookies from %s"
  2065. msgstr "Ошибка загрузки куков с %s"
  2066. #: src/message.h:137
  2067. #, c-format
  2068. msgid ""
  2069. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  2070. "support disabled."
  2071. msgstr ""
  2072. "Файл .netrc %s не имеет правильных полномочий. Он должен быть 600. "
  2073. "Поддержка netrc отключена."
  2074. #: src/message.h:138
  2075. msgid "Logging started."
  2076. msgstr "Логирование начато."
  2077. #: src/message.h:139
  2078. msgid "Specify at least one URL."
  2079. msgstr "Укажите как минимум один URL."
  2080. #: src/message.h:140
  2081. msgid "daemon failed."
  2082. msgstr "служба остановлена."
  2083. #: src/message.h:141
  2084. #, c-format
  2085. msgid "Verification finished successfully. file=%s"
  2086. msgstr "Проверка закончена успешно. file=%s"
  2087. #: src/message.h:142
  2088. #, c-format
  2089. msgid "Checksum error detected. file=%s"
  2090. msgstr "Ошибка в контрольноый сумме . file=%s"
  2091. #: src/message.h:143
  2092. #, c-format
  2093. msgid "Incomplete range specified. %s"
  2094. msgstr "Указан неполный диапазон. %s"
  2095. #: src/message.h:144
  2096. #, c-format
  2097. msgid "Failed to convert string into value: %s"
  2098. msgstr "Ошибка при конвертировании строки в переменную: %s"
  2099. #: src/message.h:145
  2100. msgid "Resource not found"
  2101. msgstr "Ресурс не найден"
  2102. #: src/message.h:146
  2103. #, c-format
  2104. msgid "File already exists. Renamed to %s."
  2105. msgstr "Файл уже существует. Переименован в %s"
  2106. #: src/message.h:147
  2107. msgid "Cannot parse metalink XML file. XML may be malformed."
  2108. msgstr "Невозможно разобрать XML файл металинка. XML файл может быть испорчен."
  2109. #: src/message.h:148
  2110. #, c-format
  2111. msgid "Too small payload size for %s, size=%lu."
  2112. msgstr ""
  2113. #: src/message.h:149
  2114. #, c-format
  2115. msgid ""
  2116. "Removed the defunct control file %s because the download file %s doesn't "
  2117. "exist."
  2118. msgstr "Бесполезный контрольный файл %s удалён потому что %s не существует."
  2119. #: src/message.h:150
  2120. #, c-format
  2121. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  2122. msgstr "Ваш рейтинг раздачи %.1f, роздано/загружено=%sB/%sB"
  2123. #: src/message.h:151
  2124. #, c-format
  2125. msgid "Missing %s in torrent metainfo."
  2126. msgstr "Пропущен %s в metainfo торренте"
  2127. #: src/message.h:152
  2128. msgid "Tracker returned null data."
  2129. msgstr "Трэкер вернул нулевые данные"
  2130. #: src/message.h:153
  2131. msgid "Windows socket library initialization failed"
  2132. msgstr "Ошибка инициализации Windows socket библиотеки"
  2133. #: src/message.h:154
  2134. #, c-format
  2135. msgid "%ld second(s) has passed. Stopping application."
  2136. msgstr ""
  2137. #: src/message.h:155
  2138. #, c-format
  2139. msgid ""
  2140. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  2141. msgstr ""
  2142. "Сигнатура сохранена как %s. Пожалуйста заметьте, что aria2 не проверяет "
  2143. "сигнатури."
  2144. #: src/message.h:157
  2145. #, c-format
  2146. msgid "Saving signature as %s failed. Maybe file already exists."
  2147. msgstr "Сохраниение подписи как %s не удалось. Может быть файл уже существует."
  2148. #: src/message.h:160
  2149. #, c-format
  2150. msgid "Failed to open ServerStat file %s for read."
  2151. msgstr "Не удалось открить файл ServerStat %s для чтения."
  2152. #: src/message.h:161
  2153. #, c-format
  2154. msgid "ServerStat file %s loaded successfully."
  2155. msgstr "Файл ServerStat %s успешно загружен."
  2156. #: src/message.h:162
  2157. #, c-format
  2158. msgid "Failed to read ServerStat from %s."
  2159. msgstr "Не удалось прочитать ServerStat из %s."
  2160. #: src/message.h:165
  2161. #, c-format
  2162. msgid "Failed to open ServerStat file %s for write."
  2163. msgstr "Не удалось открыть файл ServerStat %s для записи."
  2164. #: src/message.h:166
  2165. #, c-format
  2166. msgid "ServerStat file %s saved successfully."
  2167. msgstr "Файл ServerStat %s был успешно сохранен."
  2168. #: src/message.h:167
  2169. #, c-format
  2170. msgid "Failed to write ServerStat to %s."
  2171. msgstr "Не удалось записать ServerStat в %s."
  2172. #: src/message.h:170
  2173. #, c-format
  2174. msgid "Failed to establish connection, cause: %s"
  2175. msgstr "Не удалось установить соединение, причина: %s"
  2176. #: src/message.h:171
  2177. #, c-format
  2178. msgid "Network problem has occurred. cause:%s"
  2179. msgstr "Ошибка сети, причина: %s"
  2180. #: src/message.h:173
  2181. #, c-format
  2182. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  2183. msgstr "Ошибка во время загрузки CA сертификата %s. Причина: %s"
  2184. #: src/message.h:175
  2185. #, c-format
  2186. msgid ""
  2187. "Certificate verification failed. Cause: %s See --ca-certificate and --check-"
  2188. "certificate option."
  2189. msgstr ""
  2190. #: src/message.h:177
  2191. msgid "No certificate found."
  2192. msgstr "Не найдено сертификат"
  2193. #: src/message.h:178
  2194. msgid "Hostname not match."
  2195. msgstr "Не соответствующее имя хоста."
  2196. #: src/message.h:179
  2197. msgid "No files to download."
  2198. msgstr "Нет файлов для загрузки."
  2199. #: src/message.h:181
  2200. msgid ""
  2201. "You may encounter the certificate verification error with HTTPS server. See "
  2202. "--ca-certificate and --check-certificate option."
  2203. msgstr ""
  2204. "Вы можете столкнуться с ошибкой проверки сертификата с HTTPS сервера. "
  2205. "Смотрите параметры --ca-certificate и --check-certificate."
  2206. #: src/message.h:183
  2207. #, c-format
  2208. msgid "Printing the contents of file '%s'..."
  2209. msgstr "Печать содержимого файла '%s'..."
  2210. #: src/message.h:184
  2211. msgid "This file is neither Torrent nor Metalink file. Skipping."
  2212. msgstr "Этот файл не является файлом торента или Metalink. Пропущено."
  2213. #: src/message.h:189
  2214. #, c-format
  2215. msgid "Is '%s' a file?"
  2216. msgstr "'%s' является файлом?"
  2217. #: src/message.h:190
  2218. #, c-format
  2219. msgid "Failed to find given interface %s, cause: %s"
  2220. msgstr "Поиск интерфейса %s не удался по следующей причине: %s"
  2221. #: src/message.h:192
  2222. #, c-format
  2223. msgid "Saved metadata as %s."
  2224. msgstr "Метаданные сохранены как %s."
  2225. #: src/message.h:193
  2226. #, c-format
  2227. msgid "Saving metadata as %s failed. Maybe file already exists."
  2228. msgstr ""
  2229. "Сохранение метаданных как %s не удалось. Вероятно, файл уже существует."
  2230. #: src/message.h:195
  2231. #, c-format
  2232. msgid "Detected directory traversal directive in %s"
  2233. msgstr ""
  2234. #: src/message.h:199
  2235. msgid "Timeout."
  2236. msgstr "Время ожидания вышло."
  2237. #: src/message.h:200
  2238. msgid "Invalid chunk size."
  2239. msgstr "Неверный размер блока"
  2240. #: src/message.h:201
  2241. #, c-format
  2242. msgid "Too large chunk. size=%d"
  2243. msgstr "Блок слишком большой. Размер=%d"
  2244. #: src/message.h:202
  2245. msgid "Invalid header."
  2246. msgstr "Неверный заголовок."
  2247. #: src/message.h:203
  2248. msgid "Invalid response."
  2249. msgstr "Неверный ответ."
  2250. #: src/message.h:204
  2251. msgid "No header found."
  2252. msgstr "Заголовок не найден"
  2253. #: src/message.h:205
  2254. msgid "No status header."
  2255. msgstr "Нет заголовка status"
  2256. #: src/message.h:206
  2257. msgid "Proxy connection failed."
  2258. msgstr "Ошибка подключения к proxy-серверу"
  2259. #: src/message.h:207
  2260. msgid "Connection failed."
  2261. msgstr "Не удалось установить соединение."
  2262. #: src/message.h:208
  2263. #, c-format
  2264. msgid ""
  2265. "The requested filename and the previously registered one are not same. "
  2266. "Expected:%s Actual:%s"
  2267. msgstr ""
  2268. "Запрошенное имя файла и зарегистрированное до этого не совпадают. Ожидалось:"
  2269. "%s, фактическое:%s"
  2270. #: src/message.h:209
  2271. #, c-format
  2272. msgid "The response status is not successful. status=%d"
  2273. msgstr "Ошибочный статус ответа. Статус=%d"
  2274. #: src/message.h:210
  2275. #, c-format
  2276. msgid "Too large file size. size=%s"
  2277. msgstr "Слишком большой размер файла. Размер=%s"
  2278. #: src/message.h:211
  2279. #, c-format
  2280. msgid "Transfer encoding %s is not supported."
  2281. msgstr "Кодировка передачи %s не поддерживается."
  2282. #: src/message.h:212
  2283. #, c-format
  2284. msgid "SSL initialization failed: %s"
  2285. msgstr "Ошибка инициализации SSL: %s"
  2286. #: src/message.h:213
  2287. msgid "SSL I/O error"
  2288. msgstr "Ошибка ввода/вывода SSL"
  2289. #: src/message.h:214
  2290. msgid "SSL protocol error"
  2291. msgstr "Ошибка SSL протокола"
  2292. #: src/message.h:215
  2293. #, c-format
  2294. msgid "SSL unknown error %d"
  2295. msgstr "Неизвестная SSL ошибка %d"
  2296. #: src/message.h:216
  2297. #, c-format
  2298. msgid "SSL initialization failed: OpenSSL connect error %d"
  2299. msgstr "инициализация SSL не удалась: ошибка номер %d соединения OpenSSL"
  2300. #: src/message.h:217
  2301. #, c-format
  2302. msgid "Size mismatch Expected:%s Actual:%s"
  2303. msgstr "Размер не совпадает. Ожидаемый:%s, фактический:%s"
  2304. #: src/message.h:218
  2305. msgid "Authorization failed."
  2306. msgstr "Ошибка авторизации."
  2307. #: src/message.h:219
  2308. msgid "Got EOF from the server."
  2309. msgstr "От сервера получен EOF."
  2310. #: src/message.h:220
  2311. msgid "Got EOF from peer."
  2312. msgstr "От узла получен EOF"
  2313. #: src/message.h:221
  2314. msgid "Malformed meta info."
  2315. msgstr "Неверные метаданные."
  2316. #: src/message.h:223
  2317. #, c-format
  2318. msgid "Failed to open the file %s, cause: %s"
  2319. msgstr "Ошибка открытия файл %s: %s"
  2320. #: src/message.h:224
  2321. #, c-format
  2322. msgid "Failed to write into the file %s, cause: %s"
  2323. msgstr "Ошибка записи в файл %s: %s"
  2324. #: src/message.h:225
  2325. #, c-format
  2326. msgid "Failed to read from the file %s, cause: %s"
  2327. msgstr "Ошибка чтения файла %s: %s"
  2328. #: src/message.h:226
  2329. msgid "Failed to read data from disk."
  2330. msgstr "Ошибка чтения диска."
  2331. #: src/message.h:227
  2332. #, c-format
  2333. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  2334. msgstr "Ошибка подсчета дайджеста SHA1 файла %s, причина: %s"
  2335. #: src/message.h:228
  2336. #, c-format
  2337. msgid "Failed to seek the file %s, cause: %s"
  2338. msgstr "Ошибка позиционирования файла %s: %s"
  2339. #: src/message.h:229
  2340. #, c-format
  2341. msgid "The offset is out of range, offset=%s"
  2342. msgstr "Смещение вне диапозона. Смещение=%s"
  2343. #: src/message.h:230
  2344. #, c-format
  2345. msgid "%s is not a directory."
  2346. msgstr "%s не является каталогом."
  2347. #: src/message.h:231
  2348. #, c-format
  2349. msgid "Failed to make the directory %s, cause: %s"
  2350. msgstr "Ошибка создания каталога %s: %s"
  2351. #: src/message.h:235
  2352. #, c-format
  2353. msgid "Failed to open a socket, cause: %s"
  2354. msgstr "Ошибка открытия сокета: %s"
  2355. #: src/message.h:236
  2356. #, c-format
  2357. msgid "Failed to set a socket option, cause: %s"
  2358. msgstr "Ошибка установки настроек для сокета: %s"
  2359. #: src/message.h:237
  2360. #, c-format
  2361. msgid "Failed to set a socket as blocking, cause: %s"
  2362. msgstr "Ошибка в установлении блокируещего сокета: %s"
  2363. #: src/message.h:238
  2364. #, c-format
  2365. msgid "Failed to set a socket as non-blocking, cause: %s"
  2366. msgstr "Ошибка в установлении неблокируещего сокета: %s"
  2367. #: src/message.h:239
  2368. #, c-format
  2369. msgid "Failed to bind a socket, cause: %s"
  2370. msgstr "Ошибка инициализации сокета: %s"
  2371. #: src/message.h:240
  2372. #, c-format
  2373. msgid "Failed to listen to a socket, cause: %s"
  2374. msgstr "Ошибка прослушивания сокета: %s"
  2375. #: src/message.h:241
  2376. #, c-format
  2377. msgid "Failed to accept a peer connection, cause: %s"
  2378. msgstr "Ошибка принятия подлючения от узла: %s"
  2379. #: src/message.h:242
  2380. #, c-format
  2381. msgid "Failed to get the name of socket, cause: %s"
  2382. msgstr "Ошибка получения имени сокета: %s"
  2383. #: src/message.h:243
  2384. #, c-format
  2385. msgid "Failed to get the name of connected peer, cause: %s"
  2386. msgstr "Ошибка получения имени подключенного узла: %s"
  2387. #: src/message.h:244
  2388. #, c-format
  2389. msgid "Failed to resolve the hostname %s, cause: %s"
  2390. msgstr "Ошибка преобразования имени узла %s, причина: %s"
  2391. #: src/message.h:245
  2392. #, c-format
  2393. msgid "Failed to connect to the host %s, cause: %s"
  2394. msgstr "Ошибка подключения к хосту %s: %s"
  2395. #: src/message.h:246
  2396. #, c-format
  2397. msgid "Failed to check whether the socket is writable, cause: %s"
  2398. msgstr "Ошибка проверки сокета на запись: %s"
  2399. #: src/message.h:247
  2400. #, c-format
  2401. msgid "Failed to check whether the socket is readable, cause: %s"
  2402. msgstr "Ошибка проверки сокета на чтение: %s"
  2403. #: src/message.h:248
  2404. #, c-format
  2405. msgid "Failed to send data, cause: %s"
  2406. msgstr "Ошибка отправки данных: %s"
  2407. #: src/message.h:249
  2408. #, c-format
  2409. msgid "Failed to receive data, cause: %s"
  2410. msgstr "Ошибка получения данных: %s"
  2411. #: src/message.h:250
  2412. #, c-format
  2413. msgid "Failed to peek data, cause: %s"
  2414. msgstr "Ошибка запроса данных: %s"
  2415. #: src/message.h:251
  2416. #, c-format
  2417. msgid "Unknown socket error %d (0x%x)"
  2418. msgstr "Неизвестная ошибка сокета %d (0x%x)"
  2419. #: src/message.h:252
  2420. #, c-format
  2421. msgid "File %s exists, but %s does not exist."
  2422. msgstr "Файл %s существует, а %s - нет."
  2423. #: src/message.h:254
  2424. #, c-format
  2425. msgid "Invalid payload size for %s, size=%lu. It should be %lu."
  2426. msgstr ""
  2427. #: src/message.h:255
  2428. #, c-format
  2429. msgid "Invalid ID=%d for %s. It should be %d."
  2430. msgstr "Неправильный ID=%d для %s. Должен быть %d."
  2431. #: src/message.h:256
  2432. #, c-format
  2433. msgid ""
  2434. "Chunk checksum validation failed. checksumIndex=%lu, offset=%s, expectedHash="
  2435. "%s, actualHash=%s"
  2436. msgstr ""
  2437. #: src/message.h:257
  2438. msgid "Download aborted."
  2439. msgstr "Загрузка отменена."
  2440. #: src/message.h:258
  2441. #, c-format
  2442. msgid "File %s is being downloaded by other command."
  2443. msgstr "Файл %s загружается другой программой."
  2444. #: src/message.h:259
  2445. msgid "Insufficient checksums."
  2446. msgstr "Нехватает контрольных сумм."
  2447. #: src/message.h:260
  2448. #, c-format
  2449. msgid "Tracker returned failure reason: %s"
  2450. msgstr "Трекер вернул информацию про сбой, причина: %s"
  2451. #: src/message.h:261
  2452. msgid "Flooding detected."
  2453. msgstr "Обнаружен флудинг."
  2454. #: src/message.h:263
  2455. #, c-format
  2456. msgid ""
  2457. "Drop connection because no request/piece messages were exchanged in a "
  2458. "certain period(%ld seconds)."
  2459. msgstr ""
  2460. #: src/message.h:265
  2461. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  2462. msgstr ""
  2463. "infoHash в файле торента не идентичный тому, который находится в файле ."
  2464. "aria2."
  2465. #: src/message.h:266
  2466. #, c-format
  2467. msgid "No such file entry %s"
  2468. msgstr "Нет такого файла %s"
  2469. #: src/message.h:267
  2470. #, c-format
  2471. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  2472. msgstr "Слишком медленная скорость скачивания: %d <= %d(B/s), хост:%s"
  2473. #: src/message.h:268
  2474. msgid "No HttpRequestEntry found."
  2475. msgstr "Не найдено HttpRequestEntry"
  2476. #: src/message.h:269
  2477. #, c-format
  2478. msgid "Got %d status, but no location header provided."
  2479. msgstr "Получен статус %d, но не обеспечено местонахождение заголовка."
  2480. #: src/message.h:270
  2481. #, c-format
  2482. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  2483. msgstr "Неправильный диапазон в заголовке. Запрос: %s-%s/%s, Ответ: %s-%s/%s"
  2484. #: src/message.h:271
  2485. msgid "No file matched with your preference."
  2486. msgstr "Нет файла соответствующего Вашим настройкам."
  2487. #: src/message.h:272
  2488. msgid "Exception caught"
  2489. msgstr "Обнаружено исключение"
  2490. #: src/message.h:273
  2491. #, c-format
  2492. msgid "Max payload length exceeded or invalid. length = %u"
  2493. msgstr ""
  2494. "Максимальная длина полезной загрузки превышена или неправильная. длина = %u"
  2495. #: src/message.h:274
  2496. #, c-format
  2497. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  2498. msgstr ""
  2499. "Неправильная длина файла. Невозможно продолжить загрузку %s: локальный %s, "
  2500. "отдалённый %s"
  2501. #: src/BtSetup.cc:212
  2502. msgid "Errors occurred while binding port.\n"
  2503. msgstr "Ошибка при открытии порта.\n"
  2504. #~ msgid "unrecognized proxy format"
  2505. #~ msgstr "неизвестный формат прокси"
  2506. #~ msgid "CUID#%d - The download for one segment completed successfully."
  2507. #~ msgstr "CUID#%d - Скачивание одного из сегментов успешно завершено."
  2508. #~ msgid "CUID#%d - No segment available."
  2509. #~ msgstr "CUID#%d - Нет доступного сегмента."
  2510. #~ msgid "CUID#%d - Redirecting to %s"
  2511. #~ msgstr "CUID#%d - Перенаправление на %s"
  2512. #~ msgid ""
  2513. #~ "CUID#%d - Requesting:\n"
  2514. #~ "%s"
  2515. #~ msgstr ""
  2516. #~ "CUID#%d - Запрос:\n"
  2517. #~ "%s"
  2518. #~ msgid ""
  2519. #~ "CUID#%d - Response received:\n"
  2520. #~ "%s"
  2521. #~ msgstr ""
  2522. #~ "CUID#%d - Получен ответ:\n"
  2523. #~ "%s"
  2524. #~ msgid "CUID#%d - Download aborted."
  2525. #~ msgstr "CUID#%d - Скачивание отменено."
  2526. #~ msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  2527. #~ msgstr "CUID#%d - Совершено %d безуспешных попыток. Скачивание отменено."
  2528. #~ msgid "Failed to open the segment file %s, cause: %s"
  2529. #~ msgstr "Ошибка открытия сегмента файла %s: %s"
  2530. #~ msgid "Failed to write into the segment file %s, cause: %s"
  2531. #~ msgstr "Ошибка записи сегмента файла %s: %s"
  2532. #~ msgid "Files:"
  2533. #~ msgstr "Файлы:"
  2534. #~ msgid " -o, --out=FILE The file name of the downloaded file."
  2535. #~ msgstr " -o, --out=FILE Имя файла для скачанного файла."
  2536. #~ msgid " -D, --daemon Run as daemon."
  2537. #~ msgstr " -D, --daemon Запустить в качестве демона."
  2538. #~ msgid ""
  2539. #~ " -M, --metalink-file=METALINK_FILE The file path to the .metalink file."
  2540. #~ msgstr " -M, --metalink-file=METALINK_FILE Путь к .metalink-файлу."
  2541. #~ msgid "must be smaller than or equal to %s."
  2542. #~ msgstr "должно быть меньше или равно %s."
  2543. #~ msgid "must be between %s and %s."
  2544. #~ msgstr "должно быть между %s и %s."
  2545. #~ msgid "must be either 'true' or 'false'."
  2546. #~ msgstr "должно быть 'true' или 'false'."
  2547. #~ msgid "must be one of the following:"
  2548. #~ msgstr "должно быть одним из следующих:"
  2549. #~ msgid "must be greater than or equal to %.1f."
  2550. #~ msgstr "должно быть больше или равно %.1f."
  2551. #~ msgid "must be between %.1f and %.1f."
  2552. #~ msgstr "должно быть между %.1f и %.1f."
  2553. #~ msgid "must be smaller than or equal to %.1f."
  2554. #~ msgstr "должно быть меньше или равно %.1f."
  2555. #~ msgid "must be a number."
  2556. #~ msgstr "должно быть числом."
  2557. #~ msgid "must be greater than or equal to %s."
  2558. #~ msgstr "должно быть больше или равно %s."
  2559. #~ msgid ""
  2560. #~ "CUID#%d - The segment changed. We send the request again with new Range "
  2561. #~ "header."
  2562. #~ msgstr ""
  2563. #~ "CUID#%d - Сегмент изменен. Отправляем запрос повторно с новым заголовком "
  2564. #~ "диапазонов."
  2565. #~ msgid "CUID#%d - Download aborted. URI=%s"
  2566. #~ msgstr "CUID#%d - Скачивание прервано. URI=%s"
  2567. #~ msgid "CUID#%d - Restarting the download. URI=%s"
  2568. #~ msgstr "CUID#%d - Перезапуск скачивания. URI=%s"
  2569. #~ msgid "CUID#%d - Connecting to %s:%d"
  2570. #~ msgstr "CUID#%d - Соединение c %s:%d"
  2571. #~ msgid "CUID#%d - Unregistering cuid from segmentManager."
  2572. #~ msgstr "CUID#%d - Отмена регистрации cuid от segmentManager."
  2573. #~ msgid "CUID#%d - we got new piece. index=%d"
  2574. #~ msgstr "CUID#%d - получена новая часть. индекс=%d"
  2575. #~ msgid "CUID#%d - Download not complete: %s"
  2576. #~ msgstr "CUID#%d - Скачивание не завершилось: %s"
  2577. #~ msgid "CUID#%d - we got wrong piece. index=%d"
  2578. #~ msgstr "CUID#%d - получена неправильная часть. индекс=%d"
  2579. #~ msgid "CUID#%d - Good checksum: %s"
  2580. #~ msgstr "CUID#%d - Правильная контрольная сумма: %s"
  2581. #~ msgid "CUID#%d - Resolving hostname %s"
  2582. #~ msgstr "CUID#%d - Поиск IP-адреса хоста %s"
  2583. #~ msgid "CUID#%d - Bad checksum: %s"
  2584. #~ msgstr "CUID#%d - Неправильная контрольная сумма: %s"
  2585. #~ msgid "#%d - Download has already completed: %s"
  2586. #~ msgstr "#%d - Скачивание уже завершилось: %s"
  2587. #~ msgid ""
  2588. #~ "CUID#%d - Reject piece message in queue because cancel message received. "
  2589. #~ "index=%d, begin=%d, length=%d"
  2590. #~ msgstr ""
  2591. #~ "CUID#%d - Сообщение о сегменте в очереди удалено, так как получено "
  2592. #~ "сообщение отмены. индекс=%d, начало=%d, длина=%d"
  2593. #~ msgid "CUID#%d - Exception caught while validating file integrity."
  2594. #~ msgstr "CUID#%d - Во время проверки целостности файла поймано исключение."
  2595. #~ msgid "CUID#%d - Piece bitfield %s"
  2596. #~ msgstr "CUID#%d - Бит-поле сегмента %s"
  2597. #~ msgid "CUID#%d - Connecting to the peer %s"
  2598. #~ msgstr "CUID#%d - Соединение с хостом %s"
  2599. #~ msgid ""
  2600. #~ "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  2601. #~ "blockIndex=%d"
  2602. #~ msgstr ""
  2603. #~ "CUID#%d - Получен сегмент. индекс=%d, начало=%d, длина=%d, отступ=%llu, "
  2604. #~ "индексБлока=%d"
  2605. #~ msgid "CUID#%d - Abort requested."
  2606. #~ msgstr "CUID#%d - Запрошена отмена."
  2607. #~ msgid "CUID#%d - DNS cache hit: %s -> %s"
  2608. #~ msgstr "CUID#%d - Нашли в DNS-кэше: %s -> %s"
  2609. #~ msgid "CUID#%d - Name resolution for %s failed:%s"
  2610. #~ msgstr "CUID#%d - Не удалось найти IP-адрес %s:%s"
  2611. #~ msgid "CUID#%d - Extended Messaging enabled."
  2612. #~ msgstr "CUID#%d - Расширенное оповещение включено."
  2613. #~ msgid "CUID#%d - Not interested in the peer"
  2614. #~ msgstr "CUID#%d - Не заинтересован в контакте"
  2615. #~ msgid "CUID#%d - Deleting request slot index=%d, blockIndex=%d"
  2616. #~ msgstr "CUID#%d - Удаляется запрос index=%d, blockIndex=%d"
  2617. #~ msgid ""
  2618. #~ "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  2619. #~ "got choked."
  2620. #~ msgstr ""
  2621. #~ "CUID#%d - Удаляется запрос index=%d, blockIndex=%d по причине высокой "
  2622. #~ "нагрузки."
  2623. #~ msgid "CUID#%d - Peer %s:%d banned."
  2624. #~ msgstr "CUID#%d - Узел %s:%d запрещён."
  2625. #~ msgid ""
  2626. #~ "CUID#%d - Deleting request slot blockIndex=%d because the block has been "
  2627. #~ "acquired."
  2628. #~ msgstr "CUID#%d - Удаляется запрос blockIndex=%d, блок получен."
  2629. #~ msgid "CUID#%d - Deleting request slot blockIndex=%d because of time out"
  2630. #~ msgstr "CUID#%d - Удаляется запрос blockIndex=%d, превышено время ожидания"
  2631. #~ msgid "CUID#%d - Exception caught while allocating file space."
  2632. #~ msgstr "CUID#%d - Ошибка при размещении файла."
  2633. #~ msgid "CUID#%d - Incoming connection, adding new command CUID#%d"
  2634. #~ msgstr "CUID#%d - Входящее соединение, добавляется новая комманда CUID#%d"
  2635. #~ msgid "CUID#%d - Error occurred while processing tracker response."
  2636. #~ msgstr "CUID#%d - Ошибка при обработке ответа от трекера."
  2637. #~ msgid "CUID#%d - Cannot create tracker request."
  2638. #~ msgstr "CUID#%d - Невозможно создать запрос."
  2639. #~ msgid "CUID#%d - Creating new tracker request command #%d"
  2640. #~ msgstr "CUID#%d - Создание нового запроса #%d"
  2641. #~ msgid "CUID#%d - An error occurred while binding port=%d"
  2642. #~ msgstr "CUID#%d - Ошибка, при попытке занять порт=%d"
  2643. #~ msgid "CUID#%d - Using port %d for accepting new connections"
  2644. #~ msgstr "CUID#%d - Для приёма новых соединений, используется порт %d"
  2645. #~ msgid "CUID#%d - Error in accepting connection"
  2646. #~ msgstr "CUID#%d - Ошибка при установлении связи"
  2647. #~ msgid "Dispatching FileAllocationCommand for CUID#%d."
  2648. #~ msgstr "Отправка FileAllocationCommand для CUID#%d."
  2649. #~ msgid "%d seconds to allocate %s byte(s)"
  2650. #~ msgstr "%d секунд для размещения %s байт"
  2651. #~ msgid "CUID#%d cancels segment index=%d. CUID#%d handles it instead."
  2652. #~ msgstr "CUID#%d отменяет часть index=%d. CUID#%d предлагает это взамен."
  2653. #~ msgid "Failed to read from the segment file %s, cause: %s"
  2654. #~ msgstr "Ошибка чтения сегмента файла %s: %s"
  2655. #~ msgid "Removed %d have entries."
  2656. #~ msgstr "Удаленный %d имеет вхождения"
  2657. #~ msgid "CUID#%d - Interested in the peer"
  2658. #~ msgstr "CUID#%d - Попытка к пирингу"
  2659. #~ msgid ""
  2660. #~ "CUID#%d - Reject piece message in queue because the peer has been choked. "
  2661. #~ "index=%d, begin=%d, length=%d"
  2662. #~ msgstr ""
  2663. #~ "CUID#%d - Сообщение о сегменте в очереди удалено, так как хост не "
  2664. #~ "ответил. индекс=%d, начало=%d, длина=%d"
  2665. #~ msgid "CUID#%d - Name resolution complete: %s -> %s"
  2666. #~ msgstr "CUID#%d - Определение IP-адреса завершёнo: %s -> %s"
  2667. #~ msgid "%d second(s) has passed. Stopping application."
  2668. #~ msgstr "прошло %d секунд(ы). Выполнение программы завершается."
  2669. #~ msgid " -n, --no-netrc Disables netrc support."
  2670. #~ msgstr " -n, --no-netrc Отключить поддержку netrc."
  2671. #~ msgid " --enable-dht[=true|false] Enable DHT functionality."
  2672. #~ msgstr " --enable-dht[=true|false] Включить поддержку DHT."
  2673. #~ msgid " --no-conf Disable loading aria2.conf file."
  2674. #~ msgstr " --no-conf Отменить загрузку файла aria2.conf."
  2675. #~ msgid "CUID#%d - Fast extension enabled."
  2676. #~ msgstr "CUID#%d - Ускорение включено."
  2677. #~ msgid "Usage: %s [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]..."
  2678. #~ msgstr "Использование: %s [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]..."
  2679. #~ msgid ""
  2680. #~ " You can also specify arbitrary number of torrent files and metalink "
  2681. #~ "files\n"
  2682. #~ " stored in a local drive. Please note that they are always treated as a\n"
  2683. #~ " separate download."
  2684. #~ msgstr ""
  2685. #~ " Вы можете также указать любое количество torrent- и metalink- файлов\n"
  2686. #~ " сохранённых на локальном диске. Однако они всегда будут обрабатываться\n"
  2687. #~ " как отдельные загрузки."
  2688. #~ msgid "No help category or option name matching with '%s'."
  2689. #~ msgstr "Категории помощи или опции с именем '%s' нет."
  2690. #~ msgid ""
  2691. #~ " You can specify multiple URLs. Unless you specify -Z option, all URLs "
  2692. #~ "must\n"
  2693. #~ " point to the same file or downloading will fail."
  2694. #~ msgstr ""
  2695. #~ " Вы можете указать несколько URL'ов. Если не указана опция '-Z', все "
  2696. #~ "URL'ы должны\n"
  2697. #~ " указывать на идентичные файлы, иначе загрузка не получится."
  2698. #~ msgid ""
  2699. #~ " Make sure that URL is quoted with single(') or double(\") quotation if "
  2700. #~ "it\n"
  2701. #~ " contains \"&\" or any characters that have special meaning in shell."
  2702. #~ msgstr ""
  2703. #~ " Убедитесь что URL заключён в одинарные (') или двойные(\") кавычки\n"
  2704. #~ " если он содержит \"&\" или любой другой символ имеющий специальное\n"
  2705. #~ " значение в shell."
  2706. #~ msgid ""
  2707. #~ " --http-auth-scheme=SCHEME Set HTTP authentication scheme. Currently, "
  2708. #~ "basic\n"
  2709. #~ " is the only supported scheme."
  2710. #~ msgstr ""
  2711. #~ " --http-auth-scheme=SCHEME Задает схему аутентификации HTTP. В настоящее "
  2712. #~ "время basic (основная) -\n"
  2713. #~ " единственная схема, которая поддерживается."
  2714. #~ msgid ""
  2715. #~ "Drop connection because no request/piece messages were exchanged in a "
  2716. #~ "certain period(%d seconds)."
  2717. #~ msgstr ""
  2718. #~ "Потеряно соединение из-за отсутствия запросов/частей сообщений, которыми "
  2719. #~ "обменивались бы за определённый период (%d секунд)."
  2720. #~ msgid ""
  2721. #~ " --allow-overwrite=true|false If false, aria2 doesn't download a file "
  2722. #~ "which\n"
  2723. #~ " already exists but the corresponding .aria2 "
  2724. #~ "file\n"
  2725. #~ " doesn't exist."
  2726. #~ msgstr ""
  2727. #~ " --allow-overwrite=true|false Если false, aria2 не загружает тот файл, "
  2728. #~ "который \n"
  2729. #~ " уже существует, а соответствующий .aria2 "
  2730. #~ "файл, который \n"
  2731. #~ " не существует."
  2732. #~ msgid ""
  2733. #~ " --direct-file-mapping=true|false Directly read from and write to each "
  2734. #~ "file\n"
  2735. #~ " mentioned in .torrent file."
  2736. #~ msgstr ""
  2737. #~ " --direct-file-mapping=true|false Напрямую считывать из и записывать в "
  2738. #~ "каждый файл,\n"
  2739. #~ " упомянутый в .torrent файле."
  2740. #~ msgid ""
  2741. #~ " -S, --show-files Print file listing of .torrent or .metalink "
  2742. #~ "file\n"
  2743. #~ " and exit. More detailed information will be "
  2744. #~ "listed\n"
  2745. #~ " in case of torrent file."
  2746. #~ msgstr ""
  2747. #~ " -S, --show-files Вывести список из файла .torrent или из файла ."
  2748. #~ "metalink\n"
  2749. #~ " и выйти. Более детальная информация будет "
  2750. #~ "выведена\n"
  2751. #~ " для файла торанта."
  2752. #~ msgid "Invalid payload size for %s, size=%d. It should be %d."
  2753. #~ msgstr ""
  2754. #~ "Не действительный размер загрузки для %s, розмер=%d. Должен быть %d."
  2755. #~ msgid ""
  2756. #~ "Chunk checksum validation failed. checksumIndex=%d, offset=%s, "
  2757. #~ "expectedHash=%s, actualHash=%s"
  2758. #~ msgstr ""
  2759. #~ "Контрольная сумма блока не прошла подтверждения. checksumIndex=%d, offset="
  2760. #~ "%s, expectedHash=%s, actualHash=%s"
  2761. #~ msgid ""
  2762. #~ " --http-proxy=PROXY Use this proxy server for HTTP.\n"
  2763. #~ " See also --all-proxy option.\n"
  2764. #~ " This affects all URLs."
  2765. #~ msgstr ""
  2766. #~ " --http-proxy=PROXY Использовать этот прокси-сервер для HTTP.\n"
  2767. #~ " Смотрите также параметр --all-proxy.\n"
  2768. #~ " Это применяется для всех URL."
  2769. #~ msgid ""
  2770. #~ " --ftp-proxy=PROXY Use this proxy server for FTP.\n"
  2771. #~ " See also --all-proxy option.\n"
  2772. #~ " This affects all URLs."
  2773. #~ msgstr ""
  2774. #~ " --ftp-proxy=PROXY Использовать этот прокси-сервер для FTP.\n"
  2775. #~ " Смотрите также параметр --all-proxy.\n"
  2776. #~ " Это применяется для всех URL."
  2777. #~ msgid ""
  2778. #~ " --https-proxy=PROXY Use this proxy server for HTTPS.\n"
  2779. #~ " See also --all-proxy option.\n"
  2780. #~ " This affects all URLs."
  2781. #~ msgstr ""
  2782. #~ " --https-proxy=PROXY Использовать этот прокси-сервер для HTTPS.\n"
  2783. #~ " Смотрите также параметр --all-proxy.\n"
  2784. #~ " Это применяется для всех URL."
  2785. #~ msgid ""
  2786. #~ " --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"
  2787. #~ " network."
  2788. #~ msgstr ""
  2789. #~ " --dht-entry-point=HOST:PORT Установить хост и порт, как точку входа к "
  2790. #~ "DHT\n"
  2791. #~ " сети."
  2792. #~ msgid ""
  2793. #~ " --dht-file-path=PATH Change the DHT routing table file to PATH."
  2794. #~ msgstr " --dht-file-path=PATH Заменить файл таблицы роутинга DHT на PATH."
  2795. #~ msgid "Certificate verification failed. Cause: %s"
  2796. #~ msgstr "Проверка сертификата не состоялась. Причина: %s"
  2797. #~ msgid "CUID#%d - The peer is DHT-enabled."
  2798. #~ msgstr "CUID#%d - Узел DHT-включенный."
  2799. #~ msgid "CUID#%d - Content-Disposition detected. Use %s as filename"
  2800. #~ msgstr ""
  2801. #~ "CUID#%d - Обнаружена переадресовка. Использовано %s в качестве имени файла"
  2802. #~ msgid ""
  2803. #~ " --allow-piece-length-change=true|false If false is given, aria2 aborts "
  2804. #~ "download\n"
  2805. #~ " when a piece length is different from one "
  2806. #~ "in\n"
  2807. #~ " a control file. If true is given, you can "
  2808. #~ "proceed\n"
  2809. #~ " but some download progress will be lost."
  2810. #~ msgstr ""
  2811. #~ " --allow-piece-length-change=true|false Если установлено false (ложь), "
  2812. #~ "aria2 останавливает загрузку,\n"
  2813. #~ " когда длина блока отлична от той, которая "
  2814. #~ "находится в\n"
  2815. #~ " контрольном файле. Если установлено true "
  2816. #~ "(истина), Вы можете продолжать,\n"
  2817. #~ " однако некоторый прогресс загрузки будет "
  2818. #~ "потерян."
  2819. #~ msgid ""
  2820. #~ " --dht-listen-port=PORT... Set UDP listening port for DHT.\n"
  2821. #~ " Multiple ports can be specified by using "
  2822. #~ "',',\n"
  2823. #~ " for example: \"6881,6885\". You can also "
  2824. #~ "use '-'\n"
  2825. #~ " to specify a range: \"6881-6999\". ',' and "
  2826. #~ "'-' can\n"
  2827. #~ " be used together."
  2828. #~ msgstr ""
  2829. #~ " --dht-listen-port=PORT... Указать порт прослушивания UDP для DHT.\n"
  2830. #~ " Несколько портов можно указать используя "
  2831. #~ "',',\n"
  2832. #~ " например: \"6881,6885\". Вы также можете "
  2833. #~ "использовать '-',\n"
  2834. #~ " чтоб указать диапазон: \"6881-6999\". ',' и "
  2835. #~ "'-' могут\n"
  2836. #~ " быть использованы вместе."
  2837. #~ msgid "Too small payload size for %s, size=%d."
  2838. #~ msgstr "Слишком маленький полезный размер для %s, размер=%d."
  2839. #~ msgid ""
  2840. #~ " --bt-require-crypto=true|false If true is given, aria2 doesn't accept "
  2841. #~ "and\n"
  2842. #~ " establish connection with legacy "
  2843. #~ "BitTorrent\n"
  2844. #~ " handshake. Thus aria2 always uses "
  2845. #~ "Obfuscation\n"
  2846. #~ " handshake."
  2847. #~ msgstr ""
  2848. #~ " --bt-require-crypto=true|false Если указано true, aria2 не принимает и "
  2849. #~ "не\n"
  2850. #~ " устанавливает соединение с наследованием "
  2851. #~ "начального обмена BitTorrent.\n"
  2852. #~ " Таким образом aria2 всегда использует "
  2853. #~ "обфускацию\n"
  2854. #~ " начального обмена."
  2855. #~ msgid ""
  2856. #~ " --no-proxy=DOMAINS Specify comma separated hostnames or "
  2857. #~ "domains where\n"
  2858. #~ " proxy should not be used."
  2859. #~ msgstr ""
  2860. #~ " --no-proxy=DOMAINS Указать разделенные запятыми имена хостов или "
  2861. #~ "доменов, где\n"
  2862. #~ " прокси не следует использовать."
  2863. #~ msgid ""
  2864. #~ " -c, --continue Continue downloading a partially "
  2865. #~ "downloaded\n"
  2866. #~ " file. Use this option to resume a download\n"
  2867. #~ " started by a web browser or another "
  2868. #~ "program\n"
  2869. #~ " which downloads files sequentially from "
  2870. #~ "the\n"
  2871. #~ " beginning. Currently this option is only\n"
  2872. #~ " applicable to http(s)/ftp downloads."
  2873. #~ msgstr ""
  2874. #~ " -c, --continue Продолжить загрузку частично загруженного\n"
  2875. #~ " файла. Используйте этот параметр, чтоб "
  2876. #~ "возобновить загрузку,\n"
  2877. #~ " начатую в веб-браузере или в другой "
  2878. #~ "программе,\n"
  2879. #~ " которая загружает файлы последовательно с\n"
  2880. #~ " начала. Сейчас этот параметр можно\n"
  2881. #~ " использовать только для http(s)/ftp "
  2882. #~ "загрузок."
  2883. #~ msgid ""
  2884. #~ " --all-proxy=PROXY Use this proxy server for all protocols.\n"
  2885. #~ " You can override this setting and specify "
  2886. #~ "a\n"
  2887. #~ " proxy server for a particular protocol "
  2888. #~ "using\n"
  2889. #~ " --http-proxy, --https-proxy and --ftp-"
  2890. #~ "proxy\n"
  2891. #~ " options.\n"
  2892. #~ " This affects all URLs."
  2893. #~ msgstr ""
  2894. #~ " --all-proxy=PROXY Использовать этот прокси-сервер для всех протоколов.\n"
  2895. #~ " Вы можете отбросить эту настройку и "
  2896. #~ "указать\n"
  2897. #~ " прокси-сервер для отдельного протокола, "
  2898. #~ "используя\n"
  2899. #~ " --http-proxy, --https-proxy и --ftp-proxy\n"
  2900. #~ " параметры.\n"
  2901. #~ " Это влияет на все URL."
  2902. #~ msgid ""
  2903. #~ " -s, --split=N Download a file using N connections. If "
  2904. #~ "more\n"
  2905. #~ " than N URLs are given, first N URLs are "
  2906. #~ "used and\n"
  2907. #~ " remaining URLs are used for backup. If less "
  2908. #~ "than\n"
  2909. #~ " N URLs are given, those URLs are used more "
  2910. #~ "than\n"
  2911. #~ " once so that N connections total are made\n"
  2912. #~ " simultaneously. Please see -j option too.\n"
  2913. #~ " Please note that in Metalink download, "
  2914. #~ "this\n"
  2915. #~ " option has no effect and use -C option "
  2916. #~ "instead."
  2917. #~ msgstr ""
  2918. #~ " -s, --split=N Загрузить файл, используя N подключений. Если задано\n"
  2919. #~ " больше N URL, тогда первые N URL будут "
  2920. #~ "использоваться, а\n"
  2921. #~ " другие URL будут оставлены для резерва. "
  2922. #~ "Если задано меньше\n"
  2923. #~ " чем N URL, то эти URL будут использоваться "
  2924. #~ "больше одного\n"
  2925. #~ " раза, значит всего N соединений будет "
  2926. #~ "создано\n"
  2927. #~ " одновременно. Пожалуйста, смотрите также "
  2928. #~ "параметр -j.\n"
  2929. #~ " Пожалуйста обратите внимание на то, что в "
  2930. #~ "Metalink загрузках этот\n"
  2931. #~ " параметр не имеет влияния и используйте "
  2932. #~ "вместо него параметр -C."
  2933. #~ msgid ""
  2934. #~ " --realtime-chunk-checksum=true|false Validate chunk of data by "
  2935. #~ "calculating\n"
  2936. #~ " checksum while downloading a file if chunk\n"
  2937. #~ " checksums are provided."
  2938. #~ msgstr ""
  2939. #~ " --realtime-chunk-checksum=true|false Подтвердить правильность блока "
  2940. #~ "данных путем вычисления\n"
  2941. #~ " контрольной суммы во время загрузки файла, "
  2942. #~ "если предусмотрена\n"
  2943. #~ " контрольная сумма блоков."
  2944. #~ msgid ""
  2945. #~ " --metalink-enable-unique-protocol=true|false If true is given and "
  2946. #~ "several\n"
  2947. #~ " protocols are available for a mirror in a "
  2948. #~ "metalink\n"
  2949. #~ " file, aria2 uses one of them.\n"
  2950. #~ " Use --metalink-preferred-protocol option "
  2951. #~ "to\n"
  2952. #~ " specify the preference of protocol."
  2953. #~ msgstr ""
  2954. #~ " --metalink-enable-unique-protocol=true|false Если задано true и "
  2955. #~ "несколько\n"
  2956. #~ " протоколов доступны для зеркал в файле "
  2957. #~ "metalink,\n"
  2958. #~ " aria2 использует один из них.\n"
  2959. #~ " Используйте параметр --metalink-preferred-"
  2960. #~ "protocol, чтобы\n"
  2961. #~ " указать предпочитаемый протокол."
  2962. #~ msgid ""
  2963. #~ " --peer-id-prefix=PEERI_ID_PREFIX Specify the prefix of peer ID. The peer "
  2964. #~ "ID in\n"
  2965. #~ " BitTorrent is 20 byte length. If more than "
  2966. #~ "20\n"
  2967. #~ " bytes are specified, only first 20\n"
  2968. #~ " bytes are used. If less than 20 bytes are\n"
  2969. #~ " specified, the random alphabet characters "
  2970. #~ "are\n"
  2971. #~ " added to make it's length 20 bytes."
  2972. #~ msgstr ""
  2973. #~ " --peer-id-prefix=PEERI_ID_PREFIX Указать приставку для ID узла. Длина ID "
  2974. #~ "узла в\n"
  2975. #~ " BitTorrent 20 байтов. Если указано больше "
  2976. #~ "20\n"
  2977. #~ " байтов, то лишь первые 20\n"
  2978. #~ " байтов будут использоваться. Если меньше 20 "
  2979. #~ "байтов\n"
  2980. #~ " указано, то будут добавлены случайные "
  2981. #~ "символы\n"
  2982. #~ " алфавита, чтобы сделать его длину равной 20 "
  2983. #~ "байтам."
  2984. #~ msgid ""
  2985. #~ " --follow-metalink=true|false|mem If true or mem is specified, when a "
  2986. #~ "file\n"
  2987. #~ " whose suffix is .metaink or content type "
  2988. #~ "of\n"
  2989. #~ " application/metalink+xml is downloaded, "
  2990. #~ "aria2\n"
  2991. #~ " parses it as a metalink file and downloads "
  2992. #~ "files\n"
  2993. #~ " mentioned in it.\n"
  2994. #~ " If mem is specified, a metalink file is "
  2995. #~ "not\n"
  2996. #~ " written to the disk, but is just kept in "
  2997. #~ "memory.\n"
  2998. #~ " If false is specified, the action mentioned "
  2999. #~ "above\n"
  3000. #~ " is not taken."
  3001. #~ msgstr ""
  3002. #~ " --follow-metalink=true|false|mem Если указано true или mem, тогда файл,\n"
  3003. #~ " суффиксом которого является .metaink или "
  3004. #~ "тип содержимого есть\n"
  3005. #~ " application/metalink+xml, загружается, "
  3006. #~ "aria2\n"
  3007. #~ " анализирует его как файл metalink и "
  3008. #~ "загружает файлы,\n"
  3009. #~ " упомянутые в нем.\n"
  3010. #~ " Если указано mem, то файл metalink не\n"
  3011. #~ " записывается на диск, а только остается в "
  3012. #~ "памяти.\n"
  3013. #~ " Если указано false, то упомянутые выше "
  3014. #~ "действия\n"
  3015. #~ " не совершаются."
  3016. #~ msgid ""
  3017. #~ " -h, --help[=CATEGORY] Print usage and exit.\n"
  3018. #~ " The help messages are classified in "
  3019. #~ "several\n"
  3020. #~ " categories. For example, type \"--help=http"
  3021. #~ "\" for\n"
  3022. #~ " detailed explanation for the options "
  3023. #~ "related to\n"
  3024. #~ " http. If no matching category is found, "
  3025. #~ "search\n"
  3026. #~ " option name using a given word in middle "
  3027. #~ "match\n"
  3028. #~ " and print the result."
  3029. #~ msgstr ""
  3030. #~ " -h, --help[=CATEGORY] Печатает руководство пользователя и выходит.\n"
  3031. #~ " Дополнительные сообщения классифицированы в "
  3032. #~ "нескольких\n"
  3033. #~ " категориях. Например, введите \"--help=http"
  3034. #~ "\" для\n"
  3035. #~ " подробных пояснений параметров, которые "
  3036. #~ "связаны с\n"
  3037. #~ " http. Если не найдены соответствующие "
  3038. #~ "категории,\n"
  3039. #~ " то заданное имя параметра используется для "
  3040. #~ "поиска похожего слова\n"
  3041. #~ " и печати результата."
  3042. #~ msgid ""
  3043. #~ " You can specify both torrent file with -T option and URLs. By doing "
  3044. #~ "this,\n"
  3045. #~ " download a file from both torrent swarm and http/ftp server at the same "
  3046. #~ "time,\n"
  3047. #~ " while the data from http/ftp are uploaded to the torrent swarm. Note "
  3048. #~ "that\n"
  3049. #~ " only single file torrent can be integrated with http/ftp."
  3050. #~ msgstr ""
  3051. #~ " Вы можете указать одновременно торент-файл с параметром -T и URL. В этом "
  3052. #~ "случае,\n"
  3053. #~ " происходит загрузка файл из массы торента и http/ftp серевера "
  3054. #~ "одновременно,\n"
  3055. #~ " пока данные с http/ftp отдаются в массу торента. Обратите внимание, что\n"
  3056. #~ " только один файл торента может быть интегрирован в http/ft."
  3057. #~ msgid ""
  3058. #~ " --on-download-start=COMMAND Set the command to be executed when "
  3059. #~ "download\n"
  3060. #~ " starts up. COMMAND must take just one "
  3061. #~ "argument and\n"
  3062. #~ " GID is passed to COMMAND as a first "
  3063. #~ "argument."
  3064. #~ msgstr ""
  3065. #~ " --on-download-start=COMMAND Указать команду, которую будет выполнено "
  3066. #~ "тогда, когда начнется\n"
  3067. #~ " загрузка. COMMAND должна содержать только "
  3068. #~ "один аргумент и\n"
  3069. #~ " GID добавляется к COMMAND как первый "
  3070. #~ "аргумент."
  3071. #~ msgid ""
  3072. #~ " --allow-overwrite=true|false If false is given, and a file already "
  3073. #~ "exists but\n"
  3074. #~ " the corresponding control file (filename."
  3075. #~ "aria2)\n"
  3076. #~ " doesn't exist, then aria2 will not re-"
  3077. #~ "download\n"
  3078. #~ " the file. See also --auto-file-renaming "
  3079. #~ "option."
  3080. #~ msgstr ""
  3081. #~ " --allow-overwrite=true|false Если указано false и файл уже существует, "
  3082. #~ "но\n"
  3083. #~ " соответствующего гонтрольного файла (ім'я "
  3084. #~ "файлу .aria2)\n"
  3085. #~ " нет, тогда aria2 не будет повторно "
  3086. #~ "загружать\n"
  3087. #~ " файл. Смотрите также параметр --auto-file-"
  3088. #~ "renaming."
  3089. #~ msgid ""
  3090. #~ " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer "
  3091. #~ "ID in\n"
  3092. #~ " BitTorrent is 20 byte length. If more than "
  3093. #~ "20\n"
  3094. #~ " bytes are specified, only first 20\n"
  3095. #~ " bytes are used. If less than 20 bytes are\n"
  3096. #~ " specified, the random alphabet characters "
  3097. #~ "are\n"
  3098. #~ " added to make it's length 20 bytes."
  3099. #~ msgstr ""
  3100. #~ " --peer-id-prefix=PEER_ID_PREFIX Указать приставку для ID узла. Длина ID "
  3101. #~ "узла в\n"
  3102. #~ " BitTorrent равна 20 байтам. Если указано "
  3103. #~ "больше 20\n"
  3104. #~ " байтов, то лишь первые 20\n"
  3105. #~ " байт будут использоваться. Если указано "
  3106. #~ "меньше 20\n"
  3107. #~ " байт, то случайные символы алфавита будут\n"
  3108. #~ " добавлены, чтобы сделать его длину равной "
  3109. #~ "20 байтам."
  3110. #~ msgid ""
  3111. #~ " --on-download-complete=COMMAND Set the command to be executed when "
  3112. #~ "download\n"
  3113. #~ " completes.\n"
  3114. #~ " See --on-download-start option for the\n"
  3115. #~ " requirement of COMMAND.\n"
  3116. #~ " See also --on-download-stop option."
  3117. #~ msgstr ""
  3118. #~ " --on-download-complete=COMMAND Указать команду, которая будет выполнена "
  3119. #~ "тогда, когда загрузка\n"
  3120. #~ " завершится.\n"
  3121. #~ " Смотрите параметр --on-download-start, "
  3122. #~ "чтоб\n"
  3123. #~ " прояснить требования к COMMAND.\n"
  3124. #~ " Смотрите также параметр --on-download-stop."
  3125. #~ msgid ""
  3126. #~ " --on-download-error=COMMAND Set the command to be executed when "
  3127. #~ "download\n"
  3128. #~ " aborts due to error.\n"
  3129. #~ " See --on-download-start option for the\n"
  3130. #~ " requirement of COMMAND.\n"
  3131. #~ " See also --on-download-stop option."
  3132. #~ msgstr ""
  3133. #~ " --on-download-error=COMMAND Указать команду, которая будет выполнена "
  3134. #~ "тогда, когда загрузка\n"
  3135. #~ " будет прервана из-за ошибки.\n"
  3136. #~ " Смотрите параметр --on-download-start, "
  3137. #~ "чтоб\n"
  3138. #~ " прояснить требования к COMMAND.\n"
  3139. #~ " Смотрите также параметр --on-download-stop.."
  3140. #~ msgid ""
  3141. #~ " -D, --daemon Run as daemon. The current working "
  3142. #~ "directory will\n"
  3143. #~ " be changed to \"/\" and standard input, "
  3144. #~ "standard\n"
  3145. #~ " output and standard error will be "
  3146. #~ "redirected to\n"
  3147. #~ " \"/dev/null\"."
  3148. #~ msgstr ""
  3149. #~ " -D, --daemon Запустить как демон (фоновый процесс). Текущая директория "
  3150. #~ "будет\n"
  3151. #~ " заменена на \"/\"; стандартный ввод, "
  3152. #~ "стандартный вывод\n"
  3153. #~ " и стандартный вывод ошибок будут "
  3154. #~ "перенаправлены на\n"
  3155. #~ " \"/dev/null\"."
  3156. #~ msgid "Usage: aria2c [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]..."
  3157. #~ msgstr ""
  3158. #~ "Использование: aria2c [ОПЦИИ] [URL | TORRENT_FILE | METALINK_FILE]..."
  3159. #~ msgid ""
  3160. #~ " --on-download-stop=COMMAND Set the command to be executed when "
  3161. #~ "download\n"
  3162. #~ " stops. You can override the command to be "
  3163. #~ "executed\n"
  3164. #~ " for particular download result using\n"
  3165. #~ " --on-download-complete and --on-download-"
  3166. #~ "error. If\n"
  3167. #~ " they are specified, command specified in "
  3168. #~ "this\n"
  3169. #~ " option is not executed.\n"
  3170. #~ " See --on-download-start option for the\n"
  3171. #~ " requirement of COMMAND."
  3172. #~ msgstr ""
  3173. #~ " --on-download-stop=COMMAND Указать команду, которая будет выполняться "
  3174. #~ "при остановке загрузки.\n"
  3175. #~ " Вы можете переопределить команду для "
  3176. #~ "конкретных причин остановки\n"
  3177. #~ " используя опции --on-download-complete (по "
  3178. #~ "завершении загрузки) и --on-download-error\n"
  3179. #~ " (остановка по ошибке). Если эти опции "
  3180. #~ "заданы, то команда, указанная в этой опции,\n"
  3181. #~ " не выполняется.\n"
  3182. #~ " Смотрите справку по опции --on-download-"
  3183. #~ "start, чтобы узнать требования\n"
  3184. #~ " к команде COMMAND"
  3185. #~ msgid ""
  3186. #~ " --allow-overwrite=true|false Restart download from scratch if the\n"
  3187. #~ " corresponding control file doesn't exist. "
  3188. #~ "See\n"
  3189. #~ " also --auto-file-renaming option."
  3190. #~ msgstr ""
  3191. #~ " --allow-overwrite=true|false Заново загрузить файл, если \n"
  3192. #~ " соответствующий контрольный файл \n"
  3193. #~ " отсутствует.\n"
  3194. #~ " См. также параметр --auto-file-renaming"
  3195. #~ msgid "Unrecognized format"
  3196. #~ msgstr "Неизвестный формат"
  3197. #~ msgid ""
  3198. #~ " --on-download-pause=COMMAND Set the command to be executed when "
  3199. #~ "download\n"
  3200. #~ " is paused.\n"
  3201. #~ " See --on-download-start option for the\n"
  3202. #~ " requirement of COMMAND."
  3203. #~ msgstr ""
  3204. #~ " --on-download-pause=COMMAND Указать команду, которая будет выполнена "
  3205. #~ "тогда, когда загрузка\n"
  3206. #~ " будет приостановлена.\n"
  3207. #~ " Смотрите параметр --on-download-start, "
  3208. #~ "чтоб\n"
  3209. #~ " прояснить требования к COMMAND.\n"
  3210. #~ " Смотрите также параметр --on-download-stop"