ja.po 116 KB

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