ja.po 74 KB

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