ja.po 134 KB

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