ja.po 114 KB

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