ja.po 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328
  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-05-13 00:34+0900\n"
  11. "PO-Revision-Date: 2008-05-10 07:34+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-05-12 14:16+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. msgid ""
  791. " -s, --split=N Download a file using N connections. N must "
  792. "be\n"
  793. " between 1 and 5. This option affects all "
  794. "URLs.\n"
  795. " Thus, aria2 connects to each URL with\n"
  796. " N connections.\n"
  797. " Default: 1"
  798. msgstr ""
  799. " -s, --split=N N 個のコネクションを使ってファイルをダウンロー"
  800. "ド\n"
  801. " します. N は 1 から 5 の数字を指定してくださ"
  802. "い.\n"
  803. " このオプションはすべての URL 引数に影響しま"
  804. "す.\n"
  805. " つまり, それぞれの URL に対して N 個のコネク"
  806. "ショ\n"
  807. " ンを確立します.\n"
  808. " デフォルト値: 1"
  809. #: src/usage_text.h:52
  810. msgid ""
  811. " --retry-wait=SEC Set the seconds to wait to retry after an "
  812. "error\n"
  813. " has occured. Specify a value between 0 and "
  814. "60.\n"
  815. " Default: 5"
  816. msgstr ""
  817. " --retry-wait=SEC エラーによる再試行時の待ち時間を秒単位で指定し"
  818. "ま\n"
  819. " す. 0 - 60 の値を指定してください.\n"
  820. " デフォルト値: 5"
  821. #: src/usage_text.h:56
  822. msgid " -t, --timeout=SEC Set timeout in seconds. Default: 60"
  823. msgstr ""
  824. " -t, --timeout=SEC タイムアウトとなる時間を秒で指定します.\n"
  825. " デフォルト値: 60"
  826. #: src/usage_text.h:58
  827. msgid ""
  828. " -m, --max-tries=N Set number of tries. 0 means unlimited.\n"
  829. " Default: 5"
  830. msgstr ""
  831. " -m, --max-tries=N 試行回数を指定します. 0 を指定すると何度でも試"
  832. "行\n"
  833. " します. デフォルト値: 5"
  834. #: src/usage_text.h:61
  835. msgid ""
  836. " --http-proxy=HOST:PORT Use HTTP proxy server. This affects all URLs."
  837. msgstr ""
  838. " --http-proxy=HOST:PORT HTTP プロキシ・サーバーを使用します.\n"
  839. " このオプションはすべての URL に影響します."
  840. #: src/usage_text.h:63
  841. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  842. msgstr ""
  843. " --http-user=USER HTTP での認証ユーザーを指定します. このオプショ"
  844. "ン\n"
  845. " はすべての URL に影響します."
  846. #: src/usage_text.h:65
  847. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  848. msgstr ""
  849. " --http-passwd=PASSWD HTTP での認証パスワードを指定します. このオプ"
  850. "ショ\n"
  851. " ンはすべての URL に影響します."
  852. #: src/usage_text.h:67
  853. msgid ""
  854. " --http-proxy-user=USER Set HTTP proxy user. This affects all URLs."
  855. msgstr ""
  856. " --http-proxy-user=USER HTTP プロキシ・サーバーでの認証で使うユーザーを"
  857. "指\n"
  858. " 定します. このオプションはすべての URL に影響し"
  859. "ま\n"
  860. " す."
  861. #: src/usage_text.h:69
  862. msgid ""
  863. " --http-proxy-passwd=PASSWD Set HTTP proxy password. This affects all URLs."
  864. msgstr ""
  865. " --http-proxy-passwd=PASSWD HTTP プロキシ・サーバーでの認証で使うパスワード"
  866. "を\n"
  867. " 指定します. このオプションはすべての URL に影響"
  868. "し\n"
  869. " ます."
  870. #: src/usage_text.h:71
  871. msgid ""
  872. " --http-proxy-method=METHOD Set the method to use in proxy request.\n"
  873. " METHOD is either 'get' or 'tunnel'.\n"
  874. " Default: tunnel"
  875. msgstr ""
  876. " --http-proxy-method=METHOD HTTP プロキシ・リクエストで使うメソッドを指定し"
  877. "ま\n"
  878. " す. 'get' または 'tunnel' を指定してください.\n"
  879. " デフォルト値: tunnel"
  880. #: src/usage_text.h:75
  881. msgid ""
  882. " --http-auth-scheme=SCHEME Set HTTP authentication scheme. Currently, "
  883. "basic\n"
  884. " is the only supported scheme.\n"
  885. " Default: basic"
  886. msgstr ""
  887. " --http-auth-scheme=SCHEME HTTP での認証方法を指定します. 現在サポートされ"
  888. "て\n"
  889. " いるのは basic です. \n"
  890. " デフォルト値: basic"
  891. #: src/usage_text.h:79
  892. msgid " --referer=REFERER Set Referer. This affects all URLs."
  893. msgstr ""
  894. " --referer=REFERER リファラーを指定します. このオプションはすべて"
  895. "の\n"
  896. " URL に影響します."
  897. #: src/usage_text.h:81
  898. msgid ""
  899. " --ftp-user=USER Set FTP user. This affects all URLs.\n"
  900. " Default: anonymous"
  901. msgstr ""
  902. " --ftp-user=USER FTP での認証ユーザーを指定します. このオプショ"
  903. "ン\n"
  904. " はすべての URL に影響します.\n"
  905. " デフォルト値: anonymous"
  906. #: src/usage_text.h:84
  907. msgid ""
  908. " --ftp-passwd=PASSWD Set FTP password. This affects all URLs.\n"
  909. " Default: ARIA2USER@"
  910. msgstr ""
  911. " --ftp-passwd=PASSWD FTP での認証パスワードを指定します. このオプ"
  912. "ショ\n"
  913. " ンはすべての URL に影響します.\n"
  914. " デフォルト値: ARIA2USER@"
  915. #: src/usage_text.h:87
  916. msgid ""
  917. " --ftp-type=TYPE Set FTP transfer type. TYPE is either "
  918. "'binary'\n"
  919. " or 'ascii'.\n"
  920. " Default: binary"
  921. msgstr ""
  922. " --ftp-type=TYPE FTP 転送モードを指定します. 'binary' または\n"
  923. " 'ascii' を指定してください. デフォルト値: "
  924. "binary"
  925. #: src/usage_text.h:91
  926. msgid " -p, --ftp-pasv Use passive mode in FTP."
  927. msgstr " -p, --ftp-pasv FTP で passive モードを使用します."
  928. #: src/usage_text.h:93
  929. msgid ""
  930. " --ftp-via-http-proxy=METHOD Use HTTP proxy in FTP. METHOD is either 'get' "
  931. "or\n"
  932. " 'tunnel'.\n"
  933. " Default: tunnel"
  934. msgstr ""
  935. " --ftp-via-http-proxy=METHOD FTP で HTTP プロキシ・サーバーを使用する際の方"
  936. "法\n"
  937. " を指定します. 'get' または 'tunnel' を指定して"
  938. "く\n"
  939. " ださい. デフォルト値: tunnel"
  940. #: src/usage_text.h:97
  941. msgid ""
  942. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  943. "than\n"
  944. " or equal to this value(bytes per sec).\n"
  945. " 0 means aria2 does not have a lowest speed "
  946. "limit.\n"
  947. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  948. " This option does not affect BitTorrent "
  949. "downloads.\n"
  950. " Default: 0"
  951. msgstr ""
  952. " --lowest-speed-limit=SPEED ここで指定するダウンロード速度を下回った場合, "
  953. "ダ\n"
  954. " ウンロードを中止します. 速度はバイト/秒です.\n"
  955. " 0 を指定すると, 速度の判定を行いません.\n"
  956. " K または M を付加することができます (1K = "
  957. "1024,\n"
  958. " 1M = 1024K). このオプションは, BitTorrent ダウ"
  959. "ンロ\n"
  960. " ードには影響しません.\n"
  961. " デフォルト値: 0"
  962. #: src/usage_text.h:104
  963. msgid ""
  964. " --max-download-limit=SPEED Set max download speed in bytes per sec.\n"
  965. " 0 means unrestricted.\n"
  966. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  967. " Default: 0"
  968. msgstr ""
  969. " --max-download-limit=SPEED ダウンロードの最大速度 (バイト/秒) を指定しま"
  970. "す.\n"
  971. " 0 を指定すると速度の制限をしません. K または M"
  972. "を\n"
  973. " 付加することができます (1K = 1024, 1M = "
  974. "1024K).\n"
  975. " デフォルト値: 0"
  976. #: src/usage_text.h:109
  977. msgid ""
  978. " --file-allocation=METHOD Specify file allocation method. METHOD is "
  979. "either\n"
  980. " 'none' or 'prealloc'. 'none' doesn't pre-"
  981. "allocate\n"
  982. " file space. 'prealloc' pre-allocates file "
  983. "space\n"
  984. " before download begins. This may take some "
  985. "time\n"
  986. " depending on the size of the file.\n"
  987. " Default: prealloc"
  988. msgstr ""
  989. " --file-allocation=METHOD ファイル領域を確保する方法を指定します. 'none' "
  990. "又\n"
  991. " は 'prealloc' が指定できます.\n"
  992. " 'none' を指定するとファイル領域を事前確保しませ"
  993. "ん.\n"
  994. " 'prealloc' を指定するとファイル領域を事前確保し"
  995. "ま\n"
  996. " す. この処理は, ファイルサイズによって時間がか"
  997. "か\n"
  998. " る場合があります.\n"
  999. " デフォルト値: prealloc"
  1000. #: src/usage_text.h:116
  1001. msgid ""
  1002. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  1003. " size is smaller than SIZE.\n"
  1004. " You can append K or M(1K = 1024, 1M = 1024K)."
  1005. msgstr ""
  1006. " --no-file-allocation-limit=SIZE ファイルサイズが SIZE 以下の場合, ファイル\n"
  1007. " 領域の確保を行いません.\n"
  1008. " K または M を付加することができます (1K = "
  1009. "1024,\n"
  1010. " 1M = 1024K)."
  1011. #: src/usage_text.h:120
  1012. msgid ""
  1013. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  1014. "while\n"
  1015. " allocating files.\n"
  1016. " Turn off if you encounter any error"
  1017. msgstr ""
  1018. " --enable-direct-io[=true|false] ダイレクト I/O を有効にします. 有効にする"
  1019. "と\n"
  1020. " ファイル領域確保中の CPU 利用率が下がります.\n"
  1021. " エラーが発生する場合は, 無効にしてください."
  1022. #: src/usage_text.h:124
  1023. msgid ""
  1024. " --allow-overwrite=true|false If false, aria2 doesn't download a file which\n"
  1025. " already exists but the corresponding .aria2 "
  1026. "file\n"
  1027. " doesn't exist.\n"
  1028. " Default: false"
  1029. msgstr ""
  1030. " --allow-overwrite=true|false このオプションを false に設定すると, ローカ"
  1031. "ル\n"
  1032. " ディスク上にファイルが存在するが, それに対応す"
  1033. "る\n"
  1034. " *.aria2 ファイルが存在しない場合, ダウンロード"
  1035. "を\n"
  1036. " 中止します.\n"
  1037. " デフォルト値: false"
  1038. #: src/usage_text.h:129
  1039. msgid ""
  1040. " --allow-piece-length-change=true|false If false is given, aria2 aborts "
  1041. "download\n"
  1042. " when a piece length is different from one in\n"
  1043. " a control file. If true is given, you can "
  1044. "proceed\n"
  1045. " but some download progress will be lost."
  1046. msgstr ""
  1047. " --allow-piece-length-change=true|false ピース(セグメント)の長さ(ファイル分"
  1048. "割\n"
  1049. " の最小単位)がコントロールファイルに保存された"
  1050. "値\n"
  1051. " から変更されていて, かつ, このオプションで"
  1052. "false\n"
  1053. " を指定した場合, aria2 はダウンロードを中止し"
  1054. "ま\n"
  1055. " す. true が指定された場合は, ダウンロードを強"
  1056. "行\n"
  1057. " しますが, ダウンロードデータの一部は失われるか"
  1058. "も\n"
  1059. " しれません."
  1060. #: src/usage_text.h:134
  1061. msgid ""
  1062. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  1063. "sequentially\n"
  1064. " and download each URI in a separate session, "
  1065. "like\n"
  1066. " the usual command-line download utilities.\n"
  1067. " Default: false"
  1068. msgstr ""
  1069. " -Z, --force-sequential[=true|false] コマンドラインで指定された URI をそれぞ"
  1070. "れ\n"
  1071. " 違うファイルであるとして扱う. aria2c のデフォ"
  1072. "ル\n"
  1073. " ト動作 (false 指定) とは, 指定された URI がす"
  1074. "べ\n"
  1075. " て同じファイルをさしているとして扱う点が異な"
  1076. "る.\n"
  1077. " 大抵のコマンドライン型ダウンロードユーティリ"
  1078. "ティ\n"
  1079. " は, このオプションで true を指定したように振る"
  1080. "舞\n"
  1081. " うはずである.\n"
  1082. " デフォルト値: false"
  1083. #: src/usage_text.h:139
  1084. msgid ""
  1085. " --auto-file-renaming[=true|false] Rename file name if the same file "
  1086. "already\n"
  1087. " exists. This option works only in http(s)/ftp\n"
  1088. " download.\n"
  1089. " The new file name has a dot and a number"
  1090. "(1..9999)\n"
  1091. " appended.\n"
  1092. " Default: true"
  1093. msgstr ""
  1094. " --auto-file-renaming[=true|false] 同じファイル名のファイルがすでにファイル"
  1095. "シ\n"
  1096. " ステムに存在する場合, ファイル名を自動で変更す"
  1097. "る.\n"
  1098. " http(s)/ftp のダウンロードのみで有効である.\n"
  1099. " 変更の仕方は, ファイル名末尾にドット (.) と番"
  1100. "号\n"
  1101. " (1..9999) を付加する.\n"
  1102. " デフォルト値: true"
  1103. #: src/usage_text.h:146
  1104. msgid ""
  1105. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  1106. " You can specify set of parts:\n"
  1107. " http://{sv1,sv2,sv3}/foo.iso\n"
  1108. " Also you can specify numeric sequences with "
  1109. "step\n"
  1110. " counter:\n"
  1111. " http://host/image[000-100:2].img\n"
  1112. " A step counter can be omitted.\n"
  1113. " If all URIs do not point to the same file, "
  1114. "such\n"
  1115. " as the second example above, -Z option is\n"
  1116. " required.\n"
  1117. " Default: false"
  1118. msgstr ""
  1119. " -P, --parameterized-uri[=true|false] パラメータ化された URI の展開のサポー"
  1120. "ト\n"
  1121. " を有効にする.\n"
  1122. " パラメータ化された URI では, URI の部分パーツ"
  1123. "の\n"
  1124. " 集合を指定できる:\n"
  1125. " http://{sv1,sv2,sv3}/foo.iso\n"
  1126. " また, 数値のシーケンスも指定できる (ステップカ"
  1127. "ウ\n"
  1128. " ントを指定可能):\n"
  1129. " http://host/image[000-100:2].img\n"
  1130. " ステップカウントは省略可能である.\n"
  1131. " 展開結果のすべての URI が同じファイルを指して"
  1132. "い\n"
  1133. " ない場合は, -Z オプションが必要である.\n"
  1134. " デフォルト値: false"
  1135. #: src/usage_text.h:158
  1136. msgid ""
  1137. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  1138. msgstr ""
  1139. " --enable-http-keep-alive[=true|false] HTTP/1.1 持続的接続を有効にします."
  1140. #: src/usage_text.h:160
  1141. msgid ""
  1142. " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining.\n"
  1143. " Default: false"
  1144. msgstr ""
  1145. " --enable-http-pipelining[=true|false] HTTP/1.1 パイプライニングを有効にしま"
  1146. "す.\n"
  1147. " デフォルト値: false"
  1148. #: src/usage_text.h:163
  1149. msgid ""
  1150. " --check-integrity=true|false Check file integrity by validating piece "
  1151. "hash.\n"
  1152. " This option only affects in BitTorrent "
  1153. "downloads\n"
  1154. " and Metalink downloads with chunk checksums.\n"
  1155. " Use this option to re-download a damaged "
  1156. "portion\n"
  1157. " of a file.\n"
  1158. " Default: false"
  1159. msgstr ""
  1160. " --check-integrity=true|false 部分ハッシュを計算してファイルの完全性を部分\n"
  1161. " 毎に検証します. このオプションは, BitTorrent\n"
  1162. " 又は, 部分(chunk)ハッシュ付きの Metalink 使用\n"
  1163. " 時のみ有効です. 壊れている可能性があるファイ"
  1164. "ル\n"
  1165. " を検証し, 壊れた部分だけダウンロードすること\n"
  1166. " ができます.\n"
  1167. " デフォルト値: false"
  1168. #: src/usage_text.h:170
  1169. msgid ""
  1170. " --realtime-chunk-checksum=true|false Validate chunk checksum while\n"
  1171. " downloading a file in Metalink mode. This "
  1172. "option\n"
  1173. " on affects Metalink mode with chunk "
  1174. "checksums.\n"
  1175. " Default: true"
  1176. msgstr ""
  1177. " --realtime-chunk-checksum=true|false Metalink 使用時に部分チェックサムをダ"
  1178. "ウン\n"
  1179. " ロードしながら検証します. 部分チェックサム付き"
  1180. "の\n"
  1181. " Metalink でのみ使用できます.\n"
  1182. " デフォルト値: true"
  1183. #: src/usage_text.h:175
  1184. msgid ""
  1185. " -c, --continue Continue downloading a partially downloaded\n"
  1186. " file. Use this option to resume a download\n"
  1187. " started by a web browser or another program\n"
  1188. " which downloads files sequentially from the\n"
  1189. " beginning. Currently this option is only\n"
  1190. " applicable to http(s)/ftp downloads."
  1191. msgstr ""
  1192. " -c, --continue ウェブブラウザや他のプログラムがシーケンシャル"
  1193. "に\n"
  1194. " ダウンロードしていたが, 途中でダウンロードを中"
  1195. "止\n"
  1196. " したファイルのダウンロードを継続する場合に使用"
  1197. "し\n"
  1198. " ます. http(s)/ftp のダウンロードに対してのみ使"
  1199. "用\n"
  1200. " できます."
  1201. #: src/usage_text.h:182
  1202. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  1203. msgstr " -U, --user-agent=USER_AGENT ユーザーエージェントを設定します."
  1204. #: src/usage_text.h:184
  1205. msgid " -n, --no-netrc Disables netrc support."
  1206. msgstr " -n, --no-netrc netrc サポートを止めます."
  1207. #: src/usage_text.h:186
  1208. msgid ""
  1209. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  1210. " multiple URIs for a single entity: separate\n"
  1211. " URIs on a single line using the TAB "
  1212. "character.\n"
  1213. " Reads input from stdin when '-' is specified."
  1214. msgstr ""
  1215. " -i, --input-file=FILE ファイルに記述された URI のリストを読み込み, そ"
  1216. "れ\n"
  1217. " らをダウンロードします. 複数 URI の同時ダウン"
  1218. "ロー\n"
  1219. " ドが可能です. 1 エントリに対して複数の URI を指"
  1220. "定\n"
  1221. " するにはタブで区切って一行に URI を複数記述しま"
  1222. "す.\n"
  1223. " FILE に '-' を指定すると, 標準入力から読み込み"
  1224. "ま\n"
  1225. " す."
  1226. #: src/usage_text.h:191
  1227. msgid ""
  1228. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads."
  1229. msgstr " -j, --max-concurrent-downloads=N 並行ダウンロード数を設定します."
  1230. #: src/usage_text.h:193
  1231. msgid ""
  1232. " --load-cookies=FILE Load cookies from FILE. The format of FILE is\n"
  1233. " the same used by Netscape and Mozilla."
  1234. msgstr ""
  1235. " --load-cookies=FILE cookie を FILE から読み込みます. FILE のフォー"
  1236. "マッ\n"
  1237. " トは, Netscape や Mozilla で使われているもので"
  1238. "す."
  1239. #: src/usage_text.h:196
  1240. msgid ""
  1241. " -S, --show-files Print file listing of .torrent or .metalink "
  1242. "file\n"
  1243. " and exit. More detailed information will be "
  1244. "listed\n"
  1245. " in case of torrent file."
  1246. msgstr ""
  1247. " -S, --show-files .torrent ファイルや .metalink ファイルに記述"
  1248. "さ\n"
  1249. " れているファイルを表示して終了します. ."
  1250. "torrent\n"
  1251. " ファイルの場合には, ファイルリストだけでなく"
  1252. "さ\n"
  1253. " らに詳しい内容も表示されます."
  1254. #: src/usage_text.h:200
  1255. msgid ""
  1256. " --select-file=INDEX... Set file to download by specifing its index.\n"
  1257. " You can find the file index using the\n"
  1258. " --show-files option. Multiple indexes can be\n"
  1259. " specified by using ',', for example: \"3,6\".\n"
  1260. " You can also use '-' to specify a range: \"1-5"
  1261. "\".\n"
  1262. " ',' and '-' can be used together.\n"
  1263. " When used with the -M option, index may vary\n"
  1264. " depending on the query(see --metalink-* "
  1265. "options)."
  1266. msgstr ""
  1267. " --select-file=INDEX... インデックスでダウンロード対象ファイルを指定し"
  1268. "ま\n"
  1269. " す. インデックスは --show-files オプションで知"
  1270. "る\n"
  1271. " ことができます. 複数のインデックスを ',' で区"
  1272. "切っ\n"
  1273. " て指定できます: \"3,6\"\n"
  1274. " また, '-' を使って範囲指定もできます: \"1-5\"\n"
  1275. " ',' と '-' は組み合わせて使うことができます.\n"
  1276. " -M オプションと共に使う場合, Metalink のクエ"
  1277. "リ\n"
  1278. " オプション (--metalink-* オプションを参照) に"
  1279. "よっ\n"
  1280. " てインデックスは変化する場合があります."
  1281. #: src/usage_text.h:209
  1282. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  1283. msgstr " -T, --torrent-file=TORRENT_FILE .torrent ファイルのパスを指定."
  1284. #: src/usage_text.h:211
  1285. msgid ""
  1286. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  1287. " whose suffix is .torrent or content type is\n"
  1288. " application/x-bittorrent is downloaded, aria2\n"
  1289. " parses it as a torrent file and downloads "
  1290. "files\n"
  1291. " mentioned in it.\n"
  1292. " If mem is specified, a torrent file is not\n"
  1293. " written to the disk, but is just kept in "
  1294. "memory.\n"
  1295. " If false is specified, the action mentioned "
  1296. "above\n"
  1297. " is not taken."
  1298. msgstr ""
  1299. " --follow-torrent=true|false|mem ダウンロードしたファイルの拡張子が ."
  1300. "torrent\n"
  1301. " か, Content-Type が application/x-bittorrent "
  1302. "で\n"
  1303. " あり, このオプションに true または mem が指定"
  1304. "さ\n"
  1305. " れている場合, aria2 はファイルを torrent ファ"
  1306. "イ\n"
  1307. " ルとして読み込み, その中に記述されているファイ"
  1308. "ル\n"
  1309. " のダウンロードを行います.\n"
  1310. " mem を指定すると, torrent ファイルはディスク"
  1311. "に\n"
  1312. " 保存されず, メモリ内で処理されます.\n"
  1313. " false を指定すると, 上記のいずれの動作も行いま"
  1314. "せ\n"
  1315. " ん."
  1316. #: src/usage_text.h:221
  1317. msgid ""
  1318. " --direct-file-mapping=true|false Directly read from and write to each file\n"
  1319. " mentioned in .torrent file.\n"
  1320. " Default: true"
  1321. msgstr ""
  1322. " --direct-file-mapping=true|false .torrent ファイル記載のファイルに直接読み書"
  1323. "き\n"
  1324. " します.\n"
  1325. " デフォルト値: true"
  1326. #: src/usage_text.h:225
  1327. msgid ""
  1328. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  1329. " Multiple ports can be specified by using ',',\n"
  1330. " for example: \"6881,6885\". You can also use "
  1331. "'-'\n"
  1332. " to specify a range: \"6881-6999\". ',' and '-' "
  1333. "can\n"
  1334. " be used together."
  1335. msgstr ""
  1336. " --listen-port=PORT... BitTorrent ダウンロードで使用する TCP ポートの"
  1337. "範\n"
  1338. " 囲を指定します.\n"
  1339. " 複数のポートを ',' で区切って指定できます:\n"
  1340. " \"6881,6885\". また, '-' を使って範囲指定もでき"
  1341. "ま\n"
  1342. " す: \"6881-6999\". ',' と '-' は組み合わせて使"
  1343. "う\n"
  1344. " ことができます."
  1345. #: src/usage_text.h:231
  1346. msgid ""
  1347. " --max-upload-limit=SPEED Set max upload speed in bytes per sec.\n"
  1348. " 0 means unrestricted.\n"
  1349. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  1350. " Default: 0"
  1351. msgstr ""
  1352. " --max-upload-limit=SPEED アップロードの最大速度 (バイト/秒) を指定しま"
  1353. "す.\n"
  1354. " 0 を指定すると速度の制限をしません. K または M"
  1355. "を\n"
  1356. " 付加することができます (1K = 1024, 1M = "
  1357. "1024K).\n"
  1358. " デフォルト値: 0"
  1359. #: src/usage_text.h:236
  1360. msgid ""
  1361. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  1362. " --seed-ratio option."
  1363. msgstr ""
  1364. " --seed-time=MINUTES シードを行う時間を分単位で指定します. \n"
  1365. " --seed-ratio オプションも参照してください."
  1366. #: src/usage_text.h:239
  1367. msgid ""
  1368. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  1369. " until share ratio reaches RATIO. 1.0 is\n"
  1370. " encouraged. Specify 0.0 if you intend to do\n"
  1371. " seeding regardless of share ratio.\n"
  1372. " If --seed-time option is specified along with\n"
  1373. " this option, seeding ends when at least one "
  1374. "of\n"
  1375. " the conditions is satisfied."
  1376. msgstr ""
  1377. " --seed-ratio=RATIO シェアレシオを指定します. BitTorrent のダウン"
  1378. "ロー\n"
  1379. " ドが完了しても, シェアレシオが RATIO に達するま"
  1380. "で\n"
  1381. " シードを継続します. RATIO は 1.0 が推奨されてい"
  1382. "ま\n"
  1383. " す. 0.0 を指定すると, シェアレシオに関係なく, "
  1384. "シ\n"
  1385. " ードを継続します.\n"
  1386. " --seed-time オプションと共に使用した場合, どち"
  1387. "ら\n"
  1388. " かの条件が成立した時点でシードは終了となります."
  1389. #: src/usage_text.h:247
  1390. msgid ""
  1391. " --peer-id-prefix=PEERI_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  1392. "in\n"
  1393. " BitTorrent is 20 byte length. If more than 20\n"
  1394. " bytes are specified, only first 20\n"
  1395. " bytes are used. If less than 20 bytes are\n"
  1396. " specified, the random alphabet characters are\n"
  1397. " added to make it's length 20 bytes.\n"
  1398. " Default: -aria2-"
  1399. msgstr ""
  1400. " --peer-id-prefix=PEERI_ID_PREFIX ピア ID のプレフィックスを指定します.\n"
  1401. " BitTorrent のピア ID は 20 バイトの長さです.\n"
  1402. " 20 バイトを越える文字を指定した場合, 先頭から "
  1403. "20\n"
  1404. " バイトのみ使用します. 逆に 20 バイトに満たない"
  1405. "場\n"
  1406. " 合, ランダムなアルファベットキャラクターを付加"
  1407. "し\n"
  1408. " 20 バイトにします.\n"
  1409. " デフォルト値: -aria2-"
  1410. #: src/usage_text.h:255
  1411. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  1412. msgstr " --enable-peer-exchange[=true|false] Peer Exchange を有効にします."
  1413. #: src/usage_text.h:257
  1414. msgid " --enable-dht[=true|false] Enable DHT functionality."
  1415. msgstr " --enable-dht[=true|false] DHT を有効にします."
  1416. #: src/usage_text.h:259
  1417. msgid ""
  1418. " --dht-listen-port=PORT... Set UDP listening port for DHT.\n"
  1419. " Multiple ports can be specified by using ',',\n"
  1420. " for example: \"6881,6885\". You can also use "
  1421. "'-'\n"
  1422. " to specify a range: \"6881-6999\". ',' and '-' "
  1423. "can\n"
  1424. " be used together."
  1425. msgstr ""
  1426. " --dht-listen-port=PORT... DHT で使用する UDP ポートの範囲を指定します.\n"
  1427. " 複数のポートを ',' で区切って指定できます:\n"
  1428. " \"6881,6885\". また, '-' を使って範囲指定もでき"
  1429. "ま\n"
  1430. " す: \"6881-6999\". ',' と '-' は組み合わせて使"
  1431. "う\n"
  1432. " ことができます."
  1433. #: src/usage_text.h:265
  1434. msgid ""
  1435. " --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"
  1436. " network."
  1437. msgstr ""
  1438. " --dht-entry-point=HOST:PORT DHT ネットワークへのエントリーポイントとして使"
  1439. "用\n"
  1440. " するホストとポート番号を指定します."
  1441. #: src/usage_text.h:268
  1442. msgid ""
  1443. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  1444. " If several encryption methods are provided by "
  1445. "a\n"
  1446. " peer, aria2 chooses a lowest one which "
  1447. "satisfies\n"
  1448. " the given level."
  1449. msgstr ""
  1450. " --bt-min-crypto-level=plain|arc4 許容する暗号化レベルの最小値をセットしま"
  1451. "す.\n"
  1452. " いくつかの暗号化レベルがピアから提示された場"
  1453. "合,\n"
  1454. " その中からここで指定する最小値を満たす暗号化レ"
  1455. "ベ\n"
  1456. " ルを選択します."
  1457. #: src/usage_text.h:273
  1458. msgid ""
  1459. " --bt-require-crypto=true|false If true is given, aria2 doesn't accept and\n"
  1460. " establish connection with legacy BitTorrent\n"
  1461. " handshake. Thus aria2 always uses Obfuscation\n"
  1462. " handshake."
  1463. msgstr ""
  1464. " --bt-require-crypto=true|false true を指定した場合, aria2 は従来の "
  1465. "BitTorrent\n"
  1466. " ハンドシェイクを拒否し, またそれを使って外部へ"
  1467. "接\n"
  1468. " 続しません. つまり常に暗号化ハンドシェイクを使"
  1469. "い\n"
  1470. " ます."
  1471. #: src/usage_text.h:278
  1472. msgid " -M, --metalink-file=METALINK_FILE The file path to the .metalink file."
  1473. msgstr " -M, --metalink-file=METALINK_FILE .metalink ファイルのパスを指定."
  1474. #: src/usage_text.h:280
  1475. msgid ""
  1476. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  1477. " simultaneously."
  1478. msgstr ""
  1479. " -C, --metalink-servers=NUM_SERVERS Metalink ダウンロードにおいて, 並行に接続"
  1480. "す\n"
  1481. " るサーバー数を設定します."
  1482. #: src/usage_text.h:283
  1483. msgid " --metalink-version=VERSION The version of the file to download."
  1484. msgstr " --metalink-version=VERSION ダウンロードするファイルのバージョン."
  1485. #: src/usage_text.h:285
  1486. msgid " --metalink-language=LANGUAGE The language of the file to download."
  1487. msgstr " --metalink-language=LANGUAGE ダウンロードするファイルの言語."
  1488. #: src/usage_text.h:287
  1489. msgid ""
  1490. " --metalink-os=OS The operating system of the file to download."
  1491. msgstr ""
  1492. " --metalink-os=OS ダウンロードするファイルがターゲットとするオペ"
  1493. "レー\n"
  1494. " ティング・システム."
  1495. #: src/usage_text.h:289
  1496. msgid ""
  1497. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  1498. " A comma-deliminated list of locations is\n"
  1499. " acceptable."
  1500. msgstr ""
  1501. " --metalink-location=LOCATION[,...] お好みのサーバーの地域を指定します.\n"
  1502. " コンマ区切りの地域のリストが指定可能です."
  1503. #: src/usage_text.h:293
  1504. msgid ""
  1505. " --metalink-preferred-protocol=PROTO Specify preferred protocol. The "
  1506. "possible\n"
  1507. " values are 'http', 'https', 'ftp' and 'none'.\n"
  1508. " Specifiy none to disable this feature."
  1509. msgstr ""
  1510. " --metalink-preferred-protocol=PROTO 優先的に使用するプロトコルを指定しま"
  1511. "す.\n"
  1512. " 指定可能な値は, 'http', 'https', 'ftp', 'none' "
  1513. "で\n"
  1514. " す. 'none' を指定するとこの機能は無効になりま"
  1515. "す."
  1516. #: src/usage_text.h:297
  1517. msgid ""
  1518. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  1519. " whose suffix is .metaink or content type is\n"
  1520. " application/metalink+xml is downloaded, aria2\n"
  1521. " parses it as a metalink file and downloads "
  1522. "files\n"
  1523. " mentioned in it.\n"
  1524. " If mem is specified, a metalink file is not\n"
  1525. " written to the disk, but is just kept in "
  1526. "memory.\n"
  1527. " If false is specified, the action mentioned "
  1528. "above\n"
  1529. " is not taken."
  1530. msgstr ""
  1531. " --follow-metalink=true|false|mem ダウンロードしたファイルの拡張子が ."
  1532. "metalink\n"
  1533. " か, Content-Type が application/metalink+xml "
  1534. "で\n"
  1535. " あり, このオプションに true または mem が指定"
  1536. "さ\n"
  1537. " れている場合, aria2 はファイルを metalink ファ"
  1538. "イ\n"
  1539. " ルとして読み込み, その中に記述されているファイ"
  1540. "ル\n"
  1541. " のダウンロードを行います.\n"
  1542. " mem を指定すると, metalink ファイルはディスク"
  1543. "に\n"
  1544. " 保存されず, メモリ内で処理されます.\n"
  1545. " false を指定すると, 上記のいずれの動作も行いま"
  1546. "せ\n"
  1547. " ん."
  1548. #: src/usage_text.h:307
  1549. msgid ""
  1550. " --metalink-enable-unique-protocol=true|false If true is given and several\n"
  1551. " protocols are available for a mirror in a "
  1552. "metalink\n"
  1553. " file, aria2 uses one of them.\n"
  1554. " Use --metalink-preferred-protocol option to\n"
  1555. " specify the preference of protocol."
  1556. msgstr ""
  1557. " --metalink-enable-unique-protocol=true|false true が指定された場合で同じホス"
  1558. "ト\n"
  1559. " で複数のプロトコルのリソースが metalink ファイ"
  1560. "ル\n"
  1561. " に記述されている場合, aria2 はいづれか一つだけ"
  1562. "を\n"
  1563. " 使うようになります. どのプロトコルを優先的に使"
  1564. "用\n"
  1565. " するかを指定するには--metalink-preferred-"
  1566. "protocol\n"
  1567. " オプションを使ってください."
  1568. #: src/usage_text.h:313
  1569. msgid " -v, --version Print the version number and exit."
  1570. msgstr " -v, --version バージョン番号を表示し, 終了します."
  1571. #: src/usage_text.h:315
  1572. msgid ""
  1573. " -h, --help[=CATEGORY] Print usage and exit.\n"
  1574. " The help messages are classified in several\n"
  1575. " categories. For example, type \"--help=http\" "
  1576. "for\n"
  1577. " detailed explanation for the options related "
  1578. "to\n"
  1579. " http. If no matching category is found, "
  1580. "search\n"
  1581. " option name using a given word, in forward "
  1582. "match\n"
  1583. " and print the result."
  1584. msgstr ""
  1585. " -h, --help[=CATEGORY] ヘルプを表示して終了します.\n"
  1586. " ヘルプはいくつかのカテゴリに分けられています.\n"
  1587. " 例えば, \"--help=http\" と指定すると, http に関"
  1588. "する\n"
  1589. " 詳細なオプションのヘルプが表示されます.\n"
  1590. " マッチするカテゴリが存在しない場合, 指定された"
  1591. "キ\n"
  1592. " ーワードを使って, オプション名について前方一致"
  1593. "検\n"
  1594. " 索を行い, 該当するオプションのヘルプを表示しま"
  1595. "す."
  1596. #: src/usage_text.h:323
  1597. msgid " --no-conf Disable loading aria2.conf file."
  1598. msgstr ""
  1599. " --no-conf aria2.conf ファイルの読み込みを抑制します."
  1600. #: src/usage_text.h:325
  1601. msgid ""
  1602. " --conf-path=PATH Change the configuration file path to PATH."
  1603. msgstr ""
  1604. " --conf-path=PATH 読み込む設定ファイルのパスを PATH に変更します."
  1605. #: src/usage_text.h:327
  1606. msgid ""
  1607. " --stop=SEC Stop application after SEC seconds has "
  1608. "passed.\n"
  1609. " If 0 is given, this feature is disabled."
  1610. msgstr ""
  1611. " --stop=SEC SEC 秒が経過した後, アプリケーションを停止しま"
  1612. "す.\n"
  1613. " 0 を指定すると, この機能は無効になります."
  1614. #: src/usage_text.h:330
  1615. msgid ""
  1616. " --header=HEADER Append HEADER to HTTP request header. You can "
  1617. "use\n"
  1618. " this option repeatedly to specify more than "
  1619. "one\n"
  1620. " header:\n"
  1621. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  1622. "9J1\"\n"
  1623. " http://host/file"
  1624. msgstr ""
  1625. " --header=HEADER HTTP リクエストヘッダーに HEADER を追加する.\n"
  1626. " 複数の HEADER を追加するにはこのオプションを複"
  1627. "数\n"
  1628. " 回使います:\n"
  1629. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  1630. "9J1\"\n"
  1631. " http://host/file"
  1632. #: src/usage_text.h:336
  1633. msgid " -q, --quiet[=true|false] Make aria2 quite (no console output)."
  1634. msgstr " -q, --quiet[=true|false] コンソールへ何も出力しないようにします."
  1635. #: src/usage_text.h:338
  1636. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  1637. msgstr " --async-dns[=true|false] 非同期 DNS を有効にします."
  1638. #: src/usage_text.h:340
  1639. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  1640. msgstr " --ftp-reuse-connection[=true|false] FTP で接続を再利用します."
  1641. #: src/BtSetup.cc:123
  1642. msgid "Errors occurred while binding port.\n"
  1643. msgstr "ポートをバインド中にエラーが発生しました.\n"
  1644. #: src/DownloadEngine.cc:289
  1645. msgid ""
  1646. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  1647. msgstr ""
  1648. "シャットダウン中です... 緊急時に即座にシャットダウンしたい場合は Ctrl-C をも"
  1649. "う一度押してください."
  1650. #: src/DownloadEngine.cc:293
  1651. msgid "Emergency shutdown sequence commencing..."
  1652. msgstr "緊急シャットダウン中です..."
  1653. #: src/HelpItem.cc:39
  1654. msgid " Default: "
  1655. msgstr " 既定値: "
  1656. #: src/HelpItem.cc:40
  1657. msgid " Tags: "
  1658. msgstr " タグ: "
  1659. #: src/HelpItem.cc:41
  1660. msgid " Available Values: "
  1661. msgstr " 値域: "
  1662. #: src/MultiUrlRequestInfo.cc:86
  1663. msgid "aria2 will resume download if the transfer is restarted."
  1664. msgstr "aria2 は次回, ダウンロードを再開します."
  1665. #: src/MultiUrlRequestInfo.cc:88
  1666. msgid ""
  1667. "If there are any errors, then see the log file. See '-l' option in help/man "
  1668. "page for details."
  1669. msgstr ""
  1670. "エラーが表示された場合, ログファイルを見てください. 詳しくはヘルプ/man ページ"
  1671. "の '-l' オプションの項を見てください."
  1672. #: src/RequestGroupMan.cc:255
  1673. msgid "Download Results:"
  1674. msgstr "ダウンロード結果:"
  1675. #: src/RequestGroupMan.cc:270
  1676. msgid "Status Legend:"
  1677. msgstr "凡例:"
  1678. #: src/Util.cc:684
  1679. msgid "Files:"
  1680. msgstr "ファイル:"
  1681. #: src/version_usage.cc:55
  1682. msgid " version "
  1683. msgstr " バージョン "
  1684. #: src/version_usage.cc:72
  1685. #, c-format
  1686. msgid "Report bugs to %s"
  1687. msgstr "バグレポートはこちらへ: %s"
  1688. #: src/version_usage.cc:77
  1689. #, c-format
  1690. msgid "Usage: %s [options] URL|TORRENT_FILE|METALINK_FILE ..."
  1691. msgstr "使い方: %s [options] URL|TORRENT_FILE|METALINK_FILE ..."
  1692. #: src/version_usage.cc:85
  1693. msgid "Printing all options."
  1694. msgstr "すべてのオプションを表示します."
  1695. #: src/version_usage.cc:87
  1696. #, c-format
  1697. msgid "Printing options tagged with '%s'."
  1698. msgstr "'%s' タグが付いたオプションのみ表示します."
  1699. #: src/version_usage.cc:91
  1700. #, c-format
  1701. msgid "See -h option to know other command-line options(%s)."
  1702. msgstr ""
  1703. "他のコマンドラインオプション(%s)について知るには, -h オプションを参照してくだ"
  1704. "さい."
  1705. #: src/version_usage.cc:95 src/version_usage.cc:104
  1706. msgid "Options:"
  1707. msgstr "オプション:"
  1708. #: src/version_usage.cc:102
  1709. #, c-format
  1710. msgid "Printing options whose name starts with '%s'."
  1711. msgstr "'%s' で始まるオプションを表示しています."
  1712. #: src/version_usage.cc:107
  1713. #, c-format
  1714. msgid "No help category or option name matching with '%s'."
  1715. msgstr "'%s' のヘルプカテゴリや, それで始まるオプションはありません."
  1716. #: src/version_usage.cc:114
  1717. msgid ""
  1718. " You can specify multiple URLs. Unless you specify -Z option, all URLs must\n"
  1719. " point to the same file or downloading will fail."
  1720. msgstr ""
  1721. " 複数の URL を指定できます. -Z オプションを指定しない限り, すべての\n"
  1722. " URL が同じファイルをさしている必要があります. そうでない場合, ダウ\n"
  1723. " ンロードは失敗します."
  1724. #: src/version_usage.cc:116
  1725. msgid ""
  1726. " You can also specify arbitrary number of torrent files and metalink files\n"
  1727. " stored in a local drive. Please note that they are always treated as a\n"
  1728. " separate download."
  1729. msgstr ""
  1730. " ローカルディスクに保存している torrent ファイルや metalink ファイルへのパス"
  1731. "を\n"
  1732. " 好きなだけ指定することができます. これらはそれぞれ独立してダウンロードされ"
  1733. "ま\n"
  1734. " す."
  1735. #: src/version_usage.cc:121
  1736. msgid ""
  1737. " You can specify both torrent file with -T option and URLs. By doing this,\n"
  1738. " download a file from both torrent swarm and http/ftp server at the same "
  1739. "time,\n"
  1740. " while the data from http/ftp are uploaded to the torrent swarm. Note that\n"
  1741. " only single file torrent can be integrated with http/ftp."
  1742. msgstr ""
  1743. " URL と -T で torrent ファイルとを同時に指定できます. これにより,\n"
  1744. " torrent と http/ftp サーバー方からファイルをダウンロードします.\n"
  1745. " http/ftp 経由でダウンロードしたデータも torrent のネットワークへ\n"
  1746. " アップロードされます. http/ftp と共にダウンロードできるのは, シン\n"
  1747. " グルファイル torrent だけです."
  1748. #: src/version_usage.cc:126
  1749. msgid ""
  1750. " Make sure that URL is quoted with single(') or double(\") quotation if it\n"
  1751. " contains \"&\" or any characters that have special meaning in shell."
  1752. msgstr ""
  1753. " URL に \"&\" やシェルにおいて特別な意味を持つ文字が含まれる場合, URL を ' ま"
  1754. "たは\n"
  1755. " \" で囲って(クォートして)ください."
  1756. #: src/version_usage.cc:130
  1757. msgid "Refer to man page for more information."
  1758. msgstr "より詳しい情報は man ページを参照してください."
  1759. #~ msgid ""
  1760. #~ "\n"
  1761. #~ "The download was complete. <%s>\n"
  1762. #~ msgstr ""
  1763. #~ "\n"
  1764. #~ "<%s> のダウンロードが完了しました.\n"
  1765. #~ msgid ""
  1766. #~ "\n"
  1767. #~ "Some downloads were not complete because of errors. Check the log.\n"
  1768. #~ "aria2 will resume download if the transfer is restarted."
  1769. #~ msgstr ""
  1770. #~ "\n"
  1771. #~ "ダウンロードはエラーのため完了していません. ログを確認してください.\n"
  1772. #~ "次回のダウンロードはエラーの時点から再開できます."
  1773. #~ msgid ""
  1774. #~ "File %s exists, but %s does not exist. The download was canceled in order "
  1775. #~ "to prevent your file from being truncated to 0. If you are sure to "
  1776. #~ "download file all over again, then delete it or add --allow-"
  1777. #~ "overwrite=true option and restart aria2."
  1778. #~ msgstr ""
  1779. #~ "ファイル %s が存在しますが, それに対応する %s が存在しません. ローカルディ"
  1780. #~ "スク上のファイルの上書きを防ぐためダウンロードはキャンセルされました. 本当"
  1781. #~ "に上書きダウンロードしてよいなら, --allow-overwrite=true を指定して aria2 "
  1782. #~ "を実行してください."
  1783. #~ msgid "Max payload length exceeded or invalid. length = %d"
  1784. #~ msgstr "ペイロード長が既定値を越えているか, 不正です. length=%d"
  1785. #~ msgid ""
  1786. #~ "This program is free software; you can redistribute it and/or modify\n"
  1787. #~ "it under the terms of the GNU General Public License as published by\n"
  1788. #~ "the Free Software Foundation; either version 2 of the License, or\n"
  1789. #~ "(at your option) any later version.\n"
  1790. #~ "\n"
  1791. #~ "This program is distributed in the hope that it will be useful,\n"
  1792. #~ "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  1793. #~ "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
  1794. #~ "GNU General Public License for more details.\n"
  1795. #~ "\n"
  1796. #~ "You should have received a copy of the GNU General Public License\n"
  1797. #~ "along with this program; if not, write to the Free Software\n"
  1798. #~ "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-"
  1799. #~ "1301 USA\n"
  1800. #~ msgstr ""
  1801. #~ "This program is free software; you can redistribute it and/or modify\n"
  1802. #~ "it under the terms of the GNU General Public License as published by\n"
  1803. #~ "the Free Software Foundation; either version 2 of the License, or\n"
  1804. #~ "(at your option) any later version.\n"
  1805. #~ "\n"
  1806. #~ "This program is distributed in the hope that it will be useful,\n"
  1807. #~ "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  1808. #~ "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
  1809. #~ "GNU General Public License for more details.\n"
  1810. #~ "\n"
  1811. #~ "You should have received a copy of the GNU General Public License\n"
  1812. #~ "along with this program; if not, write to the Free Software\n"
  1813. #~ "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-"
  1814. #~ "1301 USA\n"
  1815. #~ msgid "Contact Info:"
  1816. #~ msgstr "連絡先:"
  1817. #~ msgid "Usage: %s [options] URL ...\n"
  1818. #~ msgstr "使い方: %s [オプション] URL ...\n"
  1819. #~ msgid " %s [options] -M METALINK_FILE\n"
  1820. #~ msgstr " %s [オプション] -M METALINK_FILE\n"
  1821. #~ msgid ""
  1822. #~ " --check-integrity=true|false Check file integrity by validating piece "
  1823. #~ "hash.\n"
  1824. #~ " This option only affects in BitTorrent "
  1825. #~ "downloads\n"
  1826. #~ " and Metalink downloads with chunk "
  1827. #~ "checksums.\n"
  1828. #~ " Use this option to re-download a damaged "
  1829. #~ "portion\n"
  1830. #~ " of a file.\n"
  1831. #~ " You may need to specify --allow-"
  1832. #~ "overwrite=true\n"
  1833. #~ " if the .aria2 file doesn't exist.\n"
  1834. #~ " Default: false"
  1835. #~ msgstr ""
  1836. #~ " --check-integrity=true|false ファイルを部分チェックサムにより, 正常にダ"
  1837. #~ "ウンロ\n"
  1838. #~ " ードされているか検証します.\n"
  1839. #~ " BitTorrent と 部分チェックサム付きの "
  1840. #~ "Metalink で\n"
  1841. #~ " 使用できます.\n"
  1842. #~ " 誤りのある部分だけをダウンロードしなおせばよ"
  1843. #~ "いの\n"
  1844. #~ " で便利です. -c オプションと組み合わせるとよ"
  1845. #~ "い\n"
  1846. #~ " かもしれません.\n"
  1847. #~ " デフォルト値: false"
  1848. #~ msgid ""
  1849. #~ " -j, --max-concurrent-downloads=N Set maximum number of concurrent "
  1850. #~ "downloads.\n"
  1851. #~ " It should be used with the -i option.\n"
  1852. #~ " Default: 5"
  1853. #~ msgstr ""
  1854. #~ " -j, --max-concurrent-downloads=N 同時ダウンロード数を指定します. -i オプ"
  1855. #~ "ション\n"
  1856. #~ " と共に使ってください.\n"
  1857. #~ " デフォルト値: 5"
  1858. #~ msgid ""
  1859. #~ " -S, --show-files Print file listing of .torrent or .metalink "
  1860. #~ "file\n"
  1861. #~ " and exit."
  1862. #~ msgstr ""
  1863. #~ " -S, --show-files .torrent/.metalink ファイルに含まれるファイ"
  1864. #~ "ル\n"
  1865. #~ " リストを出力し終了します."
  1866. #~ msgid ""
  1867. #~ " --follow-torrent=true|false Set to false to prevent aria2 from\n"
  1868. #~ " entering BitTorrent mode even if the "
  1869. #~ "filename of\n"
  1870. #~ " the downloaded file ends with .torrent.\n"
  1871. #~ " Default: true"
  1872. #~ msgstr ""
  1873. #~ " --follow-torrent=true|false このオプションを false に設定すると, ダウン"
  1874. #~ "ロード\n"
  1875. #~ " したファイルの拡張子が .torrent であっても, "
  1876. #~ "aria2\n"
  1877. #~ " は, BitTorrent モードに入りません.\n"
  1878. #~ " デフォルト値: true"
  1879. #~ msgid ""
  1880. #~ " --listen-port=PORT Set TCP port number for BitTorrent "
  1881. #~ "downloads.\n"
  1882. #~ " Default: 6881-6999"
  1883. #~ msgstr ""
  1884. #~ " --listen-port=PORT ピアからの接続を受け付けるポート番号を指"
  1885. #~ "定.\n"
  1886. #~ " デフォルト値: 6881-6999"
  1887. #~ msgid ""
  1888. #~ " --seed-ratio=RATIO Specify share ratio. Seed completed "
  1889. #~ "torrents\n"
  1890. #~ " until share ratio reaches RATIO. 1.0 is\n"
  1891. #~ " encouraged. If --seed-time option is "
  1892. #~ "specified\n"
  1893. #~ " along with this option, seeding ends when "
  1894. #~ "at\n"
  1895. #~ " least one of the conditions is satisfied."
  1896. #~ msgstr ""
  1897. #~ " --seed-ratio=RATIO シェアレシオを指定します. シェアレシオが "
  1898. #~ "RATIO に\n"
  1899. #~ " 達するとシードを終了します. コミュニティのた"
  1900. #~ "めに\n"
  1901. #~ " 1.0 を強く推奨します.\n"
  1902. #~ " --seed-time オプションと共に使用した場合, 少"
  1903. #~ "なく\n"
  1904. #~ " とも一方の条件が成立するとシードを終了しま"
  1905. #~ "す."
  1906. #~ msgid ""
  1907. #~ " --peer-id-prefix=PEERI_ID_PREFIX Specify the prefix of peer ID. The peer "
  1908. #~ "ID in\n"
  1909. #~ " in BitTorrent is 20 byte length. If more "
  1910. #~ "than 20\n"
  1911. #~ " bytes are specified, only first 20\n"
  1912. #~ " bytes are used. If less than 20 bytes are\n"
  1913. #~ " specified, the random alphabet characters "
  1914. #~ "are\n"
  1915. #~ " added to make it's length 20 bytes.\n"
  1916. #~ " Default: -aria2-"
  1917. #~ msgstr ""
  1918. #~ " --peer-id-prefix=PEERI_ID_PREFIX peer ID を指定します. BitTorrent におい"
  1919. #~ "て,\n"
  1920. #~ " peer ID は, 20 バイトです. 20 バイトを越え"
  1921. #~ "て指\n"
  1922. #~ " 定した場合, 先頭から 20 バイトが使用されま"
  1923. #~ "す.\n"
  1924. #~ " 20 バイトに満たない文字列を指定した場合, ラ"
  1925. #~ "ンダ\n"
  1926. #~ " ムなアルファベットを付加して 20 バイトにし"
  1927. #~ "ます.\n"
  1928. #~ " デフォルト値: -aria2-"
  1929. #~ msgid ""
  1930. #~ " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  1931. #~ " simultaneously.\n"
  1932. #~ " Default: 5"
  1933. #~ msgstr ""
  1934. #~ " -C, --metalink-servers=NUM_SERVERS 同時に接続するサーバの数を指定しま"
  1935. #~ "す.\n"
  1936. #~ " デフォルト値: 5"
  1937. #~ msgid ""
  1938. #~ " --follow-metalink=true|false Set to false to prevent aria2 from\n"
  1939. #~ " entering Metalink mode even if the filename "
  1940. #~ "of\n"
  1941. #~ " the downloaded file ends with .metalink.\n"
  1942. #~ " Default: true"
  1943. #~ msgstr ""
  1944. #~ " --follow-metalink=true|false このオプションを false に設定すると, ダウン"
  1945. #~ "ロード\n"
  1946. #~ " したファイルの拡張子が .metalink であって"
  1947. #~ "も, aria2\n"
  1948. #~ " は, Metalink モードに入りません.\n"
  1949. #~ " デフォルト値: true"
  1950. #~ msgid " -h, --help Print this message and exit."
  1951. #~ msgstr ""
  1952. #~ " -h, --help このヘルプメッセージを表示し, 終了します."
  1953. #~ msgid ""
  1954. #~ " You can specify multiple URLs. All URLs must point to the same file\n"
  1955. #~ " or downloading will fail."
  1956. #~ msgstr ""
  1957. #~ " 複数の URL を指定できます. ただし, すべての URL が同じファイルを指してい"
  1958. #~ "なけれ\n"
  1959. #~ " ばなりません. さもなくばダウンロードは失敗します."
  1960. #~ msgid "Examples:"
  1961. #~ msgstr "例:"
  1962. #~ msgid " Download a file using 1 connection:"
  1963. #~ msgstr " 1 コネクションでのダウンロード:"
  1964. #~ msgid " Download a file using 2 connections:"
  1965. #~ msgstr " 2 コネクションでのダウンロード:"
  1966. #~ msgid ""
  1967. #~ " Download a file using 2 connections, each connects to a different server:"
  1968. #~ msgstr " 二つの異なるサーバーに接続してダウンロード:"
  1969. #~ msgid " You can mix up different protocols:"
  1970. #~ msgstr " 異なるプロトコルを混合させてダウンロード:"
  1971. #~ msgid " Parameterized URI:"
  1972. #~ msgstr " パラメータ化された URI:"
  1973. #~ msgid " Parameterized URI. -Z option is required in this case:"
  1974. #~ msgstr " パラメータ化された URI. この場合, -Z オプションが必要:"
  1975. #~ msgid " Download a torrent:"
  1976. #~ msgstr " torrent をダウンロード:"
  1977. #~ msgid " Download a torrent using a local .torrent file:"
  1978. #~ msgstr " ローカル .torrent ファイルを使ってダウンロード:"
  1979. #~ msgid " Download only selected files:"
  1980. #~ msgstr " ファイルを指定してダウンロード:"
  1981. #~ msgid " Print file listing of .torrent file:"
  1982. #~ msgstr " この .torrent ファイルに含まれるファイルリストを表示:"
  1983. #~ msgid " Metalink downloading:"
  1984. #~ msgstr " Metalink でダウンロード:"
  1985. #~ msgid " Download a file using local .metalink file:"
  1986. #~ msgstr " ローカル .metalink ファイルを使ってダウンロード:"
  1987. #~ msgid " Metalink downloading with preferences:"
  1988. #~ msgstr " ユーザ設定による Metalink ダウンロード:"
  1989. #~ msgid " Download only selected files using index:"
  1990. #~ msgstr " ファイルのインデックスを指定してダウンロード:"
  1991. #~ msgid " Print file listing of .metalink file:"
  1992. #~ msgstr " この .metalink ファイルに含まれるファイルリストを表示:"
  1993. #~ msgid " %s [options] -T TORRENT_FILE URL ...\n"
  1994. #~ msgstr " %s [オプション] -T TORRENT_FILE URL ...\n"
  1995. #~ msgid ""
  1996. #~ " --no-file-allocation-limit=SIZE No file allocation is made for files "
  1997. #~ "whose\n"
  1998. #~ " size is smaller than SIZE.\n"
  1999. #~ " You can append K or M(1K = 1024, 1M = "
  2000. #~ "1024K).\n"
  2001. #~ " BitTorrent downloads ignore this option.\n"
  2002. #~ " Default: 5M"
  2003. #~ msgstr ""
  2004. #~ " --no-file-allocation-limit=SIZE 指定した SIZE 以下のファイルに対して, "
  2005. #~ "ファイル\n"
  2006. #~ " 領域確保を行いません.\n"
  2007. #~ " K または M を付加することができます (1K = "
  2008. #~ "1024,\n"
  2009. #~ " 1M = 1024K). このオプションは, BitTorrent ダ"
  2010. #~ "ウンロ\n"
  2011. #~ " ードには影響しません.\n"
  2012. #~ " デフォルト値: 5M"