ja.po 127 KB

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