ja.po 170 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161
  1. # Japanese translations for aria2c package
  2. # aria2c パッケージに対する英訳.
  3. # Copyright (C) 2006 Tatsuhiro Tsujikawa
  4. # Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>, 2006.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: aria2c 0.2.1\n"
  9. "Report-Msgid-Bugs-To: http://aria2.sourceforge.net/\n"
  10. "POT-Creation-Date: 2011-05-20 23:54+0900\n"
  11. "PO-Revision-Date: 2011-05-21 00:09+0900\n"
  12. "Last-Translator: Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>\n"
  13. "Language-Team: Japanese <ja@li.org>\n"
  14. "Language: ja\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: 2011-05-20 14:56+0000\n"
  19. "X-Generator: Launchpad (build 13085)\n"
  20. #: src/DownloadEngine.cc:228
  21. msgid ""
  22. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  23. msgstr ""
  24. "シャットダウン中です... 緊急時に即座にシャットダウンしたい場合は Ctrl-C をも"
  25. "う一度押してください."
  26. #: src/DownloadEngine.cc:235
  27. msgid "Emergency shutdown sequence commencing..."
  28. msgstr "緊急シャットダウン中です..."
  29. #: src/MultiUrlRequestInfo.cc:157
  30. msgid "aria2 will resume download if the transfer is restarted."
  31. msgstr "aria2 は次回, ダウンロードを再開します."
  32. #: src/MultiUrlRequestInfo.cc:159
  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. "エラーが表示された場合, ログファイルを見てください. 詳しくはヘルプ/man ページ"
  38. "の '-l' オプションの項を見てください."
  39. #: src/RequestGroupMan.cc:602
  40. msgid "Download Results:"
  41. msgstr "ダウンロード結果:"
  42. #: src/RequestGroupMan.cc:636
  43. msgid "Status Legend:"
  44. msgstr "凡例:"
  45. #: src/OptionHandler.cc:38
  46. msgid " Default: "
  47. msgstr " 既定値: "
  48. #: src/OptionHandler.cc:39
  49. msgid " Tags: "
  50. msgstr " タグ: "
  51. #: src/OptionHandler.cc:40
  52. msgid " Possible Values: "
  53. msgstr " 設定可能な値: "
  54. #: src/usage_text.h:37
  55. msgid ""
  56. " -d, --dir=DIR The directory to store the downloaded file."
  57. msgstr ""
  58. " -d, --dir=DIR ダウンロードしたファイルを保存するディレクトリ."
  59. #: src/usage_text.h:39
  60. msgid ""
  61. " -o, --out=FILE The file name of the downloaded file. When -Z\n"
  62. " option is used, this option is ignored."
  63. msgstr ""
  64. " -o, --out=FILE ダウンロードされているファイルの保存先を指定し"
  65. "ます\n"
  66. " . -Z オプションが使われている時は, このオプショ"
  67. "ン\n"
  68. " は無視されます."
  69. #: src/usage_text.h:42
  70. msgid ""
  71. " -l, --log=LOG The file name of the log file. If '-' is\n"
  72. " specified, log is written to stdout."
  73. msgstr ""
  74. " -l, --log=LOG ログを保存するパス. '-' を指定した場合, 標準出"
  75. "力\n"
  76. " に出力します."
  77. #: src/usage_text.h:45
  78. msgid ""
  79. " -D, --daemon[=true|false] Run as daemon. The current working directory "
  80. "will\n"
  81. " be changed to \"/\" and standard input, "
  82. "standard\n"
  83. " output and standard error will be redirected "
  84. "to\n"
  85. " \"/dev/null\"."
  86. msgstr ""
  87. " -D, --daemon[=true,false] デーモンとして起動します. 作業ディレクトリは\"/"
  88. "\" へ\n"
  89. " 変更され, 標準入力, 標準出力, 標準エラー出力"
  90. "は\n"
  91. " \"/dev/null\" へ接続されます."
  92. #: src/usage_text.h:50
  93. msgid ""
  94. " -s, --split=N Download a file using N connections. If more\n"
  95. " than N URLs are given, first N URLs are used "
  96. "and\n"
  97. " remaining URLs are used for backup. If less "
  98. "than\n"
  99. " N URLs are given, those URLs are used more "
  100. "than\n"
  101. " once so that N connections total are made\n"
  102. " simultaneously. The number of connections to "
  103. "the\n"
  104. " same host is restricted by\n"
  105. " --max-connection-per-server option. Please see "
  106. "-j\n"
  107. " and --min-split-size option too.\n"
  108. " Please note that in Metalink download, this\n"
  109. " option has no effect and use -C option instead."
  110. msgstr ""
  111. #: src/usage_text.h:62
  112. msgid ""
  113. " --retry-wait=SEC Set the seconds to wait between retries. \n"
  114. " With SEC > 0, aria2 will retry download when "
  115. "the\n"
  116. " HTTP server returns 503 response."
  117. msgstr " --retry-wait=SEC 再試行間隔の秒数を指定します."
  118. #: src/usage_text.h:66
  119. msgid " -t, --timeout=SEC Set timeout in seconds."
  120. msgstr " -t, --timeout=SEC タイムアウトとなる時間を秒で指定します."
  121. #: src/usage_text.h:68
  122. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  123. msgstr ""
  124. " -m, --max-tries=N 試行回数を指定します. 0 を指定すると何度でも試"
  125. "行し\n"
  126. " ます."
  127. #: src/usage_text.h:70
  128. msgid ""
  129. " --http-proxy=PROXY Use this proxy server for HTTP. To erase\n"
  130. " previously defined proxy, use \"\".\n"
  131. " See also --all-proxy option.\n"
  132. " This affects all URLs."
  133. msgstr ""
  134. " --http-proxy=PROXY HTTP 通信にプロキシサーバーPROXY を使います. 既"
  135. "に\n"
  136. " 定義されているプロキシを無効にするには, \"\" を"
  137. "使っ\n"
  138. " てください. --all-proxy オプションも見てくださ"
  139. "い.\n"
  140. " これは全てのURL に影響します."
  141. #: src/usage_text.h:75
  142. msgid ""
  143. " --https-proxy=PROXY Use this proxy server for HTTPS. To erase\n"
  144. " previously defined proxy, use \"\".\n"
  145. " See also --all-proxy option.\n"
  146. " This affects all URLs."
  147. msgstr ""
  148. " --https-proxy=PROXY HTTPS 通信にプロキシサーバーPROXY を使います. "
  149. "既に\n"
  150. " 定義されているプロキシを無効にするには, \"\" を"
  151. "使っ\n"
  152. " てください. --all-proxy オプションも見てくださ"
  153. "い.\n"
  154. " これは全てのURL に影響します."
  155. #: src/usage_text.h:80
  156. msgid ""
  157. " --ftp-proxy=PROXY Use this proxy server for FTP. To erase "
  158. "previously\n"
  159. " defined proxy, use \"\".\n"
  160. " See also --all-proxy option.\n"
  161. " This affects all URLs."
  162. msgstr ""
  163. " --ftp-proxy=PROXY FTP 通信にプロキシサーバーPROXY を使います. 既"
  164. "に定\n"
  165. " 義されているプロキシを無効にするには, \"\" を"
  166. "使って\n"
  167. " ください. --all-proxy オプションも見てくださ"
  168. "い. こ\n"
  169. " れは全てのURL に影響します."
  170. #: src/usage_text.h:85
  171. msgid ""
  172. " --all-proxy=PROXY Use this proxy server for all protocols. To "
  173. "erase\n"
  174. " previously defined proxy, use \"\".\n"
  175. " You can override this setting and specify a\n"
  176. " proxy server for a particular protocol using\n"
  177. " --http-proxy, --https-proxy and --ftp-proxy\n"
  178. " options.\n"
  179. " This affects all URLs."
  180. msgstr ""
  181. " --all-proxy=PROXY 全てのプロトコルにおいて, プロキシサーバー"
  182. "PROXY を\n"
  183. " 使います. 既に定義されているプロキシを無効にす"
  184. "るに\n"
  185. " は, \"\" を使ってください. この設定はプロトコル"
  186. "ごと\n"
  187. " に--http-proxy , --https-proxy , --ftp-proxy オ"
  188. "プ\n"
  189. " ションを指定することで上書きすることが出来ます."
  190. #: src/usage_text.h:93
  191. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  192. msgstr ""
  193. " --http-user=USER HTTP での認証ユーザーを指定します. このオプショ"
  194. "ン\n"
  195. " はすべての URL に影響します."
  196. #: src/usage_text.h:95
  197. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  198. msgstr ""
  199. " --http-passwd=PASSWD HTTP での認証パスワードを指定します. このオプ"
  200. "ショ\n"
  201. " ンはすべての URL に影響します."
  202. #: src/usage_text.h:97
  203. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  204. msgstr ""
  205. " --proxy-method=METHOD プロキシサーバーへのリクエスト方法を指定します."
  206. #: src/usage_text.h:99
  207. msgid " --referer=REFERER Set Referer. This affects all URLs."
  208. msgstr ""
  209. " --referer=REFERER リファラーを指定します. このオプションはすべて"
  210. "の\n"
  211. " URL に影響します."
  212. #: src/usage_text.h:101
  213. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  214. msgstr ""
  215. " --ftp-user=USER FTP での認証ユーザーを指定します. このオプショ"
  216. "ンは\n"
  217. " すべての URL に影響します."
  218. #: src/usage_text.h:103
  219. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  220. msgstr ""
  221. " --ftp-passwd=PASSWD FTP での認証パスワードを指定します. このオプ"
  222. "ション\n"
  223. " はすべての URL に影響します."
  224. #: src/usage_text.h:105
  225. msgid " --ftp-type=TYPE Set FTP transfer type."
  226. msgstr " --ftp-type=TYPE FTP 転送モードを指定します."
  227. #: src/usage_text.h:107
  228. msgid ""
  229. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  230. "given,\n"
  231. " the active mode will be used."
  232. msgstr ""
  233. " -p, --ftp-pasv[=true|false] FTP ダウンロードでパッシブモードを使います. "
  234. "false\n"
  235. " を指定すると, アクティブモードを使います."
  236. #: src/usage_text.h:110
  237. msgid ""
  238. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  239. "than\n"
  240. " or equal to this value(bytes per sec).\n"
  241. " 0 means aria2 does not have a lowest speed "
  242. "limit.\n"
  243. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  244. " This option does not affect BitTorrent "
  245. "downloads."
  246. msgstr ""
  247. " --lowest-speed-limit=SPEED ここで指定するダウンロード速度を下回った場合, "
  248. "ダ\n"
  249. " ウンロードを中止します. 速度はバイト/秒です.\n"
  250. " 0 を指定すると, 速度の判定を行いません.\n"
  251. " K または M を付加することができます (1K = "
  252. "1024,\n"
  253. " 1M = 1024K). このオプションは, BitTorrent ダウ"
  254. "ンロ\n"
  255. " ードには影響しません."
  256. #: src/usage_text.h:116
  257. msgid ""
  258. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  259. "sec.\n"
  260. " 0 means unrestricted.\n"
  261. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  262. " To limit the download speed per download, use\n"
  263. " --max-download-limit option."
  264. msgstr ""
  265. " --max-overall-download-limit=SPEED プロセス全体のダウンロードの最大速度\n"
  266. " (バイト/秒) を指定します. 0 を指定すると速度の"
  267. "制限\n"
  268. " をしません.\n"
  269. " K または M を付加することができます (1K = "
  270. "1024,\n"
  271. " 1M = 1024K).\n"
  272. " ダウンロード毎の速度を制限するには,\n"
  273. " --max-download-limit オプションを使用します."
  274. #: src/usage_text.h:122
  275. msgid ""
  276. " --max-download-limit=SPEED Set max download speed per each download in\n"
  277. " bytes/sec. 0 means unrestricted.\n"
  278. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  279. " To limit the overall download speed, use\n"
  280. " --max-overall-download-limit option."
  281. msgstr ""
  282. " --max-download-limit=SPEED ダウンロード毎のダウンロードの最大速度 (バイト/"
  283. "秒)\n"
  284. " を指定します. 0 を指定すると速度の制限をしませ"
  285. "ん.\n"
  286. " K または M を付加することができます (1K = "
  287. "1024,\n"
  288. " 1M = 1024K).\n"
  289. " プロセス全体の速度を制限するには,\n"
  290. " --max-overall-download-limit オプションを使用し"
  291. "ま\n"
  292. " す."
  293. #: src/usage_text.h:128
  294. msgid ""
  295. " --file-allocation=METHOD Specify file allocation method.\n"
  296. " 'none' doesn't pre-allocate file space. "
  297. "'prealloc'\n"
  298. " pre-allocates file space before download "
  299. "begins.\n"
  300. " This may take some time depending on the size "
  301. "of\n"
  302. " the file.\n"
  303. " If you are using newer file systems such as "
  304. "ext4\n"
  305. " (with extents support), btrfs or xfs, 'falloc' "
  306. "is\n"
  307. " your best choice. It allocates large(few GiB)\n"
  308. " files almost instantly. Don't use 'falloc' "
  309. "with\n"
  310. " legacy file systems such as ext3 because it "
  311. "takes\n"
  312. " almost same time as 'prealloc' and it blocks "
  313. "aria2\n"
  314. " entirely until allocation finishes. 'falloc' "
  315. "may\n"
  316. " not be available if your system doesn't have\n"
  317. " posix_fallocate() function."
  318. msgstr ""
  319. " --file-allocation=METHOD ファイル領域を確保する方法を指定します. \n"
  320. " 'none' を指定するとファイル領域を事前確保しませ"
  321. "ん.\n"
  322. " 'prealloc' を指定するとファイル領域を事前確保し"
  323. "ま\n"
  324. " す. この処理は, ファイルサイズによって時間がか"
  325. "か\n"
  326. " る場合があります.\n"
  327. " ext4(extents サポート付き), btrfs, xfs などの比"
  328. "較\n"
  329. " 的新しいファイルシステムを使用しているなら,\n"
  330. " 'falloc' がおすすめです. 数 GiB サイズのファイ"
  331. "ルを\n"
  332. " 瞬時に確保することができます. 'falloc' を ext3 "
  333. "等\n"
  334. " のファイルシステムで使わないでください. という"
  335. "のは\n"
  336. " 'prealloc' と同じだけ時間がかかるし, aria2 のプ"
  337. "ロ\n"
  338. " セスをファイル確保が終わるまでブロックするから"
  339. "で\n"
  340. " す. 'falloc' は posix_fallocate() 関数が利用で"
  341. "きな\n"
  342. " いシステムでは使用できません."
  343. #: src/usage_text.h:143
  344. msgid ""
  345. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  346. " size is smaller than SIZE.\n"
  347. " You can append K or M(1K = 1024, 1M = 1024K)."
  348. msgstr ""
  349. " --no-file-allocation-limit=SIZE ファイルサイズが SIZE 以下の場合, ファイル\n"
  350. " 領域の確保を行いません.\n"
  351. " K または M を付加することができます (1K = "
  352. "1024,\n"
  353. " 1M = 1024K)."
  354. #: src/usage_text.h:147
  355. msgid ""
  356. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  357. "while\n"
  358. " allocating files.\n"
  359. " Turn off if you encounter any error"
  360. msgstr ""
  361. " --enable-direct-io[=true|false] ダイレクト I/O を有効にします. 有効にする"
  362. "と\n"
  363. " ファイル領域確保中の CPU 利用率が下がります.\n"
  364. " エラーが発生する場合は, 無効にしてください."
  365. #: src/usage_text.h:151
  366. msgid ""
  367. " --allow-overwrite[=true|false] Restart download from scratch if the\n"
  368. " corresponding control file doesn't exist. "
  369. "See\n"
  370. " also --auto-file-renaming option."
  371. msgstr ""
  372. " --allow-overwrite[=true|false] 対応するコントロールファイルが存在しない場"
  373. "合, 始\n"
  374. " めからダウンロードし直します. --auto-file-"
  375. "renaming\n"
  376. " オプションも見てください."
  377. #: src/usage_text.h:155
  378. msgid ""
  379. " --allow-piece-length-change[=true|false] If false is given, aria2 aborts\n"
  380. " download when a piece length is different "
  381. "from\n"
  382. " one in a control file. If true is given, you "
  383. "can\n"
  384. " proceed but some download progress will be "
  385. "lost."
  386. msgstr ""
  387. " --allow-piece-length-change[=true|false] false が与えられると, aria2 はピー"
  388. "スサ\n"
  389. " イズがコントロールファイルにあるものと違う場"
  390. "合, ダ\n"
  391. " ウンロードを中止します. true が与えられると続行"
  392. "で\n"
  393. " きますが, 一部のダウンロード済みデータが失なわ"
  394. "れる\n"
  395. " 場合があります."
  396. #: src/usage_text.h:160
  397. msgid ""
  398. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  399. "sequentially\n"
  400. " and download each URI in a separate session, "
  401. "like\n"
  402. " the usual command-line download utilities."
  403. msgstr ""
  404. " -Z, --force-sequential[=true|false] コマンドラインで指定された URI をそれぞ"
  405. "れ\n"
  406. " 違うファイルであるとして扱う. aria2c のデフォ"
  407. "ル\n"
  408. " ト動作 (false 指定) とは, 指定された URI がす"
  409. "べ\n"
  410. " て同じファイルをさしているとして扱う点が異な"
  411. "る.\n"
  412. " 大抵のコマンドライン型ダウンロードユーティリ"
  413. "ティ\n"
  414. " は, このオプションで true を指定したように振る"
  415. "舞\n"
  416. " うはずである."
  417. #: src/usage_text.h:164
  418. msgid ""
  419. " --auto-file-renaming[=true|false] Rename file name if the same file "
  420. "already\n"
  421. " exists. This option works only in http(s)/ftp\n"
  422. " download.\n"
  423. " The new file name has a dot and a number"
  424. "(1..9999)\n"
  425. " appended."
  426. msgstr ""
  427. " --auto-file-renaming[=true|false] 同じファイル名のファイルがすでにファイル"
  428. "シ\n"
  429. " ステムに存在する場合, ファイル名を自動で変更す"
  430. "る.\n"
  431. " http(s)/ftp のダウンロードのみで有効である.\n"
  432. " 変更の仕方は, ファイル名末尾にドット (.) と番"
  433. "号\n"
  434. " (1..9999) を付加する."
  435. #: src/usage_text.h:170
  436. msgid ""
  437. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  438. " You can specify set of parts:\n"
  439. " http://{sv1,sv2,sv3}/foo.iso\n"
  440. " Also you can specify numeric sequences with "
  441. "step\n"
  442. " counter:\n"
  443. " http://host/image[000-100:2].img\n"
  444. " A step counter can be omitted.\n"
  445. " If all URIs do not point to the same file, "
  446. "such\n"
  447. " as the second example above, -Z option is\n"
  448. " required."
  449. msgstr ""
  450. " -P, --parameterized-uri[=true|false] パラメータ化された URI の展開のサポー"
  451. "ト\n"
  452. " を有効にする.\n"
  453. " パラメータ化された URI では, URI の部分パーツ"
  454. "の\n"
  455. " 集合を指定できる:\n"
  456. " http://{sv1,sv2,sv3}/foo.iso\n"
  457. " また, 数値のシーケンスも指定できる (ステップカ"
  458. "ウ\n"
  459. " ントを指定可能):\n"
  460. " http://host/image[000-100:2].img\n"
  461. " ステップカウントは省略可能である.\n"
  462. " 展開結果のすべての URI が同じファイルを指して"
  463. "い\n"
  464. " ない場合は, -Z オプションが必要である."
  465. #: src/usage_text.h:181
  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:183
  471. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  472. msgstr ""
  473. " --enable-http-pipelining[=true|false] HTTP/1.1 パイプライニングを有効にしま"
  474. "す."
  475. #: src/usage_text.h:185
  476. msgid ""
  477. " -V, --check-integrity[=true|false] Check file integrity by validating "
  478. "piece\n"
  479. " hashes. This option has effect only in "
  480. "BitTorrent\n"
  481. " and Metalink downloads with chunk checksums.\n"
  482. " Use this option to re-download a damaged "
  483. "portion\n"
  484. " of a file. See also --bt-hash-check-seed "
  485. "option."
  486. msgstr ""
  487. " -V, --check-integrity[=true|false] 部分ハッシュを計算してファイルの完全性を"
  488. "部分\n"
  489. " 毎に検証します. このオプションは, BitTorrent 又"
  490. "は,\n"
  491. " 部分(chunk)ハッシュ付きの Metalink 使用時のみ有"
  492. "効\n"
  493. " です. 壊れている可能性があるファイルを検証し, "
  494. "壊れ\n"
  495. " た部分だけダウンロードすることができます.\n"
  496. " --bt-hash-check-seed オプションも参照してくださ"
  497. "い."
  498. #: src/usage_text.h:191
  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 が指定された場合, --check-integrity "
  511. "オプ\n"
  512. " ションによるハッシュ チェック後にファイルが完全"
  513. "で\n"
  514. " ある場合, 引き続きシードを行います. ダウンロー"
  515. "ドが\n"
  516. " 未完の場合のみダウンロードをしたい場合は, "
  517. "false を\n"
  518. " 指定します. このオプションは BitTorrent ダウン"
  519. "ロー\n"
  520. " ドでのみ有効です."
  521. #: src/usage_text.h:199
  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:203
  534. msgid ""
  535. " -c, --continue[=true|false] Continue downloading a partially downloaded\n"
  536. " file. Use this option to resume a download\n"
  537. " started by a web browser or another program\n"
  538. " which downloads files sequentially from the\n"
  539. " beginning. Currently this option is only\n"
  540. " applicable to http(s)/ftp downloads."
  541. msgstr ""
  542. " -c, --continue[=true|false] 部分的にダウンロードされたファイルのダウンロー"
  543. "ドを\n"
  544. " 続行します. このオプションはウェブブラウザや他"
  545. "のプ\n"
  546. " ログラムで, 始めから順にダウンロードされたファ"
  547. "イル\n"
  548. " のレジュームに使ってください. 現在このオプショ"
  549. "ンは\n"
  550. " HTTP(S)/FTP ダウンロードでのみ有効です."
  551. #: src/usage_text.h:210
  552. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  553. msgstr " -U, --user-agent=USER_AGENT ユーザーエージェントを設定します."
  554. #: src/usage_text.h:212
  555. msgid " -n, --no-netrc[=true|false] Disables netrc support."
  556. msgstr " -n, --no-netrc[=true|false] netrc サポートをに無効にします."
  557. #: src/usage_text.h:214
  558. msgid ""
  559. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  560. " multiple URIs for a single entity: separate\n"
  561. " URIs on a single line using the TAB "
  562. "character.\n"
  563. " Reads input from stdin when '-' is specified.\n"
  564. " Additionally, options can be specified after "
  565. "each\n"
  566. " line of URI. This optional line must start "
  567. "with\n"
  568. " one or more white spaces and have one option "
  569. "per\n"
  570. " single line. See INPUT FILE section of man "
  571. "page\n"
  572. " for details."
  573. msgstr ""
  574. " -i, --input-file=FILE FILE の中にある URI をダウンロードします. 一つ"
  575. "の項\n"
  576. " 目に複数の URL を指定できます. 一行ごとにタブを"
  577. "用\n"
  578. " いて URL を区切ることが出来ます. '-' が指定され"
  579. "る\n"
  580. " と標準入力から読み込まれます. さらに, 各 URI の"
  581. "後\n"
  582. " にオプションを指定できます. この行は一つ以上の"
  583. "空白\n"
  584. " 文字から始まっている必要があり, なおかつ一つの"
  585. "行に\n"
  586. " 一つのオプションを指定します. 詳しくは man ペー"
  587. "ジ\n"
  588. " の INPUT FILE セクションを見てください."
  589. #: src/usage_text.h:224
  590. msgid ""
  591. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  592. "for\n"
  593. " every static (HTTP/FTP) URL, torrent and "
  594. "metalink.\n"
  595. " See also -s and -C options."
  596. msgstr ""
  597. " -j, --max-concurrent-downloads=N 同時並行ダウンロード数を指定します.\n"
  598. " -s および -C オプションも参照してください."
  599. #: src/usage_text.h:228
  600. msgid ""
  601. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  602. "format\n"
  603. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  604. msgstr ""
  605. " --load-cookies=FILE Cookie を FILE から読み込みます. 対応している "
  606. "FILE\n"
  607. " のフォーマットは, Firefox3 と Mozilla/Firefox"
  608. "(1.x/\n"
  609. " 2.x)/Netscape です."
  610. #: src/usage_text.h:231
  611. msgid ""
  612. " --save-cookies=FILE Save Cookies to FILE in Mozilla/Firefox(1.x/2."
  613. "x)/\n"
  614. " Netscape format. If FILE already exists, it "
  615. "is\n"
  616. " overwritten. Session Cookies are also saved "
  617. "and\n"
  618. " their expiry values are treated as 0."
  619. msgstr ""
  620. " --save-cookies=FILE Cookie を Mozilla/Firefox(1.x/2.x)/Netscape の"
  621. "フォ\n"
  622. " ーマットで FILE に保存します. FILE がすでに存在"
  623. "し\n"
  624. " ている場合は, 上書きします. セッション クッキー"
  625. "は,\n"
  626. " その有効期限値を 0 にして保存します."
  627. #: src/usage_text.h:236
  628. msgid ""
  629. " -S, --show-files[=true|false] Print file listing of .torrent, .meta4 and\n"
  630. " .metalink file and exit. More detailed\n"
  631. " information will be listed in case of torrent\n"
  632. " file."
  633. msgstr ""
  634. " -S, --show-files[=true|false] .torrent, .meta4, .metalink に記述されている"
  635. "ファ\n"
  636. " イルのリストを出力して終了します. トレントファ"
  637. "イル\n"
  638. " の場合はより詳しい情報が出力されます."
  639. #: src/usage_text.h:241
  640. msgid ""
  641. " --select-file=INDEX... Set file to download by specifying its index.\n"
  642. " You can find the file index using the\n"
  643. " --show-files option. Multiple indexes can be\n"
  644. " specified by using ',', for example: \"3,6\".\n"
  645. " You can also use '-' to specify a range: "
  646. "\"1-5\".\n"
  647. " ',' and '-' can be used together.\n"
  648. " When used with the -M option, index may vary\n"
  649. " depending on the query(see --metalink-* "
  650. "options)."
  651. msgstr ""
  652. " --select-file=INDEX... インデックスでダウンロード対象ファイルを指定し"
  653. "ま\n"
  654. " す. インデックスは --show-files オプションで知"
  655. "るこ\n"
  656. " とができます. 複数のインデックスを ',' で区切っ"
  657. "て\n"
  658. " 指定できます: \"3,6\"\n"
  659. " また, '-' を使って範囲指定もできます: \"1-5\"\n"
  660. " ',' と '-' は組み合わせて使うことができます.\n"
  661. " -M オプションと共に使う場合, Metalink のクエリ"
  662. "オプ\n"
  663. " ション (--metalink-* オプションを参照) によって"
  664. "イ\n"
  665. " ンデックスは変化する場合があります."
  666. #: src/usage_text.h:250
  667. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  668. msgstr " -T, --torrent-file=TORRENT_FILE .torrent ファイルのパスを指定."
  669. #: src/usage_text.h:252
  670. msgid ""
  671. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  672. " whose suffix is .torrent or content type is\n"
  673. " application/x-bittorrent is downloaded, aria2\n"
  674. " parses it as a torrent file and downloads "
  675. "files\n"
  676. " mentioned in it.\n"
  677. " If mem is specified, a torrent file is not\n"
  678. " written to the disk, but is just kept in "
  679. "memory.\n"
  680. " If false is specified, the action mentioned "
  681. "above\n"
  682. " is not taken."
  683. msgstr ""
  684. " --follow-torrent=true|false|mem ダウンロードしたファイルの拡張子が ."
  685. "torrent\n"
  686. " か, Content-Type が application/x-bittorrent "
  687. "で\n"
  688. " あり, このオプションに true または mem が指定"
  689. "さ\n"
  690. " れている場合, aria2 はファイルを torrent ファ"
  691. "イ\n"
  692. " ルとして読み込み, その中に記述されているファイ"
  693. "ル\n"
  694. " のダウンロードを行います.\n"
  695. " mem を指定すると, torrent ファイルはディスク"
  696. "に\n"
  697. " 保存されず, メモリ内で処理されます.\n"
  698. " false を指定すると, 上記のいずれの動作も行いま"
  699. "せ\n"
  700. " ん."
  701. #: src/usage_text.h:262
  702. msgid ""
  703. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  704. " Multiple ports can be specified by using ',',\n"
  705. " for example: \"6881,6885\". You can also use "
  706. "'-'\n"
  707. " to specify a range: \"6881-6999\". ',' and '-' "
  708. "can\n"
  709. " be used together."
  710. msgstr ""
  711. " --listen-port=PORT... BitTorrent ダウンロードで使用する TCP ポートの"
  712. "範\n"
  713. " 囲を指定します.\n"
  714. " 複数のポートを ',' で区切って指定できます:\n"
  715. " \"6881,6885\". また, '-' を使って範囲指定もでき"
  716. "ま\n"
  717. " す: \"6881-6999\". ',' と '-' は組み合わせて使"
  718. "う\n"
  719. " ことができます."
  720. #: src/usage_text.h:268
  721. msgid ""
  722. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  723. "sec.\n"
  724. " 0 means unrestricted.\n"
  725. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  726. " To limit the upload speed per torrent, use\n"
  727. " --max-upload-limit option."
  728. msgstr ""
  729. " --max-overall-upload-limit=SPEED プロセス全体のアップロードの最大速度\n"
  730. " (バイト/秒) を指定します. 0 を指定すると速度の"
  731. "制限\n"
  732. " をしません.\n"
  733. " K または M を付加することができます (1K = "
  734. "1024,\n"
  735. " 1M = 1024K).\n"
  736. " torrent 毎の速度を制限するには,\n"
  737. " --max-upload-limit オプションを使用します."
  738. #: src/usage_text.h:274
  739. msgid ""
  740. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  741. " bytes/sec. 0 means unrestricted.\n"
  742. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  743. " To limit the overall upload speed, use\n"
  744. " --max-overall-upload-limit option."
  745. msgstr ""
  746. " -u, --max-upload-limit=SPEED torrent 毎のアップロードの最大速度 (バイト/秒) "
  747. "を\n"
  748. " 指定します. 0 を指定すると速度の制限をしませ"
  749. "ん.\n"
  750. " K または M を付加することができます (1K = "
  751. "1024, 1M\n"
  752. " = 1024K). 全体のアップロード速度を制御するに"
  753. "は,\n"
  754. " --max-overall-upload-limit オプションを使用しま"
  755. "す."
  756. #: src/usage_text.h:280
  757. msgid ""
  758. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  759. " --seed-ratio option."
  760. msgstr ""
  761. " --seed-time=MINUTES シードを行う時間を分単位で指定します. \n"
  762. " --seed-ratio オプションも参照してください."
  763. #: src/usage_text.h:283
  764. msgid ""
  765. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  766. " until share ratio reaches RATIO.\n"
  767. " You are strongly encouraged to specify equals "
  768. "or\n"
  769. " more than 1.0 here. Specify 0.0 if you intend "
  770. "to\n"
  771. " do seeding regardless of share ratio.\n"
  772. " If --seed-time option is specified along with\n"
  773. " this option, seeding ends when at least one "
  774. "of\n"
  775. " the conditions is satisfied."
  776. msgstr ""
  777. " --seed-ratio=RATIO シェアレシオを指定します. BitTorrent のダウン"
  778. "ロー\n"
  779. " ドが完了しても, シェアレシオが RATIO に達するま"
  780. "で\n"
  781. " シードを継続します. RATIO は 1.0 が推奨されてい"
  782. "ま\n"
  783. " す. 0.0 を指定すると, シェアレシオに関係なく, "
  784. "シー\n"
  785. " ドを継続します.\n"
  786. " --seed-time オプションと共に使用した場合, どち"
  787. "らか\n"
  788. " の条件が成立した時点でシードは終了となります."
  789. #: src/usage_text.h:292
  790. msgid ""
  791. " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  792. "in\n"
  793. " BitTorrent is 20 byte length. If more than 20\n"
  794. " bytes are specified, only first 20 bytes are\n"
  795. " used. If less than 20 bytes are specified, "
  796. "random\n"
  797. " byte data are added to make its length 20 "
  798. "bytes."
  799. msgstr ""
  800. " --peer-id-prefix=PEER_ID_PREFIX ピア ID のプレフィックスを指定します.\n"
  801. " BitTorrent のピア ID は 20 バイトの長さです.\n"
  802. " 20 バイトを越える文字を指定した場合, 先頭から "
  803. "20\n"
  804. " バイトのみ使用します. 逆に 20 バイトに満たない"
  805. "場\n"
  806. " 合, ランダムなバイトデータを付加し 20 バイトに"
  807. "しま\n"
  808. " す."
  809. #: src/usage_text.h:298
  810. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  811. msgstr " --enable-peer-exchange[=true|false] Peer Exchange を有効にします."
  812. #: src/usage_text.h:300
  813. msgid " --enable-dht[=true|false] Enable IPv4 DHT functionality."
  814. msgstr " --enable-dht[=true|false] IPv4 で DHT 機能を有効にします."
  815. #: src/usage_text.h:302
  816. msgid ""
  817. " --dht-listen-port=PORT... Set UDP listening port for both IPv4 and IPv6\n"
  818. " DHT. Multiple ports can be specified by using\n"
  819. " ',', for example: \"6881,6885\". You can also\n"
  820. " use '-' to specify a range: \"6881-6999\". "
  821. "','\n"
  822. " and '-' can be used together."
  823. msgstr ""
  824. " --dht-listen-port=PORT... IPv4 と IPv6 両方の DHT の UDP 受信ポートを設定"
  825. "し\n"
  826. " ます. ',' を使って複数のポート番号を指定できま"
  827. "す.\n"
  828. " 例:\"6881,6885\"\n"
  829. " '-' を使うと範囲を指定できます.\n"
  830. " 例:\"6881-6999\"\n"
  831. " ',' と '-' は同時に使えます."
  832. #: src/usage_text.h:308
  833. msgid ""
  834. " --dht-entry-point=HOST:PORT Set host and port as an entry point to IPv4 "
  835. "DHT\n"
  836. " network."
  837. msgstr ""
  838. " --dht-entry-point=HOST:PORT IPv4 の DHT ネットワークへのエントリーポイント"
  839. "を,\n"
  840. " ホストとポート番号という形で指定します."
  841. #: src/usage_text.h:311
  842. msgid ""
  843. " --dht-file-path=PATH Change the IPv4 DHT routing table file to PATH."
  844. msgstr ""
  845. " --dht-file-path=PATH IPv4 DHT ルーティングテーブルファイルを PATH に"
  846. "変\n"
  847. " 更します."
  848. #: src/usage_text.h:313
  849. msgid ""
  850. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  851. " If several encryption methods are provided by "
  852. "a\n"
  853. " peer, aria2 chooses the lowest one which "
  854. "satisfies\n"
  855. " the given level."
  856. msgstr ""
  857. " --bt-min-crypto-level=plain|arc4 許容する最低限の暗号化レベルをセットしま"
  858. "す.\n"
  859. " いくつかの暗号化レベルがピアから提示された場"
  860. "合, そ\n"
  861. " の中からここで指定するレベルを満たす最低限の暗"
  862. "号化\n"
  863. " レベルが選択されます."
  864. #: src/usage_text.h:318
  865. msgid ""
  866. " --bt-require-crypto[=true|false] If true is given, aria2 doesn't accept "
  867. "and\n"
  868. " establish connection with legacy BitTorrent\n"
  869. " handshake. Thus aria2 always uses Obfuscation\n"
  870. " handshake."
  871. msgstr ""
  872. " --bt-require-crypto[=true|false] true が与えられると, 古い方式の BitTorrent "
  873. "ハ\n"
  874. " ンドシェイクを使用しなくなります. また, 受け付"
  875. "けも\n"
  876. " 行いません. つまり常に暗号化通信を使うようにな"
  877. "りま\n"
  878. " す."
  879. #: src/usage_text.h:323
  880. msgid ""
  881. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  882. " torrent is lower than SPEED, aria2 "
  883. "temporarily\n"
  884. " increases the number of peers to try for more\n"
  885. " download speed. Configuring this option with "
  886. "your\n"
  887. " preferred download speed can increase your\n"
  888. " download speed in some cases.\n"
  889. " You can append K or M(1K = 1024, 1M = 1024K)."
  890. msgstr ""
  891. " --bt-request-peer-speed-limit=SPEED torrent のダウンロード速度が SPEED を下"
  892. "回る\n"
  893. " 場合, 一時的にピアの最大数を増やして速度の向上"
  894. "をは\n"
  895. " かります. SPEED の値を希望のダウンロード速度に"
  896. "して\n"
  897. " おくとよいでしょう.\n"
  898. " K または M を付加することができます (1K = "
  899. "1024,\n"
  900. " 1M = 1024K)."
  901. #: src/usage_text.h:331
  902. msgid ""
  903. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  904. "each\n"
  905. " BitTorrent download."
  906. msgstr ""
  907. " --bt-max-open-files=NUM それぞれの BitTorrent ダウンロードにおいて, 同"
  908. "時に\n"
  909. " オープンするファイルの最大値を指定します."
  910. #: src/usage_text.h:334
  911. msgid ""
  912. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  913. " verifying piece hashes."
  914. msgstr ""
  915. " --bt-seed-unverified[=true|false] ピースハッシュの検証をせずにシードを開始し"
  916. "ま\n"
  917. " す."
  918. #: src/usage_text.h:337
  919. msgid ""
  920. " --bt-max-peers=NUM Specify the maximum number of peers per "
  921. "torrent.\n"
  922. " 0 means unlimited.\n"
  923. " See also --bt-request-peer-speed-limit option."
  924. msgstr ""
  925. " --bt-max-peers=NUM torrent 毎のピアの最大数を指定します. 0 は無制"
  926. "限を\n"
  927. " 意味します. --bt-request-peer-speed-limit オプ"
  928. "ショ\n"
  929. " ンも参照してください."
  930. #: src/usage_text.h:341
  931. msgid ""
  932. " -M, --metalink-file=METALINK_FILE The file path to the .meta4 and ."
  933. "metalink\n"
  934. " file. Reads input from stdin when '-' is\n"
  935. " specified."
  936. msgstr ""
  937. " -M, --metalink-file=METALINK_FILE .meta4 と .metalink ファイルへのパスを指定"
  938. "し\n"
  939. " ます. '-' が指定されると標準入力から読み込みま"
  940. "す."
  941. #: src/usage_text.h:345
  942. msgid ""
  943. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  944. " simultaneously. Some Metalinks regulate the\n"
  945. " number of servers to connect. aria2 strictly\n"
  946. " respects them. This means that if Metalink "
  947. "defines\n"
  948. " the maxconnections attribute lower than\n"
  949. " NUM_SERVERS, then aria2 uses the value of\n"
  950. " maxconnections attribute instead of "
  951. "NUM_SERVERS.\n"
  952. " See also -s and -j options."
  953. msgstr ""
  954. " -C, --metalink-servers=NUM_SERVERS Metalink ダウンロードでの同時接続サーバー"
  955. "数\n"
  956. " を指定します. Metalink によっては, 接続数が制限"
  957. "さ\n"
  958. " れています. この場合, aria2 はこの制限を遵守し"
  959. "ま\n"
  960. " す. 例えば, Metalink ファイル中で, "
  961. "maxconnections\n"
  962. " 属性の値が NUM_SERVERS よりも小さい場合, aria2 "
  963. "は\n"
  964. " maxconnections 属性の値を使います.\n"
  965. " -s と -j オプションも参照してください."
  966. #: src/usage_text.h:354
  967. msgid " --metalink-version=VERSION The version of the file to download."
  968. msgstr " --metalink-version=VERSION ダウンロードするファイルのバージョン."
  969. #: src/usage_text.h:356
  970. msgid " --metalink-language=LANGUAGE The language of the file to download."
  971. msgstr " --metalink-language=LANGUAGE ダウンロードするファイルの言語."
  972. #: src/usage_text.h:358
  973. msgid ""
  974. " --metalink-os=OS The operating system of the file to download."
  975. msgstr ""
  976. " --metalink-os=OS ダウンロードするファイルがターゲットとするオペ"
  977. "レー\n"
  978. " ティング・システム."
  979. #: src/usage_text.h:360
  980. msgid ""
  981. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  982. " A comma-delimited list of locations is\n"
  983. " acceptable."
  984. msgstr ""
  985. " --metalink-location=LOCATION[,...] お好みのサーバーの地域を指定します.\n"
  986. " コンマ区切りの地域のリストが指定可能です."
  987. #: src/usage_text.h:364
  988. msgid ""
  989. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  990. "'none'\n"
  991. " if you don't have any preferred protocol."
  992. msgstr ""
  993. " --metalink-preferred-protocol=PROTO 優先的に使用するプロトコルを指定しま"
  994. "す.\n"
  995. " 得に優先するプロトコルがない場合は 'none' を指"
  996. "定す\n"
  997. " してください."
  998. #: src/usage_text.h:367
  999. msgid ""
  1000. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  1001. " whose suffix is .meta4 or .metalink, or "
  1002. "content\n"
  1003. " type of application/metalink4+xml or\n"
  1004. " application/metalink+xml is downloaded, aria2\n"
  1005. " parses it as a metalink file and downloads "
  1006. "files\n"
  1007. " mentioned in it.\n"
  1008. " If mem is specified, a metalink file is not\n"
  1009. " written to the disk, but is just kept in "
  1010. "memory.\n"
  1011. " If false is specified, the action mentioned "
  1012. "above\n"
  1013. " is not taken."
  1014. msgstr ""
  1015. " --follow-metalink=true|false|mem true か mem が指定されると, ダウンロードさ"
  1016. "れた\n"
  1017. " ファイルの拡張子が .meta4, .metalink である"
  1018. "か,\n"
  1019. " MIME タイプが application/metalink4+xml か\n"
  1020. " application/metalink+xml の場合, aria2 はそれを"
  1021. "メ\n"
  1022. " タリンクとして解釈し, その中に記述されている"
  1023. "ファイ\n"
  1024. " ルを追加でダウンロードします. mem が指定された"
  1025. "場合\n"
  1026. " , メタリンクファイルはディスクに書き込まれずに"
  1027. "メモ\n"
  1028. " リに置かれます. false が指定された場合, 追加で"
  1029. "何も\n"
  1030. " しません."
  1031. #: src/usage_text.h:378
  1032. msgid ""
  1033. " --metalink-enable-unique-protocol[=true|false] If true is given and "
  1034. "several\n"
  1035. " protocols are available for a mirror in a "
  1036. "metalink\n"
  1037. " file, aria2 uses one of them.\n"
  1038. " Use --metalink-preferred-protocol option to\n"
  1039. " specify the preference of protocol."
  1040. msgstr ""
  1041. " --metalink-enable-unique-protocol[=true|false] true が与えられると, メタリン"
  1042. "ク\n"
  1043. " ファイルに記述された, ミラーとして有効ないくつ"
  1044. "かの\n"
  1045. " プロトコルのうち, 一つだけを使います. どのプロ"
  1046. "トコ\n"
  1047. " ルを使うのか指定するには\n"
  1048. " --metalink-preferred-protocol オプションを使っ"
  1049. "てく\n"
  1050. " ださい."
  1051. #: src/usage_text.h:384
  1052. msgid " -v, --version Print the version number and exit."
  1053. msgstr " -v, --version バージョン番号を表示し, 終了します."
  1054. #: src/usage_text.h:386
  1055. msgid ""
  1056. " -h, --help[=TAG|KEYWORD] Print usage and exit.\n"
  1057. " The help messages are classified with tags. A "
  1058. "tag\n"
  1059. " starts with \"#\". For example, type \"--"
  1060. "help=#http\"\n"
  1061. " to get the usage for the options tagged with\n"
  1062. " \"#http\". If non-tag word is given, print the "
  1063. "usage\n"
  1064. " for the options whose name includes that word."
  1065. msgstr ""
  1066. " -h, --help[=TAG|KEYWORD] ヘルプを表示して終了します.\n"
  1067. " ヘルプにはタグがつけられています. タグは, \"#"
  1068. "\" で始\n"
  1069. " まります. 例えば, \"#http\" のタグがついたオプ"
  1070. "ション\n"
  1071. " のヘルプを表示するには, \"--help=#http\" としま"
  1072. "す.\n"
  1073. " タグ以外のキーワードを指定した場合, その文字列"
  1074. "を名\n"
  1075. " 前に含むオプションのヘルプを表示します."
  1076. #: src/usage_text.h:393
  1077. msgid " --no-conf[=true|false] Disable loading aria2.conf file."
  1078. msgstr ""
  1079. " --no-conf[=true|false] aria2.conf ファイルの読み込みを無効にします."
  1080. #: src/usage_text.h:395
  1081. msgid ""
  1082. " --conf-path=PATH Change the configuration file path to PATH."
  1083. msgstr ""
  1084. " --conf-path=PATH 読み込む設定ファイルのパスを PATH に変更します."
  1085. #: src/usage_text.h:397
  1086. msgid ""
  1087. " --stop=SEC Stop application after SEC seconds has "
  1088. "passed.\n"
  1089. " If 0 is given, this feature is disabled."
  1090. msgstr ""
  1091. " --stop=SEC SEC 秒が経過した後, アプリケーションを停止しま"
  1092. "す.\n"
  1093. " 0 を指定すると, この機能は無効になります."
  1094. #: src/usage_text.h:400
  1095. msgid ""
  1096. " --header=HEADER Append HEADER to HTTP request header. You can "
  1097. "use\n"
  1098. " this option repeatedly to specify more than "
  1099. "one\n"
  1100. " header:\n"
  1101. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  1102. "9J1\"\n"
  1103. " http://host/file"
  1104. msgstr ""
  1105. " --header=HEADER HTTP リクエストヘッダーに HEADER を追加する.\n"
  1106. " 複数の HEADER を追加するにはこのオプションを複"
  1107. "数\n"
  1108. " 回使います:\n"
  1109. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  1110. "9J1\"\n"
  1111. " http://host/file"
  1112. #: src/usage_text.h:406
  1113. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  1114. msgstr " -q, --quiet[=true|false] コンソールに何も表示しないようにします."
  1115. #: src/usage_text.h:408
  1116. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  1117. msgstr " --async-dns[=true|false] 非同期 DNS を有効にします."
  1118. #: src/usage_text.h:410
  1119. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  1120. msgstr " --ftp-reuse-connection[=true|false] FTP で接続を再利用します."
  1121. #: src/usage_text.h:412
  1122. msgid ""
  1123. " --summary-interval=SEC Set interval to output download progress "
  1124. "summary.\n"
  1125. " Setting 0 suppresses the output."
  1126. msgstr ""
  1127. " --summary-interval=SEC 全ダウンロード進行状況のサマリーを表示する間隔"
  1128. "を\n"
  1129. " 秒単位で設定します. サマリーを非表時にするには "
  1130. "0\n"
  1131. " を指定します."
  1132. #: src/usage_text.h:415
  1133. msgid " --log-level=LEVEL Set log level to output."
  1134. msgstr " --log-level=LEVEL 出力するログレベルを指定します."
  1135. #: src/usage_text.h:417
  1136. msgid ""
  1137. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  1138. "the\n"
  1139. " remote HTTP/FTP server and if it is "
  1140. "available,\n"
  1141. " apply it to the local file."
  1142. msgstr ""
  1143. " -R, --remote-time[=true|false] HTTP/FTP サーバーからファイルの更新日付を取得"
  1144. "し\n"
  1145. " て保存したファイルの更新日付としてに使用します."
  1146. #: src/usage_text.h:421
  1147. msgid ""
  1148. " --connect-timeout=SEC Set the connect timeout in seconds to "
  1149. "establish\n"
  1150. " connection to HTTP/FTP/proxy server. After "
  1151. "the\n"
  1152. " connection is established, this option makes "
  1153. "no\n"
  1154. " effect and --timeout option is used instead."
  1155. msgstr ""
  1156. " --connect-timeout=SEC HTTP/FTP サーバーへの接続時のタイムアウトを秒単"
  1157. "位\n"
  1158. " で指定します. 接続完了後のタイムアウトは,\n"
  1159. " --timeout で指定する値を使用します."
  1160. #: src/usage_text.h:426
  1161. msgid ""
  1162. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  1163. "the\n"
  1164. " remote HTTP/FTP servers NUM times without "
  1165. "getting\n"
  1166. " a single byte, then force the download to "
  1167. "fail.\n"
  1168. " Specify 0 to disable this option.\n"
  1169. " This options is effective only when using\n"
  1170. " HTTP/FTP servers."
  1171. msgstr ""
  1172. " --max-file-not-found=NUM aria2 が HTTP/FTP サーバーからリソースが存在し"
  1173. "ない\n"
  1174. " 旨のレスポンスを, ファイルのデータ本体を 1 バイ"
  1175. "ト\n"
  1176. " も受信しないで NUM 回受け取った時にダウンロード"
  1177. "を\n"
  1178. " 強制的に失敗させます. 0 を指定すると, この機能"
  1179. "を無\n"
  1180. " 効にします. この機能は HTTP/FTP サーバーにのみ"
  1181. "有効\n"
  1182. " です."
  1183. #: src/usage_text.h:433
  1184. msgid ""
  1185. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  1186. " If 'inorder' is given, URI is tried in the "
  1187. "order\n"
  1188. " appeared in the URI list.\n"
  1189. " If 'feedback' is given, aria2 uses download "
  1190. "speed\n"
  1191. " observed in the previous downloads and choose\n"
  1192. " fastest server in the URI list. This also\n"
  1193. " effectively skips dead mirrors. The observed\n"
  1194. " download speed is a part of performance "
  1195. "profile\n"
  1196. " of servers mentioned in --server-stat-of and\n"
  1197. " --server-stat-if options.\n"
  1198. " If 'adaptive' is given, selects one of the "
  1199. "best\n"
  1200. " mirrors for the first and reserved "
  1201. "connections.\n"
  1202. " For supplementary ones, it returns mirrors "
  1203. "which\n"
  1204. " has not been tested yet, and if each of them "
  1205. "has\n"
  1206. " already been tested, returns mirrors which has "
  1207. "to\n"
  1208. " be tested again. Otherwise, it doesn't select\n"
  1209. " anymore mirrors. Like 'feedback', it uses a\n"
  1210. " performance profile of servers."
  1211. msgstr ""
  1212. " --uri-selector=SELECTOR URI を選択するアルゴリズムを指定します.\n"
  1213. " 'inorder' を指定すると, URI リストに登録された"
  1214. "順に\n"
  1215. " URI を取り出して使います.これは従来通りの動作で"
  1216. "す.\n"
  1217. " 'feedback' を指定すると, aria2 は以前のダウン"
  1218. "ロー\n"
  1219. " ドで得たダウンロード速度を基に, 最速のサーバー"
  1220. "の\n"
  1221. " URI を URI リストから探して選択します. またこれ"
  1222. "は\n"
  1223. " 現在利用不可能だと分かっているサーバーをスキッ"
  1224. "プす\n"
  1225. " ることも行います. ここで使用するダウンロード速"
  1226. "度は\n"
  1227. " サーバーのパフォーマンス プロファイルの一部で"
  1228. "す.\n"
  1229. " --server-stat-of と --server-start-if オプショ"
  1230. "ンも\n"
  1231. " 参照してください.\n"
  1232. " 'adaptive' を指定すると, 初回の選択と, フェイ"
  1233. "ル オ\n"
  1234. " ーバー時には最速のサーバーを選択します. その他"
  1235. "のタ\n"
  1236. " イミングでの選択では, まだテストしていないミ"
  1237. "ラーを\n"
  1238. " 選択します. すべてテストされている場合は, 再テ"
  1239. "スト\n"
  1240. " が必要なミラーを選択します. このようなミラーが"
  1241. "存在\n"
  1242. " しない場合は, 何も選択しません. 'feedback' を指"
  1243. "定\n"
  1244. " したときと同様, サーバーのパフォーマンス プロ"
  1245. "ファ\n"
  1246. " イルを使用します."
  1247. #: src/usage_text.h:452
  1248. msgid ""
  1249. " --server-stat-of=FILE Specify the filename to which performance "
  1250. "profile\n"
  1251. " of the servers is saved. You can load saved "
  1252. "data\n"
  1253. " using --server-stat-if option."
  1254. msgstr ""
  1255. " --server-stat-of=FILE サーバーのパフォーマンスプロファイルを保存する"
  1256. "ファ\n"
  1257. " イル名を指定します. 保存したファイルは,\n"
  1258. " --server-stat-of オプションにより読み込むことが"
  1259. "で\n"
  1260. " きます."
  1261. #: src/usage_text.h:456
  1262. msgid ""
  1263. " --server-stat-if=FILE Specify the filename to load performance "
  1264. "profile\n"
  1265. " of the servers. The loaded data will be used "
  1266. "in\n"
  1267. " some URI selector such as 'feedback'.\n"
  1268. " See also --uri-selector option"
  1269. msgstr ""
  1270. " --server-stat-if=FILE 指定したファイルからサーバーのパフォーマンスプ"
  1271. "ロフ\n"
  1272. " ァイルを読み込みます. 読み込まれたデータは,\n"
  1273. " 'feedback' 等の URI セレクターで使用されます.\n"
  1274. " --uri-selector オプションを参照してください."
  1275. #: src/usage_text.h:461
  1276. msgid ""
  1277. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  1278. " performance profile of the servers since the "
  1279. "last\n"
  1280. " contact to them."
  1281. msgstr ""
  1282. " --server-stat-timeout=SEC サーバーのパフォーマンスプロファイルの有効期間"
  1283. "を,\n"
  1284. " 秒数で指定します. 最後にそのサーバーを利用した"
  1285. "時刻\n"
  1286. " からの指定した秒数が経過したエントリは削除され"
  1287. "ま\n"
  1288. " す."
  1289. #: src/usage_text.h:465
  1290. msgid ""
  1291. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  1292. "seconds.\n"
  1293. " If 0 is given, a control file is not saved "
  1294. "during\n"
  1295. " download. aria2 saves a control file when it "
  1296. "stops\n"
  1297. " regardless of the value."
  1298. msgstr ""
  1299. " --auto-save-interval=SEC コントロールファイル (*.aria2) を SEC 秒毎に保"
  1300. "存\n"
  1301. " します. 0 を指定すると, ダウンロード中はコント"
  1302. "ロ\n"
  1303. " ールファイルを保存しません. 指定した値に関わら"
  1304. "ず,\n"
  1305. " aria2 は終了時にコントロールファイルを保存しま"
  1306. "す."
  1307. #: src/usage_text.h:470
  1308. msgid ""
  1309. " --certificate=FILE Use the client certificate in FILE.\n"
  1310. " The certificate must be in PEM format.\n"
  1311. " You may use --private-key option to specify "
  1312. "the\n"
  1313. " private key."
  1314. msgstr ""
  1315. " --certificate=FILE FILE にあるクライアント証明書を使用します. 証明"
  1316. "書\n"
  1317. " は PEM 形式でなくてはなりません.\n"
  1318. " プライベートキーは --private-key オプションで指"
  1319. "定\n"
  1320. " します."
  1321. #: src/usage_text.h:475
  1322. msgid ""
  1323. " --private-key=FILE Use the private key in FILE.\n"
  1324. " The private key must be decrypted and in PEM\n"
  1325. " format. See also --certificate option."
  1326. msgstr ""
  1327. " --private-key=FILE FILE にあるプライベートキーを使用します. プライ"
  1328. "ベ\n"
  1329. " ートキーは暗号化されておらず, また, PEM 形式で"
  1330. "なく\n"
  1331. " てはなりません. --certificate オプションも参照"
  1332. "して\n"
  1333. " ください."
  1334. #: src/usage_text.h:479
  1335. msgid ""
  1336. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  1337. "verify\n"
  1338. " the peers. The certificate file must be in "
  1339. "PEM\n"
  1340. " format and can contain multiple CA "
  1341. "certificates.\n"
  1342. " Use --check-certificate option to enable\n"
  1343. " verification."
  1344. msgstr ""
  1345. " --ca-certificate=FILE FILE にある認証局 (CA) の証明書を使って, ピアを"
  1346. "検\n"
  1347. " 証します. FILE は PEM 形式でなくてはなりませ"
  1348. "ん. ま\n"
  1349. " た, 複数の CA の証明書を含むことができます.\n"
  1350. " --check-certificate オプションでピアの検証を有"
  1351. "効に\n"
  1352. " します."
  1353. #: src/usage_text.h:485
  1354. msgid ""
  1355. " --check-certificate[=true|false] Verify the peer using certificates "
  1356. "specified\n"
  1357. " in --ca-certificate option."
  1358. msgstr ""
  1359. " --check-certificate[=true|false] --ca-certificate オプションで指定した証明書"
  1360. "を\n"
  1361. " 使ってピアを検証します."
  1362. #: src/usage_text.h:488
  1363. msgid ""
  1364. " --no-proxy=DOMAINS Specify comma separated hostnames, domains or\n"
  1365. " network address with or without CIDR block "
  1366. "where\n"
  1367. " proxy should not be used."
  1368. msgstr ""
  1369. " --no-proxy=DOMAINS コンマで分けて, プロキシを使いたくないホスト名"
  1370. "やド\n"
  1371. " メイン, ネットワークアドレス (CIDR 指定可能 ) "
  1372. "を指\n"
  1373. " 定してください."
  1374. #: src/usage_text.h:492
  1375. msgid ""
  1376. " --use-head[=true|false] Use HEAD method for the first request to the "
  1377. "HTTP\n"
  1378. " server."
  1379. msgstr ""
  1380. " --use-head[=true|false] HTTP サーバーへの最初のリクエストに HEAD を使い"
  1381. "ます."
  1382. #: src/usage_text.h:495
  1383. msgid " --event-poll=POLL Specify the method for polling events."
  1384. msgstr ""
  1385. " --event-poll=POLL イベントを検出する方法 (システム コール) を指定"
  1386. "します."
  1387. #: src/usage_text.h:497
  1388. msgid ""
  1389. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  1390. "a\n"
  1391. " BitTorrent tracker. Although this function is\n"
  1392. " named 'external', it can accept any kind of "
  1393. "IP\n"
  1394. " addresses."
  1395. msgstr ""
  1396. " --bt-external-ip=IPADDRESS BitTorrent トラッカーに報告する外部 IP アドレス"
  1397. "を\n"
  1398. " 指定します. '外部' という名前がついていますが, "
  1399. "ど\n"
  1400. " のような IP アドレスでも受け付けます."
  1401. #: src/usage_text.h:502
  1402. msgid ""
  1403. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  1404. "it\n"
  1405. " is requested by the server. If false is set, "
  1406. "then\n"
  1407. " authorization header is always sent to the "
  1408. "server.\n"
  1409. " There is an exception: if username and "
  1410. "password\n"
  1411. " are embedded in URI, authorization header is\n"
  1412. " always sent to the server regardless of this\n"
  1413. " option."
  1414. msgstr ""
  1415. " --http-auth-challenge[=true|false] HTTP 認証ヘッダーをサーバーが要求してきた"
  1416. "場\n"
  1417. " 合にのみ送信するようにします. false が指定され"
  1418. "た場\n"
  1419. " 合, 認証ヘッダーは, 常にサーバーに送信されま"
  1420. "す. 例\n"
  1421. " 外があり, ユーザー名とパスワードが URI に含まれ"
  1422. "て\n"
  1423. " いる場合, 認証ヘッダーは, このオプションの値に"
  1424. "関わ\n"
  1425. " らず常に送信されます."
  1426. #: src/usage_text.h:510
  1427. msgid ""
  1428. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  1429. "can\n"
  1430. " find the file index using the --show-files "
  1431. "option.\n"
  1432. " PATH is a relative path to the path specified "
  1433. "in\n"
  1434. " --dir option. You can use this option "
  1435. "multiple\n"
  1436. " times."
  1437. msgstr ""
  1438. " -O, --index-out=INDEX=PATH ファイルのインデックスが INDEX であるファイルの"
  1439. "保\n"
  1440. " 存先 PATH を指定します. ファイルのインデックス"
  1441. "は,\n"
  1442. " --show-files オプションで確認することができま"
  1443. "す.\n"
  1444. " PATH は --dir オプションで指定されるパスからの"
  1445. "相対\n"
  1446. " パスであるとみなされます. このオプションを何度"
  1447. "も使\n"
  1448. " うことができます."
  1449. #: src/usage_text.h:516
  1450. msgid ""
  1451. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  1452. "the\n"
  1453. " remote file is available and doesn't download\n"
  1454. " data. This option has effect on HTTP/FTP "
  1455. "download.\n"
  1456. " BitTorrent downloads are canceled if true is\n"
  1457. " specified."
  1458. msgstr ""
  1459. " --dry-run[=true|false] true が指定されると, aria2 はサーバー上のファイ"
  1460. "ル\n"
  1461. " の存在をチェックするだけで, ダウンロードは行わ"
  1462. "ない\n"
  1463. " ようになります. このオプションは HTTP/FTP ダウ"
  1464. "ンロ\n"
  1465. " ードでのみ有効です. このオプションが true の場"
  1466. "合,\n"
  1467. " BitTorrent ダウンロードはキャンセルされます."
  1468. #: src/usage_text.h:522
  1469. msgid ""
  1470. " --bt-tracker-interval=SEC Set the interval in seconds between tracker\n"
  1471. " requests. This completely overrides interval "
  1472. "value\n"
  1473. " and aria2 just uses this value and ignores "
  1474. "the\n"
  1475. " min interval and interval value in the "
  1476. "response of\n"
  1477. " tracker. If 0 is set, aria2 determines "
  1478. "interval\n"
  1479. " based on the response of tracker and the "
  1480. "download\n"
  1481. " progress."
  1482. msgstr ""
  1483. " --bt-tracker-interval=SEC トラッカーへのリクエスト間隔を秒で指定します. "
  1484. "この\n"
  1485. " オプションは完全にリクエスト間隔をオーバーライ"
  1486. "ドし\n"
  1487. " ます: aria2 はトラッカーの応答に含まれる\n"
  1488. " minInterval, interval の値を無視するようになり"
  1489. "ま\n"
  1490. " す. 0 が指定された場合, aria2 はトラッカーから"
  1491. "の応\n"
  1492. " 答やダウンロードの進行状況に応じてリクエスト間"
  1493. "隔を\n"
  1494. " 決定します."
  1495. #: src/usage_text.h:530
  1496. msgid ""
  1497. " --on-download-complete=COMMAND Set the command to be executed after "
  1498. "download\n"
  1499. " completed.\n"
  1500. " See --on-download-start option for the\n"
  1501. " requirement of COMMAND.\n"
  1502. " See also --on-download-stop option."
  1503. msgstr ""
  1504. " --on-download-complete=COMMAND ダウンロードが完了した時に実行されるコマンド"
  1505. "を指\n"
  1506. " 定します. COMMAND に必要なものについては\n"
  1507. " --on-download-start オプションを見てください.\n"
  1508. " --on-download-stop オプションも見てください."
  1509. #: src/usage_text.h:536
  1510. msgid ""
  1511. " --on-download-start=COMMAND Set the command to be executed after download\n"
  1512. " got started. aria2 passes 3 arguments to "
  1513. "COMMAND:\n"
  1514. " GID, the nubmer of files and file path. See "
  1515. "Event\n"
  1516. " Hook in man page for more details."
  1517. msgstr ""
  1518. " --on-download-start=COMMAND ダウンロードが開始されたときに実行されるコマン"
  1519. "ドを\n"
  1520. " 指定します. aria2 は COMMAND に対して三つの引数"
  1521. "を\n"
  1522. " 渡します :GID とファイル数とファイルパスです. "
  1523. "詳細\n"
  1524. " については man ページにある Event Hook を見てく"
  1525. "だ\n"
  1526. " さい."
  1527. #: src/usage_text.h:541
  1528. msgid ""
  1529. " --on-download-pause=COMMAND Set the command to be executed after download\n"
  1530. " was paused.\n"
  1531. " See --on-download-start option for the\n"
  1532. " requirement of COMMAND."
  1533. msgstr ""
  1534. " -on-download-pause=COMMAND ダウンロードが一時停止した時に実行されるコマン"
  1535. "ドを\n"
  1536. " 指定します. COMMAND に必要なものについては\n"
  1537. " --on-download-start オプションを見てください."
  1538. #: src/usage_text.h:546
  1539. msgid ""
  1540. " --on-download-error=COMMAND Set the command to be executed after download\n"
  1541. " aborted due to error.\n"
  1542. " See --on-download-start option for the\n"
  1543. " requirement of COMMAND.\n"
  1544. " See also --on-download-stop option."
  1545. msgstr ""
  1546. " --on-download-error=COMMAND エラーによってダウンロードが中断された時に実行"
  1547. "され\n"
  1548. " るコマンドを指定します. COMMAND に必要なものに"
  1549. "つい\n"
  1550. " ては --on-download-start オプションを見てくださ"
  1551. "い.\n"
  1552. " --on-download-stop オプションも見てください."
  1553. #: src/usage_text.h:552
  1554. msgid ""
  1555. " --on-download-stop=COMMAND Set the command to be executed after download\n"
  1556. " stopped. You can override the command to be\n"
  1557. " executed for particular download result using\n"
  1558. " --on-download-complete and --on-download-"
  1559. "error. If\n"
  1560. " they are specified, command specified in this\n"
  1561. " option is not executed.\n"
  1562. " See --on-download-start option for the\n"
  1563. " requirement of COMMAND."
  1564. msgstr ""
  1565. " --on-download-stop=COMMAND ダウンロードが中断されたあとに実行するコマンド"
  1566. "を指\n"
  1567. " 定します. --on-download-complete と\n"
  1568. " --on-download-error を用いて特定のダウンロード"
  1569. "結果\n"
  1570. " に対してコマンドを上書きできます. これらのオプ"
  1571. "ショ\n"
  1572. " ンが指定されている場合, このオプションのコマン"
  1573. "ドは\n"
  1574. " 実行されません. COMMAND に必要なものについて"
  1575. "は\n"
  1576. " --on-download-start オプションを見てください."
  1577. #: src/usage_text.h:561
  1578. msgid ""
  1579. " --bt-stop-timeout=SEC Stop BitTorrent download if download speed is "
  1580. "0 in\n"
  1581. " consecutive SEC seconds. If 0 is given, this\n"
  1582. " feature is disabled."
  1583. msgstr ""
  1584. " --bt-stop-timeout=SEC 連続する SEC 秒の間, BitTorrent ダウンロードの"
  1585. "ダウ\n"
  1586. " ンロード速度が 0 の場合, そのダウンロードを中止"
  1587. "し\n"
  1588. " ます. 0 を指定すると, このオプションを無効にす"
  1589. "るこ\n"
  1590. " とができます."
  1591. #: src/usage_text.h:565
  1592. msgid ""
  1593. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] Try to download first and "
  1594. "last\n"
  1595. " pieces of each file first. This is useful for\n"
  1596. " previewing files. The argument can contain 2\n"
  1597. " keywords:head and tail. To include both "
  1598. "keywords,\n"
  1599. " they must be separated by comma. These "
  1600. "keywords\n"
  1601. " can take one parameter, SIZE. For example, if\n"
  1602. " head=SIZE is specified, pieces in the range "
  1603. "of\n"
  1604. " first SIZE bytes of each file get higher "
  1605. "priority.\n"
  1606. " tail=SIZE means the range of last SIZE bytes "
  1607. "of\n"
  1608. " each file. SIZE can include K or M(1K = 1024, "
  1609. "1M =\n"
  1610. " 1024K). If SIZE is omitted, SIZE=1M is used."
  1611. msgstr ""
  1612. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] 始めに各ファイルの最初と最後の"
  1613. "ピ\n"
  1614. " ースをダウンロードしようと試みます. これはファ"
  1615. "イル\n"
  1616. " をプレビューしたいときに使えます. 引数には "
  1617. "head と\n"
  1618. " tail 両方のキーワードを含めることが出来ます. 両"
  1619. "方\n"
  1620. " のキーワードを含むにはコンマを用いて区切りま"
  1621. "す. こ\n"
  1622. " れらのキーワードには一つのパラメータ, SIZE を与"
  1623. "え\n"
  1624. " ます. 例えば head=SIZE が指定されている場合, 各"
  1625. "フ\n"
  1626. " ァイルの始めから SIZE バイトが高い優先度で取得"
  1627. "され\n"
  1628. " ます. tail=SIZE が指定されている場合, 各ファイ"
  1629. "ルの\n"
  1630. " 終わりから SIZE バイトが高い優先度で取得されま"
  1631. "す.\n"
  1632. " SIZE には K か M を含むことが出来ます "
  1633. "(1K=1024,\n"
  1634. " 1M=1024K). SIZE を省略すると, SIZE=1M として扱"
  1635. "われ\n"
  1636. " ます."
  1637. #: src/usage_text.h:577
  1638. msgid ""
  1639. " --interface=INTERFACE Bind sockets to given interface. You can "
  1640. "specify\n"
  1641. " interface name, IP address and hostname."
  1642. msgstr ""
  1643. " --interface=INTERFACE ソケットを与えられたインターフェースでバインド"
  1644. "しま\n"
  1645. " す. インターフェース名と IP アドレス, ホスト名"
  1646. "を指\n"
  1647. " 定できます."
  1648. #: src/usage_text.h:580
  1649. msgid " --disable-ipv6[=true|false] Disable IPv6."
  1650. msgstr " --disable-ipv6[=true|false] IPv6 を無効にします."
  1651. #: src/usage_text.h:582
  1652. msgid ""
  1653. " --bt-save-metadata[=true|false] Save metadata as .torrent file. This option "
  1654. "has\n"
  1655. " effect only when BitTorrent Magnet URI is "
  1656. "used.\n"
  1657. " The filename is hex encoded info hash with "
  1658. "suffix\n"
  1659. " .torrent. The directory to be saved is the "
  1660. "same\n"
  1661. " directory where download file is saved. If "
  1662. "the\n"
  1663. " same file already exists, metadata is not "
  1664. "saved.\n"
  1665. " See also --bt-metadata-only option."
  1666. msgstr ""
  1667. " -bt-save-metadata[=true|false] メタデータを .torrent ファイルに保存します. "
  1668. "この\n"
  1669. " オプションは BitTorrent マグネット URI が使われ"
  1670. "た\n"
  1671. " 時にしか効果がありません. ファイル名は 16 進数"
  1672. "でエ\n"
  1673. " ンコードされた InfoHash に拡張子 .torrent が付"
  1674. "けら\n"
  1675. " れたものになります. 保存されるディレクトリはダ"
  1676. "ウン\n"
  1677. " ロードファイルのあるディレクトリと同じです. 同"
  1678. "じフ\n"
  1679. " ァイルが既に存在する場合, メタデータは保存され"
  1680. "ませ\n"
  1681. " ん. --bt-metadata-only オプションも見てくださ"
  1682. "い."
  1683. #: src/usage_text.h:590
  1684. msgid ""
  1685. " --http-no-cache[=true|false] Send Cache-Control: no-cache and Pragma: no-"
  1686. "cache\n"
  1687. " header to avoid cached content. If false is\n"
  1688. " given, these headers are not sent and you can "
  1689. "add\n"
  1690. " Cache-Control header with a directive you "
  1691. "like\n"
  1692. " using --header option."
  1693. msgstr ""
  1694. #: src/usage_text.h:596
  1695. msgid ""
  1696. " --bt-metadata-only[=true|false] Download metadata only. The file(s) "
  1697. "described\n"
  1698. " in metadata will not be downloaded. This "
  1699. "option\n"
  1700. " has effect only when BitTorrent Magnet URI is\n"
  1701. " used. See also --bt-save-metadata option."
  1702. msgstr ""
  1703. " --bt-metadata-only[=true|false] メタデータのみをダウンロードします. メタデー"
  1704. "タ\n"
  1705. " に記述されたファイルはダウンロードされません. "
  1706. "この\n"
  1707. " オプションは BitTorrent マグネット URI が使われ"
  1708. "た\n"
  1709. " ときにのみ効果があります. --bt-save-metadata オ"
  1710. "プ\n"
  1711. " ションも見てください."
  1712. #: src/usage_text.h:601
  1713. msgid ""
  1714. " --human-readable[=true|false] Print sizes and speed in human readable "
  1715. "format\n"
  1716. " (e.g., 1.2Ki, 3.4Mi) in the console readout."
  1717. msgstr ""
  1718. " --human-readable[=true|false] サイズや速度を人間が読める書式 ( 例 : 1.2Ki,\n"
  1719. " 3.4Mi) でコンソールに表示します."
  1720. #: src/usage_text.h:604
  1721. msgid " --bt-enable-lpd[=true|false] Enable Local Peer Discovery."
  1722. msgstr " --bt-enable-lpd[=true|false] ローカルピアディスカバリを有効にします."
  1723. #: src/usage_text.h:606
  1724. msgid ""
  1725. " --bt-lpd-interface=INTERFACE Use given interface for Local Peer Discovery. "
  1726. "If\n"
  1727. " this option is not specified, the default\n"
  1728. " interface is chosen. You can specify "
  1729. "interface\n"
  1730. " name and IP address."
  1731. msgstr ""
  1732. " --bt-lpd-interface=INTERFACE ローカルピアディスカバリに与えられたインター"
  1733. "フェー\n"
  1734. " スを使います. このオプションが指定されていない"
  1735. "場合\n"
  1736. " , デフォルトのインターフェースが選択されます. "
  1737. "イン\n"
  1738. " ターフェース名と IP アドレスで指定できます."
  1739. #: src/usage_text.h:611
  1740. msgid ""
  1741. " --reuse-uri[=true|false] Reuse already used URIs if no unused URIs are\n"
  1742. " left."
  1743. msgstr ""
  1744. " --reuse-uri[=true|false] 使用していない URI が残っていない場合, 既に使用"
  1745. "し\n"
  1746. " ている URI を再利用します."
  1747. #: src/usage_text.h:614
  1748. msgid " --all-proxy-user=USER Set user for --all-proxy option."
  1749. msgstr ""
  1750. " --all-proxy-user=USER --all-proxy オプションでのプロキシユーザー名を"
  1751. "指定\n"
  1752. " します."
  1753. #: src/usage_text.h:616
  1754. msgid " --all-proxy-passwd=PASSWD Set password for --all-proxy option."
  1755. msgstr ""
  1756. " --all-proxy-passwd=PASSWD --all-proxy オプションでのプロキシパスワードを"
  1757. "指定\n"
  1758. " します."
  1759. #: src/usage_text.h:618
  1760. msgid " --http-proxy-user=USER Set user for --http-proxy option."
  1761. msgstr ""
  1762. " --http-proxy-user=USER --http-proxy オプションでのプロキシユーザー名を"
  1763. "指\n"
  1764. " 定します."
  1765. #: src/usage_text.h:620
  1766. msgid " --http-proxy-passwd=PASSWD Set password for --http-proxy option."
  1767. msgstr ""
  1768. " --http-proxy-passwd=PASSWD --http-proxy オプションでのプロキシパスワードを"
  1769. "指\n"
  1770. " 定します."
  1771. #: src/usage_text.h:622
  1772. msgid " --https-proxy-user=USER Set user for --https-proxy option."
  1773. msgstr ""
  1774. " --https-proxy-user=USER --https-proxy オプションでのプロキシユーザー名"
  1775. "を指\n"
  1776. " 定します."
  1777. #: src/usage_text.h:624
  1778. msgid " --https-proxy-passwd=PASSWD Set password for --https-proxy option."
  1779. msgstr ""
  1780. " --https-proxy-passwd=PASSWD --https-proxy オプションでのプロキシパスワード"
  1781. "を指\n"
  1782. " 定します."
  1783. #: src/usage_text.h:626
  1784. msgid " --ftp-proxy-user=USER Set user for --ftp-proxy option."
  1785. msgstr ""
  1786. " --ftp-proxy-user=USER --ftp-proxy オプションでのプロキシユーザー名を"
  1787. "指定\n"
  1788. " します."
  1789. #: src/usage_text.h:628
  1790. msgid " --ftp-proxy-passwd=PASSWD Set password for --ftp-proxy option."
  1791. msgstr ""
  1792. " --ftp-proxy-passwd=PASSWD --ftp-proxy オプションでのプロキシパスワードを"
  1793. "指定\n"
  1794. " します."
  1795. #: src/usage_text.h:630
  1796. msgid ""
  1797. " --remove-control-file[=true|false] Remove control file before download. "
  1798. "Using\n"
  1799. " with --allow-overwrite=true, download always\n"
  1800. " starts from scratch. This will be useful for\n"
  1801. " users behind proxy server which disables "
  1802. "resume."
  1803. msgstr ""
  1804. " --remove-control-file[=true|false] ダウンロードの前にコントロールファイルを"
  1805. "削除\n"
  1806. " します. --allow-overwrite=true が指定されている"
  1807. "場\n"
  1808. " 合, 常にまっさらからダウンロードします. リ"
  1809. "ジューム\n"
  1810. " を無効化しているプロキシサーバーの後ろにいる"
  1811. "ユーザ\n"
  1812. " ーに役に立ちます."
  1813. #: src/usage_text.h:635
  1814. msgid ""
  1815. " --always-resume[=true|false] Always resume download. If true is given, "
  1816. "aria2\n"
  1817. " always tries to resume download and if resume "
  1818. "is\n"
  1819. " not possible, aborts download. If false is "
  1820. "given,\n"
  1821. " when all given URIs do not support resume or\n"
  1822. " aria2 encounters N URIs which does not "
  1823. "support\n"
  1824. " resume (N is the value specified using\n"
  1825. " --max-resume-failure-tries option), aria2\n"
  1826. " downloads file from scratch.\n"
  1827. " See --max-resume-failure-tries option."
  1828. msgstr ""
  1829. " --always-resume[=true|false] 常にダウンロードをリジュームします. true が与え"
  1830. "ら\n"
  1831. " れた場合, aria2 は常にリジュームを試行し, 不可"
  1832. "能な\n"
  1833. " 場合は中止します. false が指定されている場合, "
  1834. "全て\n"
  1835. " の与えられた URI がリジュームをサポートしない"
  1836. "か,\n"
  1837. " 最初の N 個の URI が全てリジュームをサポートし"
  1838. "ない\n"
  1839. " (N は --max-resume-failure-tries オプションを"
  1840. "使っ\n"
  1841. " て指定出来ます ) 場合, aria2 はまっさらからファ"
  1842. "イ\n"
  1843. " ルをダウンロードします --max-resume-failure-"
  1844. "tries\n"
  1845. " オプションも見てください."
  1846. #: src/usage_text.h:645
  1847. msgid ""
  1848. " --max-resume-failure-tries=N When used with --always-resume=false, aria2\n"
  1849. " downloads file from scratch when aria2 detects "
  1850. "N\n"
  1851. " number of URIs that does not support resume. "
  1852. "If N\n"
  1853. " is 0, aria2 downloads file from scratch when "
  1854. "all\n"
  1855. " given URIs do not support resume.\n"
  1856. " See --always-resume option."
  1857. msgstr ""
  1858. #: src/usage_text.h:652
  1859. msgid " --bt-tracker-timeout=SEC Set timeout in seconds."
  1860. msgstr ""
  1861. " --bt-tracker-timeout=SEC トラッカーへのタイムアウトを秒数で指定してくだ"
  1862. "さい\n"
  1863. " ."
  1864. #: src/usage_text.h:654
  1865. msgid ""
  1866. " --bt-tracker-connect-timeout=SEC Set the connect timeout in seconds to\n"
  1867. " establish connection to tracker. After the\n"
  1868. " connection is established, this option makes "
  1869. "no\n"
  1870. " effect and --bt-tracker-timeout option is "
  1871. "used\n"
  1872. " instead."
  1873. msgstr ""
  1874. #: src/usage_text.h:660
  1875. msgid " --dht-message-timeout=SEC Set timeout in seconds."
  1876. msgstr ""
  1877. " --dht-message-timeout=SEC DHT ネットワークへのタイムアウトを指定してくだ"
  1878. "さい\n"
  1879. " ."
  1880. #: src/usage_text.h:662
  1881. msgid ""
  1882. " --http-accept-gzip[=true|false] Send 'Accept: deflate, gzip' request "
  1883. "header\n"
  1884. " and inflate response if remote server "
  1885. "responds\n"
  1886. " with 'Content-Encoding: gzip' or\n"
  1887. " 'Content-Encoding: deflate'."
  1888. msgstr ""
  1889. #: src/usage_text.h:667
  1890. #, fuzzy
  1891. msgid ""
  1892. " --save-session=FILE Save error/unfinished downloads to FILE on "
  1893. "exit.\n"
  1894. " You can pass this output file to aria2c with -"
  1895. "i\n"
  1896. " option on restart. Please note that downloads\n"
  1897. " added by aria2.addTorrent and aria2."
  1898. "addMetalink\n"
  1899. " RPC method and whose metadata could not be "
  1900. "saved\n"
  1901. " as a file will not be saved."
  1902. msgstr ""
  1903. " --save-session=FILE エラー / 未完了のダウンロードを終了時にファイル"
  1904. "に\n"
  1905. " 保存します. 再開するときは -i オプションと共に"
  1906. "この\n"
  1907. " 出力ファイルを指定します. aria2.addTorrent と\n"
  1908. " aria2.addMetalink といった RPC メソッドから追加"
  1909. "さ\n"
  1910. " れた場合, これらは保存されないことに注意してく"
  1911. "ださ\n"
  1912. " い."
  1913. #: src/usage_text.h:674
  1914. msgid ""
  1915. " -x, --max-connection-per-server=NUM The maximum number of connections to "
  1916. "one\n"
  1917. " server for each download."
  1918. msgstr ""
  1919. " -x, --max-connection-per-server=NUM 各ダウンロードごとに, 一つのサーバーへの"
  1920. "最\n"
  1921. " 大接続数を NUM にします."
  1922. #: src/usage_text.h:677
  1923. msgid ""
  1924. " -k, --min-split-size=SIZE aria2 does not split less than 2*SIZE byte "
  1925. "range.\n"
  1926. " For example, let's consider downloading 20MiB\n"
  1927. " file. If SIZE is 10M, aria2 can split file "
  1928. "into 2\n"
  1929. " range [0-10MiB) and [10MiB-20MiB) and download "
  1930. "it\n"
  1931. " using 2 sources(if --split >= 2, of course).\n"
  1932. " If SIZE is 15M, since 2*15M > 20MiB, aria2 "
  1933. "does\n"
  1934. " not split file and download it using 1 "
  1935. "source.\n"
  1936. " You can append K or M(1K = 1024, 1M = 1024K)."
  1937. msgstr ""
  1938. #: src/usage_text.h:686
  1939. msgid ""
  1940. " --conditional-get[=true|false] Download file only when the local file is "
  1941. "older\n"
  1942. " than remote file. Currently, this function "
  1943. "has\n"
  1944. " many limitations. See man page for details."
  1945. msgstr ""
  1946. " --conditional-get[=true|false] リモートのファイルよりローカルのファイルが古"
  1947. "い場\n"
  1948. " 合のみ, ダウンロードを行なう. この機能には多く"
  1949. "の制\n"
  1950. " 限があります. 詳細は man ページを見てください."
  1951. #: src/usage_text.h:690
  1952. msgid ""
  1953. " --on-bt-download-complete=COMMAND For BitTorrent, a command specified in\n"
  1954. " --on-download-complete is called after "
  1955. "download\n"
  1956. " completed and seeding is over. On the other "
  1957. "hand,\n"
  1958. " this option sets the command to be executed "
  1959. "after\n"
  1960. " download completed but before seeding.\n"
  1961. " See --on-download-start option for the\n"
  1962. " requirement of COMMAND."
  1963. msgstr ""
  1964. #: src/usage_text.h:698
  1965. msgid ""
  1966. " --enable-async-dns6[=true|false] Enable IPv6 name resolution in "
  1967. "asynchronous\n"
  1968. " DNS resolver. This option will be ignored "
  1969. "when\n"
  1970. " --async-dns=false."
  1971. msgstr ""
  1972. #: src/usage_text.h:702
  1973. msgid ""
  1974. " --enable-dht6[=true|false] Enable IPv6 DHT functionality.\n"
  1975. " Use --dht-listen-port option to specify port\n"
  1976. " number to listen on. See also --dht-listen-"
  1977. "addr6\n"
  1978. " option."
  1979. msgstr " --enable-dht6[=true|false] IPv6 DHT 機能を有効にします."
  1980. #: src/usage_text.h:707
  1981. msgid ""
  1982. " --dht-listen-addr6=ADDR Specify address to bind socket for IPv6 DHT. \n"
  1983. " It should be a global unicast IPv6 address of "
  1984. "the\n"
  1985. " host."
  1986. msgstr ""
  1987. #: src/usage_text.h:711
  1988. msgid ""
  1989. " --dht-entry-point6=HOST:PORT Set host and port as an entry point to IPv6 "
  1990. "DHT\n"
  1991. " network."
  1992. msgstr ""
  1993. " --dht-entry-point6=HOST:PORT IPv6 DHT ネットワークヘのエントリポイントをホス"
  1994. "ト\n"
  1995. " とポートという形で指定します."
  1996. #: src/usage_text.h:714
  1997. msgid ""
  1998. " --dht-file-path6=PATH Change the IPv6 DHT routing table file to PATH."
  1999. msgstr ""
  2000. " --dht-file-path6=PATH IPv6 DHT ルーティングテーブルファイルへのパスを"
  2001. "指\n"
  2002. " 定します."
  2003. #: src/usage_text.h:716
  2004. msgid ""
  2005. " --bt-tracker=URI[,...] Comma separated list of additional BitTorrent\n"
  2006. " tracker's announce URI. These URIs are not\n"
  2007. " affected by --bt-exclude-tracker option "
  2008. "because\n"
  2009. " they are added after URIs in --bt-exclude-"
  2010. "tracker\n"
  2011. " option are removed."
  2012. msgstr ""
  2013. " --bt-tracker=URI[,...] コンマで区切って、追加のBitTorrentトラッカーのアナウ"
  2014. "ンスURIを指定します。"
  2015. #: src/usage_text.h:722
  2016. msgid ""
  2017. " --bt-exclude-tracker=URI[,...] Comma separated list of BitTorrent "
  2018. "tracker's\n"
  2019. " announce URI to remove. You can use special "
  2020. "value\n"
  2021. " '*' which matches all URIs, thus removes all\n"
  2022. " announce URIs. When specifying '*' in shell\n"
  2023. " command-line, don't forget to escape or quote "
  2024. "it.\n"
  2025. " See also --bt-tracker option."
  2026. msgstr ""
  2027. #: src/usage_text.h:729
  2028. msgid ""
  2029. " --max-download-result=NUM Set maximum number of download result kept in\n"
  2030. " memory. The download results are completed/"
  2031. "error/\n"
  2032. " removed downloads. The download results are "
  2033. "stored\n"
  2034. " in FIFO queue and it can store at most NUM\n"
  2035. " download results. When queue is full and new\n"
  2036. " download result is created, oldest download "
  2037. "result\n"
  2038. " is removed from the front of the queue and new "
  2039. "one\n"
  2040. " is pushed to the back. Setting big number in "
  2041. "this\n"
  2042. " option may result high memory consumption "
  2043. "after\n"
  2044. " thousands of downloads. Specifying 0 means no\n"
  2045. " download result is kept."
  2046. msgstr ""
  2047. #: src/usage_text.h:741
  2048. msgid ""
  2049. " --async-dns-server=IPADDRESS[,...] Comma separated list of DNS server "
  2050. "address\n"
  2051. " used in asynchronous DNS resolver. Usually\n"
  2052. " asynchronous DNS resolver reads DNS server\n"
  2053. " addresses from /etc/resolv.conf. When this "
  2054. "option\n"
  2055. " is used, it uses DNS servers specified in "
  2056. "this\n"
  2057. " option instead of ones in /etc/resolv.conf. "
  2058. "You\n"
  2059. " can specify both IPv4 and IPv6 address. This\n"
  2060. " option is useful when the system does not "
  2061. "have\n"
  2062. " /etc/resolv.conf and user does not have the\n"
  2063. " permission to create it."
  2064. msgstr ""
  2065. #: src/usage_text.h:752
  2066. msgid ""
  2067. " --enable-rpc[=true|false] Enable JSON-RPC/XML-RPC server.\n"
  2068. " It is strongly recommended to set username "
  2069. "and\n"
  2070. " password using --rpc-user and --rpc-passwd\n"
  2071. " option. See also --rpc-listen-port option."
  2072. msgstr ""
  2073. " --enable-rpc[=true|false] JSON-RPC/XML-RPC サーバーを有効にします.\n"
  2074. " --rpc-user と --rpc-passwd オプションでユーザー"
  2075. "名\n"
  2076. " とパスワードを指定することを強くお勧めします.\n"
  2077. " --rpc-listen-port オプションも見てください."
  2078. #: src/usage_text.h:757
  2079. msgid ""
  2080. " --rpc-max-request-size=SIZE Set max size of JSON-RPC/XML-RPC request. If "
  2081. "aria2\n"
  2082. " detects the request is more than SIZE bytes, "
  2083. "it\n"
  2084. " drops connection."
  2085. msgstr ""
  2086. " --rpc-max-request-size=SIZE JSON-RPC/XML-RPC リクエストの最大サイズを指定し"
  2087. "ま\n"
  2088. " す. aria2 は SIZE バイト以上のリクエストを検知"
  2089. "する\n"
  2090. " と, 接続を切断します."
  2091. #: src/usage_text.h:761
  2092. msgid " --rpc-user=USER Set JSON-RPC/XML-RPC user."
  2093. msgstr ""
  2094. " --rpc-user=USER JSON-RPC/XML-RPC のユーザー名を指定します."
  2095. #: src/usage_text.h:763
  2096. msgid " --rpc-passwd=PASSWD Set JSON-RPC/XML-RPC password."
  2097. msgstr ""
  2098. " --rpc-passwd=PASSWD JSON-RPC/XML-RPC のパスワードを指定します."
  2099. #: src/usage_text.h:765
  2100. msgid ""
  2101. " --rpc-listen-all[=true|false] Listen incoming JSON-RPC/XML-RPC requests on "
  2102. "all\n"
  2103. " network interfaces. If false is given, listen "
  2104. "only\n"
  2105. " on local loopback interface."
  2106. msgstr ""
  2107. " --rpc-listen-all[=true|false] 全てのネットワークインターフェースで\n"
  2108. " JSON-RPC/XML-RPC リクエストを受信します. false "
  2109. "が\n"
  2110. " 指定されるとローカルループバックインターフェー"
  2111. "スで\n"
  2112. " のみ受信します."
  2113. #: src/usage_text.h:769
  2114. msgid ""
  2115. " --rpc-listen-port=PORT Specify a port number for JSON-RPC/XML-RPC "
  2116. "server\n"
  2117. " to listen to."
  2118. msgstr ""
  2119. " --rpc-listen-port=PORT JSON-RPC/XML-RPC サーバーのポート番号を指定しま"
  2120. "す."
  2121. #: src/usage_text.h:772
  2122. msgid " --enable-xml-rpc[=true|false] Deprecated. Use --enable-rpc instead."
  2123. msgstr ""
  2124. #: src/usage_text.h:774
  2125. msgid ""
  2126. " --xml-rpc-max-request-size=SIZE Deprecated. Use --rpc-max-request-size\n"
  2127. " instead."
  2128. msgstr ""
  2129. #: src/usage_text.h:777
  2130. msgid " --xml-rpc-user=USER Deprecated. Use --rpc-user instead."
  2131. msgstr ""
  2132. #: src/usage_text.h:779
  2133. msgid " --xml-rpc-passwd=PASSWD Deprecated. Use --rpc-passwd instead."
  2134. msgstr ""
  2135. #: src/usage_text.h:781
  2136. msgid ""
  2137. " --xml-rpc-listen-all[=true|false] Deprecated. Use --rpc-listen-all instead."
  2138. msgstr ""
  2139. #: src/usage_text.h:783
  2140. msgid ""
  2141. " --xml-rpc-listen-port=PORT Deprecated. Use --rpc-listen-port instead."
  2142. msgstr ""
  2143. #: src/usage_text.h:785
  2144. msgid " --show-console-readout[=true|false] Show console readout."
  2145. msgstr ""
  2146. #: src/usage_text.h:787
  2147. #, fuzzy
  2148. msgid ""
  2149. " --metalink-base-uri=URI Specify base URI to resolve relative URI in\n"
  2150. " metalink:url and metalink:metaurl element in "
  2151. "a\n"
  2152. " metalink file stored in local disk. If URI "
  2153. "points\n"
  2154. " to a directory, URI must end with '/'."
  2155. msgstr ""
  2156. " -S, --show-files[=true|false] .torrent, .meta4, .metalink に記述されている"
  2157. "ファ\n"
  2158. " イルのリストを出力して終了します. トレントファ"
  2159. "イル\n"
  2160. " の場合はより詳しい情報が出力されます."
  2161. #: src/version_usage.cc:57
  2162. msgid " version "
  2163. msgstr " バージョン "
  2164. #: src/version_usage.cc:80
  2165. #, c-format
  2166. msgid "Report bugs to %s"
  2167. msgstr "バグレポートはこちらへ: %s"
  2168. #: src/version_usage.cc:85
  2169. msgid ""
  2170. "Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | METALINK_FILE]..."
  2171. msgstr ""
  2172. "使い方: aria2c [オプション] [URI | マグネットリンク | トレントファイル | メタ"
  2173. "リンクファイル]..."
  2174. #: src/version_usage.cc:92
  2175. msgid "Printing all options."
  2176. msgstr "すべてのオプションを表示します."
  2177. #: src/version_usage.cc:94
  2178. #, c-format
  2179. msgid "Printing options tagged with '%s'."
  2180. msgstr "'%s' タグが付いたオプションのみ表示します."
  2181. #: src/version_usage.cc:98
  2182. #, c-format
  2183. msgid "See -h option to know other command-line options(%s)."
  2184. msgstr ""
  2185. "他のコマンドラインオプション(%s)について知るには, -h オプションを参照してくだ"
  2186. "さい."
  2187. #: src/version_usage.cc:103 src/version_usage.cc:115
  2188. msgid "Options:"
  2189. msgstr "オプション:"
  2190. #: src/version_usage.cc:112
  2191. #, c-format
  2192. msgid "Printing options whose name includes '%s'."
  2193. msgstr "'%s' を含むオプションを表示しています."
  2194. #: src/version_usage.cc:121
  2195. #, c-format
  2196. msgid "No option matching with '%s'."
  2197. msgstr "'%s' にマッチするオプションが見つかりませんでした."
  2198. #: src/version_usage.cc:129
  2199. msgid ""
  2200. " You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z option, "
  2201. "all\n"
  2202. " URIs must point to the same file or downloading will fail."
  2203. msgstr ""
  2204. " 複数の HTTP(S)/FTP URI を指定出来ます. -Z オプションを指定している時を除い"
  2205. "て,\n"
  2206. " 全ての URI は同じファイルを指している必要があり, そうでなければダウンロード"
  2207. "は失\n"
  2208. " 敗するでしょう."
  2209. #: src/version_usage.cc:131
  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. " BitTorrent マグネット URI や, ローカルドライブに格納されたトレント/メタリン"
  2216. "クフ\n"
  2217. " ァイルを指定出来ます. これらは常に異なるダウンロードとして扱われることに注意"
  2218. "し\n"
  2219. " てください."
  2220. #: src/version_usage.cc:136
  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. " -T オプションと URI を両方指定してトレントをダウンロード出来ます. これを行な"
  2234. "う\n"
  2235. " と, HTTP/FTP からデータをトレントスウォームへアップロードしながら, トレント"
  2236. "スウ\n"
  2237. " ォームと HTTP/FTP サーバーから同時にダウンロードします. 単一ファイルのトレン"
  2238. "ト\n"
  2239. " にはそのリソースへの完全な URI か '/' で終わる URI を使うことが出来, 後者の"
  2240. "場合\n"
  2241. " , トレントファイルの 'name' が加えられます. 複数ファイルのトレントの場合, 各"
  2242. "フ\n"
  2243. " ァイル毎にトレントの 'name' と 'path' が URL に加えられます."
  2244. #: src/version_usage.cc:143
  2245. msgid ""
  2246. " Make sure that URI is quoted with single(') or double(\") quotation if it\n"
  2247. " contains \"&\" or any characters that have special meaning in shell."
  2248. msgstr ""
  2249. " URI が '&' などのシェルで特別な意味を持つキャラクターを含む場合はシングルク"
  2250. "オー\n"
  2251. " テーション (') かダブルクオーテーション (\") でクオートしてください."
  2252. #: src/version_usage.cc:153
  2253. msgid "Refer to man page for more information."
  2254. msgstr "より詳しい情報は man ページを参照してください."
  2255. #: src/message.h:57
  2256. #, c-format
  2257. msgid "GID#%s - Download has already completed: %s"
  2258. msgstr "GID#%s - ダウンロードは既に完了しています: %s"
  2259. #: src/message.h:106
  2260. #, c-format
  2261. msgid "Unrecognized URI or unsupported protocol: %s"
  2262. msgstr ""
  2263. "%s は, 理解できない URL フォーマット, または, サポートされないプロトコルです."
  2264. #: src/message.h:107
  2265. #, c-format
  2266. msgid "Tracker returned warning message: %s"
  2267. msgstr "トラッカーが警告メッセージを返しました: %s"
  2268. #: src/message.h:108
  2269. #, c-format
  2270. msgid "The segment file %s exists."
  2271. msgstr "セグメントファイル %s が存在します."
  2272. #: src/message.h:109
  2273. #, c-format
  2274. msgid "The segment file %s does not exist."
  2275. msgstr "セグメントファイル %s が存在しません."
  2276. #: src/message.h:110
  2277. #, c-format
  2278. msgid "Saving the segment file %s"
  2279. msgstr "セグメントファイル %s を保存しています."
  2280. #: src/message.h:111
  2281. msgid "The segment file was saved successfully."
  2282. msgstr "セグメントファイルの保存が完了しました."
  2283. #: src/message.h:112
  2284. #, c-format
  2285. msgid "Loading the segment file %s."
  2286. msgstr "セグメントファイル %s をロードしています."
  2287. #: src/message.h:113
  2288. msgid "The segment file was loaded successfully."
  2289. msgstr "セグメントファイルのロードが完了しました."
  2290. #: src/message.h:114
  2291. msgid "No URI to download. Download aborted."
  2292. msgstr "ダウンロードする URI がありません. ダウンロードを中止します."
  2293. #: src/message.h:115
  2294. #, c-format
  2295. msgid ""
  2296. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  2297. "canceled in order to prevent your file from being truncated to 0. If you are "
  2298. "sure to download the file all over again, then delete it or add --allow-"
  2299. "overwrite=true option and restart aria2."
  2300. msgstr ""
  2301. "ファイル %s は存在しますが, コントロールファイル(*.aria2)が存在しません. 既存"
  2302. "ファイル保護のためダウンロードはキャンセルされました. 本当にダウンロードを実"
  2303. "行してよいと確信がもてるのなら, --allow-overwrite=true オプションを与えて "
  2304. "aria2 を実行してください."
  2305. #: src/message.h:116
  2306. #, c-format
  2307. msgid "Allocating file %s, %s bytes"
  2308. msgstr "ファイル %s のファイル領域 (%s バイト) を確保しています."
  2309. #: src/message.h:117
  2310. msgid "File not found"
  2311. msgstr "ファイルが見つかりません."
  2312. #: src/message.h:118
  2313. msgid "Not a directory"
  2314. msgstr "%s はディレクトリではありません."
  2315. #: src/message.h:119
  2316. #, c-format
  2317. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  2318. msgstr "チェックサムが不足しています. checksumLength=%d, numChecksum=%d"
  2319. #: src/message.h:120
  2320. #, c-format
  2321. msgid "Writing file %s"
  2322. msgstr "ファイル %s に書き込んでいます."
  2323. #: src/message.h:121
  2324. msgid "No peer list received."
  2325. msgstr "ピアのリストは空でした."
  2326. #: src/message.h:122
  2327. #, c-format
  2328. msgid "Adding peer %s:%d"
  2329. msgstr "ピア %s:%d を追加しています."
  2330. #: src/message.h:123
  2331. #, c-format
  2332. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  2333. msgstr "使用中ピースを削除しています. index=%d, fillRate(%%)=%d<=%d"
  2334. #: src/message.h:124
  2335. msgid "Download of selected files was complete."
  2336. msgstr "ご指定のファイルのダウンロードが完了."
  2337. #: src/message.h:125
  2338. msgid "The download was complete."
  2339. msgstr "ダウンロードが完了."
  2340. #: src/message.h:126
  2341. #, c-format
  2342. msgid "Removed %lu have entries."
  2343. msgstr "%lu の項目が削除されました."
  2344. #: src/message.h:127
  2345. #, c-format
  2346. msgid "Validating file %s"
  2347. msgstr "ファイル %s を検証しています."
  2348. #: src/message.h:128
  2349. #, c-format
  2350. msgid "%ld seconds to allocate %s byte(s)"
  2351. msgstr ""
  2352. #: src/message.h:131
  2353. #, c-format
  2354. msgid "Metalink: Queueing %s for download."
  2355. msgstr "Metalink: %s をキューイングしています."
  2356. #: src/message.h:132
  2357. #, c-format
  2358. msgid "Download complete: %s"
  2359. msgstr "ダウンロード完了: %s"
  2360. #: src/message.h:133
  2361. msgid "Seeding is over."
  2362. msgstr "シードの期間が終了しました."
  2363. #: src/message.h:134
  2364. msgid "No chunk to verify."
  2365. msgstr "検証するチャンクがありません."
  2366. #: src/message.h:135
  2367. #, c-format
  2368. msgid "Good chunk checksum. hash=%s"
  2369. msgstr "正しいチェックサムです. ハッシュ値=%s"
  2370. #: src/message.h:136
  2371. #, c-format
  2372. msgid "Failed to load cookies from %s"
  2373. msgstr "クッキーを %s からロードできませんでした."
  2374. #: src/message.h:137
  2375. #, c-format
  2376. msgid ""
  2377. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  2378. "support disabled."
  2379. msgstr ""
  2380. ".netrc ファイル %s のパーミッションが不正です. パーミッションが 600 以外だ"
  2381. "と .netrc サポートは無効となります."
  2382. #: src/message.h:138
  2383. msgid "Logging started."
  2384. msgstr "ロギングをスタートしました."
  2385. #: src/message.h:139
  2386. msgid "Specify at least one URL."
  2387. msgstr "一個以上の URL を指定してください."
  2388. #: src/message.h:140
  2389. msgid "daemon failed."
  2390. msgstr "デーモン起動に失敗"
  2391. #: src/message.h:141
  2392. #, c-format
  2393. msgid "Verification finished successfully. file=%s"
  2394. msgstr "検査が正常に終了. ファイル=%s"
  2395. #: src/message.h:142
  2396. #, c-format
  2397. msgid "Checksum error detected. file=%s"
  2398. msgstr "チェックサムのエラーを検出. ファイル=%s"
  2399. #: src/message.h:143
  2400. #, c-format
  2401. msgid "Incomplete range specified. %s"
  2402. msgstr "範囲指定が不十分です. %s"
  2403. #: src/message.h:144
  2404. #, c-format
  2405. msgid "Failed to convert string into value: %s"
  2406. msgstr "文字列を数値に変換できませんでした: %s"
  2407. #: src/message.h:145
  2408. msgid "Resource not found"
  2409. msgstr "リソースが見つかりませんでした"
  2410. #: src/message.h:146
  2411. #, c-format
  2412. msgid "File already exists. Renamed to %s."
  2413. msgstr "ファイルが既に存在します. %s にリネームしました."
  2414. #: src/message.h:147
  2415. msgid "Cannot parse metalink XML file. XML may be malformed."
  2416. msgstr "metalink XML ファイルが壊れているので読めません."
  2417. #: src/message.h:148
  2418. #, c-format
  2419. msgid "Too small payload size for %s, size=%lu."
  2420. msgstr "%s のペイロードサイズが小さすぎます. size=%lu"
  2421. #: src/message.h:149
  2422. #, c-format
  2423. msgid ""
  2424. "Removed the defunct control file %s because the download file %s doesn't "
  2425. "exist."
  2426. msgstr ""
  2427. "無効なコントロールファイル %s を削除しました. 理由: 対象のダウンロードファイ"
  2428. "ル %s が存在しないため."
  2429. #: src/message.h:150
  2430. #, c-format
  2431. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  2432. msgstr "シェアレシオは %.1f でした. uploaded/downloaded=%sB/%sB"
  2433. #: src/message.h:151
  2434. #, c-format
  2435. msgid "Missing %s in torrent metainfo."
  2436. msgstr "%s が torrent ファイルに存在しません."
  2437. #: src/message.h:152
  2438. msgid "Tracker returned null data."
  2439. msgstr "トラッカーが null データを返しました."
  2440. #: src/message.h:153
  2441. msgid "Windows socket library initialization failed"
  2442. msgstr "Windows ソケットライブラリの初期化に失敗しました."
  2443. #: src/message.h:154
  2444. #, c-format
  2445. msgid "%ld second(s) has passed. Stopping application."
  2446. msgstr ""
  2447. #: src/message.h:155
  2448. #, c-format
  2449. msgid ""
  2450. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  2451. msgstr "署名を %s に保存しました. aria2 は署名を検証しません."
  2452. #: src/message.h:157
  2453. #, c-format
  2454. msgid "Saving signature as %s failed. Maybe file already exists."
  2455. msgstr ""
  2456. "署名を %s に保存しようとしましたが失敗しました. おそらくすでに同名のファイル"
  2457. "が存在しています."
  2458. #: src/message.h:160
  2459. #, c-format
  2460. msgid "Failed to open ServerStat file %s for read."
  2461. msgstr "ServerStat ファイル %s を読み取りモードでオープンできませんでした."
  2462. #: src/message.h:161
  2463. #, c-format
  2464. msgid "ServerStat file %s loaded successfully."
  2465. msgstr "ServerStat ファイル %s を読み込みました."
  2466. #: src/message.h:162
  2467. #, c-format
  2468. msgid "Failed to read ServerStat from %s."
  2469. msgstr "ServerStat ファイル %s の読み込みに失敗しました."
  2470. #: src/message.h:165
  2471. #, c-format
  2472. msgid "Failed to open ServerStat file %s for write."
  2473. msgstr "ServerStat ファイル %s を書き込みモードでオープンできませんでした."
  2474. #: src/message.h:166
  2475. #, c-format
  2476. msgid "ServerStat file %s saved successfully."
  2477. msgstr "ServerStat ファイル %s を保存しました."
  2478. #: src/message.h:167
  2479. #, c-format
  2480. msgid "Failed to write ServerStat to %s."
  2481. msgstr "ServerStat ファイル %s の書き込みに失敗しました."
  2482. #: src/message.h:170
  2483. #, c-format
  2484. msgid "Failed to establish connection, cause: %s"
  2485. msgstr "接続を確立できませんでした. 原因 : %s"
  2486. #: src/message.h:171
  2487. #, c-format
  2488. msgid "Network problem has occurred. cause:%s"
  2489. msgstr "ネットワークで問題が起こりました. 原因 : %s"
  2490. #: src/message.h:173
  2491. #, c-format
  2492. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  2493. msgstr "信頼する CA 証明書を %s から読み込めませんでした. 原因: %s"
  2494. #: src/message.h:175
  2495. #, c-format
  2496. msgid ""
  2497. "Certificate verification failed. Cause: %s See --ca-certificate and --check-"
  2498. "certificate option."
  2499. msgstr ""
  2500. #: src/message.h:177
  2501. msgid "No certificate found."
  2502. msgstr "証明書が見つかりませんでした."
  2503. #: src/message.h:178
  2504. msgid "Hostname not match."
  2505. msgstr "ホスト名が合いません."
  2506. #: src/message.h:179
  2507. msgid "No files to download."
  2508. msgstr "ダウンロードすべきファイルはありません."
  2509. #: src/message.h:181
  2510. msgid ""
  2511. "You may encounter the certificate verification error with HTTPS server. See "
  2512. "--ca-certificate and --check-certificate option."
  2513. msgstr ""
  2514. "HTTPS サーバーの証明証検証エラーが発生するかもしれません. 詳しくは --ca-"
  2515. "certificate と --check-certificate オプションを参照してください."
  2516. #: src/message.h:183
  2517. #, c-format
  2518. msgid "Printing the contents of file '%s'..."
  2519. msgstr "ファイル '%s' の内容を表示します..."
  2520. #: src/message.h:184
  2521. msgid "This file is neither Torrent nor Metalink file. Skipping."
  2522. msgstr ""
  2523. "このファイルは, Torrent でも Metalink ファイルでもないのでスキップします."
  2524. #: src/message.h:189
  2525. #, c-format
  2526. msgid "Is '%s' a file?"
  2527. msgstr "'%s' はファイルですか?"
  2528. #: src/message.h:190
  2529. #, c-format
  2530. msgid "Failed to find given interface %s, cause: %s"
  2531. msgstr ""
  2532. #: src/message.h:192
  2533. #, c-format
  2534. msgid "Saved metadata as %s."
  2535. msgstr ""
  2536. #: src/message.h:193
  2537. #, c-format
  2538. msgid "Saving metadata as %s failed. Maybe file already exists."
  2539. msgstr ""
  2540. #: src/message.h:195
  2541. #, c-format
  2542. msgid "Detected directory traversal directive in %s"
  2543. msgstr ""
  2544. #: src/message.h:199
  2545. msgid "Timeout."
  2546. msgstr "タイムアウトしました."
  2547. #: src/message.h:200
  2548. msgid "Invalid chunk size."
  2549. msgstr "chunk サイズが不正です."
  2550. #: src/message.h:201
  2551. #, c-format
  2552. msgid "Too large chunk. size=%d"
  2553. msgstr "chunk サイズ (%d) が大きすぎます."
  2554. #: src/message.h:202
  2555. msgid "Invalid header."
  2556. msgstr "ヘッダーが不正です."
  2557. #: src/message.h:203
  2558. msgid "Invalid response."
  2559. msgstr "サーバーから不正なレスポンスを受け取りました."
  2560. #: src/message.h:204
  2561. msgid "No header found."
  2562. msgstr "ヘッダーが見つかりません."
  2563. #: src/message.h:205
  2564. msgid "No status header."
  2565. msgstr "status ヘッダーが見つかりません."
  2566. #: src/message.h:206
  2567. msgid "Proxy connection failed."
  2568. msgstr "Proxy 接続に失敗しました."
  2569. #: src/message.h:207
  2570. msgid "Connection failed."
  2571. msgstr "接続に失敗しました."
  2572. #: src/message.h:208
  2573. #, c-format
  2574. msgid ""
  2575. "The requested filename and the previously registered one are not same. "
  2576. "Expected:%s Actual:%s"
  2577. msgstr ""
  2578. "リクエストしたファイル名と登録済みファイル名が異なります. 期待するファイル"
  2579. "名: %s 実際のファイル名: %s"
  2580. #: src/message.h:209
  2581. #, c-format
  2582. msgid "The response status is not successful. status=%d"
  2583. msgstr "レスポンスのステータス (%d) が異常です."
  2584. #: src/message.h:210
  2585. #, c-format
  2586. msgid "Too large file size. size=%s"
  2587. msgstr "ファイルサイズ (%s) が大きすぎます."
  2588. #: src/message.h:211
  2589. #, c-format
  2590. msgid "Transfer encoding %s is not supported."
  2591. msgstr "トランスファー・エンコーディング %s はサポートされていません."
  2592. #: src/message.h:212
  2593. #, c-format
  2594. msgid "SSL initialization failed: %s"
  2595. msgstr "SSL 初期化に失敗しました. 原因:%s"
  2596. #: src/message.h:213
  2597. msgid "SSL I/O error"
  2598. msgstr "SSL 入出力エラー"
  2599. #: src/message.h:214
  2600. msgid "SSL protocol error"
  2601. msgstr "SSL プロトコルエラー"
  2602. #: src/message.h:215
  2603. #, c-format
  2604. msgid "SSL unknown error %d"
  2605. msgstr "SSL 未定義のエラー %d"
  2606. #: src/message.h:216
  2607. #, c-format
  2608. msgid "SSL initialization failed: OpenSSL connect error %d"
  2609. msgstr "SSL 初期化に失敗しました. 原因: OpenSSL connect error %d"
  2610. #: src/message.h:217
  2611. #, c-format
  2612. msgid "Size mismatch Expected:%s Actual:%s"
  2613. msgstr "サイズが合いません. 期待するサイズ:%s 実際のサイズ:%s"
  2614. #: src/message.h:218
  2615. msgid "Authorization failed."
  2616. msgstr "認証に失敗しました."
  2617. #: src/message.h:219
  2618. msgid "Got EOF from the server."
  2619. msgstr "サーバーから EOF を受けとりました."
  2620. #: src/message.h:220
  2621. msgid "Got EOF from peer."
  2622. msgstr "ピアから EOF を受け取りました."
  2623. #: src/message.h:221
  2624. msgid "Malformed meta info."
  2625. msgstr "メタ情報ファイルの記述が不正です."
  2626. #: src/message.h:223
  2627. #, c-format
  2628. msgid "Failed to open the file %s, cause: %s"
  2629. msgstr "ファイル %s をオープンできませんでした. 原因: %s"
  2630. #: src/message.h:224
  2631. #, c-format
  2632. msgid "Failed to write into the file %s, cause: %s"
  2633. msgstr "ファイル %s への書き込みに失敗しました. 原因: %s"
  2634. #: src/message.h:225
  2635. #, c-format
  2636. msgid "Failed to read from the file %s, cause: %s"
  2637. msgstr "ファイル %s からの読みとりに失敗しました. 原因: %s"
  2638. #: src/message.h:226
  2639. msgid "Failed to read data from disk."
  2640. msgstr "データの読み込みに失敗しました."
  2641. #: src/message.h:227
  2642. #, c-format
  2643. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  2644. msgstr ""
  2645. "ファイル %s の (またはその一部の) SHA1 ダイジェストの計算に失敗しました. 原"
  2646. "因: %s"
  2647. #: src/message.h:228
  2648. #, c-format
  2649. msgid "Failed to seek the file %s, cause: %s"
  2650. msgstr "ファイル %s のシークに失敗しました. 原因: %s"
  2651. #: src/message.h:229
  2652. #, c-format
  2653. msgid "The offset is out of range, offset=%s"
  2654. msgstr "オフセット (%s) が範囲外です."
  2655. #: src/message.h:230
  2656. #, c-format
  2657. msgid "%s is not a directory."
  2658. msgstr "%s はディレクトリではありません."
  2659. #: src/message.h:231
  2660. #, c-format
  2661. msgid "Failed to make the directory %s, cause: %s"
  2662. msgstr "ディレクトリ %s を作成できませんでした. 原因: %s"
  2663. #: src/message.h:235
  2664. #, c-format
  2665. msgid "Failed to open a socket, cause: %s"
  2666. msgstr "ソケットをオープンできませんでした. 原因: %s"
  2667. #: src/message.h:236
  2668. #, c-format
  2669. msgid "Failed to set a socket option, cause: %s"
  2670. msgstr "ソケットのオプションの設定に失敗しました. 原因: %s"
  2671. #: src/message.h:237
  2672. #, c-format
  2673. msgid "Failed to set a socket as blocking, cause: %s"
  2674. msgstr "ソケットをブロッキングモードにすることに失敗しました. 原因: %s"
  2675. #: src/message.h:238
  2676. #, c-format
  2677. msgid "Failed to set a socket as non-blocking, cause: %s"
  2678. msgstr "ソケットをノンブロッキングモードにすることに失敗しました. 原因: %s"
  2679. #: src/message.h:239
  2680. #, c-format
  2681. msgid "Failed to bind a socket, cause: %s"
  2682. msgstr "ソケットの bind に失敗しました. 原因: %s"
  2683. #: src/message.h:240
  2684. #, c-format
  2685. msgid "Failed to listen to a socket, cause: %s"
  2686. msgstr "ソケットの listen に失敗しました. 原因: %s"
  2687. #: src/message.h:241
  2688. #, c-format
  2689. msgid "Failed to accept a peer connection, cause: %s"
  2690. msgstr "ピアからの接続の受付に失敗しました. 原因: %s"
  2691. #: src/message.h:242
  2692. #, c-format
  2693. msgid "Failed to get the name of socket, cause: %s"
  2694. msgstr "ソケットの名前の取得に失敗しました. 原因: %s"
  2695. #: src/message.h:243
  2696. #, c-format
  2697. msgid "Failed to get the name of connected peer, cause: %s"
  2698. msgstr "接続ピアの名前の取得に失敗しました. 原因: %s"
  2699. #: src/message.h:244
  2700. #, c-format
  2701. msgid "Failed to resolve the hostname %s, cause: %s"
  2702. msgstr "ホスト名 %s のアドレス解決に失敗しました. 原因: %s"
  2703. #: src/message.h:245
  2704. #, c-format
  2705. msgid "Failed to connect to the host %s, cause: %s"
  2706. msgstr "ホスト %s への接続に失敗しました. 原因: %s"
  2707. #: src/message.h:246
  2708. #, c-format
  2709. msgid "Failed to check whether the socket is writable, cause: %s"
  2710. msgstr ""
  2711. "ソケットへデータを書き込み可能かどうかのチェックに失敗しました. 原因: %s"
  2712. #: src/message.h:247
  2713. #, c-format
  2714. msgid "Failed to check whether the socket is readable, cause: %s"
  2715. msgstr ""
  2716. "ソケットからデータを読みとり可能かどうかのチェックに失敗しました. 原因: %s"
  2717. #: src/message.h:248
  2718. #, c-format
  2719. msgid "Failed to send data, cause: %s"
  2720. msgstr "データの送信に失敗しました. 原因: %s"
  2721. #: src/message.h:249
  2722. #, c-format
  2723. msgid "Failed to receive data, cause: %s"
  2724. msgstr "データの受信に失敗しました. 原因: %s"
  2725. #: src/message.h:250
  2726. #, c-format
  2727. msgid "Failed to peek data, cause: %s"
  2728. msgstr "データの peek に失敗しました. 原因: %s"
  2729. #: src/message.h:251
  2730. #, c-format
  2731. msgid "Unknown socket error %d (0x%x)"
  2732. msgstr "未定義のソケットエラー %d (0x%x)"
  2733. #: src/message.h:252
  2734. #, c-format
  2735. msgid "File %s exists, but %s does not exist."
  2736. msgstr ""
  2737. "ファイル %s が存在しますが, それに対応するセグメントファイル %s が存在しませ"
  2738. "ん."
  2739. #: src/message.h:254
  2740. #, c-format
  2741. msgid "Invalid payload size for %s, size=%lu. It should be %lu."
  2742. msgstr ""
  2743. #: src/message.h:255
  2744. #, c-format
  2745. msgid "Invalid ID=%d for %s. It should be %d."
  2746. msgstr "ID %d は %s に対して使用できません. 期待する ID:%d"
  2747. #: src/message.h:256
  2748. #, c-format
  2749. msgid ""
  2750. "Chunk checksum validation failed. checksumIndex=%lu, offset=%s, expectedHash="
  2751. "%s, actualHash=%s"
  2752. msgstr ""
  2753. #: src/message.h:257
  2754. msgid "Download aborted."
  2755. msgstr "ダウンロードを中止します."
  2756. #: src/message.h:258
  2757. #, c-format
  2758. msgid "File %s is being downloaded by other command."
  2759. msgstr "ファイル %s は他のコマンドがダウンロード中です."
  2760. #: src/message.h:259
  2761. msgid "Insufficient checksums."
  2762. msgstr "チェックサムが足りません."
  2763. #: src/message.h:260
  2764. #, c-format
  2765. msgid "Tracker returned failure reason: %s"
  2766. msgstr "トラッカーがエラーを返しました: %s"
  2767. #: src/message.h:261
  2768. msgid "Flooding detected."
  2769. msgstr "フラッディング (いわゆる荒らし行為) を検出しました."
  2770. #: src/message.h:263
  2771. #, c-format
  2772. msgid ""
  2773. "Drop connection because no request/piece messages were exchanged in a "
  2774. "certain period(%ld seconds)."
  2775. msgstr ""
  2776. #: src/message.h:265
  2777. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  2778. msgstr ""
  2779. "torrent ファイル中の infoHash と .aria2 ファイル中のそれが一致しません."
  2780. #: src/message.h:266
  2781. #, c-format
  2782. msgid "No such file entry %s"
  2783. msgstr "ファイルエントリー %s は存在しません."
  2784. #: src/message.h:267
  2785. #, c-format
  2786. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  2787. msgstr "ダウンロード速度が遅すぎます: %d <= %d(B/s), host:%s"
  2788. #: src/message.h:268
  2789. msgid "No HttpRequestEntry found."
  2790. msgstr "HttpRequestEntry が見つかりません."
  2791. #: src/message.h:269
  2792. #, c-format
  2793. msgid "Got %d status, but no location header provided."
  2794. msgstr "ステータス %d を受けとりましたが, location ヘッダーが見つかりません."
  2795. #: src/message.h:270
  2796. #, c-format
  2797. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  2798. msgstr "range ヘッダーの値が不正です. 要求: %s-%s/%s, 応答: %s-%s/%s"
  2799. #: src/message.h:271
  2800. msgid "No file matched with your preference."
  2801. msgstr "検索条件に合致するファイルが見つかりません."
  2802. #: src/message.h:272
  2803. msgid "Exception caught"
  2804. msgstr "例外発生"
  2805. #: src/message.h:273
  2806. #, c-format
  2807. msgid "Max payload length exceeded or invalid. length = %u"
  2808. msgstr "ペイロード長が許容最大値を越えているか, 不正です. ペイロード長 = %u"
  2809. #: src/message.h:274
  2810. #, c-format
  2811. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  2812. msgstr ""
  2813. "ファイル長が不正です. %s のダウンロードを継続できません: local %s, remote %s"
  2814. #: src/BtSetup.cc:212
  2815. msgid "Errors occurred while binding port.\n"
  2816. msgstr "ポートをバインド中にエラーが発生しました.\n"
  2817. #~ msgid "CUID#%d - The download for one segment completed successfully."
  2818. #~ msgstr "CUID#%d - 1 セグメントのダウンロードが完了."
  2819. #~ msgid "CUID#%d - No segment available."
  2820. #~ msgstr "CUID#%d - 利用可能なセグメントはありません."
  2821. #~ msgid "CUID#%d - Connecting to %s:%d"
  2822. #~ msgstr "CUID#%d - %s:%d に接続しています."
  2823. #~ msgid ""
  2824. #~ "CUID#%d - The segment changed. We send the request again with new Range "
  2825. #~ "header."
  2826. #~ msgstr ""
  2827. #~ "CUID#%d - セグメントが変更されています. 新たな Range ヘッダーで再リクエス"
  2828. #~ "トを発行します."
  2829. #~ msgid "CUID#%d - Redirecting to %s"
  2830. #~ msgstr "CUID#%d - %s にリダイレクトします."
  2831. #~ msgid ""
  2832. #~ "CUID#%d - Requesting:\n"
  2833. #~ "%s"
  2834. #~ msgstr ""
  2835. #~ "CUID#%d - リクエスト:\n"
  2836. #~ "%s"
  2837. #~ msgid ""
  2838. #~ "CUID#%d - Response received:\n"
  2839. #~ "%s"
  2840. #~ msgstr ""
  2841. #~ "CUID#%d - サーバーからのレスポンス:\n"
  2842. #~ "%s"
  2843. #~ msgid "CUID#%d - Download aborted. URI=%s"
  2844. #~ msgstr "CUID#%d - ダウンロードを中止します. URI=%s"
  2845. #~ msgid "CUID#%d - Restarting the download. URI=%s"
  2846. #~ msgstr "CUID#%d - ダウンロードシーケンスを再開します. URI=%s"
  2847. #~ msgid "CUID#%d - Download aborted."
  2848. #~ msgstr "CUID#%d - ダウンロードを中止します."
  2849. #~ msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  2850. #~ msgstr ""
  2851. #~ "CUID#%d - %d 回ダウンロードを行いましたがすべて失敗しました. ダウンロード"
  2852. #~ "を中止します."
  2853. #~ msgid "CUID#%d - Unregistering cuid from segmentManager."
  2854. #~ msgstr "CUID#%d - cuid をセグメントマネジャーから削除します."
  2855. #~ msgid "CUID#%d - we got new piece. index=%d"
  2856. #~ msgstr "CUID#%d - 新しいピースを入手しました. index=%d"
  2857. #~ msgid "CUID#%d - we got wrong piece. index=%d"
  2858. #~ msgstr "CUID#%d - ピースを入手しましたが, データに誤りがあります. index=%d"
  2859. #~ msgid "CUID#%d - Download not complete: %s"
  2860. #~ msgstr "CUID#%d - ダウンロードは完了していません: %s"
  2861. #~ msgid "#%d - Download has already completed: %s"
  2862. #~ msgstr "#%d - ダウンロード済みです: %s"
  2863. #~ msgid "CUID#%d - Good checksum: %s"
  2864. #~ msgstr "CUID#%d - チェックサムが合致しました: %s"
  2865. #~ msgid "CUID#%d - Bad checksum: %s"
  2866. #~ msgstr "CUID#%d - チェックサムが違います: %s"
  2867. #~ msgid "CUID#%d - Resolving hostname %s"
  2868. #~ msgstr "CUID#%d - ホスト名 %s を解決しています."
  2869. #~ msgid "CUID#%d - Name resolution complete: %s -> %s"
  2870. #~ msgstr "CUID#%d - 名前解決が完了しました: %s -> %s"
  2871. #~ msgid "CUID#%d - Name resolution for %s failed:%s"
  2872. #~ msgstr "CUID#%d - ホスト名 %s の名前解決に失敗しました. 理由:%s"
  2873. #~ msgid "CUID#%d - DNS cache hit: %s -> %s"
  2874. #~ msgstr "CUID#%d - DNS キャッシュヒット: %s -> %s"
  2875. #~ msgid "CUID#%d - Abort requested."
  2876. #~ msgstr "CUID#%d - リクエストを中止します."
  2877. #~ msgid "CUID#%d - Connecting to the peer %s"
  2878. #~ msgstr "CUID#%d - %s に接続しています."
  2879. #~ msgid ""
  2880. #~ "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  2881. #~ "blockIndex=%d"
  2882. #~ msgstr ""
  2883. #~ "CUID#%d - ピースを受けとりました. index=%d, begin=%d, length=%d, offset="
  2884. #~ "%llu, blockIndex=%d"
  2885. #~ msgid "CUID#%d - Piece bitfield %s"
  2886. #~ msgstr "CUID#%d - ピースのビットフィールド:%s"
  2887. #~ msgid ""
  2888. #~ "CUID#%d - Reject piece message in queue because the peer has been choked. "
  2889. #~ "index=%d, begin=%d, length=%d"
  2890. #~ msgstr ""
  2891. #~ "CUID#%d - ピアをチョークしたため, キュー中の piece メッセージを却下しま"
  2892. #~ "す. index=%d, begin=%d, length=%d"
  2893. #~ msgid ""
  2894. #~ "CUID#%d - Reject piece message in queue because cancel message received. "
  2895. #~ "index=%d, begin=%d, length=%d"
  2896. #~ msgstr ""
  2897. #~ "CUID#%d - cancel メッセージが届いたため, キュー中の piece メッセージを却下"
  2898. #~ "します. index=%d, begin=%d, length=%d"
  2899. #~ msgid "CUID#%d - Exception caught while validating file integrity."
  2900. #~ msgstr "CUID#%d - ファイルを検証している最中に例外が発生しました."
  2901. #~ msgid "CUID#%d - Interested in the peer"
  2902. #~ msgstr "CUID#%d - このピアは我々がもっていないピースをもっています."
  2903. #~ msgid "CUID#%d - Not interested in the peer"
  2904. #~ msgstr "CUID#%d - 現時点ではこのピアには興味がありません."
  2905. #~ msgid "CUID#%d - Deleting request slot index=%d, blockIndex=%d"
  2906. #~ msgstr "CUID#%d - request slot を削除します. index=%d, blockIndex=%d"
  2907. #~ msgid ""
  2908. #~ "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  2909. #~ "got choked."
  2910. #~ msgstr ""
  2911. #~ "CUID#%d - 我々がチョークされたため, request slot を削除します. index=%d, "
  2912. #~ "blockIndex=%d"
  2913. #~ msgid "CUID#%d - Deleting request slot blockIndex=%d because of time out"
  2914. #~ msgstr ""
  2915. #~ "CUID#%d - タイムアウトのため, request slot を削除します. blockIndex=%d"
  2916. #~ msgid ""
  2917. #~ "CUID#%d - Deleting request slot blockIndex=%d because the block has been "
  2918. #~ "acquired."
  2919. #~ msgstr ""
  2920. #~ "CUID#%d - 取得済みブロックのため, request slot を削除します. blockIndex=%d"
  2921. #~ msgid "CUID#%d - Fast extension enabled."
  2922. #~ msgstr "CUID#%d - Fast extension が有効になりました."
  2923. #~ msgid "CUID#%d - Exception caught while allocating file space."
  2924. #~ msgstr "CUID#%d - ファイル領域を確保中に例外が発生しました."
  2925. #~ msgid "CUID#%d - Content-Disposition detected. Use %s as filename"
  2926. #~ msgstr ""
  2927. #~ "CUID#%d - Content-Disposition ヘッダーが見つかりました. %s をファイル名と"
  2928. #~ "して使用します."
  2929. #~ msgid "CUID#%d - Peer %s:%d banned."
  2930. #~ msgstr "CUID#%d - 以後しばらくの間 ピア %s:%d を無視します."
  2931. #~ msgid "CUID#%d - Using port %d for accepting new connections"
  2932. #~ msgstr "CUID#%d - ポート番号 %d を使って, コネクションを待ちます."
  2933. #~ msgid "CUID#%d - An error occurred while binding port=%d"
  2934. #~ msgstr "CUID#%d - ポートをバインド中にエラーが発生しました. ポート番号=%d"
  2935. #~ msgid "CUID#%d - Incoming connection, adding new command CUID#%d"
  2936. #~ msgstr ""
  2937. #~ "CUID#%d - 新しいピアからの接続を確認, CUID#%d で新規コマンドを追加しまし"
  2938. #~ "た."
  2939. #~ msgid "CUID#%d - Error in accepting connection"
  2940. #~ msgstr "CUID#%d - 接続を受け入れる際にエラーが発生しました."
  2941. #~ msgid "CUID#%d - Error occurred while processing tracker response."
  2942. #~ msgstr "CUID#%d - トラッカーからの応答を解析中にエラーが発生しました."
  2943. #~ msgid "CUID#%d - Cannot create tracker request."
  2944. #~ msgstr "CUID#%d - トラッカーへの要求の作成に失敗しました."
  2945. #~ msgid "CUID#%d - Creating new tracker request command #%d"
  2946. #~ msgstr ""
  2947. #~ "CUID#%d - トラッカーへの要求を作成し, CUID#%d のコマンドにアサインしまし"
  2948. #~ "た."
  2949. #~ msgid "Removed %d have entries."
  2950. #~ msgstr "%d 個の have エントリーを削除しました."
  2951. #~ msgid "%d seconds to allocate %s byte(s)"
  2952. #~ msgstr "%d 秒が %s バイトを確保するのに必要でした."
  2953. #~ msgid "Dispatching FileAllocationCommand for CUID#%d."
  2954. #~ msgstr "FileAllocationCommand を CUID#%d で発行しました."
  2955. #~ msgid "CUID#%d cancels segment index=%d. CUID#%d handles it instead."
  2956. #~ msgstr ""
  2957. #~ "CUID#%d は index=%d のセグメントのダウンロードをキャンセルしました. 代わり"
  2958. #~ "に CUID#%d がそれをダウンロードします."
  2959. #~ msgid "Invalid payload size for %s, size=%d. It should be %d."
  2960. #~ msgstr ""
  2961. #~ "%s に対するペイロードサイズが不正です. 実際のサイズ:%d 期待するサイズ:%d"
  2962. #~ msgid ""
  2963. #~ "Chunk checksum validation failed. checksumIndex=%d, offset=%s, "
  2964. #~ "expectedHash=%s, actualHash=%s"
  2965. #~ msgstr ""
  2966. #~ "部分チェックサムの検証が失敗しました. チェックサムインデックス=%d, オフ"
  2967. #~ "セット=%s, 期待するハッシュ値:%s, 実際のハッシュ値:%s"
  2968. #~ msgid ""
  2969. #~ "Drop connection because no request/piece messages were exchanged in a "
  2970. #~ "certain period(%d seconds)."
  2971. #~ msgstr ""
  2972. #~ "一定期間 (%d 秒) request/piece メッセージの交換がなされていないので, 接続"
  2973. #~ "を閉じます."
  2974. #~ msgid " -o, --out=FILE The file name of the downloaded file."
  2975. #~ msgstr ""
  2976. #~ " -o, --out=FILE ダウンロードしたファイルの保存先ファイル名."
  2977. #~ msgid " -D, --daemon Run as daemon."
  2978. #~ msgstr " -D, --daemon デーモンとして起動します."
  2979. #~ msgid ""
  2980. #~ " -c, --continue Continue downloading a partially "
  2981. #~ "downloaded\n"
  2982. #~ " file. Use this option to resume a download\n"
  2983. #~ " started by a web browser or another "
  2984. #~ "program\n"
  2985. #~ " which downloads files sequentially from "
  2986. #~ "the\n"
  2987. #~ " beginning. Currently this option is only\n"
  2988. #~ " applicable to http(s)/ftp downloads."
  2989. #~ msgstr ""
  2990. #~ " -c, --continue ウェブブラウザや他のプログラムがシーケンシャ"
  2991. #~ "ルに\n"
  2992. #~ " ダウンロードしていたが, 途中でダウンロードを"
  2993. #~ "中止\n"
  2994. #~ " したファイルのダウンロードを継続する場合に使"
  2995. #~ "用し\n"
  2996. #~ " ます. http(s)/ftp のダウンロードに対してのみ"
  2997. #~ "使用\n"
  2998. #~ " できます."
  2999. #~ msgid " -n, --no-netrc Disables netrc support."
  3000. #~ msgstr " -n, --no-netrc netrc サポートを止めます."
  3001. #~ msgid ""
  3002. #~ " -M, --metalink-file=METALINK_FILE The file path to the .metalink file."
  3003. #~ msgstr " -M, --metalink-file=METALINK_FILE .metalink ファイルのパスを指定."
  3004. #~ msgid "must be either 'true' or 'false'."
  3005. #~ msgstr "は, 'true' または 'false' のどちらかで指定してください."
  3006. #~ msgid "must be smaller than or equal to %s."
  3007. #~ msgstr "は, %s 以下で指定してください."
  3008. #~ msgid "must be between %s and %s."
  3009. #~ msgstr "は, %s と %s の間で指定してください."
  3010. #~ msgid "must be greater than or equal to %s."
  3011. #~ msgstr "は, %s 以上で指定してください."
  3012. #~ msgid "must be a number."
  3013. #~ msgstr "は, 数字でなければなりません."
  3014. #~ msgid "must be smaller than or equal to %.1f."
  3015. #~ msgstr "は, %.1f 以下で指定してください."
  3016. #~ msgid "must be between %.1f and %.1f."
  3017. #~ msgstr "は, %1.f と %.1f の間で指定してください."
  3018. #~ msgid "must be greater than or equal to %.1f."
  3019. #~ msgstr "は, %.1f 以上で指定してください."
  3020. #~ msgid "must be one of the following:"
  3021. #~ msgstr "は, 以下のいずれかを指定してください:"
  3022. #~ msgid "unrecognized proxy format"
  3023. #~ msgstr "サポートされていないプロキシーサーバーの指定形式です."
  3024. #~ msgid "Files:"
  3025. #~ msgstr "ファイル:"
  3026. #~ msgid ""
  3027. #~ " -S, --show-files Print file listing of .torrent or .metalink "
  3028. #~ "file\n"
  3029. #~ " and exit. More detailed information will be "
  3030. #~ "listed\n"
  3031. #~ " in case of torrent file."
  3032. #~ msgstr ""
  3033. #~ " -S, --show-files .torrent ファイルや .metalink ファイルに記述"
  3034. #~ "さ\n"
  3035. #~ " れているファイルを表示して終了します. ."
  3036. #~ "torrent\n"
  3037. #~ " ファイルの場合には, ファイルリストだけでなく"
  3038. #~ "さ\n"
  3039. #~ " らに詳しい内容も表示されます."
  3040. #~ msgid ""
  3041. #~ " You can specify multiple URLs. Unless you specify -Z option, all URLs "
  3042. #~ "must\n"
  3043. #~ " point to the same file or downloading will fail."
  3044. #~ msgstr ""
  3045. #~ " 複数の URL を指定できます. -Z オプションを指定しない限り, すべての\n"
  3046. #~ " URL が同じファイルをさしている必要があります. そうでない場合, ダウ\n"
  3047. #~ " ンロードは失敗します."
  3048. #~ msgid ""
  3049. #~ " You can specify both torrent file with -T option and URLs. By doing "
  3050. #~ "this,\n"
  3051. #~ " download a file from both torrent swarm and http/ftp server at the same "
  3052. #~ "time,\n"
  3053. #~ " while the data from http/ftp are uploaded to the torrent swarm. Note "
  3054. #~ "that\n"
  3055. #~ " only single file torrent can be integrated with http/ftp."
  3056. #~ msgstr ""
  3057. #~ " URL と -T で torrent ファイルとを同時に指定できます. これにより,\n"
  3058. #~ " torrent と http/ftp サーバー方からファイルをダウンロードします.\n"
  3059. #~ " http/ftp 経由でダウンロードしたデータも torrent のネットワークへ\n"
  3060. #~ " アップロードされます. http/ftp と共にダウンロードできるのは, シン\n"
  3061. #~ " グルファイル torrent だけです."
  3062. #~ msgid ""
  3063. #~ " --allow-piece-length-change=true|false If false is given, aria2 aborts "
  3064. #~ "download\n"
  3065. #~ " when a piece length is different from one "
  3066. #~ "in\n"
  3067. #~ " a control file. If true is given, you can "
  3068. #~ "proceed\n"
  3069. #~ " but some download progress will be lost."
  3070. #~ msgstr ""
  3071. #~ " --allow-piece-length-change=true|false ピース(セグメント)の長さ(ファイル"
  3072. #~ "分割\n"
  3073. #~ " の最小単位)がコントロールファイルに保存され"
  3074. #~ "た値\n"
  3075. #~ " から変更されていて, かつ, このオプションで"
  3076. #~ "false\n"
  3077. #~ " を指定した場合, aria2 はダウンロードを中止し"
  3078. #~ "ま\n"
  3079. #~ " す. true が指定された場合は, ダウンロードを"
  3080. #~ "強行\n"
  3081. #~ " しますが, ダウンロードデータの一部は失われる"
  3082. #~ "かも\n"
  3083. #~ " しれません."
  3084. #~ msgid "CUID#%d - The peer is DHT-enabled."
  3085. #~ msgstr "CUID#%d - このピアは DHT 機能も持っています."
  3086. #~ msgid "CUID#%d - Extended Messaging enabled."
  3087. #~ msgstr "CUID#%d - Extended Messaging が有効になりました."
  3088. #~ msgid "%d second(s) has passed. Stopping application."
  3089. #~ msgstr "%d 秒が経過したので, アプリケーションを停止します."
  3090. #~ msgid " --enable-dht[=true|false] Enable DHT functionality."
  3091. #~ msgstr " --enable-dht[=true|false] DHT を有効にします."
  3092. #~ msgid ""
  3093. #~ " --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"
  3094. #~ " network."
  3095. #~ msgstr ""
  3096. #~ " --dht-entry-point=HOST:PORT DHT ネットワークへのエントリーポイントとして"
  3097. #~ "使用\n"
  3098. #~ " するホストとポート番号を指定します."
  3099. #~ msgid "Too small payload size for %s, size=%d."
  3100. #~ msgstr "%s のペイロード長にしては短すぎます. ペイロード長=%d"
  3101. #~ msgid ""
  3102. #~ " --metalink-enable-unique-protocol=true|false If true is given and "
  3103. #~ "several\n"
  3104. #~ " protocols are available for a mirror in a "
  3105. #~ "metalink\n"
  3106. #~ " file, aria2 uses one of them.\n"
  3107. #~ " Use --metalink-preferred-protocol option "
  3108. #~ "to\n"
  3109. #~ " specify the preference of protocol."
  3110. #~ msgstr ""
  3111. #~ " --metalink-enable-unique-protocol=true|false true が指定された場合で同じ"
  3112. #~ "ホスト\n"
  3113. #~ " で複数のプロトコルのリソースが metalink ファ"
  3114. #~ "イル\n"
  3115. #~ " に記述されている場合, aria2 はいづれか一つだ"
  3116. #~ "けを\n"
  3117. #~ " 使うようになります. どのプロトコルを優先的に"
  3118. #~ "使用\n"
  3119. #~ " するかを指定するには--metalink-preferred-"
  3120. #~ "protocol\n"
  3121. #~ " オプションを使ってください."
  3122. #~ msgid ""
  3123. #~ " --bt-require-crypto=true|false If true is given, aria2 doesn't accept "
  3124. #~ "and\n"
  3125. #~ " establish connection with legacy "
  3126. #~ "BitTorrent\n"
  3127. #~ " handshake. Thus aria2 always uses "
  3128. #~ "Obfuscation\n"
  3129. #~ " handshake."
  3130. #~ msgstr ""
  3131. #~ " --bt-require-crypto=true|false true を指定した場合, aria2 は従来の "
  3132. #~ "BitTorrent\n"
  3133. #~ " ハンドシェイクを拒否し, またそれを使って外部"
  3134. #~ "へ接\n"
  3135. #~ " 続しません. つまり常に暗号化ハンドシェイクを"
  3136. #~ "使い\n"
  3137. #~ " ます."
  3138. #~ msgid " --no-conf Disable loading aria2.conf file."
  3139. #~ msgstr ""
  3140. #~ " --no-conf aria2.conf ファイルの読み込みを抑制します."
  3141. #~ msgid ""
  3142. #~ " Make sure that URL is quoted with single(') or double(\") quotation if "
  3143. #~ "it\n"
  3144. #~ " contains \"&\" or any characters that have special meaning in shell."
  3145. #~ msgstr ""
  3146. #~ " URL に \"&\" やシェルにおいて特別な意味を持つ文字が含まれる場合, URL を "
  3147. #~ "' または\n"
  3148. #~ " \" で囲って(クォートして)ください."
  3149. #~ msgid "Failed to open the segment file %s, cause: %s"
  3150. #~ msgstr "コントロールファイル %s をオープンできませんでした. 原因: %s"
  3151. #~ msgid "Failed to write into the segment file %s, cause: %s"
  3152. #~ msgstr "コントロールファイル %s への書き込みに失敗しました. 原因: %s"
  3153. #~ msgid "Failed to read from the segment file %s, cause: %s"
  3154. #~ msgstr "コントロールファイル %s からの読み込みに失敗しました. 原因: %s"
  3155. #~ msgid ""
  3156. #~ " --dht-listen-port=PORT... Set UDP listening port for DHT.\n"
  3157. #~ " Multiple ports can be specified by using "
  3158. #~ "',',\n"
  3159. #~ " for example: \"6881,6885\". You can also "
  3160. #~ "use '-'\n"
  3161. #~ " to specify a range: \"6881-6999\". ',' and "
  3162. #~ "'-' can\n"
  3163. #~ " be used together."
  3164. #~ msgstr ""
  3165. #~ " --dht-listen-port=PORT... DHT で使用する UDP ポートの範囲を指定しま"
  3166. #~ "す.\n"
  3167. #~ " 複数のポートを ',' で区切って指定できます:\n"
  3168. #~ " \"6881,6885\". また, '-' を使って範囲指定も"
  3169. #~ "できま\n"
  3170. #~ " す: \"6881-6999\". ',' と '-' は組み合わせて"
  3171. #~ "使う\n"
  3172. #~ " ことができます."
  3173. #~ msgid ""
  3174. #~ " You can also specify arbitrary number of torrent files and metalink "
  3175. #~ "files\n"
  3176. #~ " stored in a local drive. Please note that they are always treated as a\n"
  3177. #~ " separate download."
  3178. #~ msgstr ""
  3179. #~ " ローカルディスクに保存している torrent ファイルや metalink ファイルへのパ"
  3180. #~ "スを\n"
  3181. #~ " 好きなだけ指定することができます. これらはそれぞれ独立してダウンロードさ"
  3182. #~ "れま\n"
  3183. #~ " す."
  3184. #~ msgid "Usage: %s [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]..."
  3185. #~ msgstr "使い方: %s [オプション] [URL | TORRENT_FILE | METALINK_FILE]..."
  3186. #~ msgid "No help category or option name matching with '%s'."
  3187. #~ msgstr "'%s' のヘルプカテゴリや, それを含むオプションはありません."
  3188. #~ msgid ""
  3189. #~ " --retry-wait=SEC Set the seconds to wait to retry after an "
  3190. #~ "error\n"
  3191. #~ " has occured."
  3192. #~ msgstr ""
  3193. #~ " --retry-wait=SEC エラーによる再試行時の待ち時間を秒単位で指定"
  3194. #~ "しま\n"
  3195. #~ " す."
  3196. #~ msgid ""
  3197. #~ " --http-auth-scheme=SCHEME Set HTTP authentication scheme. Currently, "
  3198. #~ "basic\n"
  3199. #~ " is the only supported scheme."
  3200. #~ msgstr ""
  3201. #~ " --http-auth-scheme=SCHEME HTTP での認証方法を指定します. 現在サポート"
  3202. #~ "されて\n"
  3203. #~ " いるのは basic です."
  3204. #~ msgid ""
  3205. #~ " --allow-overwrite=true|false If false, aria2 doesn't download a file "
  3206. #~ "which\n"
  3207. #~ " already exists but the corresponding .aria2 "
  3208. #~ "file\n"
  3209. #~ " doesn't exist."
  3210. #~ msgstr ""
  3211. #~ " --allow-overwrite=true|false このオプションを false に設定すると, ローカ"
  3212. #~ "ル\n"
  3213. #~ " ディスク上にファイルが存在するが, それに対応"
  3214. #~ "する\n"
  3215. #~ " *.aria2 ファイルが存在しない場合, ダウンロー"
  3216. #~ "ドを\n"
  3217. #~ " 中止します."
  3218. #~ msgid ""
  3219. #~ " -h, --help[=CATEGORY] Print usage and exit.\n"
  3220. #~ " The help messages are classified in "
  3221. #~ "several\n"
  3222. #~ " categories. For example, type \"--help=http"
  3223. #~ "\" for\n"
  3224. #~ " detailed explanation for the options "
  3225. #~ "related to\n"
  3226. #~ " http. If no matching category is found, "
  3227. #~ "search\n"
  3228. #~ " option name using a given word in middle "
  3229. #~ "match\n"
  3230. #~ " and print the result."
  3231. #~ msgstr ""
  3232. #~ " -h, --help[=CATEGORY] ヘルプを表示して終了します.\n"
  3233. #~ " ヘルプはいくつかのカテゴリに分けられていま"
  3234. #~ "す.\n"
  3235. #~ " 例えば, \"--help=http\" と指定すると, http "
  3236. #~ "に関する\n"
  3237. #~ " 詳細なオプションのヘルプが表示されます.\n"
  3238. #~ " マッチするカテゴリが存在しない場合, 指定され"
  3239. #~ "たキ\n"
  3240. #~ " ーワードを使って, オプション名について部分一"
  3241. #~ "致検\n"
  3242. #~ " 索を行い, 該当するオプションのヘルプを表示し"
  3243. #~ "ます."
  3244. #~ msgid ""
  3245. #~ " --direct-file-mapping=true|false Directly read from and write to each "
  3246. #~ "file\n"
  3247. #~ " mentioned in .torrent file."
  3248. #~ msgstr ""
  3249. #~ " --direct-file-mapping=true|false .torrent ファイル記載のファイルに直接読"
  3250. #~ "み書き\n"
  3251. #~ " します."
  3252. #~ msgid ""
  3253. #~ " --peer-id-prefix=PEERI_ID_PREFIX Specify the prefix of peer ID. The peer "
  3254. #~ "ID in\n"
  3255. #~ " BitTorrent is 20 byte length. If more than "
  3256. #~ "20\n"
  3257. #~ " bytes are specified, only first 20\n"
  3258. #~ " bytes are used. If less than 20 bytes are\n"
  3259. #~ " specified, the random alphabet characters "
  3260. #~ "are\n"
  3261. #~ " added to make it's length 20 bytes."
  3262. #~ msgstr ""
  3263. #~ " --peer-id-prefix=PEERI_ID_PREFIX ピア ID のプレフィックスを指定します.\n"
  3264. #~ " BitTorrent のピア ID は 20 バイトの長さで"
  3265. #~ "す.\n"
  3266. #~ " 20 バイトを越える文字を指定した場合, 先頭か"
  3267. #~ "ら 20\n"
  3268. #~ " バイトのみ使用します. 逆に 20 バイトに満たな"
  3269. #~ "い場\n"
  3270. #~ " 合, ランダムなアルファベットキャラクターを付"
  3271. #~ "加し\n"
  3272. #~ " 20 バイトにします."
  3273. #~ msgid ""
  3274. #~ " --dht-file-path=PATH Change the DHT routing table file to PATH."
  3275. #~ msgstr " --dht-file-path=PATH DHT ルーティングテーブルを PATH に保存します."
  3276. #~ msgid ""
  3277. #~ " --http-proxy=PROXY Use this proxy server for HTTP.\n"
  3278. #~ " See also --all-proxy option.\n"
  3279. #~ " This affects all URLs."
  3280. #~ msgstr ""
  3281. #~ " --http-proxy=PROXY HTTP ダウンロードで使うプロキシサーバーを指"
  3282. #~ "定しま\n"
  3283. #~ " す. --all-proxy オプションも参照してくださ"
  3284. #~ "い.\n"
  3285. #~ " このオプションはすべての URL に適用されます."
  3286. #~ msgid ""
  3287. #~ " -s, --split=N Download a file using N connections. If "
  3288. #~ "more\n"
  3289. #~ " than N URLs are given, first N URLs are "
  3290. #~ "used and\n"
  3291. #~ " remaining URLs are used for backup. If less "
  3292. #~ "than\n"
  3293. #~ " N URLs are given, those URLs are used more "
  3294. #~ "than\n"
  3295. #~ " once so that N connections total are made\n"
  3296. #~ " simultaneously. Please see -j option too.\n"
  3297. #~ " Please note that in Metalink download, "
  3298. #~ "this\n"
  3299. #~ " option has no effect and use -C option "
  3300. #~ "instead."
  3301. #~ msgstr ""
  3302. #~ " -s, --split=N N 個の接続を使ってファイルをダウンロードしま"
  3303. #~ "す. N\n"
  3304. #~ " 個を越える URL が与えられた場合, 最初の N 個"
  3305. #~ "の URL\n"
  3306. #~ " が使われ, 残りはバックアップとして扱いま"
  3307. #~ "す.\n"
  3308. #~ " N 個未満の URL が指定された場合, URL を数回"
  3309. #~ "使って,\n"
  3310. #~ " 合計で N 個の 接続になるように調整します.\n"
  3311. #~ " -j オプションも参照してください.\n"
  3312. #~ " Metalink のダウンロードでは, このオプション"
  3313. #~ "ではな\n"
  3314. #~ " く, -C オプションを使ってください."
  3315. #~ msgid ""
  3316. #~ " --ftp-proxy=PROXY Use this proxy server for FTP.\n"
  3317. #~ " See also --all-proxy option.\n"
  3318. #~ " This affects all URLs."
  3319. #~ msgstr ""
  3320. #~ " --ftp-proxy=PROXY FTP ダウンロードで使うプロキシサーバーを指定"
  3321. #~ "しま\n"
  3322. #~ " す. --all-proxy オプションも参照してくださ"
  3323. #~ "い.\n"
  3324. #~ " このオプションはすべての URL に適用されます."
  3325. #~ msgid ""
  3326. #~ " --https-proxy=PROXY Use this proxy server for HTTPS.\n"
  3327. #~ " See also --all-proxy option.\n"
  3328. #~ " This affects all URLs."
  3329. #~ msgstr ""
  3330. #~ " --https-proxy=PROXY HTTPS ダウンロードで使うプロキシサーバーを指"
  3331. #~ "定しま\n"
  3332. #~ " す. --all-proxy オプションも参照してくださ"
  3333. #~ "い.\n"
  3334. #~ " このオプションはすべての URL に適用されます."
  3335. #~ msgid "Certificate verification failed. Cause: %s"
  3336. #~ msgstr "証明書の検証が失敗しました. 原因: %s"
  3337. #~ msgid ""
  3338. #~ " -i, --input-file=FILE Downloads URIs found in FILE. You can "
  3339. #~ "specify\n"
  3340. #~ " multiple URIs for a single entity: "
  3341. #~ "separate\n"
  3342. #~ " URIs on a single line using the TAB "
  3343. #~ "character.\n"
  3344. #~ " Reads input from stdin when '-' is "
  3345. #~ "specified.\n"
  3346. #~ " The additional out and dir options can be\n"
  3347. #~ " specified after each line of URIs. This "
  3348. #~ "optional\n"
  3349. #~ " line must start with white space(s). See "
  3350. #~ "INPUT\n"
  3351. #~ " FILE section of man page for details."
  3352. #~ msgstr ""
  3353. #~ " -i, --input-file=FILE ファイルに記述された URI のリストを読み込"
  3354. #~ "み, それ\n"
  3355. #~ " らをダウンロードします. 複数 URI の同時ダウ"
  3356. #~ "ンロー\n"
  3357. #~ " ドが可能です. 1 エントリに対して複数の URI "
  3358. #~ "を指定\n"
  3359. #~ " するにはタブで区切って一行に URI を複数記述"
  3360. #~ "します.\n"
  3361. #~ " FILE に '-' を指定すると, 標準入力から読み込"
  3362. #~ "みま\n"
  3363. #~ " す. 出力先ディレクトリやファイル名をエントリ"
  3364. #~ "毎に指\n"
  3365. #~ " 定することができます. この追加オプションを指"
  3366. #~ "定する\n"
  3367. #~ " 行は, 空白で開始されていなくてはなりません. "
  3368. #~ "詳しく\n"
  3369. #~ " は man ページの INPUT FILE セクションを参照"
  3370. #~ "してく\n"
  3371. #~ " ださい."
  3372. #~ msgid ""
  3373. #~ " --no-proxy=DOMAINS Specify comma separated hostnames or "
  3374. #~ "domains where\n"
  3375. #~ " proxy should not be used."
  3376. #~ msgstr ""
  3377. #~ " --no-proxy=DOMAINS プロキシサーバーを使わないホスト名やドメイン"
  3378. #~ "名をコ\n"
  3379. #~ " ンマで区切って指定します."
  3380. #~ msgid ""
  3381. #~ " --follow-metalink=true|false|mem If true or mem is specified, when a "
  3382. #~ "file\n"
  3383. #~ " whose suffix is .metaink or content type "
  3384. #~ "of\n"
  3385. #~ " application/metalink+xml is downloaded, "
  3386. #~ "aria2\n"
  3387. #~ " parses it as a metalink file and downloads "
  3388. #~ "files\n"
  3389. #~ " mentioned in it.\n"
  3390. #~ " If mem is specified, a metalink file is "
  3391. #~ "not\n"
  3392. #~ " written to the disk, but is just kept in "
  3393. #~ "memory.\n"
  3394. #~ " If false is specified, the action mentioned "
  3395. #~ "above\n"
  3396. #~ " is not taken."
  3397. #~ msgstr ""
  3398. #~ " --follow-metalink=true|false|mem ダウンロードしたファイルの拡張子が ."
  3399. #~ "metalink\n"
  3400. #~ " か, Content-Type が application/metalink"
  3401. #~ "+xml であ\n"
  3402. #~ " り, このオプションに true または mem が指定"
  3403. #~ "されて\n"
  3404. #~ " いる場合, aria2 はファイルを metalink ファイ"
  3405. #~ "ルとし\n"
  3406. #~ " て読み込み, その中に記述されているファイルの"
  3407. #~ "ダウン\n"
  3408. #~ " ロードを行います. mem を指定すると, "
  3409. #~ "metalink ファ\n"
  3410. #~ " イルはディスクに保存されず, メモリ内で処理さ"
  3411. #~ "れま\n"
  3412. #~ " す. false を指定すると, 上記のいずれの動作も"
  3413. #~ "行いま\n"
  3414. #~ " せん."
  3415. #~ msgid ""
  3416. #~ " --realtime-chunk-checksum=true|false Validate chunk of data by "
  3417. #~ "calculating\n"
  3418. #~ " checksum while downloading a file if chunk\n"
  3419. #~ " checksums are provided."
  3420. #~ msgstr ""
  3421. #~ " --realtime-chunk-checksum=true|false 部分チェックサムが利用できる場合, "
  3422. #~ "ダウン\n"
  3423. #~ " ロードしながら, 部分チェックサムを計算して検"
  3424. #~ "証しま\n"
  3425. #~ " す."
  3426. #~ msgid ""
  3427. #~ " --all-proxy=PROXY Use this proxy server for all protocols.\n"
  3428. #~ " You can override this setting and specify "
  3429. #~ "a\n"
  3430. #~ " proxy server for a particular protocol "
  3431. #~ "using\n"
  3432. #~ " --http-proxy, --https-proxy and --ftp-"
  3433. #~ "proxy\n"
  3434. #~ " options.\n"
  3435. #~ " This affects all URLs."
  3436. #~ msgstr ""
  3437. #~ " --all-proxy=PROXY すべてのプロトコル共通のプロキシサーバーを指"
  3438. #~ "定しま\n"
  3439. #~ " す. 特定のプロトコルで使用するプロキシサー"
  3440. #~ "バーを指\n"
  3441. #~ " 定するには, --http-proxy, --https-proxy,\n"
  3442. #~ " --ftp-proxy を使います.\n"
  3443. #~ " このオプションはすべての URL に適用されます."
  3444. #~ msgid ""
  3445. #~ " --xml-rpc-max-request-size=SIZE Set max size of XML-RPC request. If "
  3446. #~ "aria2\n"
  3447. #~ " detects the request is more than SIZE "
  3448. #~ "bytes, it\n"
  3449. #~ " drops connection."
  3450. #~ msgstr ""
  3451. #~ " --xml-rpc-max-request-size=SIZE XML-RPC リクエストの最大値を設定します. "
  3452. #~ "リクエ\n"
  3453. #~ " ストのサイズがこの最大値を越えた場合は, 接続"
  3454. #~ "を解除\n"
  3455. #~ " します."
  3456. #~ msgid ""
  3457. #~ " --allow-overwrite=true|false If false is given, and a file already "
  3458. #~ "exists but\n"
  3459. #~ " the corresponding control file (filename."
  3460. #~ "aria2)\n"
  3461. #~ " doesn't exist, then aria2 will not re-"
  3462. #~ "download\n"
  3463. #~ " the file. See also --auto-file-renaming "
  3464. #~ "option."
  3465. #~ msgstr ""
  3466. #~ " --allow-overwrite=true|false このオプションを false に設定すると, ローカ"
  3467. #~ "ル\n"
  3468. #~ " ディスク上にファイルが存在するが, それに対応"
  3469. #~ "する\n"
  3470. #~ " コントロールファイル (ファイル名.aria2) が存"
  3471. #~ "在しな\n"
  3472. #~ " い場合, ダウンロードを中止します.\n"
  3473. #~ " --auto-file-renaming オプションも参照してく"
  3474. #~ "ださい."
  3475. #~ msgid " --xml-rpc-user=USER Set XML-RPC user."
  3476. #~ msgstr " --xml-rpc-user=USER XML-RPC ユーザーを設定します."
  3477. #~ msgid ""
  3478. #~ " --enable-xml-rpc[=true|false] Enable XML-RPC server.\n"
  3479. #~ " It is strongly recommended to set username "
  3480. #~ "and\n"
  3481. #~ " password using --xml-rpc-user and --xml-rpc-"
  3482. #~ "passwd\n"
  3483. #~ " option. See also --xml-rpc-listen-port "
  3484. #~ "option."
  3485. #~ msgstr ""
  3486. #~ " --enable-xml-rpc[=true|false] XML-RPC サーバーを有効にします. ユーザー名"
  3487. #~ "とパス\n"
  3488. #~ " ワードを --xml-rpc-user, --xml-rpc-passwd オ"
  3489. #~ "プショ\n"
  3490. #~ " ンを使って設定することを強く推奨します.\n"
  3491. #~ " --xml-rpc-listen-port オプションも参照してく"
  3492. #~ "ださい\n"
  3493. #~ " ."
  3494. #~ msgid ""
  3495. #~ " --xml-rpc-listen-port=PORT Specify a port number for XML-RPC server to "
  3496. #~ "listen\n"
  3497. #~ " to."
  3498. #~ msgstr " --xml-rpc-listen-port=PORT XML-RPC で使うポート番号を指定します."
  3499. #~ msgid ""
  3500. #~ " --on-download-complete=COMMAND Set the command to be executed when "
  3501. #~ "download\n"
  3502. #~ " completes.\n"
  3503. #~ " See --on-download-start option for the\n"
  3504. #~ " requirement of COMMAND.\n"
  3505. #~ " See also --on-download-stop option."
  3506. #~ msgstr ""
  3507. #~ " --on-download-complete=COMMAND ダウンロード完了時に実行するコマンドを指定"
  3508. #~ "します.\n"
  3509. #~ " COMMAND の制限については, --on-download-"
  3510. #~ "start\n"
  3511. #~ " オプションを参照してください. --on-download-"
  3512. #~ "stop\n"
  3513. #~ " オプションも参照してください."
  3514. #~ msgid " --xml-rpc-passwd=PASSWD Set XML-RPC password."
  3515. #~ msgstr " --xml-rpc-passwd=PASSWD XML-RPC パスワードを設定します."
  3516. #~ msgid ""
  3517. #~ " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer "
  3518. #~ "ID in\n"
  3519. #~ " BitTorrent is 20 byte length. If more than "
  3520. #~ "20\n"
  3521. #~ " bytes are specified, only first 20\n"
  3522. #~ " bytes are used. If less than 20 bytes are\n"
  3523. #~ " specified, the random alphabet characters "
  3524. #~ "are\n"
  3525. #~ " added to make it's length 20 bytes."
  3526. #~ msgstr ""
  3527. #~ " --peer-id-prefix=PEER_ID_PREFIX ピア ID のプレフィックスを指定します.\n"
  3528. #~ " BitTorrent のピア ID は 20 バイトの長さで"
  3529. #~ "す.\n"
  3530. #~ " 20 バイトを越える文字を指定した場合, 先頭か"
  3531. #~ "ら 20\n"
  3532. #~ " バイトのみ使用します. 逆に 20 バイトに満たな"
  3533. #~ "い場\n"
  3534. #~ " 合, ランダムなアルファベットキャラクターを付"
  3535. #~ "加し\n"
  3536. #~ " 20 バイトにします."
  3537. #~ msgid ""
  3538. #~ " --on-download-start=COMMAND Set the command to be executed when "
  3539. #~ "download\n"
  3540. #~ " starts up. COMMAND must take just one "
  3541. #~ "argument and\n"
  3542. #~ " GID is passed to COMMAND as a first "
  3543. #~ "argument."
  3544. #~ msgstr ""
  3545. #~ " --on-download-start=COMMAND ダウンロード開始時に実行するコマンドを指定し"
  3546. #~ "ます.\n"
  3547. #~ " COMMAND は引数を一つ取るものでなければなりま"
  3548. #~ "せん.\n"
  3549. #~ " GID が引数として渡されます."
  3550. #~ msgid ""
  3551. #~ " --on-download-error=COMMAND Set the command to be executed when "
  3552. #~ "download\n"
  3553. #~ " aborts due to error.\n"
  3554. #~ " See --on-download-start option for the\n"
  3555. #~ " requirement of COMMAND.\n"
  3556. #~ " See also --on-download-stop option."
  3557. #~ msgstr ""
  3558. #~ " --on-download-error=COMMAND ダウンロードがエラーにより中断した時に実行す"
  3559. #~ "るコマ\n"
  3560. #~ " ンドを指定します.\n"
  3561. #~ " COMMAND の制限については, --on-download-"
  3562. #~ "start\n"
  3563. #~ " オプションを参照してください. --on-download-"
  3564. #~ "stop\n"
  3565. #~ " オプションも参照してください."
  3566. #~ msgid ""
  3567. #~ " --on-download-stop=COMMAND Set the command to be executed when "
  3568. #~ "download\n"
  3569. #~ " stops. You can override the command to be "
  3570. #~ "executed\n"
  3571. #~ " for particular download result using\n"
  3572. #~ " --on-download-complete and --on-download-"
  3573. #~ "error. If\n"
  3574. #~ " they are specified, command specified in "
  3575. #~ "this\n"
  3576. #~ " option is not executed.\n"
  3577. #~ " See --on-download-start option for the\n"
  3578. #~ " requirement of COMMAND."
  3579. #~ msgstr ""
  3580. #~ " --on-download-stop=COMMAND ダウンロードがストップしたときに実行するコマ"
  3581. #~ "ンドを\n"
  3582. #~ " 指定します. ダウンロードがストップした理由 "
  3583. #~ "(エラー\n"
  3584. #~ " もしくは完了)により, このオプションをオー"
  3585. #~ "バーライ\n"
  3586. #~ " ドするには, --on-download-complete や\n"
  3587. #~ " --on-download-error オプションを使います. そ"
  3588. #~ "れらが\n"
  3589. #~ " 指定されている場合, このコマンドはその状況に"
  3590. #~ "おいて\n"
  3591. #~ " 実行されません.\n"
  3592. #~ " COMMAND の制限については, --on-download-"
  3593. #~ "start\n"
  3594. #~ " オプションを参照してください."
  3595. #~ msgid ""
  3596. #~ " You can specify both torrent file with -T option and URLs. By doing "
  3597. #~ "this,\n"
  3598. #~ " download a file from both torrent swarm and http/ftp server at the same "
  3599. #~ "time,\n"
  3600. #~ " while the data from http/ftp are uploaded to the torrent swarm. For "
  3601. #~ "single file\n"
  3602. #~ " torrents, URL can be a complete URL pointing to the resource or if URL "
  3603. #~ "ends\n"
  3604. #~ " with '/', 'name' in torrent file is added. For multi-file torrents, "
  3605. #~ "'name' and\n"
  3606. #~ " 'path' in torrent are added to form a URL for each file."
  3607. #~ msgstr ""
  3608. #~ " URL と -T で torrent ファイルとを同時に指定できます. これにより,\n"
  3609. #~ " torrent と http/ftp サーバー方からファイルをダウンロードします.\n"
  3610. #~ " http/ftp 経由でダウンロードしたデータも torrent のネットワークへ\n"
  3611. #~ " アップロードされます. シングル ファイル torrent の場合, URL はリソースへ"
  3612. #~ "の完全\n"
  3613. #~ " な URL か, URL が '/' で終わっている場合は, torrent ファイルの 'name' が "
  3614. #~ "URL に\n"
  3615. #~ " 追加れます. マルチ ファイル torrent の場合, torrent ファイルの 'name' と "
  3616. #~ "'path'\n"
  3617. #~ " が URL に追加されて, それぞれのファイルの URL を形成します."
  3618. #~ msgid ""
  3619. #~ " --xml-rpc-listen-all[=true|false] Listen incoming XML-RPC requests on "
  3620. #~ "all\n"
  3621. #~ " network interfaces. If false is given, "
  3622. #~ "listen only\n"
  3623. #~ " on local loopback interface."
  3624. #~ msgstr ""
  3625. #~ " --xml-rpc-listen-all[=true|false] XML-RPC のリクエストをすべてのネット"
  3626. #~ "ワーク イ\n"
  3627. #~ " ンターフェースで受け付ける. false が与えられ"
  3628. #~ "た場合\n"
  3629. #~ " , ローカルのループバック インターフェースで"
  3630. #~ "のみ受\n"
  3631. #~ " け付ける."
  3632. #~ msgid ""
  3633. #~ " -h, --help[=CATEGORY|KEYWORD] Print usage and exit.\n"
  3634. #~ " The help messages are classified in "
  3635. #~ "several\n"
  3636. #~ " categories. A category starts with '#'. "
  3637. #~ "For\n"
  3638. #~ " example, type \"--help=#http\" to get the "
  3639. #~ "usage\n"
  3640. #~ " for the options related to http. If non-"
  3641. #~ "category\n"
  3642. #~ " keyword is given, print the usage of the "
  3643. #~ "options\n"
  3644. #~ " whose name includes given keyword."
  3645. #~ msgstr ""
  3646. #~ " -h, --help[=CATEGORY|KEYWORD] 使用方法を表示して終了する.\n"
  3647. #~ " ヘルプ メッセージはカテゴリわけされている. "
  3648. #~ "カテゴ\n"
  3649. #~ " リは '#' で始まる. 例えば, http に関するオプ"
  3650. #~ "ション\n"
  3651. #~ " のヘルプを表示するには, \"--help=#http\" と"
  3652. #~ "タイプす\n"
  3653. #~ " る. カテゴリ以外のキーワードを与えると, その"
  3654. #~ "キーワ\n"
  3655. #~ " ードを名前に含むオプションを表示する."
  3656. #~ msgid "Is '%s' a regular file?"
  3657. #~ msgstr "'%s' は普通のファイルですか?"
  3658. #~ msgid ""
  3659. #~ " -D, --daemon Run as daemon. The current working "
  3660. #~ "directory will\n"
  3661. #~ " be changed to \"/\" and standard input, "
  3662. #~ "standard\n"
  3663. #~ " output and standard error will be "
  3664. #~ "redirected to\n"
  3665. #~ " \"/dev/null\"."
  3666. #~ msgstr ""
  3667. #~ " -D, --daemon デーモンとして起動します. カレント ワーキン"
  3668. #~ "グ ディ\n"
  3669. #~ " レクトリは \"/\" に変更され, 標準入力, 標準"
  3670. #~ "出力, 標\n"
  3671. #~ " 準エラー出力は \"/dev/null\" にリダイレクト"
  3672. #~ "されます."
  3673. #~ msgid "Usage: aria2c [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]..."
  3674. #~ msgstr "使い方: aria2c [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]..."
  3675. #~ msgid ""
  3676. #~ " --follow-metalink=true|false|mem If true or mem is specified, when a "
  3677. #~ "file\n"
  3678. #~ " whose suffix is .metalink or content type "
  3679. #~ "of\n"
  3680. #~ " application/metalink+xml is downloaded, "
  3681. #~ "aria2\n"
  3682. #~ " parses it as a metalink file and downloads "
  3683. #~ "files\n"
  3684. #~ " mentioned in it.\n"
  3685. #~ " If mem is specified, a metalink file is "
  3686. #~ "not\n"
  3687. #~ " written to the disk, but is just kept in "
  3688. #~ "memory.\n"
  3689. #~ " If false is specified, the action mentioned "
  3690. #~ "above\n"
  3691. #~ " is not taken."
  3692. #~ msgstr ""
  3693. #~ " --follow-metalink=true|false|mem ダウンロードしたファイルの拡張子が ."
  3694. #~ "metalink\n"
  3695. #~ " か, Content-Type が application/metalink"
  3696. #~ "+xml であ\n"
  3697. #~ " り, このオプションに true または mem が指定"
  3698. #~ "されて\n"
  3699. #~ " いる場合, aria2 はファイルを metalink ファイ"
  3700. #~ "ルとし\n"
  3701. #~ " て読み込み, その中に記述されているファイルの"
  3702. #~ "ダウン\n"
  3703. #~ " ロードを行います. mem を指定すると, "
  3704. #~ "metalink ファ\n"
  3705. #~ " イルはディスクに保存されず, メモリ内で処理さ"
  3706. #~ "れま\n"
  3707. #~ " す. false を指定すると, 上記のいずれの動作も"
  3708. #~ "行いま\n"
  3709. #~ " せん."