ja.po 129 KB

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