ja.po 82 KB

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