ja.po 123 KB

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