ja.po 90 KB

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