ja.po 117 KB

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