ja.po 134 KB

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