ja.po 140 KB

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