bg.po 147 KB

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