ja.po 119 KB

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