ja.po 120 KB

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