ja.po 120 KB

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