ja.po 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604
  1. # Japanese mesasges for apt.
  2. # Copyright (C) 2001 Free Software Foundation, Inc.
  3. # Project Vine, Daisuke SUZUKI <daisuke@linux.or.jp>, 2001-2002
  4. # Debian Project, Masato Taruishi <taru@debian.org>, 2002
  5. # Debian Project, Keita Maehara <maehara@debian.org>, 2003
  6. # Debian Project, Kenshi Muto <kmuto@debian.org>, 2004
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: apt 0.6\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2005-07-02 11:19-0700\n"
  12. "PO-Revision-Date: 2005-02-09 12:54+0900\n"
  13. "Last-Translator: Kenshi Muto <kmuto@debian.org>\n"
  14. "Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=EUC-JP\n"
  17. "Content-Transfer-Encoding: 8 bit\n"
  18. #: cmdline/apt-cache.cc:135
  19. #, c-format
  20. msgid "Package %s version %s has an unmet dep:\n"
  21. msgstr "パッケージ %s のバージョン %s には解決不可能な依存関係があります:\n"
  22. #: cmdline/apt-cache.cc:175 cmdline/apt-cache.cc:527 cmdline/apt-cache.cc:615
  23. #: cmdline/apt-cache.cc:771 cmdline/apt-cache.cc:989 cmdline/apt-cache.cc:1357
  24. #: cmdline/apt-cache.cc:1508
  25. #, c-format
  26. msgid "Unable to locate package %s"
  27. msgstr "パッケージ %s を見つけることができません"
  28. #: cmdline/apt-cache.cc:232
  29. msgid "Total package names : "
  30. msgstr "パッケージ名総数: "
  31. #: cmdline/apt-cache.cc:272
  32. msgid " Normal packages: "
  33. msgstr " 通常パッケージ: "
  34. #: cmdline/apt-cache.cc:273
  35. msgid " Pure virtual packages: "
  36. msgstr " 純粋仮想パッケージ: "
  37. #: cmdline/apt-cache.cc:274
  38. msgid " Single virtual packages: "
  39. msgstr " 単一仮想パッケージ: "
  40. #: cmdline/apt-cache.cc:275
  41. msgid " Mixed virtual packages: "
  42. msgstr " 複合仮想パッケージ: "
  43. #: cmdline/apt-cache.cc:276
  44. msgid " Missing: "
  45. msgstr " 欠落: "
  46. #: cmdline/apt-cache.cc:278
  47. msgid "Total distinct versions: "
  48. msgstr "個別バージョン総数: "
  49. #: cmdline/apt-cache.cc:280
  50. msgid "Total dependencies: "
  51. msgstr "依存関係総数: "
  52. #: cmdline/apt-cache.cc:283
  53. msgid "Total ver/file relations: "
  54. msgstr "バージョン/ファイル関係総数: "
  55. #: cmdline/apt-cache.cc:285
  56. msgid "Total Provides mappings: "
  57. msgstr "提供マッピング総数: "
  58. #: cmdline/apt-cache.cc:297
  59. msgid "Total globbed strings: "
  60. msgstr "Glob 文字列の総数: "
  61. #: cmdline/apt-cache.cc:311
  62. msgid "Total dependency version space: "
  63. msgstr "総依存関係・バージョン容量: "
  64. #: cmdline/apt-cache.cc:316
  65. msgid "Total slack space: "
  66. msgstr "総空き容量: "
  67. #: cmdline/apt-cache.cc:324
  68. msgid "Total space accounted for: "
  69. msgstr "総占有容量: "
  70. #: cmdline/apt-cache.cc:446 cmdline/apt-cache.cc:1189
  71. #, c-format
  72. msgid "Package file %s is out of sync."
  73. msgstr "Package ファイル %s が同期していません。"
  74. #: cmdline/apt-cache.cc:1231
  75. msgid "You must give exactly one pattern"
  76. msgstr "パターンはちょうど 1 つだけ指定してください"
  77. #: cmdline/apt-cache.cc:1385
  78. msgid "No packages found"
  79. msgstr "パッケージが見つかりません"
  80. #: cmdline/apt-cache.cc:1462
  81. msgid "Package files:"
  82. msgstr "パッケージファイル:"
  83. #: cmdline/apt-cache.cc:1469 cmdline/apt-cache.cc:1555
  84. msgid "Cache is out of sync, can't x-ref a package file"
  85. msgstr "キャッシュが同期しておらず、パッケージファイルを相互参照できません"
  86. #: cmdline/apt-cache.cc:1470
  87. #, c-format
  88. msgid "%4i %s\n"
  89. msgstr "%4i %s\n"
  90. #. Show any packages have explicit pins
  91. #: cmdline/apt-cache.cc:1482
  92. msgid "Pinned packages:"
  93. msgstr "Pin パッケージ:"
  94. #: cmdline/apt-cache.cc:1494 cmdline/apt-cache.cc:1535
  95. msgid "(not found)"
  96. msgstr "(見つかりません)"
  97. #. Installed version
  98. #: cmdline/apt-cache.cc:1515
  99. msgid " Installed: "
  100. msgstr " インストールされているバージョン: "
  101. #: cmdline/apt-cache.cc:1517 cmdline/apt-cache.cc:1525
  102. msgid "(none)"
  103. msgstr "(なし)"
  104. #. Candidate Version
  105. #: cmdline/apt-cache.cc:1522
  106. msgid " Candidate: "
  107. msgstr " 候補: "
  108. #: cmdline/apt-cache.cc:1532
  109. msgid " Package pin: "
  110. msgstr " パッケージ Pin: "
  111. #. Show the priority tables
  112. #: cmdline/apt-cache.cc:1541
  113. msgid " Version table:"
  114. msgstr " バージョンテーブル:"
  115. #: cmdline/apt-cache.cc:1556
  116. #, c-format
  117. msgid " %4i %s\n"
  118. msgstr " %4i %s\n"
  119. #: cmdline/apt-cache.cc:1651 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
  120. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:545
  121. #: cmdline/apt-get.cc:2322 cmdline/apt-sortpkgs.cc:144
  122. #, c-format
  123. msgid "%s %s for %s %s compiled on %s %s\n"
  124. msgstr "%s %s for %s %s コンパイル日時: %s %s\n"
  125. #: cmdline/apt-cache.cc:1658
  126. msgid ""
  127. "Usage: apt-cache [options] command\n"
  128. " apt-cache [options] add file1 [file2 ...]\n"
  129. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  130. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  131. "\n"
  132. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  133. "cache files, and query information from them\n"
  134. "\n"
  135. "Commands:\n"
  136. " add - Add a package file to the source cache\n"
  137. " gencaches - Build both the package and source cache\n"
  138. " showpkg - Show some general information for a single package\n"
  139. " showsrc - Show source records\n"
  140. " stats - Show some basic statistics\n"
  141. " dump - Show the entire file in a terse form\n"
  142. " dumpavail - Print an available file to stdout\n"
  143. " unmet - Show unmet dependencies\n"
  144. " search - Search the package list for a regex pattern\n"
  145. " show - Show a readable record for the package\n"
  146. " depends - Show raw dependency information for a package\n"
  147. " rdepends - Show reverse dependency information for a package\n"
  148. " pkgnames - List the names of all packages\n"
  149. " dotty - Generate package graphs for GraphVis\n"
  150. " xvcg - Generate package graphs for xvcg\n"
  151. " policy - Show policy settings\n"
  152. "\n"
  153. "Options:\n"
  154. " -h This help text.\n"
  155. " -p=? The package cache.\n"
  156. " -s=? The source cache.\n"
  157. " -q Disable progress indicator.\n"
  158. " -i Show only important deps for the unmet command.\n"
  159. " -c=? Read this configuration file\n"
  160. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  161. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  162. msgstr ""
  163. "使用方法: apt-cache [オプション] コマンド\n"
  164. " apt-cache [オプション] add file1 [file2 ...]\n"
  165. " apt-cache [オプション] showpkg pkg1 [pkg2 ...]\n"
  166. " apt-cache [オプション] showsrc pkg1 [pkg2 ...]\n"
  167. "\n"
  168. "apt-cache は APT のバイナリキャッシュファイルを操作したり、そこから情\n"
  169. "報を検索したりするための低レベルのツールです\n"
  170. "\n"
  171. "コマンド:\n"
  172. " add - パッケージファイルをソースキャッシュに追加する\n"
  173. " gencaches - パッケージおよびソースキャッシュを生成する\n"
  174. " showpkg - 単一パッケージの一般情報を表示する\n"
  175. " showsrc - ソースレコードを表示する\n"
  176. " stats - 基本ステータス情報を表示する\n"
  177. " dump - 全てのファイルを簡単な形式で表示する\n"
  178. " dumpavail - available ファイルを標準出力に出力する\n"
  179. " unmet - 未解決の依存関係を表示する\n"
  180. " search - 正規表現パターンによってパッケージを検索する\n"
  181. " show - パッケージの情報を表示する\n"
  182. " depends - パッケージが依存しているパッケージを表示する\n"
  183. " rdepends - パッケージの逆依存情報を表示する\n"
  184. " pkgnames - 全てのパッケージ名を表示する\n"
  185. " dotty - GraphVis 用のパッケージグラフを生成する\n"
  186. " xvcg - xvcg 用のパッケージグラフを生成する\n"
  187. " policy - ポリシー設定情報を表示する\n"
  188. "\n"
  189. "オプション:\n"
  190. " -h このヘルプを表示する\n"
  191. " -p=? パッケージキャッシュ\n"
  192. " -s=? ソースキャッシュ\n"
  193. " -q プログレス表示をしない\n"
  194. " -i umnet コマンドで重要な依存情報のみを表示する\n"
  195. " -c=? 指定した設定ファイルを読み込む\n"
  196. " -o=? 指定した設定オプションを読み込む (例: -o dir::cache=/tmp)\n"
  197. "詳細は、apt-cache(8) や apt.conf(5) のマニュアルページを参照してください。\n"
  198. #: cmdline/apt-config.cc:41
  199. msgid "Arguments not in pairs"
  200. msgstr "引数がペアではありません"
  201. #: cmdline/apt-config.cc:76
  202. msgid ""
  203. "Usage: apt-config [options] command\n"
  204. "\n"
  205. "apt-config is a simple tool to read the APT config file\n"
  206. "\n"
  207. "Commands:\n"
  208. " shell - Shell mode\n"
  209. " dump - Show the configuration\n"
  210. "\n"
  211. "Options:\n"
  212. " -h This help text.\n"
  213. " -c=? Read this configuration file\n"
  214. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  215. msgstr ""
  216. "使用方法: apt-config [オプション] コマンド\n"
  217. "\n"
  218. "apt-config は APT の設定ファイルを読み込むための簡単なツールです\n"
  219. "\n"
  220. "コマンド:\n"
  221. " shell - シェルモード\n"
  222. " dump - 設定情報を表示する\n"
  223. "\n"
  224. "オプション:\n"
  225. " -h このヘルプを表示する\n"
  226. " -c=? 指定した設定ファイルを読みこむ\n"
  227. " -o=? 指定した設定オプションを適用する(例: -o dir::cache=/tmp)\n"
  228. #: cmdline/apt-extracttemplates.cc:98
  229. #, c-format
  230. msgid "%s not a valid DEB package."
  231. msgstr "%s は正しい DEB パッケージではありません。"
  232. #: cmdline/apt-extracttemplates.cc:232
  233. msgid ""
  234. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  235. "\n"
  236. "apt-extracttemplates is a tool to extract config and template info\n"
  237. "from debian packages\n"
  238. "\n"
  239. "Options:\n"
  240. " -h This help text\n"
  241. " -t Set the temp dir\n"
  242. " -c=? Read this configuration file\n"
  243. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  244. msgstr ""
  245. "使用方法: apt-extracttemplates ファイル名1 [ファイル名2 ...]\n"
  246. "\n"
  247. "apt-extracttemplates は debian パッケージから設定とテンプレート情報を\n"
  248. "抽出するためのツールです\n"
  249. "\n"
  250. "オプション:\n"
  251. " -h このヘルプを表示する\n"
  252. " -t 一時ディレクトリを指定する\n"
  253. " -c=? 指定した設定ファイルを読みこむ\n"
  254. " -o=? 指定した設定オプションを適用する(例: -o dir::cache=/tmp)\n"
  255. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:710
  256. #, c-format
  257. msgid "Unable to write to %s"
  258. msgstr "%s に書き込めません"
  259. #: cmdline/apt-extracttemplates.cc:310
  260. msgid "Cannot get debconf version. Is debconf installed?"
  261. msgstr ""
  262. "debconf のバージョンを取得できません。debconf はインストールされていますか?"
  263. #: ftparchive/apt-ftparchive.cc:163 ftparchive/apt-ftparchive.cc:337
  264. msgid "Package extension list is too long"
  265. msgstr "パッケージ拡張子リストが長過ぎます"
  266. #: ftparchive/apt-ftparchive.cc:165 ftparchive/apt-ftparchive.cc:179
  267. #: ftparchive/apt-ftparchive.cc:202 ftparchive/apt-ftparchive.cc:252
  268. #: ftparchive/apt-ftparchive.cc:266 ftparchive/apt-ftparchive.cc:288
  269. #, c-format
  270. msgid "Error processing directory %s"
  271. msgstr "ディレクトリ %s の処理中にエラーが発生しました"
  272. #: ftparchive/apt-ftparchive.cc:250
  273. msgid "Source extension list is too long"
  274. msgstr "ソース拡張子リストが長過ぎます"
  275. #: ftparchive/apt-ftparchive.cc:367
  276. msgid "Error writing header to contents file"
  277. msgstr "Contents ファイルへのヘッダの書き込み中にエラーが発生しました"
  278. #: ftparchive/apt-ftparchive.cc:397
  279. #, c-format
  280. msgid "Error processing contents %s"
  281. msgstr "Contents %s の処理中にエラーが発生しました"
  282. #: ftparchive/apt-ftparchive.cc:551
  283. #, fuzzy
  284. msgid ""
  285. "Usage: apt-ftparchive [options] command\n"
  286. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  287. " sources srcpath [overridefile [pathprefix]]\n"
  288. " contents path\n"
  289. " release path\n"
  290. " generate config [groups]\n"
  291. " clean config\n"
  292. "\n"
  293. "apt-ftparchive generates index files for Debian archives. It supports\n"
  294. "many styles of generation from fully automated to functional replacements\n"
  295. "for dpkg-scanpackages and dpkg-scansources\n"
  296. "\n"
  297. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  298. "Package file contains the contents of all the control fields from\n"
  299. "each package as well as the MD5 hash and filesize. An override file\n"
  300. "is supported to force the value of Priority and Section.\n"
  301. "\n"
  302. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  303. "The --source-override option can be used to specify a src override file\n"
  304. "\n"
  305. "The 'packages' and 'sources' command should be run in the root of the\n"
  306. "tree. BinaryPath should point to the base of the recursive search and \n"
  307. "override file should contain the override flags. Pathprefix is\n"
  308. "appended to the filename fields if present. Example usage from the \n"
  309. "Debian archive:\n"
  310. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  311. " dists/potato/main/binary-i386/Packages\n"
  312. "\n"
  313. "Options:\n"
  314. " -h This help text\n"
  315. " --md5 Control MD5 generation\n"
  316. " -s=? Source override file\n"
  317. " -q Quiet\n"
  318. " -d=? Select the optional caching database\n"
  319. " --no-delink Enable delinking debug mode\n"
  320. " --contents Control contents file generation\n"
  321. " -c=? Read this configuration file\n"
  322. " -o=? Set an arbitrary configuration option"
  323. msgstr ""
  324. "使用方法: apt-ftparchive [オプション] コマンド\n"
  325. "コマンド: packages binarypath [overridefile [pathprefix]]\n"
  326. " sources srcpath [overridefile [pathprefix]]\n"
  327. " contents path\n"
  328. " release path\n"
  329. " generate config [groups]\n"
  330. " clean config\n"
  331. "\n"
  332. "apt-ftparchive は Debian アーカイブ用のインデックスファイルを生成しま\n"
  333. "す。全自動のものから、dpkg-scanpackages と dpkg-scansources の代替機能\n"
  334. "となるものまで、多くの生成方法をサポートしています。\n"
  335. "\n"
  336. "apt-ftparchive は .deb のツリーから Packages ファイルを生成します。\n"
  337. "Packages ファイルは MD5 ハッシュやファイルサイズに加えて、各パッケージ\n"
  338. "のすべての制御フィールドの内容を含んでいます。Priority と Section の値\n"
  339. "を強制するために override ファイルがサポートされています。\n"
  340. "\n"
  341. "同様に apt-ftparchive は .dsc のツリーから Sources ファイルを生成しま\n"
  342. "す。--source-override オプションを使用するとソース override ファイルを\n"
  343. "指定できます。\n"
  344. "\n"
  345. "'packages' および 'sources' コマンドはツリーのルートで実行する必要があ\n"
  346. "ります。BinaryPath には再帰検索のベースディレクトリを指定し、override \n"
  347. "ファイルは override フラグを含んでいる必要があります。もし pathprefix \n"
  348. "が存在すればファイル名フィールドに付加されます。debian アーカイブでの\n"
  349. "使用方法の例:\n"
  350. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  351. " dists/potato/main/binary-i386/Packages\n"
  352. "\n"
  353. "オプション:\n"
  354. " -h このヘルプを表示する\n"
  355. " --md5 MD5 の生成を制御する\n"
  356. " -s=? ソース override ファイル\n"
  357. " -q 表示を抑制する\n"
  358. " -d=? オプションのキャッシュデータベースを選択する\n"
  359. " --no-delink delinking デバッグモードを有効にする\n"
  360. " --contents contents ファイルの生成を制御する\n"
  361. " -c=? 指定の設定ファイルを読む\n"
  362. " -o=? 任意の設定オプションを設定する"
  363. #: ftparchive/apt-ftparchive.cc:757
  364. msgid "No selections matched"
  365. msgstr "選択にマッチするものがありません"
  366. #: ftparchive/apt-ftparchive.cc:830
  367. #, c-format
  368. msgid "Some files are missing in the package file group `%s'"
  369. msgstr "パッケージファイルグループ `%s' に見あたらないファイルがあります"
  370. #: ftparchive/cachedb.cc:45
  371. #, c-format
  372. msgid "DB was corrupted, file renamed to %s.old"
  373. msgstr "DB が壊れていたため、ファイル名を %s.old に変更しました"
  374. #: ftparchive/cachedb.cc:63
  375. #, c-format
  376. msgid "DB is old, attempting to upgrade %s"
  377. msgstr "DB が古いため、%s のアップグレードを試みます"
  378. #: ftparchive/cachedb.cc:73
  379. #, c-format
  380. msgid "Unable to open DB file %s: %s"
  381. msgstr "DB ファイル %s を開くことができません: %s"
  382. #: ftparchive/cachedb.cc:114
  383. #, c-format
  384. msgid "File date has changed %s"
  385. msgstr "ファイル %s の日付が変更されています"
  386. #: ftparchive/cachedb.cc:155
  387. msgid "Archive has no control record"
  388. msgstr "アーカイブに制御レコードがありません"
  389. #: ftparchive/cachedb.cc:267
  390. msgid "Unable to get a cursor"
  391. msgstr "カーソルを取得できません"
  392. #: ftparchive/writer.cc:79
  393. #, c-format
  394. msgid "W: Unable to read directory %s\n"
  395. msgstr "警告: ディレクトリ %s が読めません\n"
  396. #: ftparchive/writer.cc:84
  397. #, c-format
  398. msgid "W: Unable to stat %s\n"
  399. msgstr "警告: %s を stat できません\n"
  400. #: ftparchive/writer.cc:126
  401. msgid "E: "
  402. msgstr "エラー: "
  403. #: ftparchive/writer.cc:128
  404. msgid "W: "
  405. msgstr "警告: "
  406. #: ftparchive/writer.cc:135
  407. msgid "E: Errors apply to file "
  408. msgstr "エラー: エラーが適用されるファイルは "
  409. #: ftparchive/writer.cc:152 ftparchive/writer.cc:182
  410. #, c-format
  411. msgid "Failed to resolve %s"
  412. msgstr "%s の解決に失敗しました"
  413. #: ftparchive/writer.cc:164
  414. msgid "Tree walking failed"
  415. msgstr "ツリー内での移動に失敗しました"
  416. #: ftparchive/writer.cc:189
  417. #, c-format
  418. msgid "Failed to open %s"
  419. msgstr "%s のオープンに失敗しました"
  420. #: ftparchive/writer.cc:246
  421. #, c-format
  422. msgid " DeLink %s [%s]\n"
  423. msgstr " リンク %s [%s] を外します\n"
  424. #: ftparchive/writer.cc:254
  425. #, c-format
  426. msgid "Failed to readlink %s"
  427. msgstr "%s の readlink に失敗しました"
  428. #: ftparchive/writer.cc:258
  429. #, c-format
  430. msgid "Failed to unlink %s"
  431. msgstr "%s の unlink に失敗しました"
  432. #: ftparchive/writer.cc:265
  433. #, c-format
  434. msgid "*** Failed to link %s to %s"
  435. msgstr "*** %s を %s にリンクするのに失敗しました"
  436. #: ftparchive/writer.cc:275
  437. #, c-format
  438. msgid " DeLink limit of %sB hit.\n"
  439. msgstr " リンクを外す制限の %sB に到達しました。\n"
  440. #: ftparchive/writer.cc:358 apt-inst/extract.cc:181 apt-inst/extract.cc:193
  441. #: apt-inst/extract.cc:210 apt-inst/deb/dpkgdb.cc:121
  442. #, c-format
  443. msgid "Failed to stat %s"
  444. msgstr "%s の stat に失敗しました"
  445. #: ftparchive/writer.cc:378
  446. msgid "Archive had no package field"
  447. msgstr "アーカイブにパッケージフィールドがありませんでした"
  448. #: ftparchive/writer.cc:386 ftparchive/writer.cc:595
  449. #, c-format
  450. msgid " %s has no override entry\n"
  451. msgstr " %s に override エントリがありません\n"
  452. #: ftparchive/writer.cc:429 ftparchive/writer.cc:677
  453. #, c-format
  454. msgid " %s maintainer is %s not %s\n"
  455. msgstr " %1$s メンテナは %3$s ではなく %2$s です\n"
  456. #: ftparchive/contents.cc:317
  457. #, c-format
  458. msgid "Internal error, could not locate member %s"
  459. msgstr "内部エラー、メンバ %s を特定できません"
  460. #: ftparchive/contents.cc:353 ftparchive/contents.cc:384
  461. msgid "realloc - Failed to allocate memory"
  462. msgstr "realloc - メモリの割り当てに失敗しました"
  463. #: ftparchive/override.cc:38 ftparchive/override.cc:146
  464. #, c-format
  465. msgid "Unable to open %s"
  466. msgstr "'%s' をオープンできません"
  467. #: ftparchive/override.cc:64 ftparchive/override.cc:170
  468. #, c-format
  469. msgid "Malformed override %s line %lu #1"
  470. msgstr "不正な override %s %lu 行目 #1"
  471. #: ftparchive/override.cc:78 ftparchive/override.cc:182
  472. #, c-format
  473. msgid "Malformed override %s line %lu #2"
  474. msgstr "不正な override %s %lu 行目 #2"
  475. #: ftparchive/override.cc:92 ftparchive/override.cc:195
  476. #, c-format
  477. msgid "Malformed override %s line %lu #3"
  478. msgstr "不正な override %s %lu 行目 #3"
  479. #: ftparchive/override.cc:131 ftparchive/override.cc:205
  480. #, c-format
  481. msgid "Failed to read the override file %s"
  482. msgstr "override ファイル %s を読み込むのに失敗しました"
  483. #: ftparchive/multicompress.cc:75
  484. #, c-format
  485. msgid "Unknown compression algorithm '%s'"
  486. msgstr "'%s' は未知の圧縮アルゴリズムです"
  487. #: ftparchive/multicompress.cc:105
  488. #, c-format
  489. msgid "Compressed output %s needs a compression set"
  490. msgstr "圧縮出力 %s には圧縮セットが必要です"
  491. #: ftparchive/multicompress.cc:172 methods/rsh.cc:91
  492. msgid "Failed to create IPC pipe to subprocess"
  493. msgstr "子プロセスへの IPC パイプの作成に失敗しました"
  494. #: ftparchive/multicompress.cc:198
  495. msgid "Failed to create FILE*"
  496. msgstr "FILE* の作成に失敗しました"
  497. #: ftparchive/multicompress.cc:201
  498. msgid "Failed to fork"
  499. msgstr "fork に失敗しました"
  500. #: ftparchive/multicompress.cc:215
  501. msgid "Compress child"
  502. msgstr "圧縮子プロセス"
  503. #: ftparchive/multicompress.cc:238
  504. #, c-format
  505. msgid "Internal error, failed to create %s"
  506. msgstr "内部エラー、%s の作成に失敗しました"
  507. #: ftparchive/multicompress.cc:289
  508. msgid "Failed to create subprocess IPC"
  509. msgstr "子プロセス IPC の生成に失敗しました"
  510. #: ftparchive/multicompress.cc:324
  511. msgid "Failed to exec compressor "
  512. msgstr "以下の圧縮ツールの実行に失敗しました: "
  513. #: ftparchive/multicompress.cc:363
  514. msgid "decompressor"
  515. msgstr "展開ツール"
  516. #: ftparchive/multicompress.cc:406
  517. msgid "IO to subprocess/file failed"
  518. msgstr "子プロセス/ファイルへの IO が失敗しました"
  519. #: ftparchive/multicompress.cc:458
  520. msgid "Failed to read while computing MD5"
  521. msgstr "MD5 の計算中に読み込みに失敗しました"
  522. #: ftparchive/multicompress.cc:475
  523. #, c-format
  524. msgid "Problem unlinking %s"
  525. msgstr "%s の unlink で問題が発生しました"
  526. #: ftparchive/multicompress.cc:490 apt-inst/extract.cc:188
  527. #, c-format
  528. msgid "Failed to rename %s to %s"
  529. msgstr "%s を %s にリネームできませんでした"
  530. #: cmdline/apt-get.cc:118
  531. msgid "Y"
  532. msgstr "Y"
  533. #: cmdline/apt-get.cc:140 cmdline/apt-get.cc:1484
  534. #, c-format
  535. msgid "Regex compilation error - %s"
  536. msgstr "正規表現の展開エラー - %s"
  537. #: cmdline/apt-get.cc:235
  538. msgid "The following packages have unmet dependencies:"
  539. msgstr "以下のパッケージには満たせない依存関係があります:"
  540. #: cmdline/apt-get.cc:325
  541. #, c-format
  542. msgid "but %s is installed"
  543. msgstr "しかし、%s はインストールされています"
  544. #: cmdline/apt-get.cc:327
  545. #, c-format
  546. msgid "but %s is to be installed"
  547. msgstr "しかし、%s はインストールされようとしています"
  548. #: cmdline/apt-get.cc:334
  549. msgid "but it is not installable"
  550. msgstr "しかし、インストールすることができません"
  551. #: cmdline/apt-get.cc:336
  552. msgid "but it is a virtual package"
  553. msgstr "しかし、これは仮想パッケージです"
  554. #: cmdline/apt-get.cc:339
  555. msgid "but it is not installed"
  556. msgstr "しかし、インストールされていません"
  557. #: cmdline/apt-get.cc:339
  558. msgid "but it is not going to be installed"
  559. msgstr "しかし、インストールされようとしていません"
  560. #: cmdline/apt-get.cc:344
  561. msgid " or"
  562. msgstr " または"
  563. #: cmdline/apt-get.cc:373
  564. msgid "The following NEW packages will be installed:"
  565. msgstr "以下のパッケージが新たにインストールされます:"
  566. #: cmdline/apt-get.cc:399
  567. msgid "The following packages will be REMOVED:"
  568. msgstr "以下のパッケージは「削除」されます:"
  569. #: cmdline/apt-get.cc:421
  570. msgid "The following packages have been kept back:"
  571. msgstr "以下のパッケージは保留されます:"
  572. #: cmdline/apt-get.cc:442
  573. msgid "The following packages will be upgraded:"
  574. msgstr "以下のパッケージはアップグレードされます:"
  575. #: cmdline/apt-get.cc:463
  576. msgid "The following packages will be DOWNGRADED:"
  577. msgstr "以下のパッケージは「ダウングレード」されます:"
  578. #: cmdline/apt-get.cc:483
  579. msgid "The following held packages will be changed:"
  580. msgstr "以下の変更禁止パッケージは変更されます:"
  581. #: cmdline/apt-get.cc:536
  582. #, c-format
  583. msgid "%s (due to %s) "
  584. msgstr "%s (%s のため) "
  585. #: cmdline/apt-get.cc:544
  586. #, fuzzy
  587. msgid ""
  588. "WARNING: The following essential packages will be removed.\n"
  589. "This should NOT be done unless you know exactly what you are doing!"
  590. msgstr ""
  591. "警告: 以下の不可欠パッケージが削除されます\n"
  592. "何をしようとしているかがちゃんとわからない場合は、実行してはいけません!"
  593. #: cmdline/apt-get.cc:575
  594. #, c-format
  595. msgid "%lu upgraded, %lu newly installed, "
  596. msgstr "アップグレード: %lu 個、新規インストール: %lu 個、"
  597. #: cmdline/apt-get.cc:579
  598. #, c-format
  599. msgid "%lu reinstalled, "
  600. msgstr "再インストール: %lu 個、"
  601. #: cmdline/apt-get.cc:581
  602. #, c-format
  603. msgid "%lu downgraded, "
  604. msgstr "ダウングレード: %lu 個、"
  605. #: cmdline/apt-get.cc:583
  606. #, c-format
  607. msgid "%lu to remove and %lu not upgraded.\n"
  608. msgstr "削除: %lu 個、保留: %lu 個。\n"
  609. #: cmdline/apt-get.cc:587
  610. #, c-format
  611. msgid "%lu not fully installed or removed.\n"
  612. msgstr "%lu 個のパッケージが完全にインストールまたは削除されていません。\n"
  613. #: cmdline/apt-get.cc:647
  614. msgid "Correcting dependencies..."
  615. msgstr "依存関係を解決しています..."
  616. #: cmdline/apt-get.cc:650
  617. msgid " failed."
  618. msgstr " 失敗しました。"
  619. #: cmdline/apt-get.cc:653
  620. msgid "Unable to correct dependencies"
  621. msgstr "依存関係を直すことができません"
  622. #: cmdline/apt-get.cc:656
  623. msgid "Unable to minimize the upgrade set"
  624. msgstr "アップグレードセットを最小化できません"
  625. #: cmdline/apt-get.cc:658
  626. msgid " Done"
  627. msgstr " 完了"
  628. #: cmdline/apt-get.cc:662
  629. msgid "You might want to run `apt-get -f install' to correct these."
  630. msgstr ""
  631. "これらを直すためには 'apt-get -f install' を実行する必要があるかもしれませ"
  632. "ん。"
  633. #: cmdline/apt-get.cc:665
  634. msgid "Unmet dependencies. Try using -f."
  635. msgstr "未解決の依存関係があります。-f オプションを試してください。"
  636. #: cmdline/apt-get.cc:687
  637. msgid "WARNING: The following packages cannot be authenticated!"
  638. msgstr "警告: 以下のパッケージは認証されていません!"
  639. #: cmdline/apt-get.cc:698
  640. msgid "Install these packages without verification [y/N]? "
  641. msgstr "検証なしにこれらのパッケージをインストールしますか [y/N]? "
  642. #: cmdline/apt-get.cc:700
  643. msgid "Some packages could not be authenticated"
  644. msgstr "いくつかのパッケージが認証されませんでした"
  645. #: cmdline/apt-get.cc:709 cmdline/apt-get.cc:855
  646. msgid "There are problems and -y was used without --force-yes"
  647. msgstr "問題が発生し、-y オプションが --force-yes なしで使用されました"
  648. #: cmdline/apt-get.cc:762
  649. msgid "Packages need to be removed but remove is disabled."
  650. msgstr "パッケージを削除しなければなりませんが、削除が無効になっています。"
  651. #: cmdline/apt-get.cc:788 cmdline/apt-get.cc:1778 cmdline/apt-get.cc:1811
  652. msgid "Unable to lock the download directory"
  653. msgstr "ダウンロードディレクトリをロックできません"
  654. #: cmdline/apt-get.cc:798 cmdline/apt-get.cc:1859 cmdline/apt-get.cc:2070
  655. #: apt-pkg/cachefile.cc:67
  656. msgid "The list of sources could not be read."
  657. msgstr "ソースのリストを読むことができません。"
  658. #: cmdline/apt-get.cc:818
  659. #, c-format
  660. msgid "Need to get %sB/%sB of archives.\n"
  661. msgstr "%2$sB 中 %1$sB のアーカイブを取得する必要があります。\n"
  662. #: cmdline/apt-get.cc:821
  663. #, c-format
  664. msgid "Need to get %sB of archives.\n"
  665. msgstr "%sB のアーカイブを取得する必要があります。\n"
  666. #: cmdline/apt-get.cc:826
  667. #, c-format
  668. msgid "After unpacking %sB of additional disk space will be used.\n"
  669. msgstr "展開後に追加で %sB のディスク容量が消費されます。\n"
  670. #: cmdline/apt-get.cc:829
  671. #, c-format
  672. msgid "After unpacking %sB disk space will be freed.\n"
  673. msgstr "展開後に %sB のディスク容量が解放されます。\n"
  674. #: cmdline/apt-get.cc:846
  675. #, c-format
  676. msgid "You don't have enough free space in %s."
  677. msgstr "%s に充分な空きスペースがありません。"
  678. #: cmdline/apt-get.cc:861 cmdline/apt-get.cc:881
  679. msgid "Trivial Only specified but this is not a trivial operation."
  680. msgstr "Trivial Only が指定されましたが、これは簡単な操作ではありません"
  681. #: cmdline/apt-get.cc:863
  682. msgid "Yes, do as I say!"
  683. msgstr "Yes, do as I say!"
  684. #: cmdline/apt-get.cc:865
  685. #, fuzzy, c-format
  686. msgid ""
  687. "You are about to do something potentially harmful.\n"
  688. "To continue type in the phrase '%s'\n"
  689. " ?] "
  690. msgstr ""
  691. "重大な問題を引き起こす可能性のあることをしようとしています\n"
  692. "続行するには、'%s' というフレーズをタイプしてください。\n"
  693. " ?] "
  694. #: cmdline/apt-get.cc:871 cmdline/apt-get.cc:890
  695. msgid "Abort."
  696. msgstr "中断しました。"
  697. #: cmdline/apt-get.cc:886
  698. msgid "Do you want to continue [Y/n]? "
  699. msgstr "続行しますか [Y/n]? "
  700. #: cmdline/apt-get.cc:958 cmdline/apt-get.cc:1334 cmdline/apt-get.cc:1968
  701. #, c-format
  702. msgid "Failed to fetch %s %s\n"
  703. msgstr "%s の取得に失敗しました %s\n"
  704. #: cmdline/apt-get.cc:976
  705. msgid "Some files failed to download"
  706. msgstr "いくつかのファイルの取得に失敗しました"
  707. #: cmdline/apt-get.cc:977 cmdline/apt-get.cc:1977
  708. msgid "Download complete and in download only mode"
  709. msgstr "ダウンロードオンリーモードでパッケージのダウンロードが完了しました"
  710. #: cmdline/apt-get.cc:983
  711. msgid ""
  712. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  713. "missing?"
  714. msgstr ""
  715. "いくつかのアーカイブが取得できません。apt-get update を実行するか --fix-"
  716. "missing オプションを付けて試してみてください。"
  717. #: cmdline/apt-get.cc:987
  718. msgid "--fix-missing and media swapping is not currently supported"
  719. msgstr "--fix-missing とメディア交換は現在同時にはサポートされていません"
  720. #: cmdline/apt-get.cc:992
  721. msgid "Unable to correct missing packages."
  722. msgstr "足りないパッケージを直すことができません。"
  723. #: cmdline/apt-get.cc:993
  724. msgid "Aborting install."
  725. msgstr "インストールを中断します。"
  726. #: cmdline/apt-get.cc:1026
  727. #, c-format
  728. msgid "Note, selecting %s instead of %s\n"
  729. msgstr "注意、%2$s の代わりに %1$s を選択します\n"
  730. #: cmdline/apt-get.cc:1036
  731. #, c-format
  732. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  733. msgstr ""
  734. "既にインストールされておりアップグレードも設定されていないため、%s をスキップ"
  735. "します。\n"
  736. #: cmdline/apt-get.cc:1054
  737. #, c-format
  738. msgid "Package %s is not installed, so not removed\n"
  739. msgstr "パッケージ %s はインストールされていないため、削除はできません\n"
  740. #: cmdline/apt-get.cc:1065
  741. #, c-format
  742. msgid "Package %s is a virtual package provided by:\n"
  743. msgstr "%s は以下のパッケージで提供されている仮想パッケージです:\n"
  744. #: cmdline/apt-get.cc:1077
  745. msgid " [Installed]"
  746. msgstr " [インストール済み]"
  747. #: cmdline/apt-get.cc:1082
  748. msgid "You should explicitly select one to install."
  749. msgstr "インストールするパッケージを明示的に選択する必要があります。"
  750. #: cmdline/apt-get.cc:1087
  751. #, c-format
  752. msgid ""
  753. "Package %s is not available, but is referred to by another package.\n"
  754. "This may mean that the package is missing, has been obsoleted, or\n"
  755. "is only available from another source\n"
  756. msgstr ""
  757. "パッケージ %s はデータベースには存在しますが、利用できません。\n"
  758. "おそらく、そのパッケージが見つからないか、もう古くなっているか、\n"
  759. "あるいは別のソースからのみしか利用できないという状況が考えられます\n"
  760. #: cmdline/apt-get.cc:1106
  761. msgid "However the following packages replace it:"
  762. msgstr "しかし、以下のパッケージで置き換えられています:"
  763. #: cmdline/apt-get.cc:1109
  764. #, c-format
  765. msgid "Package %s has no installation candidate"
  766. msgstr "パッケージ %s にはインストール候補がありません"
  767. #: cmdline/apt-get.cc:1129
  768. #, c-format
  769. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  770. msgstr "ダウンロードができないため、%s の再インストールは不可能です。\n"
  771. #: cmdline/apt-get.cc:1137
  772. #, c-format
  773. msgid "%s is already the newest version.\n"
  774. msgstr "%s は既に最新バージョンです。\n"
  775. #: cmdline/apt-get.cc:1164
  776. #, c-format
  777. msgid "Release '%s' for '%s' was not found"
  778. msgstr "'%2$s' のリリース '%1$s' が見つかりませんでした"
  779. #: cmdline/apt-get.cc:1166
  780. #, c-format
  781. msgid "Version '%s' for '%s' was not found"
  782. msgstr "'%2$s' のバージョン '%1$s' が見つかりませんでした"
  783. #: cmdline/apt-get.cc:1172
  784. #, c-format
  785. msgid "Selected version %s (%s) for %s\n"
  786. msgstr "%3$s にはバージョン %1$s (%2$s) を選択しました\n"
  787. #: cmdline/apt-get.cc:1282
  788. msgid "The update command takes no arguments"
  789. msgstr "update コマンドは引数を取りません"
  790. #: cmdline/apt-get.cc:1295 cmdline/apt-get.cc:1389
  791. msgid "Unable to lock the list directory"
  792. msgstr "list ディレクトリをロックすることができません"
  793. #: cmdline/apt-get.cc:1353
  794. msgid ""
  795. "Some index files failed to download, they have been ignored, or old ones "
  796. "used instead."
  797. msgstr ""
  798. "いくつかのインデックスファイルのダウンロードに失敗しました。無視されたか、あ"
  799. "るいは古いものが使用されました。"
  800. #: cmdline/apt-get.cc:1372
  801. msgid "Internal error, AllUpgrade broke stuff"
  802. msgstr "内部エラー、AllUpgrade が何かを破壊しました"
  803. #: cmdline/apt-get.cc:1471 cmdline/apt-get.cc:1507
  804. #, c-format
  805. msgid "Couldn't find package %s"
  806. msgstr "パッケージ %s が見付かりません"
  807. #: cmdline/apt-get.cc:1494
  808. #, c-format
  809. msgid "Note, selecting %s for regex '%s'\n"
  810. msgstr "注意: 正規表現 '%2$s' に対して %1$s を選択しました\n"
  811. #: cmdline/apt-get.cc:1524
  812. msgid "You might want to run `apt-get -f install' to correct these:"
  813. msgstr ""
  814. "以下の問題を解決するために 'apt-get -f install' を実行する必要があるかもしれ"
  815. "ません:"
  816. #: cmdline/apt-get.cc:1527
  817. msgid ""
  818. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  819. "solution)."
  820. msgstr ""
  821. "未解決の依存関係です。'apt-get -f install' を実行してみてください(または解法"
  822. "を明示してください)。"
  823. #: cmdline/apt-get.cc:1539
  824. msgid ""
  825. "Some packages could not be installed. This may mean that you have\n"
  826. "requested an impossible situation or if you are using the unstable\n"
  827. "distribution that some required packages have not yet been created\n"
  828. "or been moved out of Incoming."
  829. msgstr ""
  830. "インストールすることができないパッケージがありました。おそらく、ありえ\n"
  831. "ない状況を要求したか、必要なパッケージがまだ作成されていなかったり \n"
  832. "Incoming から移動されていない、不安定版ディストリビューションを使用し\n"
  833. "ているものと考えられます。"
  834. #: cmdline/apt-get.cc:1547
  835. msgid ""
  836. "Since you only requested a single operation it is extremely likely that\n"
  837. "the package is simply not installable and a bug report against\n"
  838. "that package should be filed."
  839. msgstr ""
  840. "単純な操作を行っただけなので、このパッケージは単にインストールできない\n"
  841. "可能性が高いです。そのため、このパッケージへのバグレポートを送ってくだ\n"
  842. "さい。"
  843. #: cmdline/apt-get.cc:1552
  844. msgid "The following information may help to resolve the situation:"
  845. msgstr "以下の情報がこの問題を解決するために役立つかもしれません:"
  846. #: cmdline/apt-get.cc:1555
  847. msgid "Broken packages"
  848. msgstr "壊れたパッケージ"
  849. #: cmdline/apt-get.cc:1581
  850. msgid "The following extra packages will be installed:"
  851. msgstr "以下の特別パッケージがインストールされます:"
  852. #: cmdline/apt-get.cc:1652
  853. msgid "Suggested packages:"
  854. msgstr "提案パッケージ:"
  855. #: cmdline/apt-get.cc:1653
  856. msgid "Recommended packages:"
  857. msgstr "推奨パッケージ:"
  858. #: cmdline/apt-get.cc:1673
  859. msgid "Calculating upgrade... "
  860. msgstr "アップグレードパッケージを検出しています... "
  861. #: cmdline/apt-get.cc:1676 methods/ftp.cc:702 methods/connect.cc:99
  862. msgid "Failed"
  863. msgstr "失敗"
  864. #: cmdline/apt-get.cc:1681
  865. msgid "Done"
  866. msgstr "完了"
  867. #: cmdline/apt-get.cc:1854
  868. msgid "Must specify at least one package to fetch source for"
  869. msgstr ""
  870. "ソースを取得するには少なくともひとつのパッケージ名を指定する必要があります"
  871. #: cmdline/apt-get.cc:1881 cmdline/apt-get.cc:2088
  872. #, c-format
  873. msgid "Unable to find a source package for %s"
  874. msgstr "%s のソースパッケージが見つかりません"
  875. #: cmdline/apt-get.cc:1928
  876. #, c-format
  877. msgid "You don't have enough free space in %s"
  878. msgstr "%s に充分な空きスペースがありません"
  879. #: cmdline/apt-get.cc:1933
  880. #, c-format
  881. msgid "Need to get %sB/%sB of source archives.\n"
  882. msgstr "%2$sB 中 %1$sB のソースアーカイブを取得する必要があります。\n"
  883. #: cmdline/apt-get.cc:1936
  884. #, c-format
  885. msgid "Need to get %sB of source archives.\n"
  886. msgstr "%sB のソースアーカイブを取得する必要があります。\n"
  887. #: cmdline/apt-get.cc:1942
  888. #, c-format
  889. msgid "Fetch source %s\n"
  890. msgstr "ソース %s を取得\n"
  891. #: cmdline/apt-get.cc:1973
  892. msgid "Failed to fetch some archives."
  893. msgstr "いくつかのアーカイブの取得に失敗しました。"
  894. #: cmdline/apt-get.cc:2001
  895. #, c-format
  896. msgid "Skipping unpack of already unpacked source in %s\n"
  897. msgstr "すでに %s に展開されたソースがあるため、展開をスキップします\n"
  898. #: cmdline/apt-get.cc:2013
  899. #, c-format
  900. msgid "Unpack command '%s' failed.\n"
  901. msgstr "展開コマンド '%s' が失敗しました。\n"
  902. #: cmdline/apt-get.cc:2030
  903. #, c-format
  904. msgid "Build command '%s' failed.\n"
  905. msgstr "ビルドコマンド '%s' が失敗しました。\n"
  906. #: cmdline/apt-get.cc:2049
  907. msgid "Child process failed"
  908. msgstr "子プロセスが失敗しました"
  909. #: cmdline/apt-get.cc:2065
  910. msgid "Must specify at least one package to check builddeps for"
  911. msgstr ""
  912. "builddeps をチェックするパッケージを少なくとも 1 つ指定する必要があります"
  913. #: cmdline/apt-get.cc:2093
  914. #, c-format
  915. msgid "Unable to get build-dependency information for %s"
  916. msgstr "%s の build-dependency 情報を得ることができません"
  917. #: cmdline/apt-get.cc:2113
  918. #, c-format
  919. msgid "%s has no build depends.\n"
  920. msgstr "%s には build depends が指定されていません。\n"
  921. #: cmdline/apt-get.cc:2165
  922. #, c-format
  923. msgid ""
  924. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  925. "found"
  926. msgstr ""
  927. "パッケージ %3$s が見つからないため、%2$s に対する %1$s の依存関係を満たすこと"
  928. "ができません"
  929. #: cmdline/apt-get.cc:2217
  930. #, c-format
  931. msgid ""
  932. "%s dependency for %s cannot be satisfied because no available versions of "
  933. "package %s can satisfy version requirements"
  934. msgstr ""
  935. "入手可能な %3$s はいずれもバージョンについての要求を満たせないため、%2$s に対"
  936. "する %1$s の依存関係を満たすことができません"
  937. #: cmdline/apt-get.cc:2252
  938. #, c-format
  939. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  940. msgstr ""
  941. "%2$s の依存関係 %1$s を満たすことができません: インストールされた %3$s パッ"
  942. "ケージは新しすぎます"
  943. #: cmdline/apt-get.cc:2277
  944. #, c-format
  945. msgid "Failed to satisfy %s dependency for %s: %s"
  946. msgstr "%2$s の依存関係 %1$s を満たすことができません: %3$s"
  947. #: cmdline/apt-get.cc:2291
  948. #, c-format
  949. msgid "Build-dependencies for %s could not be satisfied."
  950. msgstr "%s の Build-dependency を満たすことができませんでした。"
  951. #: cmdline/apt-get.cc:2295
  952. msgid "Failed to process build dependencies"
  953. msgstr "build dependency の処理に失敗しました"
  954. #: cmdline/apt-get.cc:2327
  955. msgid "Supported modules:"
  956. msgstr "サポートされているモジュール:"
  957. #: cmdline/apt-get.cc:2368
  958. msgid ""
  959. "Usage: apt-get [options] command\n"
  960. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  961. " apt-get [options] source pkg1 [pkg2 ...]\n"
  962. "\n"
  963. "apt-get is a simple command line interface for downloading and\n"
  964. "installing packages. The most frequently used commands are update\n"
  965. "and install.\n"
  966. "\n"
  967. "Commands:\n"
  968. " update - Retrieve new lists of packages\n"
  969. " upgrade - Perform an upgrade\n"
  970. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  971. " remove - Remove packages\n"
  972. " source - Download source archives\n"
  973. " build-dep - Configure build-dependencies for source packages\n"
  974. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  975. " dselect-upgrade - Follow dselect selections\n"
  976. " clean - Erase downloaded archive files\n"
  977. " autoclean - Erase old downloaded archive files\n"
  978. " check - Verify that there are no broken dependencies\n"
  979. "\n"
  980. "Options:\n"
  981. " -h This help text.\n"
  982. " -q Loggable output - no progress indicator\n"
  983. " -qq No output except for errors\n"
  984. " -d Download only - do NOT install or unpack archives\n"
  985. " -s No-act. Perform ordering simulation\n"
  986. " -y Assume Yes to all queries and do not prompt\n"
  987. " -f Attempt to continue if the integrity check fails\n"
  988. " -m Attempt to continue if archives are unlocatable\n"
  989. " -u Show a list of upgraded packages as well\n"
  990. " -b Build the source package after fetching it\n"
  991. " -V Show verbose version numbers\n"
  992. " -c=? Read this configuration file\n"
  993. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  994. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  995. "pages for more information and options.\n"
  996. " This APT has Super Cow Powers.\n"
  997. msgstr ""
  998. "使用法: apt-get [オプション] コマンド\n"
  999. " apt-get [オプション] install|remove パッケージ名1 [パッケージ名"
  1000. "2 ...]\n"
  1001. " apt-get [オプション] source パッケージ名1 [パッケージ名2 ...]\n"
  1002. "\n"
  1003. "apt-get は、パッケージをダウンロード/インストールするための簡単なコマ\n"
  1004. "ンドラインインタフェースです。もっともよく使われるコマンドは、update \n"
  1005. "と install です。\n"
  1006. "\n"
  1007. "コマンド:\n"
  1008. " update - パッケージリストを取得・更新します\n"
  1009. " upgrade - アップグレードを行います\n"
  1010. " install - 新規パッケージをインストールします\n"
  1011. " (pkg は libc6.deb ではなく libc6 のように指定します)\n"
  1012. " remove - パッケージを削除します\n"
  1013. " source - ソースアーカイブをダウンロードします\n"
  1014. " build-dep - ソースパッケージの構築依存関係を設定します\n"
  1015. " dist-upgrade - ディストリビューションをアップグレードします\n"
  1016. " (apt-get(8) を参照)\n"
  1017. " dselect-upgrade - dselect の選択にしたがいます\n"
  1018. " clean - ダウンロードしたアーカイブファイルを削除します\n"
  1019. " autoclean - ダウンロードした古いアーカイブファイルを削除します\n"
  1020. " check - 壊れた依存関係がないかチェックします\n"
  1021. "\n"
  1022. "オプション:\n"
  1023. " -h このヘルプを表示する\n"
  1024. " -q ログファイルに出力可能な形式にする - プログレス表示をしない\n"
  1025. " -qq エラー以外は表示しない\n"
  1026. " -d ダウンロードのみ行う - アーカイブのインストールや展開は行わない\n"
  1027. " -s 実際には実行しない。実行シミュレーションのみ行う\n"
  1028. " -y 全ての問い合わせに Yes で答え、プロンプトは返さない\n"
  1029. " -f 整合性チェックで失敗しても処理を続行する\n"
  1030. " -m アーカイブが存在しない場合も続行する\n"
  1031. " -u アップグレードされるパッケージも表示する\n"
  1032. " -b ソースパッケージを取得し、ビルドを行う\n"
  1033. " -V 冗長なバージョンナンバを表示する\n"
  1034. " -c=? 指定した設定ファイルを読み込む\n"
  1035. " -o=? 任意の設定オプションを指定する, 例 -o dir::cache=/tmp\n"
  1036. "オプション・設定に関しては、マニュアルページ apt-get(8)、sources.list(5)、\n"
  1037. "apt.conf(5) を参照してください。\n"
  1038. " この APT は Super Cow Powers 化されています。\n"
  1039. #: cmdline/acqprogress.cc:55
  1040. msgid "Hit "
  1041. msgstr "ヒット "
  1042. #: cmdline/acqprogress.cc:79
  1043. msgid "Get:"
  1044. msgstr "取得:"
  1045. #: cmdline/acqprogress.cc:110
  1046. msgid "Ign "
  1047. msgstr "無視 "
  1048. #: cmdline/acqprogress.cc:114
  1049. msgid "Err "
  1050. msgstr "エラー "
  1051. #: cmdline/acqprogress.cc:135
  1052. #, c-format
  1053. msgid "Fetched %sB in %s (%sB/s)\n"
  1054. msgstr "%sB を %s で取得しました (%sB/s)\n"
  1055. #: cmdline/acqprogress.cc:225
  1056. #, c-format
  1057. msgid " [Working]"
  1058. msgstr " [処理中]"
  1059. #: cmdline/acqprogress.cc:271
  1060. #, c-format
  1061. msgid ""
  1062. "Media change: please insert the disc labeled\n"
  1063. " '%s'\n"
  1064. "in the drive '%s' and press enter\n"
  1065. msgstr ""
  1066. "メディア変更: \n"
  1067. " '%s'\n"
  1068. "とラベルの付いたディスクをドライブ '%s' に入れて enter を押してください\n"
  1069. #: cmdline/apt-sortpkgs.cc:86
  1070. msgid "Unknown package record!"
  1071. msgstr "不明なパッケージレコードです!"
  1072. #: cmdline/apt-sortpkgs.cc:150
  1073. msgid ""
  1074. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1075. "\n"
  1076. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1077. "to indicate what kind of file it is.\n"
  1078. "\n"
  1079. "Options:\n"
  1080. " -h This help text\n"
  1081. " -s Use source file sorting\n"
  1082. " -c=? Read this configuration file\n"
  1083. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1084. msgstr ""
  1085. "使用方法: apt-sortpkgs [オプション] ファイル名1 [ファイル名2 ...]\n"
  1086. "\n"
  1087. "apt-sortpkgs はパッケージファイルをソートするための簡単なツールです。\n"
  1088. "-s オプションはファイルの種類を示すために使用されます。\n"
  1089. "\n"
  1090. "オプション:\n"
  1091. " -h このヘルプを表示する\n"
  1092. " -s ソースファイルソートを使用する\n"
  1093. " -c=? 指定した設定ファイルを読みこむ\n"
  1094. " -o=? 指定した設定オプションを適用する(例: -o dir::cache=/tmp)\n"
  1095. #: dselect/install:32
  1096. msgid "Bad default setting!"
  1097. msgstr "デフォルトの設定がよくありません!"
  1098. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
  1099. #: dselect/install:104 dselect/update:45
  1100. msgid "Press enter to continue."
  1101. msgstr "enter を押すと続行します。"
  1102. #: dselect/install:100
  1103. msgid "Some errors occurred while unpacking. I'm going to configure the"
  1104. msgstr "展開中にエラーが発生しました。インストールされたパッケージを"
  1105. #: dselect/install:101
  1106. msgid "packages that were installed. This may result in duplicate errors"
  1107. msgstr "設定します。これにより、エラーが複数出るか、依存関係の欠如に"
  1108. #: dselect/install:102
  1109. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1110. msgstr "よるエラーが出るかもしれません。これには問題はなく、上記のメッセージ"
  1111. #: dselect/install:103
  1112. msgid ""
  1113. "above this message are important. Please fix them and run [I]nstall again"
  1114. msgstr "が重要です。これを修正して [I]nstall を再度実行してください"
  1115. #: dselect/update:30
  1116. msgid "Merging available information"
  1117. msgstr "入手可能情報をマージしています"
  1118. #: apt-inst/contrib/extracttar.cc:117
  1119. msgid "Failed to create pipes"
  1120. msgstr "パイプの生成に失敗しました"
  1121. #: apt-inst/contrib/extracttar.cc:143
  1122. msgid "Failed to exec gzip "
  1123. msgstr "gzip の実行に失敗しました"
  1124. #: apt-inst/contrib/extracttar.cc:180 apt-inst/contrib/extracttar.cc:206
  1125. msgid "Corrupted archive"
  1126. msgstr "壊れたアーカイブ"
  1127. #: apt-inst/contrib/extracttar.cc:195
  1128. msgid "Tar checksum failed, archive corrupted"
  1129. msgstr "tar チェックサムが失敗しました。アーカイブが壊れています"
  1130. #: apt-inst/contrib/extracttar.cc:298
  1131. #, c-format
  1132. msgid "Unknown TAR header type %u, member %s"
  1133. msgstr "未知の TAR ヘッダタイプ %u、メンバ %s"
  1134. #: apt-inst/contrib/arfile.cc:73
  1135. msgid "Invalid archive signature"
  1136. msgstr "不正なアーカイブ署名"
  1137. #: apt-inst/contrib/arfile.cc:81
  1138. msgid "Error reading archive member header"
  1139. msgstr "アーカイブメンバヘッダの読み込みに失敗しました"
  1140. #: apt-inst/contrib/arfile.cc:93 apt-inst/contrib/arfile.cc:105
  1141. msgid "Invalid archive member header"
  1142. msgstr "不正なアーカイブメンバヘッダ"
  1143. #: apt-inst/contrib/arfile.cc:131
  1144. msgid "Archive is too short"
  1145. msgstr "アーカイブが不足しています"
  1146. #: apt-inst/contrib/arfile.cc:135
  1147. msgid "Failed to read the archive headers"
  1148. msgstr "アーカイブヘッダの読み込みに失敗しました"
  1149. #: apt-inst/filelist.cc:384
  1150. msgid "DropNode called on still linked node"
  1151. msgstr "リンクされているノードで DropNode が呼ばれました"
  1152. #: apt-inst/filelist.cc:416
  1153. msgid "Failed to locate the hash element!"
  1154. msgstr "ハッシュ要素を特定することができません!"
  1155. #: apt-inst/filelist.cc:463
  1156. msgid "Failed to allocate diversion"
  1157. msgstr "diversion の割り当てに失敗しました"
  1158. #: apt-inst/filelist.cc:468
  1159. msgid "Internal error in AddDiversion"
  1160. msgstr "AddDiversion での内部エラー"
  1161. #: apt-inst/filelist.cc:481
  1162. #, c-format
  1163. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1164. msgstr "%s -> %s と %s/%s の diversion を上書きしようとしています"
  1165. #: apt-inst/filelist.cc:510
  1166. #, c-format
  1167. msgid "Double add of diversion %s -> %s"
  1168. msgstr "%s -> %s の diversion が二重に追加されています"
  1169. #: apt-inst/filelist.cc:553
  1170. #, c-format
  1171. msgid "Duplicate conf file %s/%s"
  1172. msgstr "設定ファイル %s/%s が重複しています"
  1173. #: apt-inst/dirstream.cc:45 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:53
  1174. #, fuzzy, c-format
  1175. msgid "Failed to write file %s"
  1176. msgstr "%s の書き込みに失敗しました"
  1177. #: apt-inst/dirstream.cc:80 apt-inst/dirstream.cc:88
  1178. #, c-format
  1179. msgid "Failed to close file %s"
  1180. msgstr "%s のクローズに失敗しました"
  1181. #: apt-inst/extract.cc:96 apt-inst/extract.cc:167
  1182. #, c-format
  1183. msgid "The path %s is too long"
  1184. msgstr "パス %s は長すぎます"
  1185. #: apt-inst/extract.cc:127
  1186. #, c-format
  1187. msgid "Unpacking %s more than once"
  1188. msgstr "%s を複数回展開しています"
  1189. #: apt-inst/extract.cc:137
  1190. #, c-format
  1191. msgid "The directory %s is diverted"
  1192. msgstr "ディレクトリ %s は divert されています"
  1193. #: apt-inst/extract.cc:147
  1194. #, c-format
  1195. msgid "The package is trying to write to the diversion target %s/%s"
  1196. msgstr ""
  1197. "このパッケージは diversion のターゲットの %s/%s に書き込もうとしています"
  1198. #: apt-inst/extract.cc:157 apt-inst/extract.cc:300
  1199. msgid "The diversion path is too long"
  1200. msgstr "diversion パスが長すぎます"
  1201. #: apt-inst/extract.cc:243
  1202. #, c-format
  1203. msgid "The directory %s is being replaced by a non-directory"
  1204. msgstr "ディレクトリ %s が非ディレクトリに置換されようとしています"
  1205. #: apt-inst/extract.cc:283
  1206. msgid "Failed to locate node in its hash bucket"
  1207. msgstr "ハッシュバケツ内でノードを特定するのに失敗しました"
  1208. #: apt-inst/extract.cc:287
  1209. msgid "The path is too long"
  1210. msgstr "パスが長すぎます"
  1211. #: apt-inst/extract.cc:417
  1212. #, c-format
  1213. msgid "Overwrite package match with no version for %s"
  1214. msgstr "%s に対するバージョンのないパッケージマッチを上書きします"
  1215. #: apt-inst/extract.cc:434
  1216. #, c-format
  1217. msgid "File %s/%s overwrites the one in the package %s"
  1218. msgstr "ファイル %s/%s がパッケージ %s のものを上書きします"
  1219. #: apt-inst/extract.cc:467 apt-pkg/contrib/configuration.cc:709
  1220. #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/acquire.cc:416 apt-pkg/clean.cc:38
  1221. #, c-format
  1222. msgid "Unable to read %s"
  1223. msgstr "%s を読み込むことができません"
  1224. #: apt-inst/extract.cc:494
  1225. #, c-format
  1226. msgid "Unable to stat %s"
  1227. msgstr "%s を stat できません"
  1228. #: apt-inst/deb/dpkgdb.cc:55 apt-inst/deb/dpkgdb.cc:61
  1229. #, c-format
  1230. msgid "Failed to remove %s"
  1231. msgstr "%s の削除に失敗しました"
  1232. #: apt-inst/deb/dpkgdb.cc:110 apt-inst/deb/dpkgdb.cc:112
  1233. #, c-format
  1234. msgid "Unable to create %s"
  1235. msgstr "%s を作成できません"
  1236. #: apt-inst/deb/dpkgdb.cc:118
  1237. #, c-format
  1238. msgid "Failed to stat %sinfo"
  1239. msgstr "%sinfo の stat に失敗しました"
  1240. #: apt-inst/deb/dpkgdb.cc:123
  1241. msgid "The info and temp directories need to be on the same filesystem"
  1242. msgstr "info と temp ディレクトリは同じファイルシステム上になければなりません"
  1243. #. Build the status cache
  1244. #: apt-inst/deb/dpkgdb.cc:139 apt-pkg/pkgcachegen.cc:643
  1245. #: apt-pkg/pkgcachegen.cc:712 apt-pkg/pkgcachegen.cc:717
  1246. #: apt-pkg/pkgcachegen.cc:840
  1247. msgid "Reading package lists"
  1248. msgstr "パッケージリストを読みこんでいます"
  1249. #: apt-inst/deb/dpkgdb.cc:180
  1250. #, c-format
  1251. msgid "Failed to change to the admin dir %sinfo"
  1252. msgstr "管理ディレクトリ %sinfo への移動に失敗しました"
  1253. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:355
  1254. #: apt-inst/deb/dpkgdb.cc:448
  1255. msgid "Internal error getting a package name"
  1256. msgstr "パッケージ名取得中の内部エラー"
  1257. #: apt-inst/deb/dpkgdb.cc:205
  1258. msgid "Reading file listing"
  1259. msgstr "ファイルリストを読み込んでいます"
  1260. #: apt-inst/deb/dpkgdb.cc:216
  1261. #, c-format
  1262. msgid ""
  1263. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1264. "then make it empty and immediately re-install the same version of the "
  1265. "package!"
  1266. msgstr ""
  1267. "リストファイル '%sinfo/%s' のオープンに失敗しました。このファイルを元に戻すこ"
  1268. "とができないなら、その内容を空にして即座に同じバージョンのパッケージを再イン"
  1269. "ストールしてください!"
  1270. #: apt-inst/deb/dpkgdb.cc:229 apt-inst/deb/dpkgdb.cc:242
  1271. #, c-format
  1272. msgid "Failed reading the list file %sinfo/%s"
  1273. msgstr "リストファイル %sinfo/%s の読み込みに失敗しました"
  1274. #: apt-inst/deb/dpkgdb.cc:266
  1275. msgid "Internal error getting a node"
  1276. msgstr "内部エラー、ノードの取得"
  1277. #: apt-inst/deb/dpkgdb.cc:309
  1278. #, c-format
  1279. msgid "Failed to open the diversions file %sdiversions"
  1280. msgstr "diversions ファイル %sdiversions のオープンに失敗しました"
  1281. #: apt-inst/deb/dpkgdb.cc:324
  1282. msgid "The diversion file is corrupted"
  1283. msgstr "diversion ファイルが壊れています"
  1284. #: apt-inst/deb/dpkgdb.cc:331 apt-inst/deb/dpkgdb.cc:336
  1285. #: apt-inst/deb/dpkgdb.cc:341
  1286. #, c-format
  1287. msgid "Invalid line in the diversion file: %s"
  1288. msgstr "diversion ファイルに不正な行があります: %s"
  1289. #: apt-inst/deb/dpkgdb.cc:362
  1290. msgid "Internal error adding a diversion"
  1291. msgstr "内部エラー、diversion の追加"
  1292. #: apt-inst/deb/dpkgdb.cc:383
  1293. msgid "The pkg cache must be initialized first"
  1294. msgstr "最初にパッケージキャッシュを初期化しなければなりません"
  1295. #: apt-inst/deb/dpkgdb.cc:386
  1296. msgid "Reading file list"
  1297. msgstr "ファイルリストを読みこんでいます"
  1298. #: apt-inst/deb/dpkgdb.cc:443
  1299. #, c-format
  1300. msgid "Failed to find a Package: header, offset %lu"
  1301. msgstr "Package: ヘッダを見つけるのに失敗しました。オフセット %lu"
  1302. #: apt-inst/deb/dpkgdb.cc:465
  1303. #, c-format
  1304. msgid "Bad ConfFile section in the status file. Offset %lu"
  1305. msgstr "status ファイルに不正な ConfFile セクションがあります。オフセット %lu"
  1306. #: apt-inst/deb/dpkgdb.cc:470
  1307. #, c-format
  1308. msgid "Error parsing MD5. Offset %lu"
  1309. msgstr "MD5 の解析エラー。オフセット %lu"
  1310. #: apt-inst/deb/debfile.cc:42 apt-inst/deb/debfile.cc:47
  1311. #, c-format
  1312. msgid "This is not a valid DEB archive, missing '%s' member"
  1313. msgstr "'%s' メンバがないため、正しい DEB アーカイブではありません"
  1314. #: apt-inst/deb/debfile.cc:52
  1315. #, c-format
  1316. msgid "This is not a valid DEB archive, it has no '%s' or '%s' member"
  1317. msgstr ""
  1318. "'%s' または '%s' メンバがないため、これは正しい DEB アーカイブではありません"
  1319. #: apt-inst/deb/debfile.cc:112
  1320. #, c-format
  1321. msgid "Couldn't change to %s"
  1322. msgstr "%s に変更できませんでした"
  1323. #: apt-inst/deb/debfile.cc:138
  1324. msgid "Internal error, could not locate member"
  1325. msgstr "内部エラー、メンバを特定できません"
  1326. #: apt-inst/deb/debfile.cc:171
  1327. msgid "Failed to locate a valid control file"
  1328. msgstr "正しい制御ファイルを特定できませんでした"
  1329. #: apt-inst/deb/debfile.cc:256
  1330. msgid "Unparsable control file"
  1331. msgstr "解析できない制御ファイル"
  1332. #: methods/cdrom.cc:113
  1333. #, c-format
  1334. msgid "Unable to read the cdrom database %s"
  1335. msgstr "cdrom データベース %s を読みこむことができません"
  1336. #: methods/cdrom.cc:122
  1337. msgid ""
  1338. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1339. "cannot be used to add new CD-ROMs"
  1340. msgstr ""
  1341. "この CD を APT に認識させるには apt-cdrom を使用してください。新しい CD を追"
  1342. "加するために apt-get update は使用できません。"
  1343. #: methods/cdrom.cc:130 methods/cdrom.cc:168
  1344. msgid "Wrong CD-ROM"
  1345. msgstr "CD が違います"
  1346. #: methods/cdrom.cc:163
  1347. #, c-format
  1348. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1349. msgstr "%s の CD-ROM は使用中のためアンマウントすることができません。"
  1350. #: methods/cdrom.cc:177 methods/file.cc:77 methods/rsh.cc:264
  1351. msgid "File not found"
  1352. msgstr "ファイルがみつかりません"
  1353. #: methods/copy.cc:42 methods/gzip.cc:133 methods/gzip.cc:142
  1354. msgid "Failed to stat"
  1355. msgstr "stat に失敗しました"
  1356. #: methods/copy.cc:79 methods/gzip.cc:139
  1357. msgid "Failed to set modification time"
  1358. msgstr "変更時刻の設定に失敗しました"
  1359. #: methods/file.cc:42
  1360. msgid "Invalid URI, local URIS must not start with //"
  1361. msgstr "不正な URI です。ローカルの URI は // で始まってはいけません。"
  1362. #. Login must be before getpeername otherwise dante won't work.
  1363. #: methods/ftp.cc:162
  1364. msgid "Logging in"
  1365. msgstr "ログインしています"
  1366. #: methods/ftp.cc:168
  1367. msgid "Unable to determine the peer name"
  1368. msgstr "ピアネームを決定することができません"
  1369. #: methods/ftp.cc:173
  1370. msgid "Unable to determine the local name"
  1371. msgstr "ローカルネームを決定することができません"
  1372. #: methods/ftp.cc:204 methods/ftp.cc:232
  1373. #, c-format
  1374. msgid "The server refused the connection and said: %s"
  1375. msgstr "サーバから接続を拒絶されました。応答: %s"
  1376. #: methods/ftp.cc:210
  1377. #, c-format
  1378. msgid "USER failed, server said: %s"
  1379. msgstr "USER 失敗、サーバ応答: %s"
  1380. #: methods/ftp.cc:217
  1381. #, c-format
  1382. msgid "PASS failed, server said: %s"
  1383. msgstr "PASS 失敗、サーバ応答: %s"
  1384. #: methods/ftp.cc:237
  1385. msgid ""
  1386. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1387. "is empty."
  1388. msgstr ""
  1389. "プロキシサーバが指定されていますが、ログインスクリプトが設定されていません。"
  1390. "Acquire::ftp::ProxyLogin が空です。"
  1391. #: methods/ftp.cc:265
  1392. #, c-format
  1393. msgid "Login script command '%s' failed, server said: %s"
  1394. msgstr "ログインスクリプトのコマンド '%s' 失敗、サーバ応答: %s"
  1395. #: methods/ftp.cc:291
  1396. #, c-format
  1397. msgid "TYPE failed, server said: %s"
  1398. msgstr "TYPE 失敗、サーバ応答: %s"
  1399. #: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
  1400. msgid "Connection timeout"
  1401. msgstr "接続タイムアウト"
  1402. #: methods/ftp.cc:335
  1403. msgid "Server closed the connection"
  1404. msgstr "サーバが接続を切断しました"
  1405. #: methods/ftp.cc:338 methods/rsh.cc:190 apt-pkg/contrib/fileutl.cc:453
  1406. msgid "Read error"
  1407. msgstr "読み込みエラー"
  1408. #: methods/ftp.cc:345 methods/rsh.cc:197
  1409. msgid "A response overflowed the buffer."
  1410. msgstr "レスポンスがバッファをオーバフローさせました。"
  1411. #: methods/ftp.cc:362 methods/ftp.cc:374
  1412. msgid "Protocol corruption"
  1413. msgstr "プロトコルが壊れています"
  1414. #: methods/ftp.cc:446 methods/rsh.cc:232 apt-pkg/contrib/fileutl.cc:492
  1415. msgid "Write error"
  1416. msgstr "書き込みエラー"
  1417. #: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
  1418. msgid "Could not create a socket"
  1419. msgstr "ソケットを作成できません"
  1420. #: methods/ftp.cc:698
  1421. msgid "Could not connect data socket, connection timed out"
  1422. msgstr "データソケットへ接続できませんでした。接続がタイムアウトしました。"
  1423. #: methods/ftp.cc:704
  1424. msgid "Could not connect passive socket."
  1425. msgstr "受動ソケットに接続できません。"
  1426. #: methods/ftp.cc:722
  1427. msgid "getaddrinfo was unable to get a listening socket"
  1428. msgstr "getaddrinfo はリスニングポートを取得することができませんでした"
  1429. #: methods/ftp.cc:736
  1430. msgid "Could not bind a socket"
  1431. msgstr "ソケットを bind できませんでした"
  1432. #: methods/ftp.cc:740
  1433. msgid "Could not listen on the socket"
  1434. msgstr "ソケットを listen できませんでした"
  1435. #: methods/ftp.cc:747
  1436. msgid "Could not determine the socket's name"
  1437. msgstr "ソケットの名前を特定できませんでした。"
  1438. #: methods/ftp.cc:779
  1439. msgid "Unable to send PORT command"
  1440. msgstr "PORT コマンドを送信できません"
  1441. #: methods/ftp.cc:789
  1442. #, c-format
  1443. msgid "Unknown address family %u (AF_*)"
  1444. msgstr "未知のアドレスファミリ %u (AF_*)"
  1445. #: methods/ftp.cc:798
  1446. #, c-format
  1447. msgid "EPRT failed, server said: %s"
  1448. msgstr "EPRT に失敗しました。サーバ応答: %s"
  1449. #: methods/ftp.cc:818
  1450. msgid "Data socket connect timed out"
  1451. msgstr "データソケット接続タイムアウト"
  1452. #: methods/ftp.cc:825
  1453. msgid "Unable to accept connection"
  1454. msgstr "接続を accept できません"
  1455. #: methods/ftp.cc:864 methods/http.cc:920 methods/rsh.cc:303
  1456. msgid "Problem hashing file"
  1457. msgstr "ファイルのハッシュでの問題"
  1458. #: methods/ftp.cc:877
  1459. #, c-format
  1460. msgid "Unable to fetch file, server said '%s'"
  1461. msgstr "ファイルが取得できません。サーバ応答 '%s'"
  1462. #: methods/ftp.cc:892 methods/rsh.cc:322
  1463. msgid "Data socket timed out"
  1464. msgstr "データソケットタイムアウト"
  1465. #: methods/ftp.cc:922
  1466. #, c-format
  1467. msgid "Data transfer failed, server said '%s'"
  1468. msgstr "データ転送に失敗しました。サーバ応答 '%s'"
  1469. #. Get the files information
  1470. #: methods/ftp.cc:997
  1471. msgid "Query"
  1472. msgstr "問い合わせ"
  1473. #: methods/ftp.cc:1106
  1474. msgid "Unable to invoke "
  1475. msgstr "実行できません"
  1476. #: methods/connect.cc:64
  1477. #, c-format
  1478. msgid "Connecting to %s (%s)"
  1479. msgstr "%s (%s) へ接続しています"
  1480. #: methods/connect.cc:71
  1481. #, c-format
  1482. msgid "[IP: %s %s]"
  1483. msgstr "[IP: %s %s]"
  1484. #: methods/connect.cc:80
  1485. #, c-format
  1486. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1487. msgstr "%s (f=%u t=%u p=%u) に対するソケットを作成できません"
  1488. #: methods/connect.cc:86
  1489. #, c-format
  1490. msgid "Cannot initiate the connection to %s:%s (%s)."
  1491. msgstr "%s:%s (%s) への接続を開始できません。"
  1492. #: methods/connect.cc:92
  1493. #, c-format
  1494. msgid "Could not connect to %s:%s (%s), connection timed out"
  1495. msgstr "%s:%s (%s) へ接続できませんでした。接続がタイムアウトしました"
  1496. #: methods/connect.cc:104
  1497. #, c-format
  1498. msgid "Could not connect to %s:%s (%s)."
  1499. msgstr "%s:%s (%s) へ接続できませんでした。"
  1500. #. We say this mainly because the pause here is for the
  1501. #. ssh connection that is still going
  1502. #: methods/connect.cc:132 methods/rsh.cc:425
  1503. #, c-format
  1504. msgid "Connecting to %s"
  1505. msgstr "%s へ接続しています"
  1506. #: methods/connect.cc:163
  1507. #, c-format
  1508. msgid "Could not resolve '%s'"
  1509. msgstr "'%s' を解決できませんでした"
  1510. #: methods/connect.cc:167
  1511. #, c-format
  1512. msgid "Temporary failure resolving '%s'"
  1513. msgstr "'%s' が一時的に解決できません"
  1514. #: methods/connect.cc:169
  1515. #, c-format
  1516. msgid "Something wicked happened resolving '%s:%s' (%i)"
  1517. msgstr "'%s:%s' (%i) の解決中に問題が起こりました"
  1518. #: methods/connect.cc:216
  1519. #, c-format
  1520. msgid "Unable to connect to %s %s:"
  1521. msgstr "%s %s へ接続できません:"
  1522. #: methods/gzip.cc:57
  1523. #, c-format
  1524. msgid "Couldn't open pipe for %s"
  1525. msgstr "%s に対してパイプを開けませんでした"
  1526. #: methods/gzip.cc:102
  1527. #, c-format
  1528. msgid "Read error from %s process"
  1529. msgstr "%s プロセスからの読み込みエラー"
  1530. #: methods/http.cc:344
  1531. msgid "Waiting for headers"
  1532. msgstr "ヘッダの待機中です"
  1533. #: methods/http.cc:490
  1534. #, c-format
  1535. msgid "Got a single header line over %u chars"
  1536. msgstr "%u 文字を越える 1 行のヘッダを取得しました"
  1537. #: methods/http.cc:498
  1538. msgid "Bad header line"
  1539. msgstr "不正なヘッダ行です"
  1540. #: methods/http.cc:517 methods/http.cc:524
  1541. msgid "The HTTP server sent an invalid reply header"
  1542. msgstr "http サーバが不正なリプライヘッダを送信してきました"
  1543. #: methods/http.cc:553
  1544. msgid "The HTTP server sent an invalid Content-Length header"
  1545. msgstr "http サーバが不正な Content-Length ヘッダを送信してきました"
  1546. #: methods/http.cc:568
  1547. msgid "The HTTP server sent an invalid Content-Range header"
  1548. msgstr "http サーバが不正な Content-Range ヘッダを送信してきました"
  1549. #: methods/http.cc:570
  1550. msgid "This HTTP server has broken range support"
  1551. msgstr "http サーバのレンジサポートが壊れています"
  1552. #: methods/http.cc:594
  1553. msgid "Unknown date format"
  1554. msgstr "不明な日付フォーマットです"
  1555. #: methods/http.cc:741
  1556. msgid "Select failed"
  1557. msgstr "select に失敗しました"
  1558. #: methods/http.cc:746
  1559. msgid "Connection timed out"
  1560. msgstr "接続タイムアウト"
  1561. #: methods/http.cc:769
  1562. msgid "Error writing to output file"
  1563. msgstr "出力ファイルへの書き込みでエラーが発生しました"
  1564. #: methods/http.cc:797
  1565. msgid "Error writing to file"
  1566. msgstr "ファイルへの書き込みでエラーが発生しました"
  1567. #: methods/http.cc:822
  1568. msgid "Error writing to the file"
  1569. msgstr "ファイルへの書き込みでエラーが発生しました"
  1570. #: methods/http.cc:836
  1571. msgid "Error reading from server. Remote end closed connection"
  1572. msgstr "リモート側で接続がクローズされてサーバからの読み込みに失敗しました"
  1573. #: methods/http.cc:838
  1574. msgid "Error reading from server"
  1575. msgstr "サーバからの読み込みに失敗しました"
  1576. #: methods/http.cc:1069
  1577. msgid "Bad header data"
  1578. msgstr "不正なヘッダです"
  1579. #: methods/http.cc:1086
  1580. msgid "Connection failed"
  1581. msgstr "接続失敗"
  1582. #: methods/http.cc:1177
  1583. msgid "Internal error"
  1584. msgstr "内部エラー"
  1585. #: methods/rsh.cc:330
  1586. msgid "Connection closed prematurely"
  1587. msgstr "途中で接続がクローズされました"
  1588. #: apt-pkg/contrib/mmap.cc:82
  1589. msgid "Can't mmap an empty file"
  1590. msgstr "空のファイルを mmap できません"
  1591. #: apt-pkg/contrib/mmap.cc:87
  1592. #, c-format
  1593. msgid "Couldn't make mmap of %lu bytes"
  1594. msgstr "%lu バイトの mmap ができませんでした"
  1595. #: apt-pkg/contrib/strutl.cc:941
  1596. #, c-format
  1597. msgid "Selection %s not found"
  1598. msgstr "選択された %s が見つかりません"
  1599. #: apt-pkg/contrib/configuration.cc:395
  1600. #, c-format
  1601. msgid "Unrecognized type abbreviation: '%c'"
  1602. msgstr "理解できない省略形式です: '%c'"
  1603. #: apt-pkg/contrib/configuration.cc:453
  1604. #, c-format
  1605. msgid "Opening configuration file %s"
  1606. msgstr "設定ファイル %s をオープンできませんでした"
  1607. #: apt-pkg/contrib/configuration.cc:471
  1608. #, c-format
  1609. msgid "Line %d too long (max %d)"
  1610. msgstr "%d 行目が長過ぎます (最大は %d)"
  1611. #: apt-pkg/contrib/configuration.cc:567
  1612. #, c-format
  1613. msgid "Syntax error %s:%u: Block starts with no name."
  1614. msgstr "文法エラー %s:%u: ブロックが名前なしで始まっています。"
  1615. #: apt-pkg/contrib/configuration.cc:586
  1616. #, c-format
  1617. msgid "Syntax error %s:%u: Malformed tag"
  1618. msgstr "文法エラー %s:%u: 不正なタグです"
  1619. #: apt-pkg/contrib/configuration.cc:603
  1620. #, c-format
  1621. msgid "Syntax error %s:%u: Extra junk after value"
  1622. msgstr "文法エラー %s:%u: 値の後に余分なゴミが入っています"
  1623. #: apt-pkg/contrib/configuration.cc:643
  1624. #, c-format
  1625. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1626. msgstr "文法エラー %s:%u: 命令はトップレベルでのみ実行できます"
  1627. #: apt-pkg/contrib/configuration.cc:650
  1628. #, c-format
  1629. msgid "Syntax error %s:%u: Too many nested includes"
  1630. msgstr "文法エラー %s:%u: インクルードのネストが多過ぎます"
  1631. #: apt-pkg/contrib/configuration.cc:654 apt-pkg/contrib/configuration.cc:659
  1632. #, c-format
  1633. msgid "Syntax error %s:%u: Included from here"
  1634. msgstr "文法エラー %s:%u: ここからインクルードされています"
  1635. #: apt-pkg/contrib/configuration.cc:663
  1636. #, c-format
  1637. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1638. msgstr "文法エラー %s:%u: 未対応の命令 '%s'"
  1639. #: apt-pkg/contrib/configuration.cc:697
  1640. #, c-format
  1641. msgid "Syntax error %s:%u: Extra junk at end of file"
  1642. msgstr "文法エラー %s:%u: ファイルの最後に余計なゴミがあります"
  1643. #: apt-pkg/contrib/progress.cc:154
  1644. #, c-format
  1645. msgid "%c%s... Error!"
  1646. msgstr "%c%s... エラー!"
  1647. #: apt-pkg/contrib/progress.cc:156
  1648. #, c-format
  1649. msgid "%c%s... Done"
  1650. msgstr "%c%s... 完了"
  1651. #: apt-pkg/contrib/cmndline.cc:80
  1652. #, c-format
  1653. msgid "Command line option '%c' [from %s] is not known."
  1654. msgstr "コマンドラインオプション '%c' [%s から] は不明です。"
  1655. #: apt-pkg/contrib/cmndline.cc:106 apt-pkg/contrib/cmndline.cc:114
  1656. #: apt-pkg/contrib/cmndline.cc:122
  1657. #, c-format
  1658. msgid "Command line option %s is not understood"
  1659. msgstr "コマンドラインオプション %s を理解できません"
  1660. #: apt-pkg/contrib/cmndline.cc:127
  1661. #, c-format
  1662. msgid "Command line option %s is not boolean"
  1663. msgstr "コマンドラインオプション %s は boolean ではありません"
  1664. #: apt-pkg/contrib/cmndline.cc:166 apt-pkg/contrib/cmndline.cc:187
  1665. #, c-format
  1666. msgid "Option %s requires an argument."
  1667. msgstr "オプション %s には引数が必要です。"
  1668. #: apt-pkg/contrib/cmndline.cc:201 apt-pkg/contrib/cmndline.cc:207
  1669. #, c-format
  1670. msgid "Option %s: Configuration item specification must have an =<val>."
  1671. msgstr "オプション %s: 設定項目には =<値> を指定する必要があります。"
  1672. #: apt-pkg/contrib/cmndline.cc:237
  1673. #, c-format
  1674. msgid "Option %s requires an integer argument, not '%s'"
  1675. msgstr "オプション %s には '%s' ではなく整数の引数が必要です"
  1676. #: apt-pkg/contrib/cmndline.cc:268
  1677. #, c-format
  1678. msgid "Option '%s' is too long"
  1679. msgstr "オプション '%s' は長すぎます"
  1680. #: apt-pkg/contrib/cmndline.cc:301
  1681. #, c-format
  1682. msgid "Sense %s is not understood, try true or false."
  1683. msgstr "%s を解釈することができません。true か false を試してください。"
  1684. #: apt-pkg/contrib/cmndline.cc:351
  1685. #, c-format
  1686. msgid "Invalid operation %s"
  1687. msgstr "不正な操作 %s"
  1688. #: apt-pkg/contrib/cdromutl.cc:55
  1689. #, c-format
  1690. msgid "Unable to stat the mount point %s"
  1691. msgstr "マウントポイント %s を stat できません"
  1692. #: apt-pkg/contrib/cdromutl.cc:149 apt-pkg/acquire.cc:422 apt-pkg/clean.cc:44
  1693. #, c-format
  1694. msgid "Unable to change to %s"
  1695. msgstr "%s へ変更することができません"
  1696. #: apt-pkg/contrib/cdromutl.cc:190
  1697. msgid "Failed to stat the cdrom"
  1698. msgstr "cdrom の stat に失敗しました"
  1699. #: apt-pkg/contrib/fileutl.cc:80
  1700. #, c-format
  1701. msgid "Not using locking for read only lock file %s"
  1702. msgstr "読み込み専用のロックファイル %s にロックは使用しません"
  1703. #: apt-pkg/contrib/fileutl.cc:85
  1704. #, c-format
  1705. msgid "Could not open lock file %s"
  1706. msgstr "ロックファイル %s をオープンできません"
  1707. #: apt-pkg/contrib/fileutl.cc:103
  1708. #, c-format
  1709. msgid "Not using locking for nfs mounted lock file %s"
  1710. msgstr "nfs マウントされたロックファイル %s にはロックを使用しません"
  1711. #: apt-pkg/contrib/fileutl.cc:107
  1712. #, c-format
  1713. msgid "Could not get lock %s"
  1714. msgstr "ロック %s が取得できませんでした"
  1715. #: apt-pkg/contrib/fileutl.cc:359
  1716. #, c-format
  1717. msgid "Waited for %s but it wasn't there"
  1718. msgstr "%s を待ちましたが、そこにはありませんでした"
  1719. #: apt-pkg/contrib/fileutl.cc:369
  1720. #, c-format
  1721. msgid "Sub-process %s received a segmentation fault."
  1722. msgstr "子プロセス %s がセグメンテーション違反を受けとりました。"
  1723. #: apt-pkg/contrib/fileutl.cc:372
  1724. #, c-format
  1725. msgid "Sub-process %s returned an error code (%u)"
  1726. msgstr "子プロセス %s がエラーコード (%u) を返しました"
  1727. #: apt-pkg/contrib/fileutl.cc:374
  1728. #, c-format
  1729. msgid "Sub-process %s exited unexpectedly"
  1730. msgstr "子プロセス %s が予期せず終了しました"
  1731. #: apt-pkg/contrib/fileutl.cc:418
  1732. #, c-format
  1733. msgid "Could not open file %s"
  1734. msgstr "ファイル %s をオープンできませんでした"
  1735. #: apt-pkg/contrib/fileutl.cc:474
  1736. #, c-format
  1737. msgid "read, still have %lu to read but none left"
  1738. msgstr "読み込みが %lu 残っているはずですが、何も残っていません"
  1739. #: apt-pkg/contrib/fileutl.cc:504
  1740. #, c-format
  1741. msgid "write, still have %lu to write but couldn't"
  1742. msgstr "あと %lu 書き込む必要がありますが、書き込むことができませんでした"
  1743. #: apt-pkg/contrib/fileutl.cc:579
  1744. msgid "Problem closing the file"
  1745. msgstr "ファイルのクローズに問題が発生しました"
  1746. #: apt-pkg/contrib/fileutl.cc:585
  1747. msgid "Problem unlinking the file"
  1748. msgstr "ファイルの削除に問題が発生しました"
  1749. #: apt-pkg/contrib/fileutl.cc:596
  1750. msgid "Problem syncing the file"
  1751. msgstr "ファイルの sync に問題が発生しました"
  1752. #: apt-pkg/pkgcache.cc:126
  1753. msgid "Empty package cache"
  1754. msgstr "空のパッケージキャッシュ"
  1755. #: apt-pkg/pkgcache.cc:132
  1756. msgid "The package cache file is corrupted"
  1757. msgstr "パッケージキャッシュファイルが壊れています"
  1758. #: apt-pkg/pkgcache.cc:137
  1759. msgid "The package cache file is an incompatible version"
  1760. msgstr "このパッケージキャッシュファイルは互換性がないバージョンです"
  1761. #: apt-pkg/pkgcache.cc:142
  1762. #, c-format
  1763. msgid "This APT does not support the versioning system '%s'"
  1764. msgstr "この APT はバージョニングシステム '%s' をサポートしていません"
  1765. #: apt-pkg/pkgcache.cc:147
  1766. msgid "The package cache was built for a different architecture"
  1767. msgstr "パッケージキャッシュが異なるアーキテクチャ用に構築されています"
  1768. #: apt-pkg/pkgcache.cc:218
  1769. msgid "Depends"
  1770. msgstr "依存"
  1771. #: apt-pkg/pkgcache.cc:218
  1772. msgid "PreDepends"
  1773. msgstr "先行依存"
  1774. #: apt-pkg/pkgcache.cc:218
  1775. msgid "Suggests"
  1776. msgstr "提案"
  1777. #: apt-pkg/pkgcache.cc:219
  1778. msgid "Recommends"
  1779. msgstr "推奨"
  1780. #: apt-pkg/pkgcache.cc:219
  1781. msgid "Conflicts"
  1782. msgstr "競合"
  1783. #: apt-pkg/pkgcache.cc:219
  1784. msgid "Replaces"
  1785. msgstr "置換"
  1786. #: apt-pkg/pkgcache.cc:220
  1787. msgid "Obsoletes"
  1788. msgstr "廃止"
  1789. #: apt-pkg/pkgcache.cc:231
  1790. msgid "important"
  1791. msgstr "重要"
  1792. #: apt-pkg/pkgcache.cc:231
  1793. msgid "required"
  1794. msgstr "要求"
  1795. #: apt-pkg/pkgcache.cc:231
  1796. msgid "standard"
  1797. msgstr "標準"
  1798. #: apt-pkg/pkgcache.cc:232
  1799. msgid "optional"
  1800. msgstr "任意"
  1801. #: apt-pkg/pkgcache.cc:232
  1802. msgid "extra"
  1803. msgstr "特別"
  1804. #: apt-pkg/depcache.cc:60 apt-pkg/depcache.cc:89
  1805. msgid "Building dependency tree"
  1806. msgstr "依存関係ツリーを作成しています"
  1807. #: apt-pkg/depcache.cc:61
  1808. msgid "Candidate versions"
  1809. msgstr "候補バージョン"
  1810. #: apt-pkg/depcache.cc:90
  1811. msgid "Dependency generation"
  1812. msgstr "依存関係の生成"
  1813. #: apt-pkg/tagfile.cc:73
  1814. #, c-format
  1815. msgid "Unable to parse package file %s (1)"
  1816. msgstr "パッケージファイル %s を解釈することができません (1)"
  1817. #: apt-pkg/tagfile.cc:160
  1818. #, c-format
  1819. msgid "Unable to parse package file %s (2)"
  1820. msgstr "パッケージファイル %s を解釈することができません (2)"
  1821. #: apt-pkg/sourcelist.cc:87
  1822. #, c-format
  1823. msgid "Malformed line %lu in source list %s (URI)"
  1824. msgstr "ソースリスト %2$s の %1$lu 行目が不正です (URI)"
  1825. #: apt-pkg/sourcelist.cc:89
  1826. #, c-format
  1827. msgid "Malformed line %lu in source list %s (dist)"
  1828. msgstr "ソースリスト %2$s の %1$lu 行目が不正です (dist)"
  1829. #: apt-pkg/sourcelist.cc:92
  1830. #, c-format
  1831. msgid "Malformed line %lu in source list %s (URI parse)"
  1832. msgstr "ソースリスト %2$s の %1$lu 行目が不正です (URI parse)"
  1833. #: apt-pkg/sourcelist.cc:98
  1834. #, c-format
  1835. msgid "Malformed line %lu in source list %s (absolute dist)"
  1836. msgstr "ソースリスト %2$s の %1$lu 行目が不正です (absolute dist)"
  1837. #: apt-pkg/sourcelist.cc:105
  1838. #, c-format
  1839. msgid "Malformed line %lu in source list %s (dist parse)"
  1840. msgstr "ソースリスト %2$s の %1$lu 行目が不正です (dist parse)"
  1841. #: apt-pkg/sourcelist.cc:156
  1842. #, c-format
  1843. msgid "Opening %s"
  1844. msgstr "%s をオープンしています"
  1845. #: apt-pkg/sourcelist.cc:170
  1846. #, c-format
  1847. msgid "Line %u too long in source list %s."
  1848. msgstr "ソースリスト %2$s の %1$u 行目が長過ぎます。"
  1849. #: apt-pkg/sourcelist.cc:187
  1850. #, c-format
  1851. msgid "Malformed line %u in source list %s (type)"
  1852. msgstr "ソースリスト %2$s の %1$u 行目が不正です (type)"
  1853. #: apt-pkg/sourcelist.cc:191
  1854. #, c-format
  1855. msgid "Type '%s' is not known on line %u in source list %s"
  1856. msgstr "ソースリスト %3$s の %2$u 行にあるタイプ '%1$s' は不明です"
  1857. #: apt-pkg/sourcelist.cc:199 apt-pkg/sourcelist.cc:202
  1858. #, c-format
  1859. msgid "Malformed line %u in source list %s (vendor id)"
  1860. msgstr "ソースリスト %2$s の %1$u 行目が不正です (vendor id)"
  1861. #: apt-pkg/packagemanager.cc:402
  1862. #, c-format
  1863. msgid ""
  1864. "This installation run will require temporarily removing the essential "
  1865. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1866. "you really want to do it, activate the APT::Force-LoopBreak option."
  1867. msgstr ""
  1868. "このインストールは、競合/先行依存のループが原因で、一時的に重要な不可欠パッ"
  1869. "ケージ %s を削除します。これは多くの場合に問題が起こる原因となります。本当に"
  1870. "これを行いたいなら、APT::Force-LoopBreak オプションを有効にしてください。"
  1871. #: apt-pkg/pkgrecords.cc:37
  1872. #, c-format
  1873. msgid "Index file type '%s' is not supported"
  1874. msgstr "インデックスファイルのタイプ '%s' はサポートされていません"
  1875. #: apt-pkg/algorithms.cc:241
  1876. #, c-format
  1877. msgid ""
  1878. "The package %s needs to be reinstalled, but I can't find an archive for it."
  1879. msgstr ""
  1880. "パッケージ %s を再インストールする必要がありますが、そのためのアーカイブを見"
  1881. "つけることができませんでした。"
  1882. #: apt-pkg/algorithms.cc:1059
  1883. msgid ""
  1884. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  1885. "held packages."
  1886. msgstr ""
  1887. "エラー、pkgProblemResolver::Resolve は停止しました。おそらく変更禁止パッケー"
  1888. "ジが原因です。"
  1889. #: apt-pkg/algorithms.cc:1061
  1890. msgid "Unable to correct problems, you have held broken packages."
  1891. msgstr "問題を解決することができません。壊れた変更禁止パッケージがあります。"
  1892. #: apt-pkg/acquire.cc:61
  1893. #, c-format
  1894. msgid "Lists directory %spartial is missing."
  1895. msgstr "リストディレクトリ %spartial が見つかりません。"
  1896. #: apt-pkg/acquire.cc:65
  1897. #, c-format
  1898. msgid "Archive directory %spartial is missing."
  1899. msgstr "アーカイブディレクトリ %spartial が見つかりません。"
  1900. #: apt-pkg/acquire-worker.cc:112
  1901. #, c-format
  1902. msgid "The method driver %s could not be found."
  1903. msgstr "メソッドドライバ %s が見つかりません。"
  1904. #: apt-pkg/acquire-worker.cc:161
  1905. #, c-format
  1906. msgid "Method %s did not start correctly"
  1907. msgstr "メソッド %s が正常に開始しませんでした"
  1908. #: apt-pkg/init.cc:119
  1909. #, c-format
  1910. msgid "Packaging system '%s' is not supported"
  1911. msgstr "パッケージングシステム '%s' はサポートされていません"
  1912. #: apt-pkg/init.cc:135
  1913. msgid "Unable to determine a suitable packaging system type"
  1914. msgstr "適切なパッケージシステムタイプを特定できません"
  1915. #: apt-pkg/clean.cc:61
  1916. #, c-format
  1917. msgid "Unable to stat %s."
  1918. msgstr "%s を stat できません。"
  1919. #: apt-pkg/srcrecords.cc:48
  1920. msgid "You must put some 'source' URIs in your sources.list"
  1921. msgstr "sources.list に 'ソース' URI を指定する必要があります"
  1922. #: apt-pkg/cachefile.cc:73
  1923. msgid "The package lists or status file could not be parsed or opened."
  1924. msgstr ""
  1925. "パッケージリストまたはステータスファイルを解釈またはオープンすることができま"
  1926. "せん。"
  1927. #: apt-pkg/cachefile.cc:77
  1928. msgid "You may want to run apt-get update to correct these problems"
  1929. msgstr ""
  1930. "これらの問題を解決するためには apt-get update を実行する必要があるかもしれま"
  1931. "せん"
  1932. #: apt-pkg/policy.cc:269
  1933. msgid "Invalid record in the preferences file, no Package header"
  1934. msgstr ""
  1935. "不正なレコードが preferences ファイルに存在します。パッケージヘッダがありませ"
  1936. "ん"
  1937. #: apt-pkg/policy.cc:291
  1938. #, c-format
  1939. msgid "Did not understand pin type %s"
  1940. msgstr "pin タイプ %s が理解できませんでした"
  1941. #: apt-pkg/policy.cc:299
  1942. msgid "No priority (or zero) specified for pin"
  1943. msgstr "pin で優先度 (または 0) が指定されていません"
  1944. #: apt-pkg/pkgcachegen.cc:74
  1945. msgid "Cache has an incompatible versioning system"
  1946. msgstr "キャッシュに非互換なバージョニングシステムがあります"
  1947. #: apt-pkg/pkgcachegen.cc:117
  1948. #, c-format
  1949. msgid "Error occurred while processing %s (NewPackage)"
  1950. msgstr "%s を処理中にエラーが発生しました (NewPackage)"
  1951. #: apt-pkg/pkgcachegen.cc:129
  1952. #, c-format
  1953. msgid "Error occurred while processing %s (UsePackage1)"
  1954. msgstr "%s を処理中にエラーが発生しました (UsePackage1)"
  1955. #: apt-pkg/pkgcachegen.cc:150
  1956. #, c-format
  1957. msgid "Error occurred while processing %s (UsePackage2)"
  1958. msgstr "%s を処理中にエラーが発生しました (UsePackage2)"
  1959. #: apt-pkg/pkgcachegen.cc:154
  1960. #, c-format
  1961. msgid "Error occurred while processing %s (NewFileVer1)"
  1962. msgstr "%s を処理中にエラーが発生しました (NewFileVer1)"
  1963. #: apt-pkg/pkgcachegen.cc:184
  1964. #, c-format
  1965. msgid "Error occurred while processing %s (NewVersion1)"
  1966. msgstr "%s を処理中にエラーが発生しました (NewVersion1)"
  1967. #: apt-pkg/pkgcachegen.cc:188
  1968. #, c-format
  1969. msgid "Error occurred while processing %s (UsePackage3)"
  1970. msgstr "%s を処理中にエラーが発生しました (UsePackage3)"
  1971. #: apt-pkg/pkgcachegen.cc:192
  1972. #, c-format
  1973. msgid "Error occurred while processing %s (NewVersion2)"
  1974. msgstr "%s を処理中にエラーが発生しました (NewVersion2)"
  1975. #: apt-pkg/pkgcachegen.cc:207
  1976. msgid "Wow, you exceeded the number of package names this APT is capable of."
  1977. msgstr "この APT が対応している以上の数のパッケージが指定されました。"
  1978. #: apt-pkg/pkgcachegen.cc:210
  1979. msgid "Wow, you exceeded the number of versions this APT is capable of."
  1980. msgstr "この APT が対応している以上の数のバージョンが要求されました。"
  1981. #: apt-pkg/pkgcachegen.cc:213
  1982. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  1983. msgstr "この APT が対応している以上の数の依存関係が発生しました。"
  1984. #: apt-pkg/pkgcachegen.cc:241
  1985. #, c-format
  1986. msgid "Error occurred while processing %s (FindPkg)"
  1987. msgstr "%s を処理中にエラーが発生しました (FindPkg)"
  1988. #: apt-pkg/pkgcachegen.cc:254
  1989. #, c-format
  1990. msgid "Error occurred while processing %s (CollectFileProvides)"
  1991. msgstr "%s を処理中にエラーが発生しました (CollectFileProvides)"
  1992. #: apt-pkg/pkgcachegen.cc:260
  1993. #, c-format
  1994. msgid "Package %s %s was not found while processing file dependencies"
  1995. msgstr "パッケージ %s %s がファイル依存の処理中に見つかりませんでした"
  1996. #: apt-pkg/pkgcachegen.cc:574
  1997. #, c-format
  1998. msgid "Couldn't stat source package list %s"
  1999. msgstr "ソースパッケージリスト %s が stat できません"
  2000. #: apt-pkg/pkgcachegen.cc:658
  2001. msgid "Collecting File Provides"
  2002. msgstr "ファイル提供情報を収集しています"
  2003. #: apt-pkg/pkgcachegen.cc:785 apt-pkg/pkgcachegen.cc:792
  2004. msgid "IO Error saving source cache"
  2005. msgstr "ソースキャッシュの保存中に IO エラーが発生しました"
  2006. #: apt-pkg/acquire-item.cc:126
  2007. #, c-format
  2008. msgid "rename failed, %s (%s -> %s)."
  2009. msgstr "リネームに失敗しました。%s (%s -> %s)"
  2010. #: apt-pkg/acquire-item.cc:235 apt-pkg/acquire-item.cc:900
  2011. msgid "MD5Sum mismatch"
  2012. msgstr "MD5Sum が適合しません"
  2013. #: apt-pkg/acquire-item.cc:714
  2014. #, c-format
  2015. msgid ""
  2016. "I wasn't able to locate a file for the %s package. This might mean you need "
  2017. "to manually fix this package. (due to missing arch)"
  2018. msgstr ""
  2019. "パッケージ %s のファイルの位置を特定できません。おそらくこのパッケージを手動"
  2020. "で修正する必要があります (存在しないアーキテクチャのため)。"
  2021. #: apt-pkg/acquire-item.cc:767
  2022. #, c-format
  2023. msgid ""
  2024. "I wasn't able to locate file for the %s package. This might mean you need to "
  2025. "manually fix this package."
  2026. msgstr ""
  2027. "パッケージ %s のファイルの位置を特定できません。おそらくこのパッケージを手動"
  2028. "で修正する必要があります。"
  2029. #: apt-pkg/acquire-item.cc:803
  2030. #, c-format
  2031. msgid ""
  2032. "The package index files are corrupted. No Filename: field for package %s."
  2033. msgstr ""
  2034. "パッケージインデックスファイルが壊れています。パッケージ %s に Filename: "
  2035. "フィールドがありません。"
  2036. #: apt-pkg/acquire-item.cc:890
  2037. msgid "Size mismatch"
  2038. msgstr "サイズが適合しません"
  2039. #: apt-pkg/vendorlist.cc:66
  2040. #, c-format
  2041. msgid "Vendor block %s contains no fingerprint"
  2042. msgstr "ベンダブロック %s はフィンガープリントを含んでいません"
  2043. #: apt-pkg/cdrom.cc:504
  2044. #, c-format
  2045. msgid ""
  2046. "Using CD-ROM mount point %s\n"
  2047. "Mounting CD-ROM\n"
  2048. msgstr ""
  2049. "CD-ROM マウントポイント %s を使用します\n"
  2050. "CD-ROM をマウントしています\n"
  2051. #: apt-pkg/cdrom.cc:513 apt-pkg/cdrom.cc:595
  2052. msgid "Identifying.. "
  2053. msgstr "確認しています.. "
  2054. #: apt-pkg/cdrom.cc:538
  2055. #, c-format
  2056. msgid "Stored label: %s \n"
  2057. msgstr "格納されたラベル: %s \n"
  2058. #: apt-pkg/cdrom.cc:558
  2059. #, c-format
  2060. msgid "Using CD-ROM mount point %s\n"
  2061. msgstr "CD-ROM マウントポイント %s を使用します\n"
  2062. #: apt-pkg/cdrom.cc:576
  2063. msgid "Unmounting CD-ROM\n"
  2064. msgstr "CD-ROM をアンマウントしています\n"
  2065. #: apt-pkg/cdrom.cc:580
  2066. msgid "Waiting for disc...\n"
  2067. msgstr "ディスクを待っています...\n"
  2068. #. Mount the new CDROM
  2069. #: apt-pkg/cdrom.cc:588
  2070. msgid "Mounting CD-ROM...\n"
  2071. msgstr "CD-ROM をマウントしています...\n"
  2072. #: apt-pkg/cdrom.cc:606
  2073. msgid "Scanning disc for index files..\n"
  2074. msgstr "ディスクのインデックスファイルを走査しています..\n"
  2075. #: apt-pkg/cdrom.cc:644
  2076. #, c-format
  2077. msgid "Found %i package indexes, %i source indexes and %i signatures\n"
  2078. msgstr ""
  2079. "%i のパッケージインデックス、%i のソースインデックス、%i の署名を見つけまし"
  2080. "た\n"
  2081. #: apt-pkg/cdrom.cc:701
  2082. msgid "That is not a valid name, try again.\n"
  2083. msgstr "これは有効な名前ではありません。再試行してください。\n"
  2084. #: apt-pkg/cdrom.cc:717
  2085. #, c-format
  2086. msgid ""
  2087. "This disc is called: \n"
  2088. "'%s'\n"
  2089. msgstr ""
  2090. "このディスクは以下のように呼ばれます: \n"
  2091. "'%s'\n"
  2092. #: apt-pkg/cdrom.cc:721
  2093. msgid "Copying package lists..."
  2094. msgstr "パッケージリストをコピーしています..."
  2095. #: apt-pkg/cdrom.cc:745
  2096. msgid "Writing new source list\n"
  2097. msgstr "新しいソースリストを書き込んでいます\n"
  2098. #: apt-pkg/cdrom.cc:754
  2099. msgid "Source list entries for this disc are:\n"
  2100. msgstr "このディスクのソースリストのエントリ:\n"
  2101. #: apt-pkg/cdrom.cc:788
  2102. msgid "Unmounting CD-ROM..."
  2103. msgstr "CD-ROM をアンマウントしています..."
  2104. #: apt-pkg/indexcopy.cc:261
  2105. #, c-format
  2106. msgid "Wrote %i records.\n"
  2107. msgstr "%i レコードを書き込みました。\n"
  2108. #: apt-pkg/indexcopy.cc:263
  2109. #, c-format
  2110. msgid "Wrote %i records with %i missing files.\n"
  2111. msgstr "%i レコードを書き込みました。%i 個のファイルが存在しません。\n"
  2112. #: apt-pkg/indexcopy.cc:266
  2113. #, c-format
  2114. msgid "Wrote %i records with %i mismatched files\n"
  2115. msgstr "%i レコードを書き込みました。%i 個の適合しないファイルがあります。\n"
  2116. #: apt-pkg/indexcopy.cc:269
  2117. #, c-format
  2118. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2119. msgstr ""
  2120. "%i レコードを書き込みました。%i 個のファイルが見つからず、%i 個の適合しない"
  2121. "ファイルがあります。\n"
  2122. #~ msgid "Unknown vendor ID '%s' in line %u of source list %s"
  2123. #~ msgstr "ソースリスト %3$s の %2$u 行に不明なベンダ ID '%1$s' があります"