ja.po 102 KB

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