ru.po 158 KB

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