ja.po 129 KB

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