ja.po 109 KB

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